source: trunk/src/declarative/qml/rewriter/textwriter.cpp

Last change on this file was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 5.9 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation (qt-info@nokia.com)
6**
7** This file is part of the QtDeclarative module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at qt-info@nokia.com.
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "private/textwriter_p.h"
43
44QT_QML_BEGIN_NAMESPACE
45
46using namespace QDeclarativeJS;
47
48TextWriter::TextWriter()
49 :string(0), cursor(0)
50{
51}
52
53static bool overlaps(int posA, int lengthA, int posB, int lengthB) {
54 return (posA < posB + lengthB && posA + lengthA > posB + lengthB)
55 || (posA < posB && posA + lengthA > posB);
56}
57
58bool TextWriter::hasOverlap(int pos, int length)
59{
60 {
61 QListIterator<Replace> i(replaceList);
62 while (i.hasNext()) {
63 const Replace &cmd = i.next();
64 if (overlaps(pos, length, cmd.pos, cmd.length))
65 return true;
66 }
67 }
68 {
69 QListIterator<Move> i(moveList);
70 while (i.hasNext()) {
71 const Move &cmd = i.next();
72 if (overlaps(pos, length, cmd.pos, cmd.length))
73 return true;
74 }
75 return false;
76 }
77}
78
79bool TextWriter::hasMoveInto(int pos, int length)
80{
81 QListIterator<Move> i(moveList);
82 while (i.hasNext()) {
83 const Move &cmd = i.next();
84 if (cmd.to >= pos && cmd.to < pos + length)
85 return true;
86 }
87 return false;
88}
89
90void TextWriter::replace(int pos, int length, const QString &replacement)
91{
92 Q_ASSERT(!hasOverlap(pos, length));
93 Q_ASSERT(!hasMoveInto(pos, length));
94
95 Replace cmd;
96 cmd.pos = pos;
97 cmd.length = length;
98 cmd.replacement = replacement;
99 replaceList += cmd;
100}
101
102void TextWriter::move(int pos, int length, int to)
103{
104 Q_ASSERT(!hasOverlap(pos, length));
105
106 Move cmd;
107 cmd.pos = pos;
108 cmd.length = length;
109 cmd.to = to;
110 moveList += cmd;
111}
112
113void TextWriter::doReplace(const Replace &replace)
114{
115 int diff = replace.replacement.size() - replace.length;
116 {
117 QMutableListIterator<Replace> i(replaceList);
118 while (i.hasNext()) {
119 Replace &c = i.next();
120 if (replace.pos < c.pos)
121 c.pos += diff;
122 else if (replace.pos + replace.length < c.pos + c.length)
123 c.length += diff;
124 }
125 }
126 {
127 QMutableListIterator<Move> i(moveList);
128 while (i.hasNext()) {
129 Move &c = i.next();
130 if (replace.pos < c.pos)
131 c.pos += diff;
132 else if (replace.pos + replace.length < c.pos + c.length)
133 c.length += diff;
134
135 if (replace.pos < c.to)
136 c.to += diff;
137 }
138 }
139
140 if (string) {
141 string->replace(replace.pos, replace.length, replace.replacement);
142 } else if (cursor) {
143 cursor->setPosition(replace.pos);
144 cursor->setPosition(replace.pos + replace.length, QTextCursor::KeepAnchor);
145 cursor->insertText(replace.replacement);
146 }
147}
148
149void TextWriter::doMove(const Move &move)
150{
151 QString text;
152 if (string) {
153 text = string->mid(move.pos, move.length);
154 } else if (cursor) {
155 cursor->setPosition(move.pos);
156 cursor->setPosition(move.pos + move.length, QTextCursor::KeepAnchor);
157 text = cursor->selectedText();
158 }
159
160 Replace cut;
161 cut.pos = move.pos;
162 cut.length = move.length;
163 Replace paste;
164 paste.pos = move.to;
165 paste.length = 0;
166 paste.replacement = text;
167
168 replaceList.append(cut);
169 replaceList.append(paste);
170
171 Replace cmd;
172 while (!replaceList.isEmpty()) {
173 cmd = replaceList.first();
174 replaceList.removeFirst();
175 doReplace(cmd);
176 }
177}
178
179void TextWriter::write(QString *s)
180{
181 string = s;
182 write_helper();
183 string = 0;
184}
185
186void TextWriter::write(QTextCursor *textCursor)
187{
188 cursor = textCursor;
189 write_helper();
190 cursor = 0;
191}
192
193void TextWriter::write_helper()
194{
195 if (cursor)
196 cursor->beginEditBlock();
197 {
198 Replace cmd;
199 while (!replaceList.isEmpty()) {
200 cmd = replaceList.first();
201 replaceList.removeFirst();
202 doReplace(cmd);
203 }
204 }
205 {
206 Move cmd;
207 while (!moveList.isEmpty()) {
208 cmd = moveList.first();
209 moveList.removeFirst();
210 doMove(cmd);
211 }
212 }
213 if (cursor)
214 cursor->endEditBlock();
215}
216
217QT_QML_END_NAMESPACE
Note: See TracBrowser for help on using the repository browser.