Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: ed15223215f186353c7a4ee14a4b2041450f73d5 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
   ui/menu.cc
   This file is part of the Osirion project and is distributed under
   the terms of the GNU General Public License version 2
*/

#include "client/buttonmenu.h"

#include "filesystem/filesystem.h"
#include "ui/ui.h"

namespace client
{

ButtonMenu::ButtonMenu(ui::Widget *parent, const char *label) : ui::Window(parent)
{
	set_label(label);
	set_border(false);
	set_background(false);

	buttonmenu_container = new ui::Window(this);

	hide();
}

ButtonMenu::~ButtonMenu()
{
}


ui::Label *ButtonMenu::add_label(char const * text)
{
	ui::Label *label = new ui::Label(buttonmenu_container, text);
	label->set_alignment(ui::AlignCenter);
	label->set_border(false);
	label->set_font(ui::root()->font_large());
	return label;
}

ui::Button *ButtonMenu::add_button(char const *text, char const *command)
{
	return new ui::Button(buttonmenu_container, text, command);
}

void ButtonMenu::resize()
{
	// resize container widget
	buttonmenu_container->set_geometry(0, 0, ui::UI::elementsize.width() * 1.5f, height());
		
	// reposition all children within the container
	const float x = ui::UI::elementsize.width() * 0.25f;
	float y = ui::UI::elementsize.height() * 0.5f;

	for (Children::iterator it = buttonmenu_container->children().begin(); it != buttonmenu_container->children().end(); it++) {
		Widget *w = (*it);
		
		w->set_size(ui::UI::elementsize);
		w->set_location(x, y);
		
		y += ui::UI::elementsize.height() + ui::UI::elementmargin;
	}

}

void ButtonMenu::clear()
{
	remove_child(buttonmenu_container);
	
	buttonmenu_container = new ui::Window(this);
	
}

bool ButtonMenu::on_keypress(const int key, const unsigned int modifier)
{
	switch (key) {

		case SDLK_ESCAPE:
			// close window on ESC
			if (visible()) {
				this->hide();
				return true;
			}
			break;

		default:
			break;
	}

	return Window::on_keypress(key, modifier);
}

}