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