blob: 612a41e8b624b3df93df0ea9163ddb0583344ea0 (
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "internalvariantproperty.h"
namespace QmlDesigner {
namespace Internal {
InternalVariantProperty::InternalVariantProperty(const PropertyName &name, const InternalNodePointer &node)
: InternalProperty(name, node)
{
}
InternalVariantProperty::Pointer InternalVariantProperty::create(const PropertyName &name, const InternalNodePointer &propertyOwner)
{
auto newPointer(new InternalVariantProperty(name, propertyOwner));
InternalVariantProperty::Pointer smartPointer(newPointer);
newPointer->setInternalWeakPointer(smartPointer);
return smartPointer;
}
QVariant InternalVariantProperty::value() const
{
return m_value;
}
void InternalVariantProperty::setValue(const QVariant &value)
{
m_value = value;
}
bool InternalVariantProperty::isVariantProperty() const
{
return true;
}
void InternalVariantProperty::setDynamicValue(const TypeName &type, const QVariant &value)
{
setValue(value);
setDynamicTypeName(type);
}
bool InternalVariantProperty::isValid() const
{
return InternalProperty::isValid() && isVariantProperty();
}
} // namespace Internal
} // namespace QmlDesigner
|