comparison src/gbamenus.h @ 0:c84446dfb3f5

initial add
author paulo@localhost
date Fri, 13 Mar 2009 00:39:12 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6eba1687f840
1 #ifndef GBAMENUS_H
2 #define GBAMENUS_H
3
4 void ljmenu_init(void);
5 void ljmenu_cls(void);
6 void ljmenu_setTitle(const char *topLeft, const char *topRight);
7 void ljmenu_freeze(void);
8
9 void ljmenu_drawButton(int l, int t, int r, int b, const char *text);
10 void ljmenu_hiliteButton(int l, int t, int r, int b, int hilite);
11 void ljmenu_setHilitePalette(int phase);
12
13 void ljmenu_beginTabs(unsigned int padding);
14 void ljmenu_addTab(const char *text, int hilite);
15 void ljmenu_endTabs(void);
16
17 void ljmenu_propPanelClear(unsigned int nRows);
18 void ljmenu_propPanelDrawRow(const char *name, const char *value,
19 unsigned int y, unsigned int hilite);
20 void ljmenu_propPanelDrawDesc(const char *text1, const char *text2);
21 void ljmenu_propPanelDrawHelp(const char *text1, const char *text2);
22
23
24 void ljmenuTest(void);
25
26 #endif