-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.h
60 lines (49 loc) · 1.21 KB
/
menu.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
TODO: Review, document, etc.
*/
#ifndef MENU_H
#define MENU_H
#include <ncurses.h>
//#include <stdlib.h>
#include <cstdlib>
#include <vector>
#include <string>
#define ENTER 10
#define ESCAPE 27
using std::vector;
using std::string;
struct dropDownMenu{
string name;
int xStart; // x-coordinate to draw from
vector<string> subItem; // subitems
vector<WINDOW*> window;
// vector of function pointers? TODO
};
class menuHeader{
public:
// constructor
menuHeader(); // end constructor function
~menuHeader();
// member variables
int key;
WINDOW *menubar; // menubar contains subwins?
WINDOW *messagebar;
vector<dropDownMenu> subMenu; // container for dropDownMenus
// member functions
int mod(int a, int b) {
int r = a % b;
return r < 0 ? r + b : r;
}
string getKeys();
string getKeys(int key);
string handleSubMenu(int num);
void setStartCoordinates();
// draws all submenu names in class horizontally across screen
void drawMenuBar();
// recurse over vector of names
int getSubMenuNameLengths(int n, int sum);
void drawSubMenu(int number);
void deleteSubMenu(int number);
string scrollSubMenu(int number);
}; // end menuHeader class
#endif //MENU_H