OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qmldesigner / designercore / model / basetexteditmodifier.cpp
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 (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32
33 #include "basetexteditmodifier.h"
34
35 #include <extensionsystem/pluginmanager.h>
36 #include <qmljs/qmljsdocument.h>
37 #include <qmljs/qmljsmodelmanagerinterface.h>
38 #include <qmljseditor/qmljseditor.h>
39 #include <texteditor/tabsettings.h>
40
41 using namespace QmlDesigner;
42
43 BaseTextEditModifier::BaseTextEditModifier(TextEditor::BaseTextEditorWidget *textEdit):
44         PlainTextEditModifier(textEdit)
45 {
46 }
47
48 void BaseTextEditModifier::indent(int offset, int length)
49 {
50     if (length == 0 || offset < 0 || offset + length >= text().length())
51         return;
52
53     if (TextEditor::BaseTextEditorWidget *bte = qobject_cast<TextEditor::BaseTextEditorWidget*>(plainTextEdit())) {
54         // find the applicable block:
55         QTextDocument *doc = bte->document();
56         QTextCursor tc(doc);
57         tc.beginEditBlock();
58         tc.setPosition(offset);
59         tc.setPosition(offset + length, QTextCursor::KeepAnchor);
60         bte->indentInsertedText(tc);
61         tc.endEditBlock();
62     }
63 }
64
65 int BaseTextEditModifier::indentDepth() const
66 {
67     if (TextEditor::BaseTextEditorWidget *bte = qobject_cast<TextEditor::BaseTextEditorWidget*>(plainTextEdit())) {
68         return bte->tabSettings().m_indentSize;
69     } else {
70         return 0;
71     }
72 }
73
74 bool BaseTextEditModifier::renameId(const QString &oldId, const QString &newId)
75 {
76     if (QmlJSEditor::QmlJSTextEditorWidget *qmljse = qobject_cast<QmlJSEditor::QmlJSTextEditorWidget*>(plainTextEdit())) {
77         qmljse->renameId(oldId, newId);
78         return true;
79     } else {
80         return false;
81     }
82 }
83
84 namespace {
85 static inline QmlJS::ModelManagerInterface *getModelManager()
86 {
87     ExtensionSystem::PluginManager *pluginManager = ExtensionSystem::PluginManager::instance();
88     return pluginManager->getObject<QmlJS::ModelManagerInterface>();
89 }
90 }
91
92 QmlJS::Snapshot BaseTextEditModifier::getSnapshot() const
93 {
94     QmlJS::ModelManagerInterface *modelManager = getModelManager();
95     if (modelManager)
96         return modelManager->snapshot();
97     else
98         return QmlJS::Snapshot();
99 }
100
101 QStringList BaseTextEditModifier::importPaths() const
102 {
103     QmlJS::ModelManagerInterface *modelManager = getModelManager();
104     if (modelManager)
105         return modelManager->importPaths();
106     else
107         return QStringList();
108 }