annotate Gui/interface.c @ 4963:13262bd21965

small changes
author pontscho
date Wed, 06 Mar 2002 23:54:20 +0000
parents 65730cea02e7
children 923605707de6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4798
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
1
4845
ed5aa118e142 inttypes.h bug fix. 10l
pontscho
parents: 4818
diff changeset
2 #include <inttypes.h>
ed5aa118e142 inttypes.h bug fix. 10l
pontscho
parents: 4818
diff changeset
3 #include <stdlib.h>
ed5aa118e142 inttypes.h bug fix. 10l
pontscho
parents: 4818
diff changeset
4 #include <stdio.h>
4818
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
5 #include <string.h>
4798
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
6
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
7 #include "ws.h"
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
8 #include "mplayer/play.h"
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
9 #include "interface.h"
4818
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
10
4798
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
11 #include "../mplayer.h"
4818
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
12 #include "mplayer/widgets.h"
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
13 #include "mplayer/mplayer.h"
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
14 #include "app.h"
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
15 #include "../libvo/x11_common.h"
4858
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
16 #include "../input/input.h"
4818
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
17
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
18 guiInterface_t guiIntfStruct;
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
19
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
20 void guiInit( int argc,char* argv[], char *envp[] )
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
21 {
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
22 memset( &guiIntfStruct,0,sizeof( guiIntfStruct ) );
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
23 appInit( argc,argv,envp,(void*)mDisplay );
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
24 }
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
25
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
26 void guiDone( void )
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
27 {
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
28 mp_msg( MSGT_GPLAYER,MSGL_V,"[mplayer] exit.\n" );
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
29 mplStop();
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
30 gtkDone();
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
31 wsXDone();
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
32 }
4798
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
33
4858
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
34 int guiCMDArray[] =
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
35 {
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
36 evLoad,
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
37 evLoadSubtitle,
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
38 evAbout,
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
39 evPlay,
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
40 evStop,
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
41 evPlayList,
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
42 evPreferences,
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
43 evFullScreen,
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
44 evSkinBrowser
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
45 };
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
46
4798
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
47 void guiGetEvent( int type,char * arg )
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
48 {
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
49 switch ( type )
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
50 {
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
51 case guiXEvent:
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
52 wsEvents( wsDisplay,(XEvent *)arg,NULL );
4818
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
53 gtkEventHandling();
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
54 break;
4798
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
55 case guiCEvent:
4963
13262bd21965 small changes
pontscho
parents: 4858
diff changeset
56 switch ( (int)arg )
13262bd21965 small changes
pontscho
parents: 4858
diff changeset
57 {
13262bd21965 small changes
pontscho
parents: 4858
diff changeset
58 case guiSetPlay: guiIntfStruct.Playing=1; mplState(); break;
13262bd21965 small changes
pontscho
parents: 4858
diff changeset
59 case guiSetStop: guiIntfStruct.Playing=0; mplState(); break;
13262bd21965 small changes
pontscho
parents: 4858
diff changeset
60 case guiSetPause: guiIntfStruct.Playing=2; mplState(); break;
13262bd21965 small changes
pontscho
parents: 4858
diff changeset
61 }
4818
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
62 break;
4858
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
63 case guiIEvent:
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
64 printf( "cmd: %d\n",(int)arg );
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
65 switch( (int)arg )
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
66 {
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
67 case MP_CMD_QUIT:
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
68 mplEventHandling( evExit,0 );
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
69 break;
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
70 case MP_CMD_VO_FULLSCREEN:
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
71 mplEventHandling( evFullScreen,0 );
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
72 break;
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
73 default:
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
74 mplEventHandling( guiCMDArray[ (int)arg - MP_CMD_GUI_EVENTS - 1 ],0 );
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
75 }
65730cea02e7 add half new input support for gui
pontscho
parents: 4845
diff changeset
76 break;
4798
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
77 }
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
78 }
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
79
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
80 void guiEventHandling( void )
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
81 {
4818
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
82 if ( use_gui && !guiIntfStruct.Playing ) wsHandleEvents();
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
83 gtkEventHandling();
3473ca9ef158 new gui interface, and gtk moved into mplayer process. fork ... bleh :)
pontscho
parents: 4798
diff changeset
84 mplTimerHandler(); // handle GUI timer events
4963
13262bd21965 small changes
pontscho
parents: 4858
diff changeset
85 mplState();
4798
c39affa2b376 new interface ? :)
pontscho
parents:
diff changeset
86 }