summaryrefslogtreecommitdiff
path: root/src/ncur/menu.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:42 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:42 +0200
commit42b79aa5c591dde88e78922a519802f948d9ea60 (patch)
tree92cd4e576656837bb99214d8c09c3fec3201474f /src/ncur/menu.h
parent520f54d6219b7c625b4e07463ac393e6982ddab6 (diff)
tagging ychat-0.7.9.4ychat-0.7.9.4
Diffstat (limited to 'src/ncur/menu.h')
-rwxr-xr-xsrc/ncur/menu.h27
1 files changed, 16 insertions, 11 deletions
diff --git a/src/ncur/menu.h b/src/ncur/menu.h
index 7e4fc5b..af7dbe9 100755
--- a/src/ncur/menu.h
+++ b/src/ncur/menu.h
@@ -1,6 +1,7 @@
#include "../incl.h"
#ifdef NCURSES
+
#ifndef MENU_H
#define MENU_H
@@ -11,23 +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