Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: d6384c9731ee180568ece557c1ebdc8eb248ee93 (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
/*
   ui/button.cc
   This file is part of the Osirion project and is distributed under
   the terms of the GNU General Public License version 2
*/

#include "audio/audio.h"
#include "auxiliary/functions.h"
#include "ui/paint.h"
#include "sys/sys.h"
#include "ui/button.h"
#include "core/commandbuffer.h"

namespace ui {

Button::Button (Widget *parent, const char *text, const char *command) : Label(parent, text)
{
	set_label("button");
	set_command(command);
}

Button::~Button()
{
}

void Button::print(size_t indent)
{
	std::string marker("");
	con_print << aux::pad_left(marker, indent*2) << label() << " \"" << text() << "\" \"" << command() << "\"" << std::endl;
}

void Button::set_command(const char *command)
{
	if (command)
		button_command.assign(command);
	else
		button_command.clear();
}

void Button::set_command(std::string const &command)
{
	button_command.assign(command);
}

void Button::draw_border()
{
	if (!border())
		return;

	if (has_focus())
		paint::color(palette()->foreground());
	else
		paint::color(palette()->border());
	paint::border(global_location(), size());
}

void Button::draw_text()
{
	if (!text().size())
		return;

	if (has_focus())
		paint::color(palette()->highlight());
	else
		paint::color(palette()->foreground());

	paint::text_centered(global_location(), size(), text(), font());
}

void Button::keypress(unsigned int key, unsigned int modifier)
{

}

void Button::keyrelease(unsigned int key, unsigned int modifier)
{
	if (key == 512 + SDL_BUTTON_LEFT) {
		core::cmd() << button_command << std::endl;
		audio::play("ui/button");
	}
}

}