2001-08-25 21:04:29 +00:00
|
|
|
|
|
|
|
// sub window
|
|
|
|
|
|
|
|
int mplSubRender = 1;
|
2001-09-04 15:21:00 +00:00
|
|
|
int SubVisible = 0;
|
2001-08-31 21:19:52 +00:00
|
|
|
|
2001-08-25 21:04:29 +00:00
|
|
|
void mplSubDraw( wsParamDisplay )
|
|
|
|
{
|
2001-09-04 16:05:25 +00:00
|
|
|
if ( appMPlayer.subWindow.State == wsWindowFocusIn ) SubVisible=0;
|
2001-09-04 15:21:00 +00:00
|
|
|
|
|
|
|
if ( !appMPlayer.subWindow.Mapped ||
|
|
|
|
appMPlayer.subWindow.Visible == wsWindowNotVisible ) return;
|
2001-09-01 17:53:07 +00:00
|
|
|
|
2001-09-04 15:21:00 +00:00
|
|
|
if ( mplShMem->Playing )
|
2001-08-31 11:27:21 +00:00
|
|
|
{
|
2001-09-05 18:17:22 +00:00
|
|
|
// wsSetBackgroundRGB( &appMPlayer.subWindow,0,0,0 );
|
|
|
|
// wsClearWindow( appMPlayer.subWindow );
|
2001-08-31 11:27:21 +00:00
|
|
|
vo_expose=1;
|
2001-08-31 21:19:52 +00:00
|
|
|
mplSubRender=0;
|
2001-08-31 11:27:21 +00:00
|
|
|
}
|
2001-08-25 21:04:29 +00:00
|
|
|
|
|
|
|
if ( mplSubRender )
|
|
|
|
{
|
2001-09-04 15:21:00 +00:00
|
|
|
wsSetBackgroundRGB( &appMPlayer.subWindow,appMPlayer.subR,appMPlayer.subG,appMPlayer.subB );
|
|
|
|
if ( appMPlayer.sub.Bitmap.Image )
|
2001-08-31 11:27:21 +00:00
|
|
|
{
|
|
|
|
wsConvert( &appMPlayer.subWindow,appMPlayer.sub.Bitmap.Image,appMPlayer.sub.Bitmap.ImageSize );
|
|
|
|
wsPutImage( &appMPlayer.subWindow );
|
|
|
|
}
|
2001-08-28 15:55:02 +00:00
|
|
|
XFlush( wsDisplay );
|
2001-08-25 21:04:29 +00:00
|
|
|
}
|
2001-08-31 21:19:52 +00:00
|
|
|
appMPlayer.subWindow.State=0;
|
2001-08-25 21:04:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void mplSubMouseHandle( int Button,int X,int Y,int RX,int RY )
|
|
|
|
{
|
2001-08-31 21:19:52 +00:00
|
|
|
static int mplSubMoved = 0;
|
|
|
|
|
2001-08-25 21:04:29 +00:00
|
|
|
mplMouseTimer=mplMouseTimerConst;
|
|
|
|
wsVisibleMouse( &appMPlayer.subWindow,wsShowMouseCursor );
|
|
|
|
|
|
|
|
switch( Button )
|
|
|
|
{
|
|
|
|
case wsPRMouseButton:
|
|
|
|
mplShowMenu( RX,RY );
|
|
|
|
msButton=wsPRMouseButton;
|
|
|
|
break;
|
|
|
|
case wsRRMouseButton:
|
|
|
|
mplHideMenu( RX,RY );
|
|
|
|
msButton=0;
|
|
|
|
break;
|
2001-08-31 21:19:52 +00:00
|
|
|
// ---
|
2001-08-25 21:04:29 +00:00
|
|
|
case wsPLMouseButton:
|
|
|
|
sx=X; sy=Y;
|
|
|
|
msButton=wsPLMouseButton;
|
|
|
|
mplSubMoved=0;
|
|
|
|
break;
|
|
|
|
case wsMoveMouse:
|
|
|
|
switch ( msButton )
|
|
|
|
{
|
|
|
|
case wsPLMouseButton:
|
|
|
|
mplSubMoved=1;
|
2001-08-30 16:50:03 +00:00
|
|
|
if ( !appMPlayer.subWindow.isFullScreen ) wsMoveWindow( &appMPlayer.subWindow,RX - sx,RY - sy );
|
2001-08-25 21:04:29 +00:00
|
|
|
break;
|
|
|
|
case wsPRMouseButton:
|
|
|
|
mplMenuMouseHandle( X,Y,RX,RY );
|
|
|
|
mplMouseTimer=mplMouseTimerConst;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case wsRLMouseButton:
|
2001-09-04 16:05:25 +00:00
|
|
|
if ( ( !mplSubMoved )&&( ( SubVisible++%2 ) ) ) wsMoveTopWindow( &appMPlayer.mainWindow );
|
2001-08-25 21:04:29 +00:00
|
|
|
msButton=0;
|
|
|
|
mplSubMoved=0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|