Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 575b3d4c9e58779a932554e1199f0f5db87b7965 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
   ui/checkbox.cc
   This file is part of the Osirion project and is distributed under
   the terms of the GNU General Public License version 2
*/

#include "ui/checkbox.h"
#include "ui/paint.h"
#include "math/functions.h"
#include "audio/audio.h"
#include "core/application.h"

namespace ui {
	
Checkbox::Checkbox(Widget *parent, const char *text) : Widget(parent)
{
	set_label("checkbox");
	set_background(false);
	set_border(false);
	if (text)
	{
		_text.assign(text);
	}
}

Checkbox::~Checkbox()
{
}

void Checkbox::set_text(const std::string &text)
{
	_text.assign(text);
}

void Checkbox::set_text(const char *text)
{
	if (text)
	{
		_text.assign(text);
	}
	else
	{
		_text.clear();
	}
}

void Checkbox::set_value(const bool value)
{
	_value = value;
}

void Checkbox::print(const size_t indent) const
{
	std::string marker("");
	con_print << aux::pad_left(marker, indent*2) << label() << " \"" << (value() ? "true" : "false") << "\"" << std::endl;
}

void Checkbox::draw()
{
	const float iconwidth = math::min(width(), height());
	math::Vector2f s(iconwidth, iconwidth);
	math::Vector2f l(global_location());

	math::Color color;
	if (disabled())
	{
		color.assign(palette()->disabled());
	} 
	else if (has_mouse_focus()) 
	{
		color.assign(palette()->highlight());
	} 
	else
	{
		color.assign(palette()->foreground());
	}	

	std::string iconname(value() ? "bitmaps/ui/checkbox_on" : "bitmaps/ui/checkbox_off");
	Paint::draw_bitmap(l, s, color, iconname);
	
	l.get_x() += iconwidth;
	s.get_x() = width() - iconwidth;
	
	Paint::set_color(color);
	Paint::draw_label(l, s, font(), text(), AlignLeft | AlignVCenter);
		
		
// 	if (enabled() && has_mouse_focus()) {
// 		root()->set_pointer("action", Palette::Highlight);
// 	}

}

void Checkbox::draw_border()
{
	if (disabled()) {
		Paint::set_color(palette()->disabled());
	} else if (has_mouse_focus()) {
		math::Color color(palette()->foreground());
		float t = core::application()->time();
		t = t - floorf(t);
		if (t > 0.5)
			t = 1 - t;
		color.a = 0.5f + t;
		Paint::set_color(color);
	} else {
		Paint::set_color(palette()->border());
	}

	Paint::draw_border(global_location(), size());
}

bool Checkbox::on_mousepress(const unsigned int button)
{
	if (button == SDL_BUTTON_LEFT)
	{
		if (enabled())
		{
			audio::play("ui/clicked");
			emit(EventClicked);
			_value = !_value;
		}
		return true;
	}
	return false;
}

void Checkbox::on_mouseover(const math::Vector2f &cursor)
{
	if (enabled()) {
		//audio::play("ui/select");
	}
}

} // namespace ui