summaryrefslogtreecommitdiffstats
path: root/Gui/mplayer/menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'Gui/mplayer/menu.h')
-rw-r--r--Gui/mplayer/menu.h139
1 files changed, 139 insertions, 0 deletions
diff --git a/Gui/mplayer/menu.h b/Gui/mplayer/menu.h
new file mode 100644
index 0000000000..81d776db6b
--- /dev/null
+++ b/Gui/mplayer/menu.h
@@ -0,0 +1,139 @@
+
+unsigned char * mplMenuDrawBuffer = NULL;
+int mplMenuRender = 1;
+int mplMenuItem = -1;
+int mplOldMenuItem = -1;
+int mplMenuX,mplMenuY;
+
+void mplHideMenu( int mx,int my );
+
+void mplMenuDraw( wsParamDisplay )
+{
+ unsigned long * buf = NULL;
+ unsigned long * drw = NULL;
+ unsigned long x,y,tmp;
+
+ if ( !appMPlayer.menuBase.Bitmap.Image ) return;
+ if ( !appMPlayer.menuWindow.Visible ) return;
+
+ if ( mplMenuRender || mplMenuItem != mplOldMenuItem )
+ {
+ memcpy( mplMenuDrawBuffer,appMPlayer.menuBase.Bitmap.Image,appMPlayer.menuBase.Bitmap.ImageSize );
+// ---
+ if ( mplMenuItem != -1 )
+ {
+ buf=(unsigned long *)mplMenuDrawBuffer;
+ drw=(unsigned long *)appMPlayer.menuSelected.Bitmap.Image;
+ for ( y=appMPlayer.MenuItems[ mplMenuItem ].y; y < appMPlayer.MenuItems[ mplMenuItem ].y + appMPlayer.MenuItems[ mplMenuItem ].height; y++ )
+ for ( x=appMPlayer.MenuItems[ mplMenuItem ].x; x < appMPlayer.MenuItems[ mplMenuItem ].x + appMPlayer.MenuItems[ mplMenuItem ].width; x++ )
+ {
+ tmp=drw[ y * appMPlayer.menuSelected.width + x ];
+ if ( tmp != 0x00ff00ff ) buf[ y * appMPlayer.menuBase.width + x ]=tmp;
+ }
+ }
+ mplOldMenuItem=mplMenuItem;
+// ---
+ wsConvert( &appMPlayer.menuWindow,mplMenuDrawBuffer,appMPlayer.menuBase.Bitmap.ImageSize );
+// wsConvert( &appMPlayer.menuWindow,mplMenuDrawBuffer,appMPlayer.menuBase.Bitmap.Height * appMPlayer.menuBase.Bitmap.Width );
+ mplMenuRender=0;
+ }
+ wsPutImage( &appMPlayer.menuWindow );
+}
+
+void mplMenuMouseHandle( int X,int Y,int RX,int RY )
+{
+ int x,y,i;
+
+ if ( !appMPlayer.menuBase.Bitmap.Image ) return;
+
+ mplMenuItem=-1;
+ x=RX - appMPlayer.menuWindow.X;
+ y=RY - appMPlayer.menuWindow.Y;
+ if ( ( x < 0 ) || ( y < 0 ) || ( x > appMPlayer.menuBase.width ) || ( y > appMPlayer.menuBase.height ) )
+ {
+ wsPostRedisplay( &appMPlayer.menuWindow );
+ return;
+ }
+
+ for( i=0;i<appMPlayer.NumberOfMenuItems+1;i++ )
+ {
+ if ( wgIsRect( x,y,
+ appMPlayer.MenuItems[i].x,appMPlayer.MenuItems[i].y,
+ appMPlayer.MenuItems[i].x+appMPlayer.MenuItems[i].width,appMPlayer.MenuItems[i].y+appMPlayer.MenuItems[i].height ) ) mplMenuItem=i;
+ }
+ wsPostRedisplay( &appMPlayer.menuWindow );
+}
+
+void mplShowMenu( int mx,int my )
+{
+ int x,y;
+
+ if ( !appMPlayer.menuBase.Bitmap.Image ) return;
+
+ x=mx;
+ if ( x + appMPlayer.menuWindow.Width > wsMaxX ) x=wsMaxX - appMPlayer.menuWindow.Width - 1;
+ y=my;
+ if ( y + appMPlayer.menuWindow.Height > wsMaxY ) y=wsMaxY - appMPlayer.menuWindow.Height - 1;
+
+ mplMenuX=x; mplMenuY=y;
+
+ mplMenuItem = 0;
+
+ wsMoveWindow( &appMPlayer.menuWindow,x,y );
+ wsVisibleWindow( &appMPlayer.menuWindow,wsShowWindow );
+ wsMoveTopWindow( &appMPlayer.menuWindow );
+}
+
+void mplHideMenu( int mx,int my )
+{
+ int x,y,i=mplMenuItem;
+
+ if ( !appMPlayer.menuBase.Bitmap.Image ) return;
+
+ x=mx-mplMenuX;
+ y=my-mplMenuY;
+
+ wsVisibleWindow( &appMPlayer.menuWindow,wsHideWindow );
+
+ if ( ( x < 0 ) || ( y < 0 ) ) return;
+
+ if ( wgIsRect( x,y,
+ appMPlayer.MenuItems[i].x,appMPlayer.MenuItems[i].y,
+ appMPlayer.MenuItems[i].x+appMPlayer.MenuItems[i].width,
+ appMPlayer.MenuItems[i].y+appMPlayer.MenuItems[i].height ) )
+ {
+ mplMsgHandle( appMPlayer.MenuItems[i].msg,0 );
+ }
+}
+
+void mplMenuInit( void )
+{
+
+ if ( !appMPlayer.menuBase.Bitmap.Image ) return;
+
+ appMPlayer.menuBase.x=0;
+ appMPlayer.menuBase.y=0;
+
+ if ( ( mplMenuDrawBuffer = calloc( 1,appMPlayer.menuBase.Bitmap.ImageSize ) ) == NULL )
+ {
+ #ifdef DEBUG
+ dbprintf( 1,langNEMFMR );
+ #endif
+ gtkMessageBox( langNEMFMR );
+ return;
+ }
+
+ wsCreateWindow( &appMPlayer.menuWindow,
+ appMPlayer.menuBase.x,appMPlayer.menuBase.y,appMPlayer.menuBase.width,appMPlayer.menuBase.height,
+ wsNoBorder,wsShowMouseCursor|wsHandleMouseButton|wsHandleMouseMove,wsHideFrame|wsMaxSize|wsMinSize|wsHideWindow,"MPlayer menu" );
+
+ #ifdef DEBUG
+ dbprintf( 1,"[menu.h] menu: 0x%x\n",(int)appMPlayer.menuWindow.WindowID );
+ #endif
+
+ appMPlayer.menuWindow.ReDraw=mplMenuDraw;
+// appMPlayer.menuWindow.MouseHandler=mplMenuMouseHandle;
+// appMPlayer.menuWindow.KeyHandler=mplMainKeyHandle;
+
+ wsPostRedisplay( &appMPlayer.menuWindow );
+}