aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/propertyeditor/designerpropertymap.cpp
blob: 444c614c5247d0a4c95fc7755ccfef5e6e94ca93 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "designerpropertymap.h"

namespace QmlDesigner {

DesignerPropertyMap::DesignerPropertyMap(QObject *parent) : QQmlPropertyMap(parent)
{
}

QVariant DesignerPropertyMap::value(const QString &key) const
{
    if (contains(key))
        return QQmlPropertyMap::value(key);
    return QVariant();
}

void DesignerPropertyMap::registerDeclarativeType(const QString &name)
{
    qmlRegisterType<DesignerPropertyMap>("Bauhaus",1,0,name.toUtf8());
}

} //QmlDesigner