/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://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 https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #pragma once #include "qmljseditordocument.h" #include #include #include #include namespace QmlJS { class Value; class Context; } namespace QmlJSEditor { namespace Internal { class QmlOutlineModel; class QmlOutlineItem : public QStandardItem { public: QmlOutlineItem(QmlOutlineModel *model); // QStandardItem QVariant data(int role = Qt::UserRole + 1) const override; int type() const override; void setItemData(const QMap &roles); private: QString prettyPrint(const QmlJS::Value *value, const QmlJS::ContextPtr &context) const; QmlOutlineModel *m_outlineModel; }; class QmlOutlineModel : public QStandardItemModel { Q_OBJECT public: enum CustomRoles { ItemTypeRole = Qt::UserRole + 1, ElementTypeRole, AnnotationRole }; enum ItemTypes { ElementType, ElementBindingType, // might contain elements as children NonElementBindingType // can be filtered out }; QmlOutlineModel(QmlJSEditorDocument *document); // QStandardItemModel QStringList mimeTypes() const override; QMimeData *mimeData(const QModelIndexList &indexes) const override; bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) override; Qt::ItemFlags flags(const QModelIndex &index) const override; Qt::DropActions supportedDragActions() const override; Qt::DropActions supportedDropActions() const override; QmlJS::Document::Ptr document() const; void update(const QmlJSTools::SemanticInfo &semanticInfo); QmlJS::AST::Node *nodeForIndex(const QModelIndex &index) const; QmlJS::SourceLocation sourceLocation(const QModelIndex &index) const; QmlJS::AST::UiQualifiedId *idNode(const QModelIndex &index) const; QIcon icon(const QModelIndex &index) const; signals: void updated(); private: QModelIndex enterObjectDefinition(QmlJS::AST::UiObjectDefinition *objectDefinition); void leaveObjectDefiniton(); QModelIndex enterObjectBinding(QmlJS::AST::UiObjectBinding *objectBinding); void leaveObjectBinding(); QModelIndex enterArrayBinding(QmlJS::AST::UiArrayBinding *arrayBinding); void leaveArrayBinding(); QModelIndex enterScriptBinding(QmlJS::AST::UiScriptBinding *scriptBinding); void leaveScriptBinding(); QModelIndex enterPublicMember(QmlJS::AST::UiPublicMember *publicMember); void leavePublicMember(); QModelIndex enterFunctionDeclaration(QmlJS::AST::FunctionDeclaration *functionDeclaration); void leaveFunctionDeclaration(); QModelIndex enterFieldMemberExpression(QmlJS::AST::FieldMemberExpression *expression, QmlJS::AST::FunctionExpression *functionExpression); void leaveFieldMemberExpression(); QModelIndex enterTestCase(QmlJS::AST::ObjectPattern *objectLiteral); void leaveTestCase(); QModelIndex enterTestCaseProperties(QmlJS::AST::PatternPropertyList *propertyAssignmentList); void leaveTestCaseProperties(); private: QmlOutlineItem *enterNode(QMap data, QmlJS::AST::Node *node, QmlJS::AST::UiQualifiedId *idNode, const QIcon &icon); void leaveNode(); void reparentNodes(QmlOutlineItem *targetItem, int targetRow, QList itemsToMove); void moveObjectMember(QmlJS::AST::UiObjectMember *toMove, QmlJS::AST::UiObjectMember *newParent, bool insertionOrderSpecified, QmlJS::AST::UiObjectMember *insertAfter, Utils::ChangeSet *changeSet, Utils::ChangeSet::Range *addedRange); QStandardItem *parentItem(); static QString asString(QmlJS::AST::UiQualifiedId *id); static QmlJS::SourceLocation getLocation(QmlJS::AST::UiObjectMember *objMember); static QmlJS::SourceLocation getLocation(QmlJS::AST::ExpressionNode *exprNode); static QmlJS::SourceLocation getLocation(QmlJS::AST::PatternProperty *propertyNode); static QmlJS::SourceLocation getLocation(QmlJS::AST::PatternPropertyList *propertyNode); QIcon getIcon(QmlJS::AST::UiQualifiedId *objDef); QString getAnnotation(QmlJS::AST::UiObjectInitializer *objInitializer); QString getAnnotation(QmlJS::AST::Statement *statement); QString getAnnotation(QmlJS::AST::ExpressionNode *expression); QHash getScriptBindings(QmlJS::AST::UiObjectInitializer *objInitializer); QmlJSTools::SemanticInfo m_semanticInfo; QList m_treePos; QStandardItem *m_currentItem; QmlJS::Icons *m_icons; QHash m_typeToIcon; QHash m_itemToIcon; QHash m_itemToNode; QHash m_itemToIdNode; QmlJSEditorDocument *m_editorDocument; friend class QmlOutlineModelSync; friend class QmlOutlineItem; }; } // namespace Internal } // namespace QmlJSEditor