1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// sub window
#include <inttypes.h>
#include "../config.h"
#include "../libvo/x11_common.h"
#include "../libvo/fastmemcpy.h"
#include "app.h"
#include "interface.h"
#include "../help_mp.h"
#include "widgets.h"
int mplSubRender = 0;
int SubVisible = 0;
extern int boxMoved;
extern int sx,sy;
extern int i,pot;
void mplSubDraw( void )
{
if ( appMPlayer.subWindow.State == wsWindowClosed ) exit_player( MSGTR_Exit_quit );
if ( appMPlayer.subWindow.State == wsWindowFocusIn ) SubVisible++;
if ( appMPlayer.subWindow.State == wsWindowFocusOut && metacity_hack != 3 ) SubVisible--;
if ( !appMPlayer.subWindow.Mapped ||
appMPlayer.subWindow.Visible == wsWindowNotVisible ) return;
if ( guiIntfStruct.Playing ) mplSubRender=0;
if ( mplSubRender && appMPlayer.subWindow.State == wsWindowExpose )
{
if ( appMPlayer.sub.Bitmap.Image ) wsPutImage( &appMPlayer.subWindow );
}
appMPlayer.subWindow.State=0;
}
void mplSubMouseHandle( int Button,int X,int Y,int RX,int RY )
{
static int mplSubMoved = 0;
static int msButton = 0;
mplPBShow( X,Y );
switch( Button )
{
case wsRRMouseButton:
gtkShow( evShowPopUpMenu,NULL );
break;
case wsPMMouseButton:
gtkShow( evHidePopUpMenu,NULL );
mplShowMenu( RX,RY );
msButton=wsPMMouseButton;
break;
case wsRMMouseButton:
mplHideMenu( RX,RY,1 );
msButton=0;
break;
// ---
case wsPLMouseButton:
gtkShow( evHidePopUpMenu,NULL );
sx=X; sy=Y;
msButton=wsPLMouseButton;
mplSubMoved=0;
break;
case wsMoveMouse:
switch ( msButton )
{
case wsPLMouseButton:
mplSubMoved=1;
if ( !appMPlayer.subWindow.isFullScreen ) wsMoveWindow( &appMPlayer.subWindow,False,RX - sx,RY - sy );
break;
case wsPMMouseButton:
mplMenuMouseHandle( X,Y,RX,RY );
break;
default: mplPBShow( X,Y ); break;
}
break;
case wsRLMouseButton:
if ( ( !mplSubMoved )&&( appMPlayer.subWindow.isFullScreen ) )
{
if( SubVisible++%2 ) wsMoveTopWindow( wsDisplay,appMPlayer.mainWindow.WindowID );
else wsMoveTopWindow( wsDisplay,appMPlayer.subWindow.WindowID );
}
msButton=0;
mplSubMoved=0;
break;
}
}
|