diff src/gbamenus.h @ 0:c84446dfb3f5

initial add
author paulo@localhost
date Fri, 13 Mar 2009 00:39:12 -0700
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/gbamenus.h	Fri Mar 13 00:39:12 2009 -0700
     1.3 @@ -0,0 +1,26 @@
     1.4 +#ifndef GBAMENUS_H
     1.5 +#define GBAMENUS_H
     1.6 +
     1.7 +void ljmenu_init(void);
     1.8 +void ljmenu_cls(void);
     1.9 +void ljmenu_setTitle(const char *topLeft, const char *topRight);
    1.10 +void ljmenu_freeze(void);
    1.11 +
    1.12 +void ljmenu_drawButton(int l, int t, int r, int b, const char *text);
    1.13 +void ljmenu_hiliteButton(int l, int t, int r, int b, int hilite);
    1.14 +void ljmenu_setHilitePalette(int phase);
    1.15 +
    1.16 +void ljmenu_beginTabs(unsigned int padding);
    1.17 +void ljmenu_addTab(const char *text, int hilite);
    1.18 +void ljmenu_endTabs(void);
    1.19 +
    1.20 +void ljmenu_propPanelClear(unsigned int nRows);
    1.21 +void ljmenu_propPanelDrawRow(const char *name, const char *value,
    1.22 +                             unsigned int y, unsigned int hilite);
    1.23 +void ljmenu_propPanelDrawDesc(const char *text1, const char *text2);
    1.24 +void ljmenu_propPanelDrawHelp(const char *text1, const char *text2);
    1.25 +
    1.26 +
    1.27 +void ljmenuTest(void);
    1.28 +
    1.29 +#endif