-
Notifications
You must be signed in to change notification settings - Fork 0
/
QFontBoundProp.h
102 lines (86 loc) · 1.98 KB
/
QFontBoundProp.h
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
/**
* QFontPropDescriptor.h
* Copyright (c) 2013 ROBLOX Corp. All Rights Reserved.
*/
#pragma once
// Qt Headers
#include <QFont>
// Roblox Headers
#include "reflection/Property.h"
namespace RBX
{
template<>
std::string StringConverter<QFont>::convertToString(const QFont& value)
{
return value.toString().toStdString();
}
template<>
bool StringConverter<QFont>::convertToValue(const std::string& text,QFont& value)
{
return value.fromString(text.c_str());
}
namespace Reflection
{
template<>
const Type& Type::getSingleton<QFont>()
{
static TType<QFont> type("QFont");
return type;
}
template<>
int TypedPropertyDescriptor<QFont>::getDataSize(const DescribedBase* instance) const
{
return sizeof(QDir) + getValue(instance).toString().size();
}
template<>
bool TypedPropertyDescriptor<QFont>::hasStringValue() const
{
return true;
}
template<>
std::string TypedPropertyDescriptor<QFont>::getStringValue(const DescribedBase* instance) const
{
return StringConverter<QFont>::convertToString(getValue(instance));
}
template<>
bool TypedPropertyDescriptor<QFont>::setStringValue(DescribedBase* instance,const std::string& text) const
{
QFont value;
if ( StringConverter<QFont>::convertToValue(text,value) )
{
setValue(instance,value);
return true;
}
else
return false;
}
template<>
void TypedPropertyDescriptor<QFont>::readValue(
DescribedBase* instance,
const XmlElement* element,
IReferenceBinder& binder ) const
{
if (!element->isXsiNil() )
{
std::string text;
if ( element->getValue(text) )
{
QFont value;
value.fromString(text.c_str());
setValue(instance,value);
}
}
}
template<>
void TypedPropertyDescriptor<QFont>::writeValue(const DescribedBase* instance,XmlElement* element) const
{
QFont font = getValue(instance);
element->setValue(font.toString().toStdString());
}
template<>
QFont& Variant::convert<QFont>(void)
{
return genericConvert<QFont>();
}
}
}