Mercurial > mplayer.hg
annotate gui/ui/ui.h @ 37076:60835d705f76
Cosmetic: Adjust indent.
author | ib |
---|---|
date | Thu, 24 Apr 2014 13:20:58 +0000 |
parents | 84c93a60ead3 |
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 | |
35528 | 19 #ifndef MPLAYER_GUI_UI_H |
20 #define MPLAYER_GUI_UI_H | |
23077 | 21 |
37053 | 22 /// End stops of a rotary potentiometer (::itRPotmeter) |
23 enum | |
24 { | |
25 NOT_STOPPED, | |
26 STOPPED_AT_0, | |
27 STOPPED_AT_100 | |
28 }; | |
29 | |
33555 | 30 extern unsigned char * menuDrawBuffer; |
23077 | 31 extern int mainVisible; |
32 | |
35771 | 33 extern int uiMainRender; |
33555 | 34 extern int uiPlaybarFade; |
23077 | 35 |
32065
319ae9dc51a2
Move sx/sy extern variable declaration to gmplayer.h, which is better suited.
diego
parents:
32041
diff
changeset
|
36 extern int sx, sy; |
319ae9dc51a2
Move sx/sy extern variable declaration to gmplayer.h, which is better suited.
diego
parents:
32041
diff
changeset
|
37 |
35780 | 38 void uiMainInit( void ); |
35796
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35795
diff
changeset
|
39 void uiMainDone( void ); |
23077 | 40 |
35780 | 41 void uiVideoInit( void ); |
35796
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35795
diff
changeset
|
42 void uiVideoDone( void ); |
23077 | 43 |
33555 | 44 void uiMenuInit( void ); |
35796
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35795
diff
changeset
|
45 void uiMenuDone( void ); |
35766
16ed8155439b
Rename uiShowMenu() uiMenuShow() and uiHideMenu() uiMenuHide().
ib
parents:
35763
diff
changeset
|
46 void uiMenuHide( int mx, int my, int w ); |
16ed8155439b
Rename uiShowMenu() uiMenuShow() and uiHideMenu() uiMenuHide().
ib
parents:
35763
diff
changeset
|
47 void uiMenuShow( int mx, int my ); |
23077 | 48 |
33555 | 49 void uiPlaybarInit( void ); |
35796
497a1c45a597
Add uiMainDone(), uiVideoDone(), uiPlaybarDone() and uiMenuDone().
ib
parents:
35795
diff
changeset
|
50 void uiPlaybarDone( void ); |
34471 | 51 void uiPlaybarShow( int y ); |
23077 | 52 |
35528 | 53 #endif /* MPLAYER_GUI_UI_H */ |