blob: 20d1e937eae43212bbf58efe22deb27399c0fc08 (
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
|
/*
ui/palette.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/palette.h"
#include "sys/sys.h"
namespace ui
{
Palette::Palette()
{
palette_foreground.assign(0.8f, 1.0f);
palette_highlight.assign(1.0f, 1.0f);
palette_background.assign(0.5f, 0.5f);
palette_border.assign(0.0f, 0.8f, 0.0f);
palette_pointer.assign(0.0f, 0.5f, 0.0f);
palette_active.assign(0.0f, 1.0f, 0.0f);
}
Palette::~Palette()
{
}
void Palette::set_foreground(math::Color const &color)
{
palette_foreground.assign(color);
}
void Palette::set_highlight(math::Color const &color)
{
palette_highlight.assign(color);
}
void Palette::set_background(math::Color const &color)
{
palette_background.assign(color);
}
void Palette::set_border(math::Color const &color)
{
palette_border.assign(color);
}
void Palette::set_pointer(math::Color const &color)
{
palette_pointer.assign(color);
}
void Palette::set_active(math::Color const &color)
{
palette_active.assign(color);
}
}
|