summaryrefslogtreecommitdiff
path: root/src/ncur/menu.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
commitc8b2ef7b899766d04562f7e04a84251cea8fa701 (patch)
tree52816b17c17e2db0cf89e68537ad1a52392f1510 /src/ncur/menu.h
parentca28c0e618890330d429c0dc12429255b20f0c90 (diff)
tagging ychat-0.8.0ychat-0.8.0
Diffstat (limited to 'src/ncur/menu.h')
-rwxr-xr-xsrc/ncur/menu.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/ncur/menu.h b/src/ncur/menu.h
index d931be3..af7dbe9 100755
--- a/src/ncur/menu.h
+++ b/src/ncur/menu.h
@@ -12,27 +12,27 @@ using namespace std;
class menu
{
private:
- char **choices;
- char *c_header;
+ char **choices;
+ char *c_header;
- int i_startx, i_starty, i_width, i_height, i_highlight, i_choice,
- i_numchoices, c;
+ int i_startx, i_starty, i_width, i_height, i_highlight, i_choice,
+ i_numchoices, c;
- WINDOW *win;
+ WINDOW *win;
- void initialize( const chtype ch );
+ void initialize( const chtype ch );
public:
- explicit menu( int i_startx, int i_starty, int i_width, int i_height, char *c_header, char **choices, int i_numchoices, const chtype ch );
- ~menu( );
+ explicit menu( int i_startx, int i_starty, int i_width, int i_height, char *c_header, char **choices, int i_numchoices, const chtype ch );
+ ~menu( );
- void display();
- void start( void (*swich_case_menu_action)(int) );
+ void display();
+ void start( void (*swich_case_menu_action)(int) );
- void activate_menu_win()
- {
- keypad(win, 1);
- }
+ void activate_menu_win()
+ {
+ keypad(win, 1);
+ }
};
#endif