OSDN Git Service

58b31ea083e0df44d61db49c0d4cd3f44f15c6ed
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qmldesigner / components / stateseditor / stateseditorview.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef STATESEDITORVIEW_H
35 #define STATESEDITORVIEW_H
36
37 #include <qmlmodelview.h>
38
39 namespace QmlDesigner {
40
41
42 class StatesEditorModel;
43 class StatesEditorWidget;
44
45 class StatesEditorView : public QmlModelView {
46     Q_OBJECT
47
48 public:
49     explicit StatesEditorView(QObject *parent = 0);
50
51     void renameState(int nodeId,const QString &newName);
52     bool validStateName(const QString &name) const;
53     QString currentStateName() const;
54
55     void nodeInstancePropertyChanged(const ModelNode &node, const QString &propertyName);
56
57     // AbstractView
58     void modelAttached(Model *model);
59     void modelAboutToBeDetached(Model *model);
60     void propertiesRemoved(const QList<AbstractProperty>& propertyList);
61     void variantPropertiesChanged(const QList<VariantProperty>& propertyList, PropertyChangeFlags propertyChange);
62
63     void nodeAboutToBeRemoved(const ModelNode &removedNode);
64     void nodeRemoved(const ModelNode &removedNode, const NodeAbstractProperty &parentProperty, PropertyChangeFlags propertyChange);
65     void nodeAboutToBeReparented(const ModelNode &node, const NodeAbstractProperty &newPropertyParent, const NodeAbstractProperty &oldPropertyParent, AbstractView::PropertyChangeFlags propertyChange);
66     void nodeReparented(const ModelNode &node, const NodeAbstractProperty &newPropertyParent, const NodeAbstractProperty &oldPropertyParent, AbstractView::PropertyChangeFlags propertyChange);
67     void nodeOrderChanged(const NodeListProperty &listProperty, const ModelNode &movedNode, int oldIndex);
68
69
70     // QmlModelView
71     void stateChanged(const QmlModelState &newQmlModelState, const QmlModelState &oldQmlModelState);
72     void transformChanged(const QmlObjectNode &qmlObjectNode, const QString &propertyName);
73     void parentChanged(const QmlObjectNode &qmlObjectNode);
74     void otherPropertyChanged(const QmlObjectNode &qmlObjectNode, const QString &propertyName);
75
76     void scriptFunctionsChanged(const ModelNode &node, const QStringList &scriptFunctionList);
77     void nodeIdChanged(const ModelNode &node, const QString &newId, const QString &oldId);
78     void bindingPropertiesChanged(const QList<BindingProperty> &propertyList, PropertyChangeFlags propertyChange);
79     void selectedNodesChanged(const QList<ModelNode> &selectedNodeList, const QList<ModelNode> &lastSelectedNodeList);
80
81     void instancesPreviewImageChanged(const QVector<ModelNode> &nodeList);
82
83     StatesEditorWidget *widget();
84
85 public slots:
86     void synchonizeCurrentStateFromWidget();
87     void createNewState();
88     void removeState(int nodeId);
89
90 private:
91     void resetModel();
92     void addState();
93     void duplicateCurrentState();
94
95 private:
96     QWeakPointer<StatesEditorModel> m_statesEditorModel;
97     QWeakPointer<StatesEditorWidget> m_statesEditorWidget;
98     int m_lastIndex;
99 };
100
101 } // namespace QmlDesigner
102
103 #endif // STATESEDITORVIEW_H