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