Mercurial > mplayer.hg
annotate gui/ui/gmplayer.h @ 35527:b89f8ab15c5e
Rebuild GUI directory structure.
Remove obsolete directory ui/gtk/.
author | ib |
---|---|
date | Thu, 06 Dec 2012 14:32:33 +0000 |
parents | a25b8f9d44e0 |
children |
rev | line source |
---|---|
26458 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
18 | |
26029 | 19 #ifndef MPLAYER_GUI_GMPLAYER_H |
20 #define MPLAYER_GUI_GMPLAYER_H | |
23077 | 21 |
34697 | 22 extern int uiVideoRender; |
33555 | 23 extern int uiMainRender; |
23077 | 24 |
33555 | 25 extern unsigned char * mainDrawBuffer; |
26 extern unsigned char * menuDrawBuffer; | |
23077 | 27 extern int mainVisible; |
28 | |
33555 | 29 extern int uiMainAutoPlay; |
30 extern int uiPlaybarFade; | |
23077 | 31 |
32065
319ae9dc51a2
Move sx/sy extern variable declaration to gmplayer.h, which is better suited.
diego
parents:
32041
diff
changeset
|
32 extern int sx, sy; |
319ae9dc51a2
Move sx/sy extern variable declaration to gmplayer.h, which is better suited.
diego
parents:
32041
diff
changeset
|
33 |
33555 | 34 void uiInit( void * disp ); |
23077 | 35 |
33555 | 36 void uiMainDraw( void ); |
37 void uiEventHandling( int msg, float param ); | |
38 void uiMainMouseHandle( int Button, int X, int Y, int RX, int RY ); | |
39 void uiMainKeyHandle( int KeyCode, int Type, int Key ); | |
40 void uiDandDHandler(int num, char** files); | |
23077 | 41 |
34697 | 42 void uiVideoDraw( void ); |
43 void uiVideoMouseHandle( int Button, int X, int Y, int RX, int RY ); | |
23077 | 44 |
33555 | 45 void uiMenuInit( void ); |
46 void uiHideMenu( int mx, int my, int w ); | |
47 void uiShowMenu( int mx, int my ); | |
34472 | 48 void uiMenuMouseHandle( int RX, int RY ); |
23077 | 49 |
33555 | 50 void uiPlaybarInit( void ); |
34471 | 51 void uiPlaybarShow( int y ); |
23077 | 52 |
26029 | 53 #endif /* MPLAYER_GUI_GMPLAYER_H */ |