Mercurial > mplayer.hg
annotate gui/ui/main.c @ 35760:1aedd24c032b
Cosmetic: Rename ReDraw DrawHandler.
author | ib |
---|---|
date | Thu, 24 Jan 2013 16:56:44 +0000 |
parents | afb55738b1b7 |
children | 6742a91ba28a |
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 |
34699
ed0e00db4306
Cosmetic: Move, change and add some comments on GUI windows.
ib
parents:
34697
diff
changeset
|
19 /* main window */ |
ed0e00db4306
Cosmetic: Move, change and add some comments on GUI windows.
ib
parents:
34697
diff
changeset
|
20 |
23077 | 21 #include <stdlib.h> |
22 #include <stdio.h> | |
23 #include <sys/stat.h> | |
24 #include <unistd.h> | |
23305
22d3d12c6dfb
Include string.h for memcpy, fastmemcpy.h alone is not enough.
reimar
parents:
23154
diff
changeset
|
25 #include <string.h> |
23077 | 26 |
26382
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
27 #include "config.h" |
35528 | 28 #include "ui.h" |
35525 | 29 #include "gui/app/app.h" |
30 #include "gui/app/gui.h" | |
33738 | 31 #include "gui/interface.h" |
26365
10dfbc523184
Add gui/ prefix to some #include paths so that compilation from the
diego
parents:
26203
diff
changeset
|
32 #include "gui/skin/font.h" |
10dfbc523184
Add gui/ prefix to some #include paths so that compilation from the
diego
parents:
26203
diff
changeset
|
33 #include "gui/skin/skin.h" |
33742
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33739
diff
changeset
|
34 #include "gui/util/list.h" |
33739 | 35 #include "gui/util/mem.h" |
33737 | 36 #include "gui/util/string.h" |
26365
10dfbc523184
Add gui/ prefix to some #include paths so that compilation from the
diego
parents:
26203
diff
changeset
|
37 #include "gui/wm/ws.h" |
23077 | 38 |
26382
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
39 #include "help_mp.h" |
34174
a93891202051
Add missing mp_msg.h #includes, remove some unnecessary ones.
diego
parents:
34077
diff
changeset
|
40 #include "mp_msg.h" |
26382
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
41 #include "libvo/x11_common.h" |
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
42 #include "libvo/fastmemcpy.h" |
33531
84ce059fae34
Get non-multimedia X11 key definitions from libvo/wskeys.h.
ib
parents:
33525
diff
changeset
|
43 #include "libvo/wskeys.h" |
23077 | 44 |
26382
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
45 #include "stream/stream.h" |
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
46 #include "stream/url.h" |
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
47 #include "mixer.h" |
32467 | 48 #include "sub/sub.h" |
26382
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
49 #include "access_mpcontext.h" |
23077 | 50 |
30537
7bebe34b6ad2
Move movie_aspect extern declaration to libmpcodecs/vd.h.
diego
parents:
30516
diff
changeset
|
51 #include "libmpcodecs/vd.h" |
26382
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
52 #include "libmpdemux/demuxer.h" |
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
53 #include "libmpdemux/stheader.h" |
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
54 #include "codec-cfg.h" |
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
55 #include "m_option.h" |
b2f4abcf20ed
Make include paths consistent; do not use ../ in them.
diego
parents:
26365
diff
changeset
|
56 #include "m_property.h" |
30516 | 57 #include "mp_core.h" |
32043
f6249bc89c38
Move extern declarations used by both mplayer.c and mencoder.c to mpcommon.h.
diego
parents:
32041
diff
changeset
|
58 #include "mpcommon.h" |
35545 | 59 #include "libavutil/common.h" |
23077 | 60 |
61 #define GUI_REDRAW_WAIT 375 | |
62 | |
33556 | 63 #include "actions.h" |
35529 | 64 #include "gui/dialog/dialog.h" |
23077 | 65 |
28051 | 66 unsigned int GetTimerMS( void ); |
23077 | 67 |
33555 | 68 unsigned char * mainDrawBuffer = NULL; |
35758 | 69 static int uiMainRender = True; |
23077 | 70 |
35493 | 71 int uiMainAutoPlay = False; |
23077 | 72 |
35493 | 73 int mainVisible = True; |
23077 | 74 |
35493 | 75 int boxMoved = False; |
23077 | 76 int sx = 0,sy = 0; |
77 int i,pot = 0; | |
78 | |
33556 | 79 #include "render.h" |
23077 | 80 |
33555 | 81 void uiMainDraw( void ) |
23077 | 82 { |
83 | |
33768 | 84 if ( guiApp.mainWindow.State == wsWindowClosed ) mplayer( MPLAYER_EXIT_GUI, EXIT_QUIT, 0 ); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
85 |
33555 | 86 if ( guiApp.mainWindow.Visible == wsWindowNotVisible || |
23077 | 87 !mainVisible ) return; |
33555 | 88 // !guiApp.mainWindow.Mapped ) return; |
23077 | 89 |
33555 | 90 if ( uiMainRender && guiApp.mainWindow.State == wsWindowExpose ) |
23077 | 91 { |
33555 | 92 btnModify( evSetMoviePosition,guiInfo.Position ); |
93 btnModify( evSetVolume,guiInfo.Volume ); | |
23077 | 94 |
33555 | 95 fast_memcpy( mainDrawBuffer,guiApp.main.Bitmap.Image,guiApp.main.Bitmap.ImageSize ); |
96 RenderAll( &guiApp.mainWindow,guiApp.mainItems,guiApp.IndexOfMainItems,mainDrawBuffer ); | |
35493 | 97 uiMainRender=False; |
23077 | 98 } |
35746 | 99 // NOTE TO MYSELF: probably not, if uiMainRender is False |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
100 wsImageDraw( &guiApp.mainWindow ); |
23077 | 101 // XFlush( wsDisplay ); |
102 } | |
103 | |
35490
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
104 static void MediumPrepare (int type) |
33771
6e774a02d00c
Remove gtkClearStruct code from mplayer() in interface.c.
ib
parents:
33768
diff
changeset
|
105 { |
35490
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
106 switch (type) |
33771
6e774a02d00c
Remove gtkClearStruct code from mplayer() in interface.c.
ib
parents:
33768
diff
changeset
|
107 { |
35490
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
108 case STREAMTYPE_DVD: |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
109 listMgr(PLAYLIST_DELETE, 0); |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
110 break; |
33771
6e774a02d00c
Remove gtkClearStruct code from mplayer() in interface.c.
ib
parents:
33768
diff
changeset
|
111 |
35490
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
112 case STREAMTYPE_CDDA: |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
113 case STREAMTYPE_VCD: |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
114 listMgr(PLAYLIST_DELETE, 0); |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
115 case STREAMTYPE_FILE: |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
116 case STREAMTYPE_STREAM: |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
117 case STREAMTYPE_PLAYLIST: |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
118 guiInfo.AudioStreams = 0; |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
119 guiInfo.Subtitles = 0; |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
120 guiInfo.Chapters = 0; |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
121 guiInfo.Angles = 0; |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
122 break; |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
123 } |
33771
6e774a02d00c
Remove gtkClearStruct code from mplayer() in interface.c.
ib
parents:
33768
diff
changeset
|
124 } |
6e774a02d00c
Remove gtkClearStruct code from mplayer() in interface.c.
ib
parents:
33768
diff
changeset
|
125 |
23077 | 126 static unsigned last_redraw_time = 0; |
127 | |
33555 | 128 void uiEventHandling( int msg,float param ) |
23077 | 129 { |
35543 | 130 int iparam = (int)param, osd; |
33555 | 131 mixer_t *mixer = mpctx_get_mixer(guiInfo.mpcontext); |
23077 | 132 |
133 switch( msg ) | |
134 { | |
34684 | 135 /* user events */ |
23077 | 136 case evExit: |
33768 | 137 mplayer( MPLAYER_EXIT_GUI, EXIT_QUIT, 0 ); |
23077 | 138 break; |
139 | |
34324 | 140 case evLoadURL: |
34329 | 141 gtkShow( evLoadURL,NULL ); |
23077 | 142 break; |
143 | |
34333 | 144 case ivSetAudio: |
33657 | 145 if ( !mpctx_get_demuxer(guiInfo.mpcontext) || audio_id == iparam ) break; |
34469 | 146 mp_property_do("switch_audio",M_PROPERTY_SET,&iparam,guiInfo.mpcontext); |
147 break; | |
23077 | 148 |
34333 | 149 case ivSetVideo: |
33657 | 150 if ( !mpctx_get_demuxer(guiInfo.mpcontext) || video_id == iparam ) break; |
34469 | 151 mp_property_do("switch_video",M_PROPERTY_SET,&iparam,guiInfo.mpcontext); |
152 break; | |
23077 | 153 |
34333 | 154 case ivSetSubtitle: |
33555 | 155 mp_property_do("sub",M_PROPERTY_SET,&iparam,guiInfo.mpcontext); |
23077 | 156 break; |
157 | |
34387 | 158 #ifdef CONFIG_CDDA |
159 case ivSetCDTrack: | |
160 guiInfo.Track=iparam; | |
161 case evPlayCD: | |
162 guiInfo.StreamType=STREAMTYPE_CDDA; | |
163 goto play; | |
164 #endif | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27341
diff
changeset
|
165 #ifdef CONFIG_VCD |
34333 | 166 case ivSetVCDTrack: |
33555 | 167 guiInfo.Track=iparam; |
23077 | 168 case evPlayVCD: |
33555 | 169 guiInfo.StreamType=STREAMTYPE_VCD; |
23077 | 170 goto play; |
171 #endif | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
172 #ifdef CONFIG_DVDREAD |
34417 | 173 case ivSetDVDSubtitle: |
174 dvdsub_id=iparam; | |
34455
00cf27b14c15
Replace goto label by an internal event case expression.
ib
parents:
34454
diff
changeset
|
175 uiEventHandling( ivPlayDVD, 0 ); |
34417 | 176 break; |
177 case ivSetDVDAudio: | |
178 audio_id=iparam; | |
34455
00cf27b14c15
Replace goto label by an internal event case expression.
ib
parents:
34454
diff
changeset
|
179 uiEventHandling( ivPlayDVD, 0 ); |
34417 | 180 break; |
181 case ivSetDVDChapter: | |
182 guiInfo.Chapter=iparam; | |
34455
00cf27b14c15
Replace goto label by an internal event case expression.
ib
parents:
34454
diff
changeset
|
183 uiEventHandling( ivPlayDVD, 0 ); |
34417 | 184 break; |
185 case ivSetDVDTitle: | |
186 guiInfo.Track=iparam; | |
187 guiInfo.Chapter=1; | |
188 guiInfo.Angle=1; | |
34455
00cf27b14c15
Replace goto label by an internal event case expression.
ib
parents:
34454
diff
changeset
|
189 uiEventHandling( ivPlayDVD, 0 ); |
34417 | 190 break; |
23077 | 191 case evPlayDVD: |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
192 guiInfo.Chapter=1; |
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33874
diff
changeset
|
193 guiInfo.Angle=1; |
34455
00cf27b14c15
Replace goto label by an internal event case expression.
ib
parents:
34454
diff
changeset
|
194 case ivPlayDVD: |
33555 | 195 guiInfo.StreamType=STREAMTYPE_DVD; |
23077 | 196 goto play; |
197 #endif | |
198 case evPlay: | |
199 case evPlaySwitchToPause: | |
200 play: | |
201 | |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
202 if ( ( msg == evPlaySwitchToPause )&&( guiInfo.Playing == GUI_PAUSE ) ) goto NoPause; |
23077 | 203 |
35490
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
204 MediumPrepare( guiInfo.StreamType ); |
a5f5f61a7a35
Replace confusing guiInfoMediumClear() by MediumPrepare().
ib
parents:
35484
diff
changeset
|
205 |
33555 | 206 switch ( guiInfo.StreamType ) |
23077 | 207 { |
34077 | 208 case STREAMTYPE_FILE: |
23077 | 209 case STREAMTYPE_STREAM: |
34859 | 210 case STREAMTYPE_PLAYLIST: |
33898 | 211 if ( !guiInfo.Track ) |
212 guiInfo.Track=1; | |
33890 | 213 guiInfo.NewPlay=GUI_FILE_NEW; |
23077 | 214 break; |
34454 | 215 |
34387 | 216 case STREAMTYPE_CDDA: |
217 if ( guiInfo.Playing != GUI_PAUSE ) | |
218 { | |
219 if ( !guiInfo.Track ) | |
220 guiInfo.Track=1; | |
221 guiInfo.NewPlay=GUI_FILE_SAME; | |
222 } | |
223 break; | |
34454 | 224 |
23077 | 225 case STREAMTYPE_VCD: |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
226 if ( guiInfo.Playing != GUI_PAUSE ) |
23077 | 227 { |
33555 | 228 if ( !guiInfo.Track ) |
33874 | 229 guiInfo.Track=2; |
33890 | 230 guiInfo.NewPlay=GUI_FILE_SAME; |
23077 | 231 } |
232 break; | |
34454 | 233 |
23077 | 234 case STREAMTYPE_DVD: |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
235 if ( guiInfo.Playing != GUI_PAUSE ) |
23077 | 236 { |
35422
696a8a165952
Check and set track for DVDs just as for the other StreamTypes.
ib
parents:
35389
diff
changeset
|
237 if ( !guiInfo.Track ) |
696a8a165952
Check and set track for DVDs just as for the other StreamTypes.
ib
parents:
35389
diff
changeset
|
238 guiInfo.Track=1; |
33890 | 239 guiInfo.NewPlay=GUI_FILE_SAME; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
240 } |
23077 | 241 break; |
242 } | |
33555 | 243 uiPlay(); |
23077 | 244 break; |
245 | |
246 case evPause: | |
247 case evPauseSwitchToPlay: | |
248 NoPause: | |
33555 | 249 uiPause(); |
23077 | 250 break; |
251 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
252 case evStop: |
33614 | 253 guiInfo.Playing=GUI_STOP; |
33555 | 254 uiState(); |
23077 | 255 break; |
256 | |
257 case evLoadPlay: | |
35493 | 258 uiMainAutoPlay=True; |
33555 | 259 // guiInfo.StreamType=STREAMTYPE_FILE; |
23077 | 260 case evLoad: |
261 gtkShow( evLoad,NULL ); | |
262 break; | |
263 case evLoadSubtitle: gtkShow( evLoadSubtitle,NULL ); break; | |
264 case evDropSubtitle: | |
33897 | 265 nfree( guiInfo.SubtitleFilename ); |
33763 | 266 mplayerLoadSubtitle( NULL ); |
23077 | 267 break; |
268 case evLoadAudioFile: gtkShow( evLoadAudioFile,NULL ); break; | |
33555 | 269 case evPrev: uiPrev(); break; |
270 case evNext: uiNext(); break; | |
23077 | 271 |
34321
daebf766dea6
Cosmetic: Synchronize evPlaylist event and message names.
ib
parents:
34174
diff
changeset
|
272 case evPlaylist: gtkShow( evPlaylist,NULL ); break; |
23077 | 273 case evSkinBrowser: gtkShow( evSkinBrowser,skinName ); break; |
274 case evAbout: gtkShow( evAbout,NULL ); break; | |
275 case evPreferences: gtkShow( evPreferences,NULL ); break; | |
276 case evEqualizer: gtkShow( evEqualizer,NULL ); break; | |
277 | |
33555 | 278 case evForward10min: uiRelSeek( 600 ); break; |
279 case evBackward10min: uiRelSeek( -600 );break; | |
280 case evForward1min: uiRelSeek( 60 ); break; | |
281 case evBackward1min: uiRelSeek( -60 ); break; | |
282 case evForward10sec: uiRelSeek( 10 ); break; | |
283 case evBackward10sec: uiRelSeek( -10 ); break; | |
284 case evSetMoviePosition: uiAbsSeek( param ); break; | |
23077 | 285 |
286 case evIncVolume: vo_x11_putkey( wsGrayMul ); break; | |
287 case evDecVolume: vo_x11_putkey( wsGrayDiv ); break; | |
288 case evMute: mixer_mute( mixer ); break; | |
289 | |
290 case evSetVolume: | |
33555 | 291 guiInfo.Volume=param; |
23077 | 292 { |
33555 | 293 float l = guiInfo.Volume * ( ( 100.0 - guiInfo.Balance ) / 50.0 ); |
294 float r = guiInfo.Volume * ( ( guiInfo.Balance ) / 50.0 ); | |
35545 | 295 mixer_setvolume( mixer,FFMIN(l,guiInfo.Volume),FFMIN(r,guiInfo.Volume) ); |
23077 | 296 } |
297 if ( osd_level ) | |
298 { | |
299 osd_visible=(GetTimerMS() + 1000) | 1; | |
300 vo_osd_progbar_type=OSD_VOLUME; | |
33555 | 301 vo_osd_progbar_value=( ( guiInfo.Volume ) * 256.0 ) / 100.0; |
23077 | 302 vo_osd_changed( OSDTYPE_PROGBAR ); |
303 } | |
304 break; | |
305 | |
35539 | 306 case evSetBalance: |
307 guiInfo.Balance=param; | |
35544 | 308 mixer_setbalance( mixer,(guiInfo.Balance - 50.0 ) / 50.0 ); // transform 0..100 to -1..1 |
35543 | 309 osd = osd_level; |
310 osd_level = 0; | |
311 uiEventHandling(evSetVolume, guiInfo.Volume); | |
312 osd_level = osd; | |
35539 | 313 if ( osd_level ) |
314 { | |
315 osd_visible=(GetTimerMS() + 1000) | 1; | |
316 vo_osd_progbar_type=OSD_BALANCE; | |
317 vo_osd_progbar_value=( ( guiInfo.Balance ) * 256.0 ) / 100.0; | |
318 vo_osd_changed( OSDTYPE_PROGBAR ); | |
319 } | |
320 break; | |
23077 | 321 |
34458 | 322 case evMenu: |
34473 | 323 /*if (guiApp.menuIsPresent) NOTE TO MYSELF: Uncomment only after mouse |
324 { pointer and cursor keys work | |
325 gtkShow( ivHidePopUpMenu,NULL ); with this menu from skin as | |
326 uiShowMenu( 0,0 ); they do with normal menus. | |
34458 | 327 } |
328 else*/ gtkShow( ivShowPopUpMenu,NULL ); | |
329 break; | |
330 | |
23077 | 331 case evIconify: |
332 switch ( iparam ) | |
333 { | |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
334 case 0: wsWindowIconify( &guiApp.mainWindow ); break; |
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
335 case 1: wsWindowIconify( &guiApp.videoWindow ); break; |
23077 | 336 } |
337 break; | |
338 case evHalfSize: | |
33947 | 339 if ( guiInfo.VideoWindow && guiInfo.Playing ) |
23077 | 340 { |
34697 | 341 if ( guiApp.videoWindow.isFullScreen ) |
23077 | 342 { |
33555 | 343 uiFullScreen(); |
23077 | 344 } |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
345 wsWindowResize( &guiApp.videoWindow, guiInfo.VideoWidth / 2, guiInfo.VideoHeight / 2 ); |
33950 | 346 btnSet( evFullScreen,btnReleased ); |
23077 | 347 } |
348 break; | |
349 case evDoubleSize: | |
33947 | 350 if ( guiInfo.VideoWindow && guiInfo.Playing ) |
23077 | 351 { |
34697 | 352 if ( guiApp.videoWindow.isFullScreen ) |
23077 | 353 { |
33555 | 354 uiFullScreen(); |
23077 | 355 } |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
356 wsWindowResize( &guiApp.videoWindow, guiInfo.VideoWidth * 2, guiInfo.VideoHeight * 2 ); |
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
357 wsWindowMoveWithin( &guiApp.videoWindow, False, guiApp.video.x, guiApp.video.y ); |
33950 | 358 btnSet( evFullScreen,btnReleased ); |
23077 | 359 } |
360 break; | |
361 case evNormalSize: | |
33947 | 362 if ( guiInfo.VideoWindow && guiInfo.Playing ) |
23077 | 363 { |
34697 | 364 if ( guiApp.videoWindow.isFullScreen ) |
23077 | 365 { |
33555 | 366 uiFullScreen(); |
23077 | 367 } |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
368 wsWindowResize( &guiApp.videoWindow, guiInfo.VideoWidth, guiInfo.VideoHeight ); |
33947 | 369 btnSet( evFullScreen,btnReleased ); |
23077 | 370 break; |
34697 | 371 } else if ( !guiApp.videoWindow.isFullScreen ) break; |
23077 | 372 case evFullScreen: |
35611
a4741058bb40
Reset video window after STOP (MP command or evStop) has been pressed.
ib
parents:
35605
diff
changeset
|
373 if ( guiInfo.VideoWindow && ( guiInfo.Playing || !iparam ) ) |
33947 | 374 { |
33950 | 375 uiFullScreen(); |
34697 | 376 if ( !guiApp.videoWindow.isFullScreen ) |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
377 wsWindowResize( &guiApp.videoWindow, iparam ? guiInfo.VideoWidth : guiApp.video.width, iparam ? guiInfo.VideoHeight : guiApp.video.height ); |
33947 | 378 } |
34697 | 379 if ( guiApp.videoWindow.isFullScreen ) btnSet( evFullScreen,btnPressed ); |
23077 | 380 else btnSet( evFullScreen,btnReleased ); |
381 break; | |
382 | |
383 case evSetAspect: | |
384 switch ( iparam ) | |
385 { | |
386 case 2: movie_aspect=16.0f / 9.0f; break; | |
387 case 3: movie_aspect=4.0f / 3.0f; break; | |
388 case 4: movie_aspect=2.35; break; | |
389 case 1: | |
390 default: movie_aspect=-1; | |
391 } | |
34456 | 392 if ( guiInfo.StreamType == STREAMTYPE_VCD ) uiEventHandling( evPlayVCD, 0 ); |
393 else if ( guiInfo.StreamType == STREAMTYPE_DVD ) uiEventHandling( ivPlayDVD, 0 ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
394 else |
33890 | 395 guiInfo.NewPlay=GUI_FILE_NEW; |
23077 | 396 break; |
397 | |
34684 | 398 /* timer events */ |
34333 | 399 case ivRedraw: |
23077 | 400 { |
401 unsigned now = GetTimerMS(); | |
402 if ((now > last_redraw_time) && | |
403 (now < last_redraw_time + GUI_REDRAW_WAIT) && | |
34035 | 404 !uiPlaybarFade && (iparam == 0)) |
23077 | 405 break; |
406 last_redraw_time = now; | |
407 } | |
35493 | 408 uiMainRender=True; |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
409 wsWindowRedraw( &guiApp.mainWindow ); |
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
410 wsWindowRedraw( &guiApp.playbarWindow ); |
23077 | 411 break; |
34684 | 412 /* system events */ |
23077 | 413 case evNone: |
34416 | 414 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] uiEventHandling: evNone\n" ); |
23077 | 415 break; |
416 default: | |
34416 | 417 mp_msg( MSGT_GPLAYER,MSGL_DBG2,"[main] uiEventHandling: unknown event %d, param %.2f\n", msg, param ); |
23077 | 418 break; |
419 } | |
420 } | |
421 | |
33555 | 422 void uiMainMouseHandle( int Button,int X,int Y,int RX,int RY ) |
23077 | 423 { |
424 static int itemtype = 0; | |
425 int i; | |
35688 | 426 guiItem * item = NULL; |
23077 | 427 float value = 0.0f; |
428 | |
429 static int SelectedItem = -1; | |
430 int currentselected = -1; | |
431 | |
33555 | 432 for ( i=0;i <= guiApp.IndexOfMainItems;i++ ) |
433 if ( ( guiApp.mainItems[i].pressed != btnDisabled )&& | |
35675 | 434 ( isInside( X,Y,guiApp.mainItems[i].x,guiApp.mainItems[i].y,guiApp.mainItems[i].x+guiApp.mainItems[i].width,guiApp.mainItems[i].y+guiApp.mainItems[i].height ) ) ) |
23077 | 435 { currentselected=i; break; } |
436 | |
437 switch ( Button ) | |
438 { | |
439 case wsPMMouseButton: | |
34333 | 440 gtkShow( ivHidePopUpMenu,NULL ); |
33555 | 441 uiShowMenu( RX,RY ); |
23077 | 442 itemtype=itPRMButton; |
443 break; | |
444 case wsRMMouseButton: | |
33555 | 445 uiHideMenu( RX,RY,0 ); |
23077 | 446 break; |
447 | |
448 case wsPLMouseButton: | |
34333 | 449 gtkShow( ivHidePopUpMenu,NULL ); |
35493 | 450 sx=X; sy=Y; boxMoved=True; itemtype=itPLMButton; |
23077 | 451 SelectedItem=currentselected; |
452 if ( SelectedItem == -1 ) break; | |
35493 | 453 boxMoved=False; |
33555 | 454 item=&guiApp.mainItems[SelectedItem]; |
23077 | 455 itemtype=item->type; |
456 item->pressed=btnPressed; | |
457 switch( item->type ) | |
458 { | |
459 case itButton: | |
460 if ( ( SelectedItem > -1 ) && | |
32911 | 461 ( ( ( item->message == evPlaySwitchToPause && item->message == evPauseSwitchToPlay ) ) || |
462 ( ( item->message == evPauseSwitchToPlay && item->message == evPlaySwitchToPause ) ) ) ) | |
23077 | 463 { item->pressed=btnDisabled; } |
464 break; | |
465 } | |
466 break; | |
467 case wsRLMouseButton: | |
35493 | 468 boxMoved=False; |
33107 | 469 if ( SelectedItem != -1 ) // NOTE TO MYSELF: only if itButton, itHPotmeter or itVPotmeter |
470 { | |
33555 | 471 item=&guiApp.mainItems[SelectedItem]; |
33108 | 472 item->pressed=btnReleased; |
33107 | 473 } |
35351 | 474 if ( currentselected == - 1 || SelectedItem == -1 ) { itemtype=0; break; } |
23077 | 475 SelectedItem=-1; |
476 value=0; | |
477 switch( itemtype ) | |
478 { | |
479 case itPotmeter: | |
480 case itHPotmeter: | |
32911 | 481 btnModify( item->message,(float)( X - item->x ) / item->width * 100.0f ); |
33555 | 482 uiEventHandling( item->message,item->value ); |
23077 | 483 value=item->value; |
484 break; | |
485 case itVPotmeter: | |
32911 | 486 btnModify( item->message, ( 1. - (float)( Y - item->y ) / item->height) * 100.0f ); |
33555 | 487 uiEventHandling( item->message,item->value ); |
23077 | 488 value=item->value; |
489 break; | |
490 } | |
33555 | 491 uiEventHandling( item->message,value ); |
23077 | 492 itemtype=0; |
493 break; | |
494 | |
495 case wsRRMouseButton: | |
34333 | 496 gtkShow( ivShowPopUpMenu,NULL ); |
23077 | 497 break; |
498 | |
34684 | 499 /* rolled mouse ... de szar :))) */ |
23077 | 500 case wsP5MouseButton: value=-2.5f; goto rollerhandled; |
501 case wsP4MouseButton: value= 2.5f; | |
502 rollerhandled: | |
35365 | 503 if (currentselected != - 1) |
504 { | |
35366 | 505 item=&guiApp.mainItems[currentselected]; |
506 if ( ( item->type == itHPotmeter )||( item->type == itVPotmeter )||( item->type == itPotmeter ) ) | |
507 { | |
508 item->value+=value; | |
509 btnModify( item->message,item->value ); | |
510 uiEventHandling( item->message,item->value ); | |
511 } | |
35365 | 512 } |
23077 | 513 break; |
514 | |
34684 | 515 /* moving */ |
23077 | 516 case wsMoveMouse: |
33555 | 517 item=&guiApp.mainItems[SelectedItem]; |
23077 | 518 switch ( itemtype ) |
519 { | |
520 case itPLMButton: | |
35681
80c5c89f77d6
Cosmetic: Rename ws functions for the sake of consistency.
ib
parents:
35675
diff
changeset
|
521 wsWindowMove( &guiApp.mainWindow,True,RX - abs( sx ),RY - abs( sy ) ); |
23077 | 522 break; |
523 case itPRMButton: | |
34472 | 524 uiMenuMouseHandle( RX,RY ); |
23077 | 525 break; |
526 case itPotmeter: | |
527 item->value=(float)( X - item->x ) / item->width * 100.0f; | |
528 goto potihandled; | |
529 case itVPotmeter: | |
530 item->value=(1. - (float)( Y - item->y ) / item->height) * 100.0f; | |
531 goto potihandled; | |
532 case itHPotmeter: | |
533 item->value=(float)( X - item->x ) / item->width * 100.0f; | |
534 potihandled: | |
535 if ( item->value > 100.0f ) item->value=100.0f; | |
536 if ( item->value < 0.0f ) item->value=0.0f; | |
33555 | 537 uiEventHandling( item->message,item->value ); |
23077 | 538 break; |
539 } | |
540 break; | |
541 } | |
542 } | |
543 | |
33555 | 544 void uiMainKeyHandle( int KeyCode,int Type,int Key ) |
23077 | 545 { |
546 int msg = evNone; | |
547 | |
548 if ( Type != wsKeyPressed ) return; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
549 |
23077 | 550 if ( !Key ) |
551 { | |
552 switch ( KeyCode ) | |
553 { | |
33524 | 554 // NOTE TO MYSELF: This is only for the Acer AirKey V keyboard. |
33536
fc1402410163
Remove support for Acer AirKey V keyboard multimedia keys.
ib
parents:
33535
diff
changeset
|
555 /*case wsXFMMPrev: msg=evPrev; break; |
23077 | 556 case wsXFMMStop: msg=evStop; break; |
557 case wsXFMMPlay: msg=evPlaySwitchToPause; break; | |
558 case wsXFMMNext: msg=evNext; break; | |
559 case wsXFMMVolUp: msg=evIncVolume; break; | |
560 case wsXFMMVolDown: msg=evDecVolume; break; | |
33536
fc1402410163
Remove support for Acer AirKey V keyboard multimedia keys.
ib
parents:
33535
diff
changeset
|
561 case wsXFMMMute: msg=evMute; break;*/ |
23077 | 562 } |
563 } | |
564 else | |
565 { | |
566 switch ( Key ) | |
567 { | |
568 case wsEnter: msg=evPlay; break; | |
569 case wsXF86LowerVolume: msg=evDecVolume; break; | |
570 case wsXF86RaiseVolume: msg=evIncVolume; break; | |
571 case wsXF86Mute: msg=evMute; break; | |
33525 | 572 case wsXF86Pause: |
23077 | 573 case wsXF86Play: msg=evPlaySwitchToPause; break; |
574 case wsXF86Stop: msg=evStop; break; | |
575 case wsXF86Prev: msg=evPrev; break; | |
576 case wsXF86Next: msg=evNext; break; | |
577 case wsXF86Media: msg=evLoad; break; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
578 case wsEscape: |
34697 | 579 if ( guiInfo.VideoWindow && guiInfo.Playing && guiApp.videoWindow.isFullScreen ) |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
580 { |
33555 | 581 uiEventHandling( evNormalSize,0 ); |
23077 | 582 return; |
583 } | |
584 default: vo_x11_putkey( Key ); return; | |
585 } | |
586 } | |
33555 | 587 if ( msg != evNone ) uiEventHandling( msg,0 ); |
23077 | 588 } |
589 | |
35759 | 590 /* this will be used to handle drag & drop files */ |
591 void uiDNDHandler(int num,char** files) | |
23077 | 592 { |
593 struct stat buf; | |
594 int f = 0; | |
595 | |
596 char* subtitles = NULL; | |
35521 | 597 char* file = NULL; |
35384 | 598 char* s; |
23077 | 599 |
600 if (num <= 0) | |
601 return; | |
602 | |
603 | |
604 /* now fill it with new items */ | |
605 for(f=0; f < num; f++){ | |
606 char* str = strdup( files[f] ); | |
607 plItem* item; | |
608 | |
24086
f5b32d12b691
remove gconvert_uri_to_filename() and use url_unescape_string() instead.
iive
parents:
23457
diff
changeset
|
609 url_unescape_string(str, files[f]); |
23077 | 610 |
611 if(stat(str,&buf) == 0 && S_ISDIR(buf.st_mode) == 0) { | |
612 /* this is not a directory so try to play it */ | |
613 mp_msg( MSGT_GPLAYER,MSGL_V,"Received D&D %s\n",str ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
614 |
23077 | 615 /* check if it is a subtitle file */ |
616 { | |
617 char* ext = strrchr(str,'.'); | |
618 if (ext) { | |
619 static char supported[] = "utf/sub/srt/smi/rt//txt/ssa/aqt/"; | |
620 char* type; | |
621 int len; | |
622 if((len=strlen(++ext)) && (type=strstr(supported,ext)) &&\ | |
623 (type-supported)%4 == 0 && *(type+len) == '/'){ | |
624 /* handle subtitle file */ | |
33739 | 625 nfree(subtitles); |
23077 | 626 subtitles = str; |
627 continue; | |
628 } | |
629 } | |
630 } | |
631 | |
632 /* clear playlist */ | |
35521 | 633 if (file == NULL) { |
634 file = files[f]; | |
34663 | 635 listMgr(PLAYLIST_DELETE,0); |
23077 | 636 } |
637 | |
638 item = calloc(1,sizeof(plItem)); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
639 |
35384 | 640 s = strrchr( str,'/' ); |
641 | |
23077 | 642 /* FIXME: decompose file name ? */ |
643 /* yes -- Pontscho */ | |
35384 | 644 if ( s ) { |
645 *s=0; s++; | |
23077 | 646 item->name = gstrdup( s ); |
647 item->path = gstrdup( str ); | |
648 } else { | |
35385 | 649 // NOTE TO MYSELF: this shouldn't happen, make sure we have a full path |
23077 | 650 item->name = strdup(str); |
35385 | 651 item->path = strdup("."); |
23077 | 652 } |
34681 | 653 listMgr(PLAYLIST_ITEM_APPEND,item); |
23077 | 654 } else { |
655 mp_msg( MSGT_GPLAYER,MSGL_WARN,MSGTR_NotAFile,str ); | |
656 } | |
657 free( str ); | |
658 } | |
659 | |
35521 | 660 if (file) { |
661 uiSetFile( NULL,file,STREAMTYPE_FILE ); | |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
662 if ( guiInfo.Playing == GUI_PLAY ) uiEventHandling( evStop,0 ); |
33555 | 663 uiEventHandling( evPlay,0 ); |
23077 | 664 } |
665 if (subtitles) { | |
33897 | 666 nfree(guiInfo.SubtitleFilename); |
667 guiInfo.SubtitleFilename = subtitles; | |
668 mplayerLoadSubtitle(guiInfo.SubtitleFilename); | |
23077 | 669 } |
670 } |