Mercurial > mplayer.hg
annotate Gui/win32/interface.c @ 22371:45d4cffd5180
cosmetics, missing space
patch by Zuxy Meng, zuxy dot meng ... gmail com
author | ivo |
---|---|
date | Thu, 01 Mar 2007 10:58:20 +0000 |
parents | 9f5657a1dbf7 |
children | c7b920227b00 |
rev | line source |
---|---|
18914 | 1 /* |
2 MPlayer Gui for win32 | |
3 Copyright (c) 2003 Sascha Sommer <saschasommer@freenet.de> | |
4 Copyright (c) 2006 Erik Augustson <erik_27can@yahoo.com> | |
5 Copyright (c) 2006 Gianluigi Tiesi <sherpya@netfarm.it> | |
6 | |
7 This program is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
9 the Free Software Foundation; either version 2 of the License, or | |
10 (at your option) any later version. | |
11 | |
12 This program is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with this program; if not, write to the Free Software | |
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA | |
20 */ | |
21 | |
22 #include <windows.h> | |
23 #include <interface.h> | |
24 #include <m_option.h> | |
25 #include <mixer.h> | |
26 #include <mp_msg.h> | |
27 #include <help_mp.h> | |
28 #include <codec-cfg.h> | |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
19245
diff
changeset
|
29 #include <stream/stream.h> |
18914 | 30 #include <libmpdemux/demuxer.h> |
31 #include <libmpdemux/stheader.h> | |
32 #ifdef USE_DVDREAD | |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
19245
diff
changeset
|
33 #include <stream/stream_dvd.h> |
18914 | 34 #endif |
35 #include <input/input.h> | |
36 #include <libvo/video_out.h> | |
37 #include <libao2/audio_out.h> | |
22308 | 38 #include <access_mpcontext.h> |
18914 | 39 #include "gui.h" |
40 #include "dialogs.h" | |
41 #include "wincfg.h" | |
42 #ifdef HAVE_LIBCDIO | |
43 #include <cdio/cdio.h> | |
44 #endif | |
45 | |
21429 | 46 extern m_obj_settings_t *vf_settings; |
19104
2ec2301183cd
marks several read-only string parameters which aren't modified inside the called function as const. Patch by Stefan Huehner, stefan AT huehner-org
reynaldo
parents:
19061
diff
changeset
|
47 extern void exit_player(const char *how); |
18914 | 48 extern char *filename; |
49 extern int abs_seek_pos; | |
50 extern float rel_seek_secs; | |
51 extern int audio_id; | |
52 extern int video_id; | |
53 extern int dvdsub_id; | |
54 extern int vobsub_id; | |
55 extern int stream_cache_size; | |
56 extern int autosync; | |
57 extern int vcd_track; | |
58 extern int dvd_title; | |
59 extern float force_fps; | |
60 extern af_cfg_t af_cfg; | |
61 int guiWinID = 0; | |
62 | |
63 char *skinName = NULL; | |
64 char *codecname = NULL; | |
65 int mplGotoTheNext = 1; | |
66 static gui_t *mygui = NULL; | |
67 static int update_subwindow(void); | |
19245 | 68 static RECT old_rect; |
19535
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
69 static DWORD style; |
22308 | 70 ao_functions_t *audio_out = NULL; |
71 vo_functions_t *video_out = NULL; | |
72 mixer_t *mixer = NULL; | |
18914 | 73 |
74 /* test for playlist files, no need to specify -playlist on the commandline. | |
75 * add any conceivable playlist extensions here. | |
76 * - Erik | |
77 */ | |
78 int parse_filename(char *file, play_tree_t *playtree, m_config_t *mconfig, int clear) | |
79 { | |
80 if(clear) | |
81 mygui->playlist->clear_playlist(mygui->playlist); | |
82 | |
83 if(strstr(file, ".m3u") || strstr(file, ".pls")) | |
84 { | |
85 playtree = parse_playlist_file(file); | |
86 import_playtree_playlist_into_gui(playtree, mconfig); | |
87 return 1; | |
88 } | |
89 return 0; | |
90 } | |
91 | |
92 /** | |
93 * \brief this actually creates a new list containing only one element... | |
94 */ | |
19147
2149651156bc
Compile fix, patch by Aidan Thornton % makomk # lycos P co P uk %
gpoirier
parents:
19104
diff
changeset
|
95 void gaddlist( char ***list, const char *entry) |
18914 | 96 { |
97 int i; | |
98 | |
99 if (*list) | |
100 { | |
101 for (i=0; (*list)[i]; i++) free((*list)[i]); | |
102 free(*list); | |
103 } | |
104 | |
105 *list = malloc(2 * sizeof(char **)); | |
106 (*list)[0] = gstrdup(entry); | |
107 (*list)[1] = NULL; | |
108 } | |
109 | |
19147
2149651156bc
Compile fix, patch by Aidan Thornton % makomk # lycos P co P uk %
gpoirier
parents:
19104
diff
changeset
|
110 char *gstrdup(const char *str) |
18914 | 111 { |
112 if (!str) return NULL; | |
113 return strdup(str); | |
114 } | |
115 | |
116 /** | |
117 * \brief this replaces a string starting with search by replace. | |
118 * If not found, replace is appended. | |
119 */ | |
120 void greplace(char ***list, char *search, char *replace) | |
121 { | |
122 int i = 0; | |
123 int len = (search) ? strlen(search) : 0; | |
124 | |
125 if (*list) | |
126 { | |
127 for (i = 0; (*list)[i]; i++) | |
128 { | |
129 if (search && (!strncmp((*list)[i], search, len))) | |
130 { | |
131 free((*list)[i]); | |
132 (*list)[i] = gstrdup(replace); | |
133 return; | |
134 } | |
135 } | |
136 *list = realloc(*list, (i + 2) * sizeof(char *)); | |
137 } | |
138 else | |
139 *list = malloc(2 * sizeof(char *)); | |
140 | |
141 (*list)[i] = gstrdup(replace); | |
142 (*list)[i + 1] = NULL; | |
143 } | |
144 | |
145 /* this function gets called by the gui to update mplayer */ | |
146 static void guiSetEvent(int event) | |
147 { | |
22308 | 148 if(guiIntfStruct.mpcontext) |
149 mixer = mpctx_get_mixer(guiIntfStruct.mpcontext); | |
150 | |
18914 | 151 switch(event) |
152 { | |
153 case evPlay: | |
154 case evPlaySwitchToPause: | |
155 mplPlay(); | |
156 break; | |
157 case evPause: | |
158 mplPause(); | |
159 break; | |
160 #ifdef USE_DVDREAD | |
161 case evPlayDVD: | |
162 { | |
163 static char dvdname[MAX_PATH]; | |
164 guiIntfStruct.DVD.current_title = dvd_title; | |
165 guiIntfStruct.DVD.current_chapter = dvd_chapter; | |
166 guiIntfStruct.DVD.current_angle = dvd_angle; | |
167 guiIntfStruct.DiskChanged = 1; | |
168 | |
169 mplSetFileName(NULL, dvd_device, STREAMTYPE_DVD); | |
170 guiIntfStruct.Title = guiIntfStruct.DVD.current_title; | |
171 guiIntfStruct.Chapter = guiIntfStruct.DVD.current_chapter; | |
172 guiIntfStruct.Angle = guiIntfStruct.DVD.current_angle; | |
173 | |
174 dvdname[0] = 0; | |
175 strcat(dvdname, "DVD Movie"); | |
176 GetVolumeInformation(dvd_device, dvdname, MAX_PATH, NULL, NULL, NULL, NULL, 0); | |
177 capitalize(dvdname); | |
178 mp_msg(MSGT_GPLAYER, MSGL_V, "Opening DVD %s -> %s\n", dvd_device, dvdname); | |
179 guiGetEvent(guiSetParameters, (char *) STREAMTYPE_DVD); | |
180 mygui->playlist->clear_playlist(mygui->playlist); | |
181 mygui->playlist->add_track(mygui->playlist, filename, NULL, dvdname, 0); | |
182 mygui->startplay(mygui); | |
183 break; | |
184 } | |
185 #endif | |
186 #ifdef HAVE_LIBCDIO | |
187 case evPlayCD: | |
188 { | |
189 int i; | |
190 char track[10]; | |
191 char trackname[10]; | |
192 CdIo_t *p_cdio = cdio_open(NULL, DRIVER_UNKNOWN); | |
193 track_t i_tracks; | |
194 | |
195 if(p_cdio == NULL) printf("Couldn't find a driver.\n"); | |
196 i_tracks = cdio_get_num_tracks(p_cdio); | |
197 | |
198 mygui->playlist->clear_playlist(mygui->playlist); | |
199 for(i=0;i<i_tracks;i++) | |
200 { | |
201 sprintf(track, "cdda://%d", i+1); | |
202 sprintf(trackname, "Track %d", i+1); | |
203 mygui->playlist->add_track(mygui->playlist, track, NULL, trackname, 0); | |
204 } | |
205 cdio_destroy(p_cdio); | |
206 mygui->startplay(mygui); | |
207 break; | |
208 } | |
209 #endif | |
210 case evFullScreen: | |
211 mp_input_queue_cmd(mp_input_parse_cmd("vo_fullscreen")); | |
212 break; | |
213 case evExit: | |
214 { | |
215 /* We are asking mplayer to exit, later it will ask us after uninit is made | |
216 this should be the only safe way to quit */ | |
217 mygui->activewidget = NULL; | |
218 mp_input_queue_cmd(mp_input_parse_cmd("quit")); | |
219 break; | |
220 } | |
221 case evStop: | |
222 if(guiIntfStruct.Playing) | |
223 guiGetEvent(guiCEvent, (void *) guiSetStop); | |
224 break; | |
225 case evSetMoviePosition: | |
226 { | |
227 rel_seek_secs = guiIntfStruct.Position / 100.0f; | |
228 abs_seek_pos = 3; | |
229 break; | |
230 } | |
231 case evForward10sec: | |
232 { | |
233 rel_seek_secs = 10.0f; | |
234 abs_seek_pos = 0; | |
235 break; | |
236 } | |
237 case evBackward10sec: | |
238 { | |
239 rel_seek_secs = -10.0f; | |
240 abs_seek_pos = 0; | |
241 break; | |
242 } | |
243 case evSetBalance: | |
244 case evSetVolume: | |
245 { | |
246 float l,r; | |
247 | |
18953
b83cefcd7e41
crash fix when clicking on volume sliders when in stop state.
vayne
parents:
18947
diff
changeset
|
248 if (guiIntfStruct.Playing == 0) |
b83cefcd7e41
crash fix when clicking on volume sliders when in stop state.
vayne
parents:
18947
diff
changeset
|
249 break; |
b83cefcd7e41
crash fix when clicking on volume sliders when in stop state.
vayne
parents:
18947
diff
changeset
|
250 |
18914 | 251 if (guiIntfStruct.Balance == 50.0f) |
22308 | 252 mixer_setvolume(mixer, guiIntfStruct.Volume, guiIntfStruct.Volume); |
18914 | 253 |
254 l = guiIntfStruct.Volume * ((100.0f - guiIntfStruct.Balance) / 50.0f); | |
255 r = guiIntfStruct.Volume * ((guiIntfStruct.Balance) / 50.0f); | |
256 | |
257 if (l > guiIntfStruct.Volume) l=guiIntfStruct.Volume; | |
258 if (r > guiIntfStruct.Volume) r=guiIntfStruct.Volume; | |
22308 | 259 mixer_setvolume(mixer, l, r); |
18914 | 260 /* Check for balance support on mixer - there is a better way ?? */ |
261 if (r != l) | |
262 { | |
22308 | 263 mixer_getvolume(mixer, &l, &r); |
18914 | 264 if (r == l) |
265 { | |
266 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Mixer doesn't support balanced audio\n"); | |
22308 | 267 mixer_setvolume(mixer, guiIntfStruct.Volume, guiIntfStruct.Volume); |
18914 | 268 guiIntfStruct.Balance = 50.0f; |
269 } | |
270 } | |
271 break; | |
272 } | |
273 case evMute: | |
274 { | |
19061
86350b4b8203
drops casts from void * on malloc/calloc from the gui code
reynaldo
parents:
18953
diff
changeset
|
275 mp_cmd_t * cmd = calloc(1, sizeof(*cmd)); |
18914 | 276 cmd->id=MP_CMD_MUTE; |
277 cmd->name=strdup("mute"); | |
278 mp_input_queue_cmd(cmd); | |
279 break; | |
280 } | |
281 case evDropFile: | |
282 case evLoadPlay: | |
283 { | |
284 mplSetFileName(NULL, filename, STREAMTYPE_FILE); | |
285 guiIntfStruct.FilenameChanged = guiIntfStruct.NewPlay = 1; | |
286 update_playlistwindow(); | |
21897
c885b979fda3
proper fix for avoiding file skipping when mplayer is already playing a file.
vayne
parents:
21765
diff
changeset
|
287 mplGotoTheNext = guiIntfStruct.Playing? 0 : 1; |
18914 | 288 guiGetEvent(guiCEvent, (void *) guiSetStop); |
289 guiGetEvent(guiCEvent, (void *) guiSetPlay); | |
290 break; | |
291 } | |
292 case evNext: | |
293 mplNext(); | |
294 break; | |
295 case evPrev: | |
296 mplPrev(); | |
297 break; | |
298 } | |
299 } | |
300 | |
301 void mplPlay( void ) | |
302 { | |
303 if((!guiIntfStruct.Filename ) || (guiIntfStruct.Filename[0] == 0)) | |
304 return; | |
305 | |
306 if(guiIntfStruct.Playing > 0) | |
307 { | |
308 mplPause(); | |
309 return; | |
310 } | |
311 guiIntfStruct.NewPlay = 1; | |
312 guiGetEvent(guiCEvent, (void *) guiSetPlay); | |
313 } | |
314 | |
315 void mplPause( void ) | |
316 { | |
317 if(!guiIntfStruct.Playing) return; | |
318 | |
319 if(guiIntfStruct.Playing == 1) | |
320 { | |
19061
86350b4b8203
drops casts from void * on malloc/calloc from the gui code
reynaldo
parents:
18953
diff
changeset
|
321 mp_cmd_t * cmd = calloc(1, sizeof(*cmd)); |
18914 | 322 cmd->id=MP_CMD_PAUSE; |
323 cmd->name=strdup("pause"); | |
324 mp_input_queue_cmd(cmd); | |
325 } else guiIntfStruct.Playing = 1; | |
326 } | |
327 | |
328 void mplNext(void) | |
329 { | |
330 if(guiIntfStruct.Playing == 2) return; | |
331 switch(guiIntfStruct.StreamType) | |
332 { | |
333 #ifdef USE_DVDREAD | |
334 case STREAMTYPE_DVD: | |
335 if(guiIntfStruct.DVD.current_chapter == (guiIntfStruct.DVD.chapters - 1)) | |
336 return; | |
337 guiIntfStruct.DVD.current_chapter++; | |
338 break; | |
339 #endif | |
340 default: | |
341 if(mygui->playlist->current == (mygui->playlist->trackcount - 1)) | |
342 return; | |
343 mplSetFileName(NULL, mygui->playlist->tracks[(mygui->playlist->current)++]->filename, | |
344 STREAMTYPE_STREAM); | |
345 break; | |
346 } | |
347 mplGotoTheNext = 0; | |
348 mygui->startplay(mygui); | |
349 } | |
350 | |
351 void mplPrev(void) | |
352 { | |
353 if(guiIntfStruct.Playing == 2) return; | |
354 switch(guiIntfStruct.StreamType) | |
355 { | |
356 #ifdef USE_DVDREAD | |
357 case STREAMTYPE_DVD: | |
358 if(guiIntfStruct.DVD.current_chapter == 1) | |
359 return; | |
360 guiIntfStruct.DVD.current_chapter--; | |
361 break; | |
362 #endif | |
363 default: | |
364 if(mygui->playlist->current == 0) | |
365 return; | |
366 mplSetFileName(NULL, mygui->playlist->tracks[(mygui->playlist->current)--]->filename, | |
367 STREAMTYPE_STREAM); | |
368 break; | |
369 } | |
370 mplGotoTheNext = 0; | |
371 mygui->startplay(mygui); | |
372 } | |
373 | |
374 void mplEnd( void ) | |
375 { | |
376 if(!mplGotoTheNext && guiIntfStruct.Playing) | |
377 { | |
378 mplGotoTheNext = 1; | |
379 return; | |
380 } | |
381 | |
382 if(mplGotoTheNext && guiIntfStruct.Playing && | |
383 (mygui->playlist->current < (mygui->playlist->trackcount - 1)) && | |
384 guiIntfStruct.StreamType != STREAMTYPE_DVD && | |
385 guiIntfStruct.StreamType != STREAMTYPE_DVDNAV) | |
386 { | |
387 /* we've finished this file, reset the aspect */ | |
388 if(movie_aspect >= 0) | |
389 movie_aspect = -1; | |
390 | |
391 mplGotoTheNext = guiIntfStruct.FilenameChanged = guiIntfStruct.NewPlay = 1; | |
392 mplSetFileName(NULL, mygui->playlist->tracks[(mygui->playlist->current)++]->filename, STREAMTYPE_STREAM); | |
393 //sprintf(guiIntfStruct.Filename, mygui->playlist->tracks[(mygui->playlist->current)++]->filename); | |
394 } | |
395 | |
396 if(guiIntfStruct.FilenameChanged && guiIntfStruct.NewPlay) | |
397 return; | |
398 | |
399 guiIntfStruct.TimeSec = 0; | |
400 guiIntfStruct.Position = 0; | |
401 guiIntfStruct.AudioType = 0; | |
402 | |
403 #ifdef USE_DVDREAD | |
404 guiIntfStruct.DVD.current_title = 1; | |
405 guiIntfStruct.DVD.current_chapter = 1; | |
406 guiIntfStruct.DVD.current_angle = 1; | |
407 #endif | |
408 | |
409 if (mygui->playlist->current == (mygui->playlist->trackcount - 1)) | |
410 mygui->playlist->current = 0; | |
411 | |
19408 | 412 fullscreen = 0; |
19535
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
413 if(style == WS_VISIBLE | WS_POPUP) |
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
414 { |
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
415 style = WS_OVERLAPPEDWINDOW | WS_SIZEBOX; |
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
416 SetWindowLong(mygui->subwindow, GWL_STYLE, style); |
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
417 } |
18914 | 418 guiGetEvent(guiCEvent, (void *) guiSetStop); |
419 } | |
420 | |
421 void mplSetFileName(char *dir, char *name, int type) | |
422 { | |
423 if(!name) return; | |
424 if(!dir) | |
425 guiSetFilename(guiIntfStruct.Filename, name) | |
426 else | |
427 guiSetDF(guiIntfStruct.Filename, dir, name); | |
428 | |
429 guiIntfStruct.StreamType = type; | |
430 free((void **) &guiIntfStruct.AudioFile); | |
431 free((void **) &guiIntfStruct.Subtitlename); | |
432 } | |
433 | |
434 static DWORD WINAPI GuiThread(void) | |
435 { | |
436 MSG msg; | |
437 | |
438 if(!skinName) skinName = strdup("Blue"); | |
439 if(!mygui) mygui = create_gui(get_path("skins"), skinName, guiSetEvent); | |
440 if(!mygui) exit_player("Unable to load gui"); | |
441 | |
442 if(autosync && autosync != gtkAutoSync) | |
443 { | |
444 gtkAutoSyncOn = 1; | |
445 gtkAutoSync = autosync; | |
446 } | |
447 | |
448 while(mygui) | |
449 { | |
450 GetMessage(&msg, NULL, 0, 0); | |
451 TranslateMessage(&msg); | |
452 DispatchMessage(&msg); | |
453 } | |
454 fprintf(stderr, "[GUI] Gui Thread Terminated\n"); | |
455 fflush(stderr); | |
456 return 0; | |
457 } | |
458 | |
459 void guiInit(void) | |
460 { | |
461 memset(&guiIntfStruct, 0, sizeof(guiIntfStruct)); | |
462 /* Create The gui thread */ | |
463 if (!mygui) | |
464 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Creating GUI Thread 0x%04x\n", | |
465 (int) CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) GuiThread, NULL, 0, NULL)); | |
466 | |
467 /* Wait until the gui is created */ | |
468 while(!mygui) Sleep(100); | |
469 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Gui Thread started\n"); | |
470 } | |
471 | |
472 void guiDone(void) | |
473 { | |
474 if(mygui) | |
475 { | |
476 fprintf(stderr, "[GUI] Closed by main mplayer window\n"); | |
477 fflush(stderr); | |
478 mygui->uninit(mygui); | |
479 free(mygui); | |
480 TerminateThread(GuiThread, 0); | |
481 mygui = NULL; | |
482 } | |
483 /* Remove tray icon */ | |
484 Shell_NotifyIcon(NIM_DELETE, &nid); | |
485 cfg_write(); | |
486 } | |
487 | |
488 /* this function gets called by mplayer to update the gui */ | |
489 int guiGetEvent(int type, char *arg) | |
490 { | |
491 stream_t *stream = (stream_t *) arg; | |
492 #ifdef USE_DVDREAD | |
493 dvd_priv_t *dvdp = (dvd_priv_t *) arg; | |
494 #endif | |
19718 | 495 if(!mygui || !mygui->skin) return 0; |
18914 | 496 |
22308 | 497 if(guiIntfStruct.mpcontext) |
498 { | |
499 audio_out = mpctx_get_audio_out(guiIntfStruct.mpcontext); | |
500 video_out = mpctx_get_video_out(guiIntfStruct.mpcontext); | |
501 mixer = mpctx_get_mixer(guiIntfStruct.mpcontext); | |
502 } | |
503 | |
18914 | 504 switch (type) |
505 { | |
506 case guiSetFileFormat: | |
507 guiIntfStruct.FileFormat = (int) arg; | |
508 break; | |
509 case guiSetParameters: | |
510 { | |
511 guiGetEvent(guiSetDefaults, NULL); | |
512 guiIntfStruct.DiskChanged = 0; | |
513 guiIntfStruct.FilenameChanged = 0; | |
514 guiIntfStruct.NewPlay = 0; | |
515 switch(guiIntfStruct.StreamType) | |
516 { | |
517 case STREAMTYPE_PLAYLIST: | |
518 break; | |
519 #ifdef USE_DVDREAD | |
520 case STREAMTYPE_DVD: | |
521 { | |
522 char tmp[512]; | |
523 dvd_title = guiIntfStruct.DVD.current_title; | |
524 dvd_chapter = guiIntfStruct.DVD.current_chapter; | |
525 dvd_angle = guiIntfStruct.DVD.current_angle; | |
526 sprintf(tmp,"dvd://%d", guiIntfStruct.Title); | |
527 guiSetFilename(guiIntfStruct.Filename, tmp); | |
528 break; | |
529 } | |
530 #endif | |
531 } | |
532 if(guiIntfStruct.Filename) | |
533 filename = strdup(guiIntfStruct.Filename); | |
534 else if(filename) | |
535 strcpy(guiIntfStruct.Filename, filename); | |
536 break; | |
537 } | |
538 case guiSetAudioOnly: | |
539 { | |
540 guiIntfStruct.AudioOnly = (int) arg; | |
541 if(IsWindowVisible(mygui->subwindow)) | |
542 ShowWindow(mygui->subwindow, SW_HIDE); | |
543 break; | |
544 } | |
545 case guiSetDemuxer: | |
546 guiIntfStruct.demuxer = (void *) arg; | |
547 break; | |
548 case guiSetValues: | |
549 { | |
550 guiIntfStruct.sh_video = arg; | |
551 if (arg) | |
552 { | |
553 sh_video_t *sh = (sh_video_t *)arg; | |
554 codecname = sh->codec->name; | |
555 guiIntfStruct.FPS = sh->fps; | |
556 | |
557 /* we have video, show the subwindow */ | |
558 if(!IsWindowVisible(mygui->subwindow) || IsIconic(mygui->subwindow)) | |
559 ShowWindow(mygui->subwindow, SW_SHOWNORMAL); | |
560 if(WinID == -1) | |
561 update_subwindow(); | |
562 | |
563 } | |
564 break; | |
565 } | |
566 case guiSetShVideo: | |
567 { | |
568 guiIntfStruct.MovieWidth = vo_dwidth; | |
569 guiIntfStruct.MovieHeight = vo_dheight; | |
570 | |
571 sub_aspect = (float)guiIntfStruct.MovieWidth/guiIntfStruct.MovieHeight; | |
572 if(WinID != -1) | |
573 update_subwindow(); | |
574 break; | |
575 } | |
576 case guiSetStream: | |
577 { | |
578 guiIntfStruct.StreamType = stream->type; | |
579 switch(stream->type) | |
580 { | |
581 #ifdef USE_DVDREAD | |
582 case STREAMTYPE_DVD: | |
583 guiGetEvent(guiSetDVD, (char *) stream->priv); | |
584 break; | |
585 #endif | |
586 } | |
587 break; | |
588 } | |
589 #ifdef USE_DVDREAD | |
590 case guiSetDVD: | |
591 { | |
592 guiIntfStruct.DVD.titles = dvdp->vmg_file->tt_srpt->nr_of_srpts; | |
593 guiIntfStruct.DVD.chapters = dvdp->vmg_file->tt_srpt->title[dvd_title].nr_of_ptts; | |
594 guiIntfStruct.DVD.angles = dvdp->vmg_file->tt_srpt->title[dvd_title].nr_of_angles; | |
595 guiIntfStruct.DVD.nr_of_audio_channels = dvdp->nr_of_channels; | |
596 memcpy(guiIntfStruct.DVD.audio_streams, dvdp->audio_streams, sizeof(dvdp->audio_streams)); | |
597 guiIntfStruct.DVD.nr_of_subtitles = dvdp->nr_of_subtitles; | |
598 memcpy(guiIntfStruct.DVD.subtitles, dvdp->subtitles, sizeof(dvdp->subtitles)); | |
599 guiIntfStruct.DVD.current_title = dvd_title + 1; | |
600 guiIntfStruct.DVD.current_chapter = dvd_chapter + 1; | |
601 guiIntfStruct.DVD.current_angle = dvd_angle + 1; | |
602 guiIntfStruct.Track = dvd_title + 1; | |
603 break; | |
604 } | |
605 #endif | |
606 case guiReDraw: | |
607 mygui->updatedisplay(mygui, mygui->mainwindow); | |
608 break; | |
609 case guiSetAfilter: | |
610 guiIntfStruct.afilter = (void *) arg; | |
611 break; | |
612 case guiCEvent: | |
613 { | |
614 guiIntfStruct.Playing = (int) arg; | |
615 switch (guiIntfStruct.Playing) | |
616 { | |
617 case guiSetPlay: | |
618 { | |
619 guiIntfStruct.Playing = 1; | |
620 break; | |
621 } | |
622 case guiSetStop: | |
623 { | |
624 guiIntfStruct.Playing = 0; | |
625 if(movie_aspect >= 0) | |
626 movie_aspect = -1; | |
627 update_subwindow(); | |
628 break; | |
629 } | |
630 case guiSetPause: | |
631 guiIntfStruct.Playing = 2; | |
632 break; | |
633 } | |
634 break; | |
635 } | |
636 case guiIEvent: | |
637 { | |
638 mp_msg(MSGT_GPLAYER,MSGL_V, "cmd: %d\n", (int) arg); | |
639 /* MPlayer asks us to quit */ | |
640 switch((int) arg) | |
641 { | |
642 case MP_CMD_GUI_FULLSCREEN: | |
643 { | |
644 if(!guiIntfStruct.sh_video) break; | |
645 | |
19408 | 646 if(!sub_window) |
19245 | 647 { |
648 video_out->control(VOCTRL_FULLSCREEN, 0); | |
18914 | 649 break; |
19245 | 650 } |
18914 | 651 |
19408 | 652 if(!fullscreen && IsWindowVisible(mygui->subwindow) && !IsIconic(mygui->subwindow)) |
19245 | 653 GetWindowRect(mygui->subwindow, &old_rect); |
654 | |
655 if(fullscreen) | |
18914 | 656 { |
19408 | 657 fullscreen = 0; |
658 style = WS_OVERLAPPEDWINDOW | WS_SIZEBOX; | |
18914 | 659 } else { |
19408 | 660 fullscreen = 1; |
661 style = WS_VISIBLE | WS_POPUP; | |
18914 | 662 } |
19408 | 663 SetWindowLong(mygui->subwindow, GWL_STYLE, style); |
19245 | 664 mpcodecs_config_vo(guiIntfStruct.sh_video, guiIntfStruct.MovieWidth, |
665 guiIntfStruct.MovieHeight, 0); | |
18914 | 666 break; |
667 } | |
668 case MP_CMD_QUIT: | |
669 { | |
670 mygui->uninit(mygui); | |
671 free(mygui); | |
672 mygui = NULL; | |
673 exit_player("Done"); | |
674 return 0; | |
675 } | |
676 case MP_CMD_GUI_STOP: | |
677 guiGetEvent(guiCEvent, (void *) guiSetStop); | |
678 break; | |
679 case MP_CMD_GUI_PLAY: | |
680 guiGetEvent(guiCEvent, (void *) guiSetPlay); | |
681 break; | |
682 case MP_CMD_GUI_SKINBROWSER: | |
19245 | 683 if(fullscreen) guiSetEvent(evFullScreen); |
18914 | 684 PostMessage(mygui->mainwindow, WM_COMMAND, (WPARAM) ID_SKINBROWSER, 0); |
685 break; | |
686 case MP_CMD_GUI_PLAYLIST: | |
19245 | 687 if(fullscreen) guiSetEvent(evFullScreen); |
18914 | 688 PostMessage(mygui->mainwindow, WM_COMMAND, (WPARAM) ID_PLAYLIST, 0); |
689 break; | |
690 case MP_CMD_GUI_PREFERENCES: | |
19245 | 691 if(fullscreen) guiSetEvent(evFullScreen); |
18914 | 692 PostMessage(mygui->mainwindow, WM_COMMAND, (WPARAM) ID_PREFS, 0); |
693 break; | |
694 case MP_CMD_GUI_LOADFILE: | |
19245 | 695 if(fullscreen) guiSetEvent(evFullScreen); |
18914 | 696 PostMessage(mygui->mainwindow, WM_COMMAND, (WPARAM) IDFILE_OPEN, 0); |
697 break; | |
698 case MP_CMD_GUI_LOADSUBTITLE: | |
19245 | 699 if(fullscreen) guiSetEvent(evFullScreen); |
18914 | 700 PostMessage(mygui->mainwindow, WM_COMMAND, (WPARAM) IDSUBTITLE_OPEN, 0); |
701 break; | |
702 default: | |
703 break; | |
704 } | |
705 break; | |
706 } | |
707 case guiSetFileName: | |
708 if (arg) guiIntfStruct.Filename = (char *) arg; | |
709 break; | |
710 case guiSetDefaults: | |
711 { | |
712 audio_id = -1; | |
713 video_id = -1; | |
714 dvdsub_id = -1; | |
715 vobsub_id = -1; | |
716 stream_cache_size = -1; | |
717 autosync = 0; | |
718 vcd_track = 0; | |
719 dvd_title = 0; | |
720 force_fps = 0; | |
721 if(!mygui->playlist->tracks) return 0; | |
722 filename = guiIntfStruct.Filename = mygui->playlist->tracks[mygui->playlist->current]->filename; | |
723 guiIntfStruct.Track = mygui->playlist->current + 1; | |
724 if(gtkAONorm) greplace(&af_cfg.list, "volnorm", "volnorm"); | |
725 if(gtkAOExtraStereo) | |
726 { | |
727 char *name = malloc(12 + 20 + 1); | |
728 snprintf(name, 12 + 20, "extrastereo=%f", gtkAOExtraStereoMul); | |
729 name[12 + 20] = 0; | |
730 greplace(&af_cfg.list, "extrastereo", name); | |
731 free(name); | |
732 } | |
733 if(gtkCacheOn) stream_cache_size = gtkCacheSize; | |
734 if(gtkAutoSyncOn) autosync = gtkAutoSync; | |
735 break; | |
736 } | |
737 case guiSetVolume: | |
738 { | |
739 if(audio_out) | |
740 { | |
741 /* Some audio_out drivers do not support balance e.g. dsound */ | |
742 /* FIXME this algo is not correct */ | |
743 float l, r; | |
22308 | 744 mixer_getvolume(mixer, &l, &r); |
18914 | 745 guiIntfStruct.Volume = (r > l ? r : l); /* max(r,l) */ |
746 if (r != l) | |
747 guiIntfStruct.Balance = ((r-l) + 100.0f) * 0.5f; | |
748 else | |
749 guiIntfStruct.Balance = 50.0f; | |
750 } | |
751 break; | |
752 } | |
753 default: | |
754 mp_msg(MSGT_GPLAYER, MSGL_ERR, "[GUI] GOT UNHANDLED EVENT %i\n", type); | |
755 } | |
756 return 0; | |
757 } | |
758 | |
759 /* This function adds/inserts one file into the gui playlist */ | |
760 int import_file_into_gui(char *pathname, int insert) | |
761 { | |
762 char filename[MAX_PATH]; | |
763 char *filepart = filename; | |
764 | |
765 if (strstr(pathname, "://")) | |
766 { | |
767 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Adding special %s\n", pathname); | |
768 mygui->playlist->add_track(mygui->playlist, pathname, NULL, NULL, 0); | |
769 return 1; | |
770 } | |
771 if (GetFullPathName(pathname, MAX_PATH, filename, &filepart)) | |
772 { | |
773 if (!(GetFileAttributes(filename) & FILE_ATTRIBUTE_DIRECTORY)) | |
774 { | |
775 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Adding filename: %s - fullpath: %s\n", filepart, filename); | |
776 mygui->playlist->add_track(mygui->playlist, filename, NULL, filepart, 0); | |
777 return 1; | |
778 } | |
779 else | |
780 mp_msg(MSGT_GPLAYER, MSGL_V, "[GUI] Cannot add %s\n", filename); | |
781 } | |
782 | |
783 return 0; | |
784 } | |
785 | |
786 /* This function imports the initial playtree (based on cmd-line files) into the gui playlist | |
787 by either: | |
788 - overwriting gui pl (enqueue=0) */ | |
789 | |
790 int import_initial_playtree_into_gui(play_tree_t *my_playtree, m_config_t *config, int enqueue) | |
791 { | |
792 play_tree_iter_t *my_pt_iter = NULL; | |
793 int result = 0; | |
794 | |
795 if(!mygui) guiInit(); | |
796 | |
797 if((my_pt_iter = pt_iter_create(&my_playtree, config))) | |
798 { | |
799 while ((filename = pt_iter_get_next_file(my_pt_iter)) != NULL) | |
800 { | |
801 if (parse_filename(filename, my_playtree, config, 0)) | |
802 result = 1; | |
803 else if (import_file_into_gui(filename, 0)) /* Add it to end of list */ | |
804 result = 1; | |
805 } | |
806 } | |
807 mplGotoTheNext = 1; | |
808 | |
809 if (result) | |
810 { | |
811 mygui->playlist->current = 0; | |
812 filename = mygui->playlist->tracks[0]->filename; | |
813 } | |
814 return result; | |
815 } | |
816 | |
817 /* This function imports and inserts an playtree, that is created "on the fly", for example by | |
818 parsing some MOV-Reference-File; or by loading an playlist with "File Open" | |
819 The file which contained the playlist is thereby replaced with it's contents. */ | |
820 | |
821 int import_playtree_playlist_into_gui(play_tree_t *my_playtree, m_config_t *config) | |
822 { | |
823 play_tree_iter_t *my_pt_iter = NULL; | |
824 int result = 0; | |
825 | |
826 if((my_pt_iter = pt_iter_create(&my_playtree, config))) | |
827 { | |
828 while ((filename = pt_iter_get_next_file(my_pt_iter)) != NULL) | |
829 if (import_file_into_gui(filename, 1)) /* insert it into the list and set plCurrent = new item */ | |
830 result = 1; | |
831 pt_iter_destroy(&my_pt_iter); | |
832 } | |
833 filename = NULL; | |
834 return result; | |
835 } | |
836 | |
837 inline void gtkMessageBox(int type, const char *str) | |
838 { | |
839 if (type & GTK_MB_FATAL) | |
840 MessageBox(NULL, str, "MPlayer GUI for Windows Error", MB_OK | MB_ICONERROR); | |
841 | |
842 fprintf(stderr, "[GUI] MessageBox: %s\n", str); | |
843 fflush(stderr); | |
844 } | |
845 | |
846 void guiMessageBox(int level, char *str) | |
847 { | |
848 switch(level) | |
849 { | |
850 case MSGL_FATAL: | |
851 gtkMessageBox(GTK_MB_FATAL | GTK_MB_SIMPLE, str); | |
852 break; | |
853 case MSGL_ERR: | |
854 gtkMessageBox(GTK_MB_ERROR | GTK_MB_SIMPLE, str); | |
855 break; | |
856 } | |
857 } | |
858 | |
859 static int update_subwindow(void) | |
860 { | |
861 int x,y; | |
862 RECT rd; | |
863 WINDOWPOS wp; | |
864 | |
18947
06ab2099c10e
OpenGL outputs actually support WinID, not to mention that showing the option
reimar
parents:
18914
diff
changeset
|
865 if(!sub_window) |
18914 | 866 { |
867 WinID = -1; // so far only directx supports WinID in windows | |
868 | |
869 if(IsWindowVisible(mygui->subwindow) && guiIntfStruct.sh_video && guiIntfStruct.Playing) | |
870 { | |
871 ShowWindow(mygui->subwindow, SW_HIDE); | |
872 return 0; | |
873 } | |
874 else if(guiIntfStruct.AudioOnly) | |
875 return 0; | |
876 else ShowWindow(mygui->subwindow, SW_SHOW); | |
877 } | |
878 | |
879 /* we've come out of fullscreen at the end of file */ | |
880 if((!IsWindowVisible(mygui->subwindow) || IsIconic(mygui->subwindow)) && !guiIntfStruct.AudioOnly) | |
881 ShowWindow(mygui->subwindow, SW_SHOWNORMAL); | |
882 | |
883 /* get our current window coordinates */ | |
19535
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
884 GetWindowRect(mygui->subwindow, &rd); |
19245 | 885 |
18914 | 886 x = rd.left; |
887 y = rd.top; | |
888 | |
19535
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
889 /* restore sub window position when coming out of fullscreen */ |
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
890 if(x <= 0) x = old_rect.left; |
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
891 if(y <= 0) y = old_rect.top; |
69b134c4caea
Further fullscreen switching improvements. Fixes sub window position bug when exiting a file from fullscreen. Fixes sub window position when switching between windows and fullscreen modes.
vayne
parents:
19408
diff
changeset
|
892 |
18914 | 893 if(!guiIntfStruct.Playing) |
894 { | |
895 window *desc = NULL; | |
896 int i; | |
897 | |
898 for (i=0; i<mygui->skin->windowcount; i++) | |
899 if(mygui->skin->windows[i]->type == wiSub) | |
900 desc = mygui->skin->windows[i]; | |
901 | |
902 rd.right = rd.left+desc->base->bitmap[0]->width; | |
903 rd.bottom = rd.top+desc->base->bitmap[0]->height; | |
904 sub_aspect = (float)(rd.right-rd.left)/(rd.bottom-rd.top); | |
905 } | |
906 else | |
907 { | |
908 rd.right = rd.left+guiIntfStruct.MovieWidth; | |
909 rd.bottom = rd.top+guiIntfStruct.MovieHeight; | |
910 | |
911 if (movie_aspect > 0.0) // forced aspect from the cmdline | |
912 sub_aspect = movie_aspect; | |
913 } | |
914 | |
19245 | 915 |
18914 | 916 AdjustWindowRect(&rd, WS_OVERLAPPEDWINDOW | WS_SIZEBOX, 0); |
19245 | 917 SetWindowPos(mygui->subwindow, 0, x, y, rd.right-rd.left, rd.bottom-rd.top, SWP_NOOWNERZORDER); |
18914 | 918 |
919 wp.hwnd = mygui->subwindow; | |
920 wp.x = rd.left; | |
921 wp.y = rd.top; | |
922 wp.cx = rd.right-rd.left; | |
923 wp.cy = rd.bottom-rd.top; | |
924 wp.flags = SWP_NOOWNERZORDER | SWP_SHOWWINDOW; | |
925 | |
926 /* erase the bitmap image if there's video */ | |
927 if(guiIntfStruct.Playing != 0 && guiIntfStruct.sh_video) | |
928 SendMessage(mygui->subwindow, WM_ERASEBKGND, (WPARAM)GetDC(mygui->subwindow), 0); | |
929 | |
930 /* reset the window aspect */ | |
931 SendMessage(mygui->subwindow, WM_WINDOWPOSCHANGED, 0, (LPARAM)&wp); | |
932 return 0; | |
933 } | |
934 | |
935 void guiEventHandling(void) {} |