comparison gui/ui/sub.c @ 33556:520fb0f7544c

Rename GUI directory 'mplayer' and some files in it. The directory 'mplayer' contains the files for the user interface and has thus been renamed 'ui'. Inside this directory the following files have been renamed to better reflect their contents: mw.c -> main.c sw.c -> sub.c pb.c -> playbar.c gui_common.* -> render.* play.* -> actions.*
author ib
date Sat, 18 Jun 2011 16:03:31 +0000
parents gui/mplayer/sw.c@c5a19bbeac2b
children cee9987bc81d
comparison
equal deleted inserted replaced
33555:c5a19bbeac2b 33556:520fb0f7544c
1 /*
2 * sub window
3 *
4 * This file is part of MPlayer.
5 *
6 * MPlayer is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * MPlayer is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #include <string.h>
22
23 #include "config.h"
24 #include "libvo/x11_common.h"
25 #include "help_mp.h"
26 #include "mp_core.h"
27
28 #include "gmplayer.h"
29 #include "gui/app.h"
30 #include "gui/interface.h"
31 #include "widgets.h"
32
33 int uiSubRender = 0;
34 int subVisible = 0;
35
36 void uiSubDraw( void )
37 {
38 if ( guiApp.subWindow.State == wsWindowClosed ) guiExit( EXIT_QUIT );
39
40 if ( guiApp.subWindow.State == wsWindowFocusIn ) subVisible++;
41 if ( guiApp.subWindow.State == wsWindowFocusOut && metacity_hack != 3 ) subVisible--;
42
43 if ( !guiApp.subWindow.Mapped ||
44 guiApp.subWindow.Visible == wsWindowNotVisible ) return;
45
46 if ( guiInfo.Playing ) uiSubRender=0;
47
48 if ( uiSubRender && guiApp.subWindow.State == wsWindowExpose )
49 {
50 if ( guiApp.sub.Bitmap.Image ) wsPutImage( &guiApp.subWindow );
51 }
52 guiApp.subWindow.State=0;
53 }
54
55 void uiSubMouseHandle( int Button,int X,int Y,int RX,int RY )
56 {
57 static int mplSubMoved = 0;
58 static int msButton = 0;
59
60 uiPlaybarShow( X,Y );
61
62 switch( Button )
63 {
64 case wsRRMouseButton:
65 gtkShow( evShowPopUpMenu,NULL );
66 break;
67 case wsPMMouseButton:
68 gtkShow( evHidePopUpMenu,NULL );
69 uiShowMenu( RX,RY );
70 msButton=wsPMMouseButton;
71 break;
72 case wsRMMouseButton:
73 uiHideMenu( RX,RY,1 );
74 msButton=0;
75 break;
76 // ---
77 case wsPLMouseButton:
78 gtkShow( evHidePopUpMenu,NULL );
79 sx=X; sy=Y;
80 msButton=wsPLMouseButton;
81 mplSubMoved=0;
82 break;
83 case wsMoveMouse:
84 switch ( msButton )
85 {
86 case wsPLMouseButton:
87 mplSubMoved=1;
88 if ( !guiApp.subWindow.isFullScreen ) wsMoveWindow( &guiApp.subWindow,False,RX - sx,RY - sy );
89 break;
90 case wsPMMouseButton:
91 uiMenuMouseHandle( X,Y,RX,RY );
92 break;
93 default: uiPlaybarShow( X,Y ); break;
94 }
95 break;
96 case wsRLMouseButton:
97 if ( ( !mplSubMoved )&&( guiApp.subWindow.isFullScreen ) )
98 {
99 if( subVisible++%2 ) wsMoveTopWindow( wsDisplay,guiApp.mainWindow.WindowID );
100 else wsMoveTopWindow( wsDisplay,guiApp.subWindow.WindowID );
101 }
102 msButton=0;
103 mplSubMoved=0;
104 break;
105 }
106 }