blob: c682d9d656003d3e712e96984459fb1e11a8e815 (
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
|
#pragma once
#include <AK/AKString.h>
#include <SharedGraphics/GraphicsBitmap.h>
class GVariant {
public:
GVariant();
GVariant(bool);
GVariant(float);
GVariant(int);
GVariant(const String&);
GVariant(const GraphicsBitmap&);
~GVariant();
enum class Type {
Invalid,
Bool,
Int,
Float,
String,
Bitmap,
};
bool is_valid() const { return m_type != Type::Invalid; }
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;
}
String to_string() const;
private:
union {
StringImpl* as_string;
GraphicsBitmap* as_bitmap;
bool as_bool;
int as_int;
float as_float;
} m_value;
Type m_type { Type::Invalid };
};
|