blob: 3631c6e581e447151a42b079313c86e015d71538 (
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
|
#pragma once
#include <AK/AKString.h>
#include <LibGUI/GIcon.h>
#include <SharedGraphics/GraphicsBitmap.h>
class GVariant {
public:
GVariant();
GVariant(bool);
GVariant(float);
GVariant(int);
GVariant(const String&);
GVariant(const GraphicsBitmap&);
GVariant(const GIcon&);
GVariant(Color);
~GVariant();
enum class Type {
Invalid,
Bool,
Int,
Float,
String,
Bitmap,
Color,
Icon,
};
bool is_valid() const { return m_type != Type::Invalid; }
bool is_bool() const { return m_type == Type::Bool; }
bool is_int() const { return m_type == Type::Int; }
bool is_float() const { return m_type == Type::Float; }
bool is_string() const { return m_type == Type::String; }
bool is_bitmap() const { return m_type == Type::Bitmap; }
bool is_color() const { return m_type == Type::Color; }
bool is_icon() const { return m_type == Type::Icon; }
Type type() const { return m_type; }
bool as_bool() const
{
ASSERT(type() == Type::Bool);
return m_value.as_bool;
}
int as_int() const
{
ASSERT(type() == Type::Int);
return m_value.as_int;
}
float as_float() const
{
ASSERT(type() == Type::Float);
return m_value.as_float;
}
String as_string() const
{
ASSERT(type() == Type::String);
return *m_value.as_string;
}
const GraphicsBitmap& as_bitmap() const
{
ASSERT(type() == Type::Bitmap);
return *m_value.as_bitmap;
}
GIcon as_icon() const
{
ASSERT(type() == Type::Icon);
return GIcon(*m_value.as_icon);
}
Color as_color() const
{
ASSERT(type() == Type::Color);
return Color::from_rgba(m_value.as_color);
}
Color to_color(Color default_value) const
{
if (type() == Type::Color)
return as_color();
return default_value;
}
String to_string() const;
bool operator==(const GVariant&) const;
bool operator<(const GVariant&) const;
private:
union {
StringImpl* as_string;
GraphicsBitmap* as_bitmap;
GIconImpl* as_icon;
bool as_bool;
int as_int;
float as_float;
RGBA32 as_color;
} m_value;
Type m_type { Type::Invalid };
};
|