aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui_menu.hpp
blob: 9a51739bfccb4a1adc3f5342da7ea49861334bbf (plain)
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
61
62
63
#ifndef UI_MENU_H_
#define UI_MENU_H_

#include <common.hpp>
#include <config.hpp>

typedef void (*menuFunc)(void);

struct menuItem {
	int member;
	union {
		struct {
			vec2 loc;
			dim2 dim;
			Color color;
            
			const char *text;
			menuFunc func;
		} button;
		struct {
			vec2 loc;
			dim2 dim;
			Color color;
            
			float minValue;
			float maxValue;
            float sliderLoc;
            
			const char *text;
			float *var;
		} slider;
	};
};

class Menu {
public:
	std::vector<menuItem> items;
	Menu *child, *parent;
    
	~Menu() {
        // TODO you CANNOT delete null pointers!
		/*child = NULL;
		parent = NULL;
		delete child;
		delete parent;*/
	}

	void gotoChild(void);
	void gotoParent(void);
};

namespace ui {
    namespace menu {
        menuItem createButton(vec2 l, dim2 d, Color c, const char* t, menuFunc f);
        menuItem createChildButton(vec2 l, dim2 d, Color c, const char* t);
        menuItem createParentButton(vec2 l, dim2 d, Color c, const char* t);
        menuItem createSlider(vec2 l, dim2 d, Color c, float min, float max, const char* t, float* v);
        
        void draw( void );
    }
}

#endif // UI_MENU_H_