Mercurial > hg > index.fcgi > lj > lj046
view src/gbamenus.h @ 0:c84446dfb3f5
initial add
author | paulo@localhost |
---|---|
date | Fri, 13 Mar 2009 00:39:12 -0700 |
parents | |
children |
line source
1 #ifndef GBAMENUS_H
2 #define GBAMENUS_H
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);
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);
13 void ljmenu_beginTabs(unsigned int padding);
14 void ljmenu_addTab(const char *text, int hilite);
15 void ljmenu_endTabs(void);
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);
24 void ljmenuTest(void);
26 #endif