summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/stateseditor/stateseditorview.h
diff options
context:
space:
mode:
authorMarco Bubke <marco.bubke@digia.com>2013-07-24 15:57:06 +0200
committerMarco Bubke <marco.bubke@digia.com>2013-07-24 17:26:07 +0200
commit8671bd182c767df7b571fb7b5315c26c4ef41baa (patch)
tree9f32d2f81306d954e337d903c84f750c7ea70ea2 /src/plugins/qmldesigner/components/stateseditor/stateseditorview.h
parentff9e7a00c749ed6127ee31a8f4fb083a15d4cab1 (diff)
downloadqt-creator-8671bd182c767df7b571fb7b5315c26c4ef41baa.tar.gz
QmlDesigner: Remove empty notifier from QmlModelView
QmlModelView is abstract and should not hide other notifier. Change-Id: Ic992829e8e62ecf6142f84251dc1a86d35e35c2d Reviewed-by: Tim Jenssen <tim.jenssen@digia.com>
Diffstat (limited to 'src/plugins/qmldesigner/components/stateseditor/stateseditorview.h')
-rw-r--r--src/plugins/qmldesigner/components/stateseditor/stateseditorview.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditorview.h b/src/plugins/qmldesigner/components/stateseditor/stateseditorview.h
index 369353f3e3..dfec687355 100644
--- a/src/plugins/qmldesigner/components/stateseditor/stateseditorview.h
+++ b/src/plugins/qmldesigner/components/stateseditor/stateseditorview.h
@@ -83,6 +83,19 @@ public:
WidgetInfo widgetInfo() QTC_OVERRIDE;
+ void nodeCreated(const ModelNode &createdNode) QTC_OVERRIDE;
+ void propertiesAboutToBeRemoved(const QList<AbstractProperty> &propertyList) QTC_OVERRIDE;
+ void rootNodeTypeChanged(const QString &type, int majorVersion, int minorVersion) QTC_OVERRIDE;
+ void instancePropertyChange(const QList<QPair<ModelNode, PropertyName> > &propertyList) QTC_OVERRIDE;
+ void instancesCompleted(const QVector<ModelNode> &completedNodeList) QTC_OVERRIDE;
+ void instanceInformationsChange(const QMultiHash<ModelNode, InformationName> &informationChangeHash) QTC_OVERRIDE;
+ void instancesRenderImageChanged(const QVector<ModelNode> &nodeList) QTC_OVERRIDE;
+ void instancesChildrenChanged(const QVector<ModelNode> &nodeList) QTC_OVERRIDE;
+ void instancesToken(const QString &tokenName, int tokenNumber, const QVector<ModelNode> &nodeVector) QTC_OVERRIDE;
+ void nodeSourceChanged(const ModelNode &modelNode, const QString &newNodeSource) QTC_OVERRIDE;
+ void rewriterBeginTransaction() QTC_OVERRIDE;
+ void rewriterEndTransaction() QTC_OVERRIDE;
+ void importsChanged(const QList<Import> &addedImports, const QList<Import> &removedImports) QTC_OVERRIDE;
public slots:
void synchonizeCurrentStateFromWidget();