/**************************************************************************** ** ** 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. ** ****************************************************************************/ #include "texteditorview.h" #include "texteditorwidget.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace QmlDesigner { TextEditorView::TextEditorView(QObject *parent) : AbstractView(parent) , m_widget(new TextEditorWidget(this)) { // not completely sure that we need this to just call the right help method -> Internal::TextEditorContext *textEditorContext = new Internal::TextEditorContext(m_widget.get()); Core::ICore::addContextObject(textEditorContext); } TextEditorView::~TextEditorView() { m_widget->deleteLater(); } void TextEditorView::modelAttached(Model *model) { Q_ASSERT(model); AbstractView::modelAttached(model); m_widget->setTextEditor(qobject_cast(QmlDesignerPlugin::instance()->currentDesignDocument()->textEditor()->duplicate())); } void TextEditorView::modelAboutToBeDetached(Model *model) { AbstractView::modelAboutToBeDetached(model); } void TextEditorView::importsChanged(const QList &/*addedImports*/, const QList &/*removedImports*/) { } void TextEditorView::nodeAboutToBeRemoved(const ModelNode &/*removedNode*/) { } void TextEditorView::rootNodeTypeChanged(const QString &/*type*/, int /*majorVersion*/, int /*minorVersion*/) { } void TextEditorView::propertiesAboutToBeRemoved(const QList& /*propertyList*/) { } void TextEditorView::nodeReparented(const ModelNode &/*node*/, const NodeAbstractProperty &/*newPropertyParent*/, const NodeAbstractProperty &/*oldPropertyParent*/, AbstractView::PropertyChangeFlags /*propertyChange*/) { } WidgetInfo TextEditorView::widgetInfo() { return createWidgetInfo(m_widget.get(), 0, "TextEditor", WidgetInfo::CentralPane, 0, tr("Text Editor")); } QString TextEditorView::contextHelpId() const { if (m_widget->textEditor()) { QString contextHelpId = m_widget->textEditor()->contextHelpId(); if (!contextHelpId.isEmpty()) return m_widget->textEditor()->contextHelpId(); } return AbstractView::contextHelpId(); } void TextEditorView::nodeIdChanged(const ModelNode& /*node*/, const QString &/*newId*/, const QString &/*oldId*/) { } void TextEditorView::selectedNodesChanged(const QList &/*selectedNodeList*/, const QList &/*lastSelectedNodeList*/) { } void TextEditorView::customNotification(const AbstractView * /*view*/, const QString &/*identifier*/, const QList &/*nodeList*/, const QList &/*data*/) { } bool TextEditorView::changeToMoveTool() { return true; } void TextEditorView::changeToDragTool() { } bool TextEditorView::changeToMoveTool(const QPointF &/*beginPoint*/) { return true; } void TextEditorView::changeToSelectionTool() { } void TextEditorView::changeToResizeTool() { } void TextEditorView::changeToTransformTools() { } void TextEditorView::changeToCustomTool() { } void TextEditorView::auxiliaryDataChanged(const ModelNode &/*node*/, const PropertyName &/*name*/, const QVariant &/*data*/) { } void TextEditorView::instancesCompleted(const QVector &/*completedNodeList*/) { } void TextEditorView::instanceInformationsChanged(const QMultiHash &/*informationChangeHash*/) { } void TextEditorView::instancesRenderImageChanged(const QVector &/*nodeList*/) { } void TextEditorView::instancesChildrenChanged(const QVector &/*nodeList*/) { } void TextEditorView::rewriterBeginTransaction() { } void TextEditorView::rewriterEndTransaction() { } void TextEditorView::instancePropertyChanged(const QList > &/*propertyList*/) { } } // namespace QmlDesigner