Mercurial > mplayer.hg
view Gui/mplayer/sw.h @ 5991:ddfae38afc28
cache lower limit 32kb
author | arpi |
---|---|
date | Sun, 05 May 2002 21:43:16 +0000 |
parents | 60cf2bca993f |
children | b5fb9a927bf3 |
line wrap: on
line source
// sub window int mplSubRender = 1; int SubVisible = 0; void mplSubDraw( wsParamDisplay ) { if ( appMPlayer.subWindow.State == wsWindowClosed ) exit_player( MSGTR_Exit_quit ); if ( appMPlayer.subWindow.State == wsWindowFocusIn ) SubVisible++; if ( !appMPlayer.subWindow.Mapped || appMPlayer.subWindow.Visible == wsWindowNotVisible ) return; if ( guiIntfStruct.Playing ) mplSubRender=0; if ( mplSubRender ) { if ( appMPlayer.sub.Bitmap.Image ) wsPutImage( &appMPlayer.subWindow ); // XFlush( wsDisplay ); } appMPlayer.subWindow.State=0; } void mplSubMouseHandle( int Button,int X,int Y,int RX,int RY ) { static int mplSubMoved = 0; static int msButton = 0; switch( Button ) { case wsPMMouseButton: gtkShow( evShowPopUpMenu,NULL ); break; case wsPRMouseButton: gtkShow( evHidePopUpMenu,NULL ); mplShowMenu( RX,RY ); msButton=wsPRMouseButton; break; case wsRRMouseButton: mplHideMenu( RX,RY,1 ); msButton=0; break; // --- case wsPLMouseButton: if ( appMPlayer.subWindow.isFullScreen ) { if( ++SubVisible%2 ) wsMoveTopWindow( &appMPlayer.mainWindow ); else wsMoveTopWindow( &appMPlayer.subWindow ); mplSubMoved=1; break; } 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 wsPRMouseButton: mplMenuMouseHandle( X,Y,RX,RY ); break; } break; case wsRLMouseButton: if ( !mplSubMoved ) { #if 0 if( SubVisible++%2 ) { wsMoveTopWindow( &appMPlayer.mainWindow ); fprintf( stderr,"[sw] MAIN TOP\n" ); } else { wsMoveTopWindow( &appMPlayer.subWindow ); fprintf( stderr,"[sw] SUB TOP\n" ); } #else if ( appMPlayer.subWindow.Focused == 2 ) { wsMoveTopWindow( &appMPlayer.mainWindow ); fprintf( stderr,"[sw] MAIN TOP\n" ); } else { wsMoveTopWindow( &appMPlayer.subWindow ); fprintf( stderr,"[sw] SUB TOP\n" ); } #endif } msButton=0; mplSubMoved=0; break; } }