Mercurial > mplayer.hg
annotate gui/interface.c @ 34625:82d1cef6bcee
Cosmetic: Adjust indent.
| author | ib |
|---|---|
| date | Mon, 13 Feb 2012 14:12:54 +0000 |
| parents | 5d6367c875c2 |
| children | 73a5ecb53ee2 |
| rev | line source |
|---|---|
| 26458 | 1 /* |
| 2 * This file is part of MPlayer. | |
| 3 * | |
| 4 * MPlayer is free software; you can redistribute it and/or modify | |
| 5 * it under the terms of the GNU General Public License as published by | |
| 6 * the Free Software Foundation; either version 2 of the License, or | |
| 7 * (at your option) any later version. | |
| 8 * | |
| 9 * MPlayer is distributed in the hope that it will be useful, | |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 12 * GNU General Public License for more details. | |
| 13 * | |
| 14 * You should have received a copy of the GNU General Public License along | |
| 15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
| 16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
| 17 */ | |
| 23077 | 18 |
| 33754 | 19 #include <stdarg.h> |
| 20 #include <stdio.h> | |
| 23077 | 21 #include <stdlib.h> |
| 22 #include <string.h> | |
| 23 | |
| 32984 | 24 #include "interface.h" |
| 25 #include "app.h" | |
| 26 #include "skin/skin.h" | |
| 33556 | 27 #include "ui/gmplayer.h" |
| 28 #include "ui/widgets.h" | |
| 33741 | 29 #include "util/list.h" |
| 33739 | 30 #include "util/mem.h" |
| 33737 | 31 #include "util/string.h" |
| 23077 | 32 #include "wm/ws.h" |
| 33 #include "wm/wsxdnd.h" | |
| 34 | |
| 35 #include "access_mpcontext.h" | |
| 32984 | 36 #include "config.h" |
| 23077 | 37 #include "help_mp.h" |
| 32984 | 38 #include "input/input.h" |
| 39 #include "libaf/equalizer.h" | |
|
33689
8d0290220239
Replace numeric constants for gtkEquChannels array size.
ib
parents:
33688
diff
changeset
|
40 #include "libavutil/common.h" |
| 32984 | 41 #include "libmpcodecs/dec_audio.h" |
| 42 #include "libmpcodecs/dec_video.h" | |
| 43 #include "libmpcodecs/vd.h" | |
| 44 #include "libmpcodecs/vf.h" | |
| 33398 | 45 #include "libvo/video_out.h" |
| 32984 | 46 #include "libvo/x11_common.h" |
| 47 #include "mixer.h" | |
| 48 #include "mp_msg.h" | |
| 32032 | 49 #include "mpcommon.h" |
|
30536
39a4dd7ec420
Move GUI-related extern declarations to a GUI header file.
diego
parents:
30535
diff
changeset
|
50 #include "mplayer.h" |
| 32984 | 51 #include "path.h" |
|
32466
9e627a1793b1
Move font_load.[ch], font_load_ft.c and osd_font.h from libvo to sub.
cigaes
parents:
32461
diff
changeset
|
52 #include "sub/font_load.h" |
| 32467 | 53 #include "sub/sub.h" |
| 23077 | 54 |
|
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
55 #ifdef CONFIG_DVDREAD |
| 23077 | 56 #include "stream/stream_dvd.h" |
| 57 #endif | |
| 58 | |
| 33662 | 59 guiInterface_t guiInfo = { |
| 33961 | 60 .StreamType = STREAMTYPE_DUMMY, |
| 61 .Balance = 50.0f | |
| 33662 | 62 }; |
| 23077 | 63 |
| 33265 | 64 static int initialized; |
| 65 | |
| 33745 | 66 /* MPlayer -> GUI */ |
| 67 | |
| 32984 | 68 void guiInit(void) |
| 23077 | 69 { |
| 32984 | 70 int i; |
| 23077 | 71 |
| 33530 | 72 mp_msg(MSGT_GPLAYER, MSGL_V, "GUI init.\n"); |
| 73 | |
| 34403 | 74 if (!cdrom_device) |
| 75 cdrom_device = strdup(DEFAULT_CDROM_DEVICE); | |
| 76 if (!dvd_device) | |
| 77 dvd_device = strdup(DEFAULT_DVD_DEVICE); | |
| 32984 | 78 if (!gtkDXR3Device) |
| 79 gtkDXR3Device = strdup("/dev/em8300-0"); | |
| 32927 | 80 |
| 32984 | 81 if (stream_cache_size > 0) { |
| 82 gtkCacheOn = 1; | |
| 83 gtkCacheSize = stream_cache_size; | |
| 84 } else if (stream_cache_size == 0) | |
| 85 gtkCacheOn = 0; | |
| 86 | |
| 87 if (autosync && (autosync != gtkAutoSync)) { | |
| 88 gtkAutoSyncOn = 1; | |
| 89 gtkAutoSync = autosync; | |
| 90 } | |
|
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
91 |
| 32984 | 92 gtkASS.enabled = ass_enabled; |
| 93 gtkASS.use_margins = ass_use_margins; | |
| 94 gtkASS.top_margin = ass_top_margin; | |
| 95 gtkASS.bottom_margin = ass_bottom_margin; | |
| 23077 | 96 |
| 32984 | 97 gtkInit(); |
| 98 | |
| 99 // initialize X | |
| 33463 | 100 wsXInit(mDisplay); |
| 32984 | 101 |
| 102 // load skin | |
| 103 | |
| 104 skinDirInHome = get_path("skins"); | |
| 105 skinMPlayerDir = MPLAYER_DATADIR "/skins"; | |
| 106 | |
| 33985 | 107 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] skin directory #1: %s\n", skinDirInHome); |
| 108 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] skin directory #2: %s\n", skinMPlayerDir); | |
| 32984 | 109 |
| 110 if (!skinName) | |
| 111 skinName = strdup("default"); | |
| 112 | |
| 113 i = skinRead(skinName); | |
| 114 | |
| 115 if (i == -1 && strcmp(skinName, "default") != 0) { | |
| 116 mp_msg(MSGT_GPLAYER, MSGL_WARN, MSGTR_SKIN_SKINCFG_SelectedSkinNotFound, skinName); | |
| 117 | |
| 118 skinName = strdup("default"); | |
| 119 i = skinRead(skinName); | |
| 120 } | |
| 121 | |
| 122 switch (i) { | |
| 123 case -1: | |
| 33024 | 124 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_SKIN_SKINCFG_SkinNotFound, skinName); |
| 33768 | 125 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
| 23077 | 126 |
| 32984 | 127 case -2: |
| 33025 | 128 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_SKIN_SKINCFG_SkinCfgError, skinName); |
| 33768 | 129 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
| 32984 | 130 } |
| 131 | |
| 132 // initialize windows | |
| 133 | |
| 33555 | 134 mainDrawBuffer = malloc(guiApp.main.Bitmap.ImageSize); |
| 32984 | 135 |
| 33555 | 136 if (!mainDrawBuffer) { |
| 33024 | 137 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_NEMDB); |
| 33768 | 138 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
| 32984 | 139 } |
| 23077 | 140 |
| 32984 | 141 if (gui_save_pos) { |
|
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33053
diff
changeset
|
142 if (gui_main_pos_x != -3) |
| 33555 | 143 guiApp.main.x = gui_main_pos_x; |
|
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33053
diff
changeset
|
144 if (gui_main_pos_y != -3) |
| 33555 | 145 guiApp.main.y = gui_main_pos_y; |
|
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33053
diff
changeset
|
146 if (gui_sub_pos_x != -3) |
| 33555 | 147 guiApp.sub.x = gui_sub_pos_x; |
|
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33053
diff
changeset
|
148 if (gui_sub_pos_y != -3) |
| 33555 | 149 guiApp.sub.y = gui_sub_pos_y; |
| 32984 | 150 } |
|
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
151 |
| 32984 | 152 if (WinID > 0) { |
| 33555 | 153 guiApp.subWindow.Parent = WinID; |
| 154 guiApp.sub.x = 0; | |
| 155 guiApp.sub.y = 0; | |
| 32984 | 156 } |
| 23077 | 157 |
| 32984 | 158 if (guiWinID >= 0) |
| 33555 | 159 guiApp.mainWindow.Parent = guiWinID; |
| 23077 | 160 |
| 33555 | 161 wsCreateWindow(&guiApp.subWindow, guiApp.sub.x, guiApp.sub.y, guiApp.sub.width, guiApp.sub.height, wsNoBorder, wsShowMouseCursor | wsHandleMouseButton | wsHandleMouseMove, wsShowFrame | wsHideWindow, "MPlayer - Video"); |
| 162 wsDestroyImage(&guiApp.subWindow); | |
| 163 wsCreateImage(&guiApp.subWindow, guiApp.sub.Bitmap.Width, guiApp.sub.Bitmap.Height); | |
| 164 wsXDNDMakeAwareness(&guiApp.subWindow); | |
| 32984 | 165 |
| 33958 | 166 WinID = guiApp.subWindow.WindowID; |
| 167 | |
| 33555 | 168 uiMenuInit(); |
| 169 uiPlaybarInit(); | |
| 23077 | 170 |
| 171 // i=wsHideFrame|wsMaxSize|wsHideWindow; | |
| 33555 | 172 // if ( guiApp.mainDecoration ) i=wsShowFrame|wsMaxSize|wsHideWindow; |
| 32984 | 173 i = wsShowFrame | wsMaxSize | wsHideWindow; |
| 33555 | 174 wsCreateWindow(&guiApp.mainWindow, guiApp.main.x, guiApp.main.y, guiApp.main.width, guiApp.main.height, wsNoBorder, wsShowMouseCursor | wsHandleMouseButton | wsHandleMouseMove, i, "MPlayer"); |
| 175 wsSetShape(&guiApp.mainWindow, guiApp.main.Mask.Image); | |
| 176 wsXDNDMakeAwareness(&guiApp.mainWindow); | |
| 23077 | 177 |
| 33985 | 178 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] screen depth: %d\n", wsDepthOnScreen); |
| 179 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] mainWindow ID: 0x%x\n", (int)guiApp.mainWindow.WindowID); | |
| 180 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] subWindow ID: 0x%x\n", (int)guiApp.subWindow.WindowID); | |
| 23077 | 181 |
| 33555 | 182 guiApp.mainWindow.ReDraw = (void *)uiMainDraw; |
| 183 guiApp.mainWindow.MouseHandler = uiMainMouseHandle; | |
| 184 guiApp.mainWindow.KeyHandler = uiMainKeyHandle; | |
| 185 guiApp.mainWindow.DandDHandler = uiDandDHandler; | |
| 32984 | 186 |
| 33555 | 187 guiApp.subWindow.ReDraw = (void *)uiSubDraw; |
| 188 guiApp.subWindow.MouseHandler = uiSubMouseHandle; | |
| 189 guiApp.subWindow.KeyHandler = uiMainKeyHandle; | |
| 190 guiApp.subWindow.DandDHandler = uiDandDHandler; | |
| 23077 | 191 |
| 33555 | 192 wsSetBackgroundRGB(&guiApp.subWindow, guiApp.sub.R, guiApp.sub.G, guiApp.sub.B); |
| 193 wsClearWindow(guiApp.subWindow); | |
| 23077 | 194 |
| 33555 | 195 if (guiApp.sub.Bitmap.Image) |
| 196 wsConvert(&guiApp.subWindow, guiApp.sub.Bitmap.Image); | |
| 32984 | 197 |
| 33555 | 198 btnModify(evSetVolume, guiInfo.Volume); |
| 199 btnModify(evSetBalance, guiInfo.Balance); | |
| 200 btnModify(evSetMoviePosition, guiInfo.Position); | |
| 23077 | 201 |
| 33555 | 202 wsSetIcon(wsDisplay, guiApp.mainWindow.WindowID, &guiIcon); |
| 203 wsSetIcon(wsDisplay, guiApp.subWindow.WindowID, &guiIcon); | |
| 32984 | 204 |
| 33555 | 205 if (!guiApp.mainDecoration) |
| 206 wsWindowDecoration(&guiApp.mainWindow, 0); | |
|
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
207 |
| 33555 | 208 wsVisibleWindow(&guiApp.mainWindow, wsShowWindow); |
| 23077 | 209 |
| 32984 | 210 if (gtkShowVideoWindow) { |
| 33555 | 211 wsVisibleWindow(&guiApp.subWindow, wsShowWindow); |
| 33960 | 212 |
| 32984 | 213 { |
| 214 XEvent xev; | |
| 215 | |
| 216 do | |
| 217 XNextEvent(wsDisplay, &xev); | |
| 33555 | 218 while (xev.type != MapNotify || xev.xmap.event != guiApp.subWindow.WindowID); |
| 32984 | 219 |
| 33555 | 220 guiApp.subWindow.Mapped = wsMapped; |
| 33960 | 221 guiInfo.VideoWindow = True; |
| 32984 | 222 } |
| 23077 | 223 |
| 33960 | 224 if (gtkLoadFullscreen) |
| 33555 | 225 uiFullScreen(); |
| 33960 | 226 } else |
| 227 wsSetBackgroundRGB(&guiApp.subWindow, 0, 0, 0); | |
| 32984 | 228 |
| 33960 | 229 if (gtkLoadFullscreen) |
| 33978 | 230 btnSet(evFullScreen, btnPressed); |
| 32984 | 231 |
|
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
232 guiInfo.Playing = GUI_STOP; |
| 33609 | 233 |
| 33555 | 234 uiSubRender = 1; |
| 32984 | 235 |
| 34064 | 236 if (plCurrent && !filename) { |
| 33555 | 237 uiSetFileName(plCurrent->path, plCurrent->name, STREAMTYPE_FILE); |
| 34064 | 238 filename = NULL; // don't start playing |
| 239 } | |
| 32984 | 240 |
| 241 if (subdata) | |
| 33897 | 242 setdup(&guiInfo.SubtitleFilename, subdata->filename); |
| 32984 | 243 |
| 33763 | 244 mplayerLoadFont(); |
| 33265 | 245 |
| 246 initialized = 1; | |
| 23077 | 247 } |
| 248 | |
| 32984 | 249 void guiDone(void) |
| 23077 | 250 { |
| 33307 | 251 if (initialized) { |
| 33555 | 252 uiMainRender = 0; |
| 32984 | 253 |
| 33308 | 254 if (gui_save_pos) { |
| 33555 | 255 gui_main_pos_x = guiApp.mainWindow.X; |
| 256 gui_main_pos_y = guiApp.mainWindow.Y; | |
|
33942
afede91f9d5f
Don't use current x and y position of video window for saving.
ib
parents:
33903
diff
changeset
|
257 gui_sub_pos_x = guiApp.sub.x; |
|
afede91f9d5f
Don't use current x and y position of video window for saving.
ib
parents:
33903
diff
changeset
|
258 gui_sub_pos_y = guiApp.sub.y; |
| 33308 | 259 } |
|
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
260 |
| 33308 | 261 ass_enabled = gtkASS.enabled; |
| 262 ass_use_margins = gtkASS.use_margins; | |
| 263 ass_top_margin = gtkASS.top_margin; | |
| 264 ass_bottom_margin = gtkASS.bottom_margin; | |
| 23077 | 265 |
| 33308 | 266 cfg_write(); |
| 267 wsXDone(); | |
| 33307 | 268 } |
| 33263 | 269 |
| 33307 | 270 appFreeStruct(); |
| 34610 | 271 listMgr(gtkDelPl, NULL); |
| 272 listMgr(gtkDelURL, NULL); | |
| 33542 | 273 free(guiIcon.collection); |
| 33307 | 274 |
| 275 if (gui_conf) { | |
| 276 m_config_free(gui_conf); | |
| 277 gui_conf = NULL; | |
| 278 } | |
| 33530 | 279 |
| 280 mp_msg(MSGT_GPLAYER, MSGL_V, "GUI done.\n"); | |
| 33263 | 281 } |
| 282 | |
| 32984 | 283 static void add_vf(char *str) |
| 23077 | 284 { |
| 32984 | 285 void *p; |
| 286 | |
| 287 if (vf_settings) { | |
| 288 int i = 0; | |
| 289 | |
| 290 while (vf_settings[i].name) { | |
| 291 if (!gstrcmp(vf_settings[i++].name, str)) { | |
| 292 i = -1; | |
| 293 break; | |
| 294 } | |
| 295 } | |
| 296 | |
| 297 if (i != -1) { | |
| 298 p = realloc(vf_settings, (i + 2) * sizeof(m_obj_settings_t)); | |
| 32712 | 299 |
| 32984 | 300 if (!p) |
| 301 return; | |
| 302 | |
| 303 vf_settings = p; | |
| 304 vf_settings[i].name = strdup(str); | |
| 305 vf_settings[i].attribs = NULL; | |
| 306 vf_settings[i + 1].name = NULL; | |
| 307 } | |
| 308 } else { | |
| 309 vf_settings = malloc(2 * sizeof(m_obj_settings_t)); | |
| 310 vf_settings[0].name = strdup(str); | |
| 311 vf_settings[0].attribs = NULL; | |
| 312 vf_settings[1].name = NULL; | |
| 32712 | 313 } |
| 314 | |
| 33530 | 315 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_AddingVideoFilter, str); |
| 23077 | 316 } |
| 317 | |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
318 int gui(int what, void *data) |
| 23077 | 319 { |
| 32984 | 320 mixer_t *mixer = NULL; |
|
33685
ca6c9a80a062
Make assignments to variables in guiGetEvent() only if needed.
ib
parents:
33683
diff
changeset
|
321 stream_t *stream; |
|
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
322 #ifdef CONFIG_DVDREAD |
| 33687 | 323 dvd_priv_t *dvd; |
|
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
324 #endif |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
325 plItem *next; |
| 34339 | 326 int msg, state; |
| 23077 | 327 |
| 33555 | 328 if (guiInfo.mpcontext) |
| 329 mixer = mpctx_get_mixer(guiInfo.mpcontext); | |
| 23077 | 330 |
| 33726 | 331 switch (what) { |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
332 case GUI_SET_CONTEXT: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
333 guiInfo.mpcontext = data; |
| 23077 | 334 break; |
| 32984 | 335 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
336 case GUI_SET_STATE: |
| 32984 | 337 |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
338 switch ((int)data) { |
| 33631 | 339 case GUI_STOP: |
| 33614 | 340 case GUI_PLAY: |
| 33555 | 341 // if ( !gtkShowVideoWindow ) wsVisibleWindow( &guiApp.subWindow,wsHideWindow ); |
| 33614 | 342 case GUI_PAUSE: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
343 guiInfo.Playing = (int)data; |
| 32984 | 344 break; |
| 345 } | |
| 346 | |
| 33555 | 347 uiState(); |
| 23077 | 348 break; |
| 32984 | 349 |
| 33732 | 350 case GUI_HANDLE_EVENTS: |
| 33901 | 351 if (!guiInfo.Playing || !guiInfo.VideoWindow) |
| 33732 | 352 wsHandleEvents(); |
| 34083 | 353 wsAutohideCursor(); |
| 33732 | 354 gtkEventHandling(); |
| 355 break; | |
| 356 | |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
357 case GUI_RUN_COMMAND: |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
358 |
| 33985 | 359 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] GUI_RUN_COMMAND: %d\n", (int)data); |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
360 |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
361 switch ((int)data) { |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
362 case MP_CMD_VO_FULLSCREEN: |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
363 uiEventHandling(evFullScreen, 0); |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
364 break; |
|
33696
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
365 |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
366 case MP_CMD_PLAY_TREE_STEP: |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
367 uiEventHandling(evNext, 0); |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
368 break; |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
369 |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
370 case -MP_CMD_PLAY_TREE_STEP: |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
371 uiEventHandling(evPrev, 0); |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
372 break; |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
373 |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
374 case MP_CMD_STOP: |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
375 uiEventHandling(evStop, 0); |
|
24d919fb6778
Don't let MPlayer directly call user interface functions.
ib
parents:
33695
diff
changeset
|
376 break; |
| 33697 | 377 |
| 378 case MP_CMD_QUIT: | |
| 379 uiEventHandling(evExit, 0); | |
| 380 break; | |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
381 } |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
382 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
383 break; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
384 |
| 34339 | 385 case GUI_RUN_MESSAGE: |
| 386 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] GUI_RUN_MESSAGE: %s\n", (const char *)data); | |
| 387 msg = appFindMessage((const char *)data); | |
| 34458 | 388 if ((msg == evMenu) || appFindItem(msg)) |
| 34339 | 389 uiEventHandling(msg, 0); |
| 390 break; | |
| 391 | |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
392 case GUI_PREPARE: |
| 32984 | 393 |
| 34052 | 394 wsVisibleMouse(&guiApp.subWindow, wsHideMouseCursor); |
| 32984 | 395 |
| 34052 | 396 if (guiInfo.NewPlay == GUI_FILE_NEW) { |
| 397 dvd_title = 0; | |
| 398 audio_id = -1; | |
| 399 video_id = -1; | |
| 400 dvdsub_id = -1; | |
| 401 vobsub_id = -1; | |
| 402 | |
| 403 stream_cache_size = -1; | |
| 404 autosync = 0; | |
| 405 force_fps = 0; | |
| 406 } | |
| 34032 | 407 |
| 33555 | 408 switch (guiInfo.StreamType) { |
| 34073 | 409 case STREAMTYPE_FILE: |
| 410 case STREAMTYPE_STREAM: | |
| 32984 | 411 break; |
| 412 | |
| 34387 | 413 case STREAMTYPE_CDDA: |
| 414 { | |
| 415 char tmp[512]; | |
| 416 | |
| 417 sprintf(tmp, "cdda://%d", guiInfo.Track); | |
|
34399
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34389
diff
changeset
|
418 uiSetFileName(NULL, tmp, SAME_STREAMTYPE); |
| 34387 | 419 } |
| 420 break; | |
| 421 | |
| 32984 | 422 case STREAMTYPE_VCD: |
| 423 { | |
| 424 char tmp[512]; | |
| 425 | |
| 33874 | 426 sprintf(tmp, "vcd://%d", guiInfo.Track); |
|
34399
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34389
diff
changeset
|
427 uiSetFileName(NULL, tmp, SAME_STREAMTYPE); |
| 32984 | 428 } |
| 429 break; | |
| 430 | |
| 431 case STREAMTYPE_DVD: | |
| 432 { | |
| 433 char tmp[512]; | |
| 434 | |
|
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
435 sprintf(tmp, "dvd://%d", guiInfo.Track); |
|
34399
f2c03009068d
Don't explicitly set stream type if the type doesn't change.
ib
parents:
34389
diff
changeset
|
436 uiSetFileName(NULL, tmp, SAME_STREAMTYPE); |
| 32984 | 437 } |
| 438 | |
| 33555 | 439 dvd_chapter = guiInfo.Chapter; |
| 440 dvd_angle = guiInfo.Angle; | |
| 32984 | 441 |
| 442 break; | |
| 443 } | |
| 444 | |
| 445 // video opts | |
| 446 | |
| 447 if (!video_driver_list) { | |
| 448 int i = 0; | |
|
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
449 |
| 32984 | 450 while (video_out_drivers[i++]) { |
| 451 if (video_out_drivers[i - 1]->control(VOCTRL_GUISUPPORT, NULL) == VO_TRUE) { | |
| 34610 | 452 listSet(&video_driver_list, (char *)video_out_drivers[i - 1]->info->short_name); |
| 32984 | 453 break; |
| 454 } | |
| 455 } | |
| 456 } | |
| 457 | |
| 458 if (!video_driver_list && !video_driver_list[0]) { | |
| 33024 | 459 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_IDFGCVD); |
| 33768 | 460 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
| 32984 | 461 } |
| 462 | |
| 463 { | |
| 464 int i = 0; | |
| 465 | |
| 33901 | 466 guiInfo.VideoWindow = True; |
| 32984 | 467 |
| 468 while (video_out_drivers[i++]) { | |
| 469 if (video_out_drivers[i - 1]->control(VOCTRL_GUISUPPORT, NULL) == VO_TRUE) { | |
| 470 if ((video_driver_list && !gstrcmp(video_driver_list[0], (char *)video_out_drivers[i - 1]->info->short_name)) && (video_out_drivers[i - 1]->control(VOCTRL_GUI_NOWINDOW, NULL) == VO_TRUE)) { | |
| 33901 | 471 guiInfo.VideoWindow = False; |
| 32984 | 472 break; |
| 473 } | |
| 474 } | |
| 475 } | |
| 476 } | |
| 477 | |
| 478 if (video_driver_list && !gstrcmp(video_driver_list[0], "dxr3")) | |
| 33555 | 479 if (guiInfo.StreamType != STREAMTYPE_DVD && guiInfo.StreamType != STREAMTYPE_VCD) |
| 32984 | 480 if (gtkVfLAVC) |
| 481 add_vf("lavc"); | |
| 482 | |
| 483 if (gtkVfPP) | |
| 484 add_vf("pp"); | |
| 485 | |
| 486 // audio opts | |
| 487 | |
| 488 // if ( ao_plugin_cfg.plugin_list ) { free( ao_plugin_cfg.plugin_list ); ao_plugin_cfg.plugin_list=NULL; } | |
| 489 if (gtkAONorm) | |
| 34610 | 490 listRepl(&af_cfg.list, "volnorm", "volnorm"); |
| 32984 | 491 |
| 492 if (gtkEnableAudioEqualizer) | |
| 34610 | 493 listRepl(&af_cfg.list, "equalizer", "equalizer"); |
| 32984 | 494 |
| 495 if (gtkAOExtraStereo) { | |
| 496 char *name; | |
| 497 | |
| 498 name = malloc(12 + 20 + 1); | |
| 499 snprintf(name, 12 + 20, "extrastereo=%f", gtkAOExtraStereoMul); | |
| 500 name[12 + 20] = 0; | |
| 34610 | 501 listRepl(&af_cfg.list, "extrastereo", name); |
| 32984 | 502 free(name); |
| 503 } | |
| 504 | |
| 505 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "oss", 3)) { | |
| 506 mixer_device = gtkAOOSSMixer; | |
| 507 mixer_channel = gtkAOOSSMixerChannel; | |
| 508 | |
| 509 if (gtkAOOSSDevice) { | |
| 34625 | 510 char *tmp; |
| 34624 | 511 |
| 32984 | 512 tmp = calloc(1, strlen(gtkAOOSSDevice) + 7); |
| 513 sprintf(tmp, "oss:%s", gtkAOOSSDevice); | |
| 34625 | 514 listSet(&audio_driver_list, tmp); |
| 515 free(tmp); | |
| 34624 | 516 } |
| 32984 | 517 } |
| 518 | |
| 519 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "alsa", 4)) { | |
| 520 mixer_device = gtkAOALSAMixer; | |
| 521 mixer_channel = gtkAOALSAMixerChannel; | |
| 522 | |
| 523 if (gtkAOALSADevice) { | |
| 34625 | 524 char *tmp; |
| 34624 | 525 |
| 32984 | 526 tmp = calloc(1, strlen(gtkAOALSADevice) + 14); |
| 527 sprintf(tmp, "alsa:device=%s", gtkAOALSADevice); | |
| 34625 | 528 listSet(&audio_driver_list, tmp); |
| 529 free(tmp); | |
| 34624 | 530 } |
| 32984 | 531 } |
| 532 | |
| 533 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "sdl", 3)) { | |
| 34624 | 534 if (gtkAOSDLDriver) { |
| 34625 | 535 char *tmp; |
| 32984 | 536 |
| 537 tmp = calloc(1, strlen(gtkAOSDLDriver) + 10); | |
| 538 sprintf(tmp, "sdl:%s", gtkAOSDLDriver); | |
| 34625 | 539 listSet(&audio_driver_list, tmp); |
| 540 free(tmp); | |
| 34624 | 541 } |
| 32984 | 542 } |
| 543 | |
| 544 if (audio_driver_list && !gstrncmp(audio_driver_list[0], "esd", 3)) { | |
| 34624 | 545 if (gtkAOESDDevice) { |
| 34625 | 546 char *tmp; |
| 32984 | 547 |
| 548 tmp = calloc(1, strlen(gtkAOESDDevice) + 10); | |
| 549 sprintf(tmp, "esd:%s", gtkAOESDDevice); | |
| 34625 | 550 listSet(&audio_driver_list, tmp); |
| 551 free(tmp); | |
| 34624 | 552 } |
| 32984 | 553 } |
| 554 | |
| 555 // subtitle | |
| 556 | |
| 33897 | 557 // subdata->filename=gstrdup( guiInfo.SubtitleFilename ); |
| 32984 | 558 stream_dump_type = 0; |
| 559 | |
| 560 if (gtkSubDumpMPSub) | |
| 561 stream_dump_type = 4; | |
| 562 | |
| 563 if (gtkSubDumpSrt) | |
| 564 stream_dump_type = 6; | |
| 565 | |
| 566 gtkSubDumpMPSub = gtkSubDumpSrt = 0; | |
| 33763 | 567 mplayerLoadFont(); |
| 23077 | 568 |
| 32984 | 569 // misc |
| 570 | |
| 571 if (gtkCacheOn) | |
| 572 stream_cache_size = gtkCacheSize; | |
| 573 | |
| 574 if (gtkAutoSyncOn) | |
| 575 autosync = gtkAutoSync; | |
| 23077 | 576 |
| 33897 | 577 if (guiInfo.AudioFilename) |
| 578 audio_stream = gstrdup(guiInfo.AudioFilename); | |
| 33894 | 579 else if (guiInfo.NewPlay == GUI_FILE_NEW) |
| 33739 | 580 nfree(audio_stream); |
|
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
581 |
| 32984 | 582 // audio_stream = NULL; |
| 583 | |
| 33555 | 584 guiInfo.NewPlay = 0; |
| 23077 | 585 |
| 32984 | 586 ass_enabled = gtkASS.enabled; |
| 587 ass_use_margins = gtkASS.use_margins; | |
| 588 ass_top_margin = gtkASS.top_margin; | |
| 23077 | 589 ass_bottom_margin = gtkASS.bottom_margin; |
| 590 | |
| 32984 | 591 break; |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
592 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
593 case GUI_SET_STREAM: |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
594 |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
595 stream = data; |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
596 guiInfo.StreamType = stream->type; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
597 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
598 switch (guiInfo.StreamType) { |
| 34424 | 599 case STREAMTYPE_FILE: |
| 600 case STREAMTYPE_STREAM: | |
| 601 break; | |
| 602 | |
| 34387 | 603 case STREAMTYPE_CDDA: |
| 604 guiInfo.Tracks = 0; | |
| 605 stream_control(stream, STREAM_CTRL_GET_NUM_TITLES, &guiInfo.Tracks); | |
| 606 break; | |
| 607 | |
| 34077 | 608 case STREAMTYPE_VCD: |
| 609 guiInfo.Tracks = 0; | |
|
34388
9ee95c78e85f
Replace VCD's STREAM_CTRL_GET_NUM_CHAPTERS by STREAM_CTRL_GET_NUM_TITLES.
ib
parents:
34387
diff
changeset
|
610 stream_control(stream, STREAM_CTRL_GET_NUM_TITLES, &guiInfo.Tracks); |
| 34077 | 611 break; |
| 612 | |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
613 case STREAMTYPE_DVD: |
|
34389
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
614 guiInfo.Tracks = 0; |
|
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
615 stream_control(stream, STREAM_CTRL_GET_NUM_TITLES, &guiInfo.Tracks); |
|
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
616 guiInfo.Chapters = 0; |
|
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
617 stream_control(stream, STREAM_CTRL_GET_NUM_CHAPTERS, &guiInfo.Chapters); |
|
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
618 guiInfo.Angles = 0; |
|
b2d661762e90
Retrieve DVD's titles, chapters and angles by stream control commands.
ib
parents:
34388
diff
changeset
|
619 stream_control(stream, STREAM_CTRL_GET_NUM_ANGLES, &guiInfo.Angles); |
| 34454 | 620 #ifdef CONFIG_DVDREAD |
| 33730 | 621 dvd = stream->priv; |
| 33902 | 622 guiInfo.AudioStreams = dvd->nr_of_channels; |
| 623 memcpy(guiInfo.AudioStream, dvd->audio_streams, sizeof(dvd->audio_streams)); | |
| 624 guiInfo.Subtitles = dvd->nr_of_subtitles; | |
| 625 memcpy(guiInfo.Subtitle, dvd->subtitles, sizeof(dvd->subtitles)); | |
| 34454 | 626 #endif |
|
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
627 guiInfo.Track = dvd_title + 1; |
|
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
628 guiInfo.Chapter = dvd_chapter + 1; |
|
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
629 guiInfo.Angle = dvd_angle + 1; |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
630 break; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
631 } |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
632 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
633 break; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
634 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
635 case GUI_SET_AFILTER: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
636 guiInfo.afilter = data; |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
637 break; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
638 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
639 case GUI_SET_VIDEO: |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
640 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
641 // video |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
642 |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
643 guiInfo.sh_video = data; |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
644 |
|
34074
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
645 state = (guiInfo.StreamType == STREAMTYPE_STREAM ? btnDisabled : btnReleased); |
|
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
646 btnSet(evForward10sec, state); |
|
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
647 btnSet(evBackward10sec, state); |
|
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
648 btnSet(evForward1min, state); |
|
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
649 btnSet(evBackward1min, state); |
|
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
650 btnSet(evForward10min, state); |
|
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
651 btnSet(evBackward10min, state); |
|
360ed500a6e9
Set all buttons related to seek operations according to stream type.
ib
parents:
34073
diff
changeset
|
652 btnSet(evSetMoviePosition, state); |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
653 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
654 if (video_driver_list && !gstrcmp(video_driver_list[0], "dxr3") && (((demuxer_t *)mpctx_get_demuxer(guiInfo.mpcontext))->file_format != DEMUXER_TYPE_MPEG_PS) && !gtkVfLAVC) { |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
655 gtkMessageBox(GTK_MB_FATAL, MSGTR_NEEDLAVC); |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
656 return False; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
657 } |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
658 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
659 break; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
660 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
661 case GUI_SET_AUDIO: |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
662 |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
663 guiInfo.AudioChannels = data ? ((sh_audio_t *)data)->channels : 0; |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
664 |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
665 if (data && !guiInfo.sh_video) |
| 33901 | 666 guiInfo.VideoWindow = False; |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
667 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
668 gui(GUI_SET_MIXER, 0); |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
669 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
670 if (gtkEnableAudioEqualizer) { |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
671 equalizer_t eq; |
|
33693
006a2db8bd55
Use unsigned index variable for comparison with array size.
ib
parents:
33692
diff
changeset
|
672 unsigned int i, j; |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
673 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
674 for (i = 0; i < FF_ARRAY_ELEMS(gtkEquChannels); i++) { |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
675 for (j = 0; j < FF_ARRAY_ELEMS(*gtkEquChannels); j++) { |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
676 eq.channel = i; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
677 eq.band = j; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
678 eq.gain = gtkEquChannels[i][j]; |
| 33766 | 679 mplayer(MPLAYER_SET_EQUALIZER, 0, &eq); |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
680 } |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
681 } |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
682 } |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
683 |
| 33960 | 684 // These must be done here (in the last call from MPlayer before |
| 685 // playback starts) and not in GUI_SETUP_VIDEO_WINDOW, because... | |
| 686 | |
| 687 // ...without video there will be no call to GUI_SETUP_VIDEO_WINDOW | |
| 688 if (!guiInfo.VideoWindow) { | |
| 689 wsVisibleWindow(&guiApp.subWindow, wsHideWindow); | |
| 33978 | 690 btnSet(evFullScreen, (gtkLoadFullscreen ? btnPressed : btnReleased)); |
| 33960 | 691 } |
| 692 | |
| 693 // ...option variable fullscreen determines whether MPlayer will handle | |
| 694 // the window given by WinID as fullscreen window (and will do aspect | |
| 695 // scaling then) or not - quite rubbish | |
| 696 fullscreen = gtkLoadFullscreen; | |
| 697 | |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
698 break; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
699 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
700 case GUI_SET_MIXER: |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
701 if (mixer) { |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
702 float l, r; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
703 static float last_balance = -1; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
704 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
705 mixer_getvolume(mixer, &l, &r); |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
706 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
707 guiInfo.Volume = FFMAX(l, r); |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
708 btnModify(evSetVolume, guiInfo.Volume); |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
709 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
710 if (guiInfo.Balance != last_balance) { |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
711 if (guiInfo.Volume) |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
712 guiInfo.Balance = ((r - l) / guiInfo.Volume + 1.0) * 50.0; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
713 else |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
714 guiInfo.Balance = 50.0f; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
715 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
716 last_balance = guiInfo.Balance; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
717 btnModify(evSetBalance, guiInfo.Balance); |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
718 } |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
719 } |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
720 break; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
721 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
722 case GUI_REDRAW: |
| 34333 | 723 uiEventHandling(ivRedraw, 0); |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
724 break; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
725 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
726 case GUI_SETUP_VIDEO_WINDOW: |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
727 |
| 33901 | 728 guiInfo.VideoWidth = vo_dwidth; |
| 729 guiInfo.VideoHeight = vo_dheight; | |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
730 |
| 33960 | 731 if (!guiApp.subWindow.isFullScreen || !guiApp.subWindow.Mapped) { |
| 732 if (!guiApp.subWindow.isFullScreen) | |
| 733 wsResizeWindow(&guiApp.subWindow, guiInfo.VideoWidth, guiInfo.VideoHeight); | |
| 734 | |
| 33993 | 735 wsMoveWindow(&guiApp.subWindow, False, guiApp.sub.x, guiApp.sub.y); |
| 33960 | 736 |
| 737 if (!guiApp.subWindow.Mapped) | |
| 738 wsVisibleWindow(&guiApp.subWindow, wsShowWindow); | |
| 739 } | |
| 740 | |
| 741 if (gtkLoadFullscreen ^ guiApp.subWindow.isFullScreen) | |
| 742 uiEventHandling(evFullScreen, 0); | |
| 743 | |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
744 if (guiWinID >= 0) |
| 33993 | 745 wsMoveWindow(&guiApp.mainWindow, True, 0, guiInfo.VideoHeight); |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
746 |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
747 break; |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
748 |
| 33733 | 749 case GUI_HANDLE_X_EVENT: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
750 wsEvents(wsDisplay, data); |
|
33692
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
751 gtkEventHandling(); |
|
0e9a5c0194ed
Cosmetic: Arrange guiGetEvent() types in the sequence they are called.
ib
parents:
33691
diff
changeset
|
752 break; |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
753 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
754 case GUI_END_FILE: |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
755 |
| 34333 | 756 uiEventHandling(ivRedraw, 1); |
| 34035 | 757 |
| 34052 | 758 guiInfo.sh_video = NULL; |
| 759 | |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
760 if (!uiGotoTheNext && guiInfo.Playing) { |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
761 uiGotoTheNext = 1; |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
762 break; |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
763 } |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
764 |
| 34387 | 765 if (guiInfo.StreamType == STREAMTYPE_CDDA) { |
| 766 uiNext(); | |
| 767 | |
| 768 if (guiInfo.Playing) | |
| 769 break; | |
| 770 } | |
| 771 | |
| 34610 | 772 if (guiInfo.Playing && (next = listMgr(gtkGetNextPlItem, NULL)) && (plLastPlayed != next)) { |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
773 plLastPlayed = next; |
|
34065
8a7056729022
Change guiInfo.Filename by using uiSetFileName() only.
ib
parents:
34064
diff
changeset
|
774 uiSetFileName(next->path, next->name, STREAMTYPE_FILE); |
| 34066 | 775 guiInfo.NewPlay = GUI_FILE_NEW; |
| 33898 | 776 guiInfo.Track++; |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
777 } else { |
| 33894 | 778 if (guiInfo.NewPlay == GUI_FILE_NEW) |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
779 break; |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
780 |
| 34113 | 781 filename = NULL; |
| 782 | |
| 33897 | 783 guiInfo.ElapsedTime = 0; |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
784 guiInfo.Position = 0; |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
785 guiInfo.AudioChannels = 0; |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
786 |
|
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
787 guiInfo.Track = 1; |
|
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
788 guiInfo.Chapter = 1; |
|
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
789 guiInfo.Angle = 1; |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
790 |
| 33960 | 791 if (gtkShowVideoWindow) { |
| 792 guiInfo.VideoWindow = True; | |
| 793 guiInfo.VideoWidth = guiApp.sub.width; | |
| 794 guiInfo.VideoHeight = guiApp.sub.height; | |
| 795 | |
| 796 if (!guiApp.subWindow.isFullScreen) { | |
| 797 wsResizeWindow(&guiApp.subWindow, guiInfo.VideoWidth, guiInfo.VideoHeight); | |
| 33993 | 798 wsMoveWindow(&guiApp.subWindow, False, guiApp.sub.x, guiApp.sub.y); |
| 33960 | 799 } |
| 800 | |
| 801 if (!guiApp.subWindow.Mapped) | |
| 802 wsVisibleWindow(&guiApp.subWindow, wsShowWindow); | |
| 803 | |
| 804 if (gtkLoadFullscreen ^ guiApp.subWindow.isFullScreen) | |
| 805 uiEventHandling(evFullScreen, 0); | |
| 806 } else { | |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
807 wsVisibleWindow(&guiApp.subWindow, wsHideWindow); |
| 33960 | 808 guiInfo.VideoWindow = False; |
| 33978 | 809 btnSet(evFullScreen, (gtkLoadFullscreen ? btnPressed : btnReleased)); |
| 33960 | 810 } |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
811 |
|
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33730
diff
changeset
|
812 gui(GUI_SET_STATE, (void *)GUI_STOP); |
| 33959 | 813 |
| 814 wsHandleEvents(); | |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
815 uiSubRender = 1; |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
816 wsSetBackgroundRGB(&guiApp.subWindow, guiApp.sub.R, guiApp.sub.G, guiApp.sub.B); |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
817 wsClearWindow(guiApp.subWindow); |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
818 wsPostRedisplay(&guiApp.subWindow); |
| 34032 | 819 wsVisibleMouse(&guiApp.subWindow, wsShowMouseCursor); |
|
33694
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
820 } |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
821 |
|
45553d0f65c6
Don't let MPlayer directly call user interface functions.
ib
parents:
33693
diff
changeset
|
822 break; |
| 32984 | 823 } |
| 824 | |
|
33666
0f592e8530f1
Change return code of guiGetEvent() to indicate success.
ib
parents:
33664
diff
changeset
|
825 return True; |
| 23077 | 826 } |
| 827 | |
| 33746 | 828 // This function adds/inserts one file into the gui playlist. |
| 829 static int import_file_into_gui(char *temp, int insert) | |
| 830 { | |
| 831 char *filename, *pathname; | |
| 832 plItem *item; | |
| 833 | |
| 834 filename = strdup(mp_basename(temp)); | |
| 835 pathname = strdup(temp); | |
| 836 | |
| 837 if (strlen(pathname) - strlen(filename) > 0) | |
| 838 pathname[strlen(pathname) - strlen(filename) - 1] = 0; // we have some path, so remove / at end | |
| 839 else | |
| 840 pathname[strlen(pathname) - strlen(filename)] = 0; | |
| 841 | |
| 33985 | 842 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] playtree, add: %s/%s\n", pathname, filename); |
| 33746 | 843 |
| 844 item = calloc(1, sizeof(plItem)); | |
| 845 | |
| 846 if (!item) | |
| 847 return 0; | |
| 848 | |
| 849 item->name = filename; | |
| 850 item->path = pathname; | |
| 851 | |
| 852 if (insert) | |
| 34610 | 853 listMgr(gtkInsertPlItem, item); // inserts the item after current, and makes current=item |
| 33746 | 854 else |
| 34610 | 855 listMgr(gtkAddPlItem, item); |
| 33746 | 856 |
| 857 return 1; | |
| 858 } | |
| 859 | |
| 860 // This function imports the initial playtree (based on cmd-line files) | |
| 861 // into the gui playlist by either: | |
| 862 // - overwriting gui pl (enqueue=0) | |
| 863 // - appending it to gui pl (enqueue=1) | |
| 33752 | 864 int guiPlaylistInitialize(play_tree_t *my_playtree, m_config_t *config, int enqueue) |
| 33746 | 865 { |
| 866 play_tree_iter_t *my_pt_iter = NULL; | |
| 867 int result = 0; | |
| 868 | |
| 869 if (!enqueue) | |
| 34610 | 870 listMgr(gtkDelPl, NULL); // delete playlist before "appending" |
| 33746 | 871 |
| 872 if ((my_pt_iter = pt_iter_create(&my_playtree, config))) { | |
| 873 while ((filename = pt_iter_get_next_file(my_pt_iter)) != NULL) | |
| 874 // add it to end of list | |
| 875 if (import_file_into_gui(filename, 0)) | |
| 876 result = 1; | |
| 877 } | |
| 878 | |
| 879 uiCurr(); // update filename | |
| 880 uiGotoTheNext = 1; | |
| 881 | |
|
34069
5c505f79932d
Change handling for option "enqueue" in guiPlaylistInitialize().
ib
parents:
34068
diff
changeset
|
882 if (enqueue) |
|
5c505f79932d
Change handling for option "enqueue" in guiPlaylistInitialize().
ib
parents:
34068
diff
changeset
|
883 filename = NULL; // don't start playing |
| 33746 | 884 |
| 885 return result; | |
| 886 } | |
| 887 | |
| 888 // This function imports and inserts an playtree, that is created "on the fly", | |
| 889 // for example by parsing some MOV-Reference-File; or by loading an playlist | |
|
34070
2a95a82ea083
Revise part of the comment on guiPlaylistInitialize().
ib
parents:
34069
diff
changeset
|
890 // with "File Open". (The latter, actually, isn't allowed in MPlayer and thus |
|
2a95a82ea083
Revise part of the comment on guiPlaylistInitialize().
ib
parents:
34069
diff
changeset
|
891 // not working which is why this function won't get called for that reason.) |
| 33746 | 892 // The file which contained the playlist is thereby replaced with it's contents. |
| 33752 | 893 int guiPlaylistAdd(play_tree_t *my_playtree, m_config_t *config) |
| 33746 | 894 { |
| 895 play_tree_iter_t *my_pt_iter = NULL; | |
| 896 int result = 0; | |
| 897 plItem *save; | |
| 898 | |
| 34610 | 899 save = (plItem *)listMgr(gtkGetCurrPlItem, NULL); // save current item |
| 33746 | 900 |
| 901 if ((my_pt_iter = pt_iter_create(&my_playtree, config))) { | |
| 902 while ((filename = pt_iter_get_next_file(my_pt_iter)) != NULL) | |
| 903 // insert it into the list and set plCurrent=new item | |
| 904 if (import_file_into_gui(filename, 1)) | |
| 905 result = 1; | |
| 906 | |
| 907 pt_iter_destroy(&my_pt_iter); | |
| 908 } | |
| 909 | |
| 910 if (save) | |
| 34610 | 911 listMgr(gtkSetCurrPlItem, save); |
| 33746 | 912 else |
| 34610 | 913 listMgr(gtkSetCurrPlItem, plList); // go to head, if plList was empty before |
| 33746 | 914 |
| 915 if (save && result) | |
| 34610 | 916 listMgr(gtkDelCurrPlItem, NULL); |
| 33746 | 917 |
| 918 uiCurr(); // update filename | |
| 919 | |
| 920 return result; | |
| 921 } | |
| 922 | |
| 923 /* GUI -> MPlayer */ | |
| 924 | |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
925 void mplayer(int what, float value, void *data) |
| 23077 | 926 { |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
927 equalizer_t *eq = (equalizer_t *)data; |
|
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27393
diff
changeset
|
928 |
| 33765 | 929 switch (what) { |
| 32984 | 930 // subtitle |
| 931 | |
| 33766 | 932 case MPLAYER_SET_FONT_FACTOR: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
933 font_factor = value; |
| 33763 | 934 mplayerLoadFont(); |
| 33744 | 935 break; |
| 34454 | 936 |
| 33766 | 937 case MPLAYER_SET_FONT_OUTLINE: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
938 subtitle_font_thickness = (8.0f / 100.0f) * value; |
| 33763 | 939 mplayerLoadFont(); |
| 33744 | 940 break; |
| 32984 | 941 |
| 33766 | 942 case MPLAYER_SET_FONT_BLUR: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
943 subtitle_font_radius = (8.0f / 100.0f) * value; |
| 33763 | 944 mplayerLoadFont(); |
| 33744 | 945 break; |
| 32984 | 946 |
| 33766 | 947 case MPLAYER_SET_FONT_TEXTSCALE: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
948 text_font_scale_factor = value; |
| 33763 | 949 mplayerLoadFont(); |
| 33744 | 950 break; |
| 32984 | 951 |
| 33766 | 952 case MPLAYER_SET_FONT_OSDSCALE: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
953 osd_font_scale_factor = value; |
| 33763 | 954 mplayerLoadFont(); |
| 33744 | 955 break; |
| 32984 | 956 |
| 33766 | 957 case MPLAYER_SET_FONT_ENCODING: |
| 33739 | 958 nfree(subtitle_font_encoding); |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
959 subtitle_font_encoding = gstrdup((char *)data); |
| 33763 | 960 mplayerLoadFont(); |
| 33744 | 961 break; |
| 32984 | 962 |
| 33766 | 963 case MPLAYER_SET_FONT_AUTOSCALE: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
964 subtitle_autoscale = (int)value; |
| 33763 | 965 mplayerLoadFont(); |
| 33744 | 966 break; |
| 32984 | 967 |
| 33766 | 968 case MPLAYER_SET_SUB_ENCODING: |
| 33739 | 969 nfree(sub_cp); |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
970 sub_cp = gstrdup((char *)data); |
| 32984 | 971 break; |
| 972 | |
| 33766 | 973 case MPLAYER_SET_EXTRA_STEREO: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
974 gtkAOExtraStereoMul = value; |
| 33555 | 975 if (guiInfo.afilter) |
| 976 af_control_any_rev(guiInfo.afilter, AF_CONTROL_ES_MUL | AF_CONTROL_SET, >kAOExtraStereoMul); | |
| 33744 | 977 break; |
| 32984 | 978 |
| 33766 | 979 case MPLAYER_SET_PANSCAN: |
| 32984 | 980 { |
| 981 mp_cmd_t *mp_cmd; | |
| 982 | |
| 983 mp_cmd = calloc(1, sizeof(*mp_cmd)); | |
| 984 mp_cmd->id = MP_CMD_PANSCAN; | |
| 985 mp_cmd->name = strdup("panscan"); | |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
986 mp_cmd->args[0].v.f = value; |
| 32984 | 987 mp_cmd->args[1].v.i = 1; |
| 988 mp_input_queue_cmd(mp_cmd); | |
| 989 } | |
| 33744 | 990 break; |
| 32984 | 991 |
| 33766 | 992 case MPLAYER_SET_AUTO_QUALITY: |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
993 auto_quality = (int)value; |
| 33744 | 994 break; |
| 32984 | 995 |
| 996 // set equalizers | |
| 997 | |
| 33766 | 998 case MPLAYER_SET_CONTRAST: |
| 33555 | 999 if (guiInfo.sh_video) |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1000 set_video_colors(guiInfo.sh_video, "contrast", (int)value); |
| 33744 | 1001 break; |
| 32984 | 1002 |
| 33766 | 1003 case MPLAYER_SET_BRIGHTNESS: |
| 33555 | 1004 if (guiInfo.sh_video) |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1005 set_video_colors(guiInfo.sh_video, "brightness", (int)value); |
| 33744 | 1006 break; |
| 32984 | 1007 |
| 33766 | 1008 case MPLAYER_SET_HUE: |
| 33555 | 1009 if (guiInfo.sh_video) |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1010 set_video_colors(guiInfo.sh_video, "hue", (int)value); |
| 33744 | 1011 break; |
| 32984 | 1012 |
| 33766 | 1013 case MPLAYER_SET_SATURATION: |
| 33555 | 1014 if (guiInfo.sh_video) |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1015 set_video_colors(guiInfo.sh_video, "saturation", (int)value); |
| 33744 | 1016 break; |
| 32984 | 1017 |
| 33766 | 1018 case MPLAYER_SET_EQUALIZER: |
| 32984 | 1019 { |
| 23077 | 1020 af_control_ext_t tmp; |
| 32984 | 1021 |
| 1022 if (eq) { | |
| 1023 gtkEquChannels[eq->channel][eq->band] = eq->gain; | |
| 1024 tmp.ch = eq->channel; | |
| 1025 tmp.arg = gtkEquChannels[eq->channel]; | |
| 1026 | |
| 33555 | 1027 if (guiInfo.afilter) |
| 1028 af_control_any_rev(guiInfo.afilter, AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &tmp); | |
| 32984 | 1029 } else { |
|
33693
006a2db8bd55
Use unsigned index variable for comparison with array size.
ib
parents:
33692
diff
changeset
|
1030 unsigned int i; |
| 32984 | 1031 |
| 1032 memset(gtkEquChannels, 0, sizeof(gtkEquChannels)); | |
| 1033 | |
| 33555 | 1034 if (guiInfo.afilter) { |
|
33689
8d0290220239
Replace numeric constants for gtkEquChannels array size.
ib
parents:
33688
diff
changeset
|
1035 for (i = 0; i < FF_ARRAY_ELEMS(gtkEquChannels); i++) { |
| 32984 | 1036 tmp.ch = i; |
| 1037 tmp.arg = gtkEquChannels[i]; | |
| 33555 | 1038 af_control_any_rev(guiInfo.afilter, AF_CONTROL_EQUALIZER_GAIN | AF_CONTROL_SET, &tmp); |
| 32984 | 1039 } |
| 1040 } | |
| 1041 } | |
| 1042 | |
| 33744 | 1043 break; |
| 32984 | 1044 } |
| 33768 | 1045 |
| 1046 case MPLAYER_EXIT_GUI: | |
|
33791
8b0c78a85a8c
Cosmetic: Change parameter names of gui() and mplayer().
ib
parents:
33790
diff
changeset
|
1047 exit_player_with_rc((enum exit_reason)value, (enum exit_reason)value >= EXIT_ERROR); |
| 33768 | 1048 break; |
| 32984 | 1049 } |
| 23077 | 1050 } |
| 1051 | |
| 33763 | 1052 void mplayerLoadFont(void) |
| 33745 | 1053 { |
| 1054 #ifdef CONFIG_FREETYPE | |
| 1055 load_font_ft(vo_image_width, vo_image_height, &vo_font, font_name, osd_font_scale_factor); | |
| 1056 #else | |
| 1057 if (vo_font) { | |
| 1058 int i; | |
| 1059 | |
| 1060 free(vo_font->name); | |
| 1061 free(vo_font->fpath); | |
| 1062 | |
| 1063 for (i = 0; i < 16; i++) { | |
| 1064 if (vo_font->pic_a[i]) { | |
| 1065 free(vo_font->pic_a[i]->bmp); | |
| 1066 free(vo_font->pic_a[i]->pal); | |
| 1067 } | |
| 1068 } | |
| 1069 | |
| 1070 for (i = 0; i < 16; i++) { | |
| 1071 if (vo_font->pic_b[i]) { | |
| 1072 free(vo_font->pic_b[i]->bmp); | |
| 1073 free(vo_font->pic_b[i]->pal); | |
| 1074 } | |
| 1075 } | |
| 1076 | |
| 1077 free(vo_font); | |
| 1078 vo_font = NULL; | |
| 1079 } | |
| 1080 | |
| 1081 if (font_name) { | |
| 1082 vo_font = read_font_desc(font_name, font_factor, 0); | |
| 1083 | |
| 1084 if (!vo_font) | |
| 1085 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_CantLoadFont, font_name); | |
| 1086 } else { | |
| 1087 font_name = gstrdup(get_path("font/font.desc")); | |
| 1088 vo_font = read_font_desc(font_name, font_factor, 0); | |
| 1089 | |
| 1090 if (!vo_font) { | |
| 1091 nfree(font_name); | |
| 1092 font_name = gstrdup(MPLAYER_DATADIR "/font/font.desc"); | |
| 1093 vo_font = read_font_desc(font_name, font_factor, 0); | |
| 1094 } | |
| 1095 } | |
| 1096 #endif | |
| 1097 } | |
| 1098 | |
|
33790
ab6d06f5b98b
Add const to some string pointer arguments that will not be modified.
ib
parents:
33775
diff
changeset
|
1099 void mplayerLoadSubtitle(const char *name) |
| 33745 | 1100 { |
| 33773 | 1101 if (guiInfo.Playing == 0) |
| 33745 | 1102 return; |
| 1103 | |
| 1104 if (subdata) { | |
| 1105 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_DeletingSubtitles); | |
| 1106 | |
| 1107 sub_free(subdata); | |
| 1108 subdata = NULL; | |
| 1109 vo_sub = NULL; | |
| 1110 | |
| 1111 if (vo_osd_list) { | |
| 1112 int len; | |
| 1113 mp_osd_obj_t *osd; | |
| 1114 | |
| 1115 osd = vo_osd_list; | |
| 1116 | |
| 1117 while (osd) { | |
| 1118 if (osd->type == OSDTYPE_SUBTITLE) | |
| 1119 break; | |
| 1120 | |
| 1121 osd = osd->next; | |
| 1122 } | |
| 1123 | |
| 1124 if (osd && (osd->flags & OSDFLAG_VISIBLE)) { | |
| 1125 len = osd->stride * (osd->bbox.y2 - osd->bbox.y1); | |
| 1126 memset(osd->bitmap_buffer, 0, len); | |
| 1127 memset(osd->alpha_buffer, 0, len); | |
| 1128 } | |
| 1129 } | |
| 1130 } | |
| 1131 | |
| 1132 if (name) { | |
| 1133 mp_msg(MSGT_GPLAYER, MSGL_INFO, MSGTR_LoadingSubtitles, name); | |
| 1134 | |
| 33775 | 1135 subdata = sub_read_file(name, (guiInfo.sh_video ? guiInfo.sh_video->fps : 0)); |
| 33745 | 1136 |
| 1137 if (!subdata) | |
| 1138 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_CantLoadSub, name); | |
| 1139 | |
| 1140 sub_name = (malloc(2 * sizeof(char *))); // when mplayer will be restarted | |
| 1141 sub_name[0] = strdup(name); // sub_name[0] will be read | |
| 1142 sub_name[1] = NULL; | |
| 1143 } | |
| 1144 | |
| 1145 update_set_of_subtitles(); | |
| 1146 } | |
| 1147 | |
| 33023 | 1148 // NOTE TO MYSELF: This function is nonsense. |
| 33289 | 1149 // MPlayer should pass messages to the GUI |
| 1150 // which must decide then which message has | |
| 1151 // to be shown (MSGL_FATAL, for example). | |
| 1152 // But with this function it is at least | |
| 1153 // possible to show GUI's very critical or | |
| 1154 // abort messages. | |
| 33023 | 1155 void gmp_msg(int mod, int lev, const char *format, ...) |
| 1156 { | |
| 1157 char msg[512]; | |
| 1158 va_list va; | |
| 1159 | |
| 1160 va_start(va, format); | |
| 1161 vsnprintf(msg, sizeof(msg), format, va); | |
| 1162 va_end(va); | |
| 1163 | |
| 1164 mp_msg(mod, lev, msg); | |
| 1165 | |
| 1166 if (mp_msg_test(mod, lev)) | |
| 1167 gtkMessageBox(GTK_MB_FATAL, msg); | |
| 1168 } |
