TDME2 1.9.121
GUIColor.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
12
13using std::array;
14using std::string;
15using std::vector;
16
21
22/**
23 * GUI color
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28 : public Color4Base
29{
30
31public:
40
41private:
42 STATIC_DLL_IMPEXT static vector<GUIColor*> COLOR_INSTANCES;
43 STATIC_DLL_IMPEXT static vector<string> COLOR_NAMES;
44
45public:
46
47 /**
48 * Public constructor
49 */
50 GUIColor();
51
52 /**
53 * Public constructor
54 * @param color color
55 */
56 GUIColor(const Color4& color);
57
58 /**
59 * Public constructor
60 * @param r red
61 * @param g green
62 * @param b blue
63 * @param a alpha
64 */
65 GUIColor(float r, float g, float b, float a);
66
67 /**
68 * Public constructor
69 * @param color color as float array
70 */
71 GUIColor(const array<float, 4>& color);
72
73 /**
74 * Public constructor
75 * @param colorString color as string
76 * @throws tdme::gui::GUIParserException
77 */
78 GUIColor(const string& colorString);
79};
Color 4 base definition class.
Definition: Color4Base.h:19
Color 4 definition.
Definition: Color4.h:20
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_BLUE
Definition: GUIColor.h:36
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_EFFECT_COLOR_ADD
Definition: GUIColor.h:39
static STATIC_DLL_IMPEXT vector< GUIColor * > COLOR_INSTANCES
Definition: GUIColor.h:42
GUIColor()
Public constructor.
Definition: GUIColor.cpp:53
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_BLACK
Definition: GUIColor.h:33
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_RED
Definition: GUIColor.h:34
static STATIC_DLL_IMPEXT vector< string > COLOR_NAMES
Definition: GUIColor.h:43
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_TRANSPARENT
Definition: GUIColor.h:37
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_WHITE
Definition: GUIColor.h:32
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_EFFECT_COLOR_MUL
Definition: GUIColor.h:38
static STATIC_DLL_IMPEXT GUIColor GUICOLOR_GREEN
Definition: GUIColor.h:35
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11