diff options
author | Sandro S. Andrade <sandroandrade@kde.org> | 2013-10-09 20:19:34 -0300 |
---|---|---|
committer | Sandro S. Andrade <sandroandrade@kde.org> | 2013-10-10 01:23:16 +0200 |
commit | dc76a0dc87fe7ee0f94e96881990a4e83911fd8e (patch) | |
tree | f5b0731e183ecfe8c8d0a888a966508984d921db /src/uml/qumlvaluespecification.cpp | |
parent | 01ae27fe58be35914b0c4f573782f90242a9bfd9 (diff) |
Further refactoring in QtModeling (initial step)
Change-Id: Id8ca8a50edefeeb5c71206e96adbc4777eb82ccd
Reviewed-by: Sandro S. Andrade <sandroandrade@kde.org>
Diffstat (limited to 'src/uml/qumlvaluespecification.cpp')
-rw-r--r-- | src/uml/qumlvaluespecification.cpp | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/src/uml/qumlvaluespecification.cpp b/src/uml/qumlvaluespecification.cpp index c3140623..d94dd471 100644 --- a/src/uml/qumlvaluespecification.cpp +++ b/src/uml/qumlvaluespecification.cpp @@ -60,7 +60,7 @@ */ QUmlValueSpecification::QUmlValueSpecification() { - setClassForProperty(); + setGroupProperties(); setPropertyData(); } @@ -171,20 +171,22 @@ int QUmlValueSpecification::unlimitedValue() const return int (); } -void QUmlValueSpecification::setClassForProperty() +void QUmlValueSpecification::setGroupProperties() { - _classForProperty[QStringLiteral("ownedComments")] = QStringLiteral("QUmlElement"); - _classForProperty[QStringLiteral("ownedElements")] = QStringLiteral("QUmlElement"); - _classForProperty[QStringLiteral("owner")] = QStringLiteral("QUmlElement"); - _classForProperty[QStringLiteral("clientDependencies")] = QStringLiteral("QUmlNamedElement"); - _classForProperty[QStringLiteral("name")] = QStringLiteral("QUmlNamedElement"); - _classForProperty[QStringLiteral("nameExpression")] = QStringLiteral("QUmlNamedElement"); - _classForProperty[QStringLiteral("namespace_")] = QStringLiteral("QUmlNamedElement"); - _classForProperty[QStringLiteral("qualifiedName")] = QStringLiteral("QUmlNamedElement"); - _classForProperty[QStringLiteral("type")] = QStringLiteral("QUmlTypedElement"); - _classForProperty[QStringLiteral("owningTemplateParameter")] = QStringLiteral("QUmlParameterableElement"); - _classForProperty[QStringLiteral("templateParameter")] = QStringLiteral("QUmlParameterableElement"); - _classForProperty[QStringLiteral("visibility")] = QStringLiteral("QUmlPackageableElement"); + const QMetaObject *metaObject = _qObject->metaObject(); + + _groupProperties.insert(QStringLiteral("QUmlElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("ownedComments")))); + _groupProperties.insert(QStringLiteral("QUmlElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("ownedElements")))); + _groupProperties.insert(QStringLiteral("QUmlElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("owner")))); + _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("clientDependencies")))); + _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("name")))); + _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("nameExpression")))); + _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("namespace_")))); + _groupProperties.insert(QStringLiteral("QUmlNamedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("qualifiedName")))); + _groupProperties.insert(QStringLiteral("QUmlTypedElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("type")))); + _groupProperties.insert(QStringLiteral("QUmlParameterableElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("owningTemplateParameter")))); + _groupProperties.insert(QStringLiteral("QUmlParameterableElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("templateParameter")))); + _groupProperties.insert(QStringLiteral("QUmlPackageableElement"), new QMetaProperty(metaObject->property(metaObject->indexOfProperty("visibility")))); } void QUmlValueSpecification::setPropertyData() |