/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms and ** conditions see http://www.qt.io/terms-conditions. For further information ** use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #ifndef PROPERTYEDITORVIEW_H #define PROPERTYEDITORVIEW_H #include #include #include #include "propertyeditorwidget.h" QT_BEGIN_NAMESPACE class QShortcut; class QStackedWidget; class QTimer; QT_END_NAMESPACE namespace QmlDesigner { class PropertyEditorTransaction; class CollapseButton; class PropertyEditorWidget; class PropertyEditorView; class PropertyEditorQmlBackend; class PropertyEditorView: public AbstractView { Q_OBJECT public: PropertyEditorView(QWidget *parent = 0); ~PropertyEditorView(); bool hasWidget() const override; WidgetInfo widgetInfo() override; void selectedNodesChanged(const QList &selectedNodeList, const QList &lastSelectedNodeList) override; void nodeAboutToBeRemoved(const ModelNode &removedNode) override; void propertiesRemoved(const QList& propertyList) override; void modelAttached(Model *model) override; void modelAboutToBeDetached(Model *model) override; ModelState modelState() const; void variantPropertiesChanged(const QList& propertyList, PropertyChangeFlags propertyChange) override; void bindingPropertiesChanged(const QList& propertyList, PropertyChangeFlags propertyChange) override; void instanceInformationsChange(const QMultiHash &informationChangeHash) override; void nodeIdChanged(const ModelNode& node, const QString& newId, const QString& oldId) override; void resetView(); void currentStateChanged(const ModelNode &node) override; void instancePropertyChange(const QList > &propertyList) override; void rootNodeTypeChanged(const QString &type, int majorVersion, int minorVersion) override; protected: void timerEvent(QTimerEvent *event) override; void setupPane(const TypeName &typeName); void setValue(const QmlObjectNode &fxObjectNode, const PropertyName &name, const QVariant &value); private slots: void reloadQml(); void changeValue(const QString &name); void changeExpression(const QString &name); void updateSize(); void setupPanes(); private: //functions void select(const ModelNode& node); void delayedResetView(); void setupQmlBackend(); private: //variables ModelNode m_selectedNode; QWidget *m_parent; QShortcut *m_updateShortcut; int m_timerId; PropertyEditorWidget* m_stackedWidget; QString m_qmlDir; QHash m_qmlBackendHash; PropertyEditorQmlBackend *m_qmlBackEndForCurrentType; bool m_locked; bool m_setupCompleted; QTimer *m_singleShotTimer; }; } //QmlDesigner #endif // PROPERTYEDITORVIEW_H