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