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

#ifndef __INCLUDED_UI_PALETTE_H__
#define __INCLUDED_UI_PALETTE_H__

#include "math/color.h"

namespace ui {

class Palette
{

public:
	Palette();
	~Palette();

	void set_foreground(math::Color const &color);

	void set_background(math::Color const &color);

	void set_border(math::Color const &color);

	inline math::Color const &foreground() const { return palette_foreground; }

	inline math::Color const &background() const { return palette_background; }

	inline math::Color const &border() const { return palette_border; }

private:

	math::Color	palette_foreground;
	math::Color	palette_background;
	math::Color	palette_border;
};

}

#endif // __INCLUDED_UI_PALETTE_H__