forked from sqlitebrowser/sqlitebrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqltextedit.cpp
348 lines (298 loc) · 11.1 KB
/
sqltextedit.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
#include "sqltextedit.h"
#include "PreferencesDialog.h"
#include <QKeyEvent>
#include <QAbstractItemView>
#include <QCompleter>
#include <QScrollBar>
#include <QPainter>
#include <QTextBlock>
#include <QUrl>
#include <QMimeData>
SqlTextEdit::SqlTextEdit(QWidget* parent) :
QPlainTextEdit(parent), m_Completer(0), m_defaultCompleterModel(0)
{
// basic auto completer for sqliteedit
m_Completer = new QCompleter(this);
m_Completer->setCaseSensitivity(Qt::CaseInsensitive);
m_Completer->setCompletionMode(QCompleter::PopupCompletion);
m_Completer->setWrapAround(false);
m_Completer->setWidget(this);
// Set font
QFont font("Monospace");
font.setStyleHint(QFont::TypeWriter);
font.setPointSize(PreferencesDialog::getSettingsValue("editor", "fontsize").toInt());
setFont(font);
// Create line number area
lineNumberArea = new LineNumberArea(this);
connect(this, SIGNAL(blockCountChanged(int)), this, SLOT(updateLineNumberAreaWidth()));
connect(this, SIGNAL(updateRequest(QRect,int)), this, SLOT(updateLineNumberArea(QRect,int)));
connect(m_Completer, SIGNAL(activated(QString)), this, SLOT(insertCompletion(QString)));
connect(this, SIGNAL(cursorPositionChanged()), this, SLOT(highlightCurrentLine()));
highlightCurrentLine();
updateLineNumberAreaWidth();
}
SqlTextEdit::~SqlTextEdit()
{
}
void SqlTextEdit::setCompleter(QCompleter *completer)
{
if (m_Completer)
QObject::disconnect(m_Completer, 0, this, 0);
m_Completer = completer;
if (!m_Completer)
return;
m_Completer->setWidget(this);
m_Completer->setCompletionMode(QCompleter::PopupCompletion);
m_Completer->setCaseSensitivity(Qt::CaseInsensitive);
QObject::connect(m_Completer, SIGNAL(activated(QString)),
this, SLOT(insertCompletion(QString)));
}
QCompleter* SqlTextEdit::completer() const
{
return m_Completer;
}
void SqlTextEdit::setDefaultCompleterModel(QAbstractItemModel *model)
{
m_defaultCompleterModel = model;
m_Completer->setModel(m_defaultCompleterModel);
}
QAbstractItemModel* SqlTextEdit::addFieldCompleterModel(const QString &tablename, QAbstractItemModel* model)
{
m_fieldCompleterMap[tablename] = model;
return model;
}
void SqlTextEdit::insertFieldCompleterModels(const FieldCompleterModelMap& fieldmap)
{
QMapIterator<QString, QAbstractItemModel*> i(fieldmap);
while(i.hasNext())
{
i.next();
addFieldCompleterModel(i.key(), i.value());
}
}
void SqlTextEdit::insertCompletion(const QString& completion)
{
if (m_Completer->widget() != this)
return;
QTextCursor tc = textCursor();
int extra = completion.length() - m_Completer->completionPrefix().length();
tc.movePosition(QTextCursor::Left, QTextCursor::KeepAnchor);
// slight workaround for a field completion without any completionPrefix
// eg. "tablename.;" if you would select a field completion and hit enter
// without this workaround the text would be inserted after the ';'
// because endofword moves to the end of the line
// or we have no competionprefix at all (CTRL+SPACE) without text
// under cursor
if(tc.selectedText() == "." || m_Completer->completionPrefix().isEmpty())
tc.movePosition(QTextCursor::Right);
else
tc.movePosition(QTextCursor::EndOfWord);
tc.insertText(completion.right(extra));
setTextCursor(tc);
}
void SqlTextEdit::highlightCurrentLine()
{
QList<QTextEdit::ExtraSelection> extra_selections;
QTextEdit::ExtraSelection selection;
selection.format.setBackground(QColor(PreferencesDialog::getSettingsValue("syntaxhighlighter", "currentline_colour").toString()));
selection.format.setFontWeight(PreferencesDialog::getSettingsValue("syntaxhighlighter", "currentline_bold").toBool() ? QFont::Bold : QFont::Normal);
selection.format.setFontItalic(PreferencesDialog::getSettingsValue("syntaxhighlighter", "currentline_italic").toBool());
selection.format.setFontUnderline(PreferencesDialog::getSettingsValue("syntaxhighlighter", "currentline_underline").toBool());
selection.format.setProperty(QTextFormat::FullWidthSelection, true);
selection.cursor = textCursor();
selection.cursor.clearSelection();
extra_selections.append(selection);
setExtraSelections(extra_selections);
}
int SqlTextEdit::lineNumberAreaWidth()
{
int digits = 1;
int max = qMax(1, blockCount());
while(max >= 10)
{
max /= 10;
++digits;
}
return 3 + fontMetrics().width(QLatin1Char('9')) * digits;
}
void SqlTextEdit::updateLineNumberAreaWidth()
{
setViewportMargins(lineNumberAreaWidth(), 0, 0, 0);
}
void SqlTextEdit::updateLineNumberArea(const QRect& rect, int dy)
{
if(dy)
lineNumberArea->scroll(0, dy);
else
lineNumberArea->update(0, rect.y(), lineNumberArea->width(), rect.height());
if(rect.contains(viewport()->rect()))
updateLineNumberAreaWidth();
}
void SqlTextEdit::resizeEvent(QResizeEvent* e)
{
QPlainTextEdit::resizeEvent(e);
QRect cr = contentsRect();
lineNumberArea->setGeometry(QRect(cr.left(), cr.top(), lineNumberAreaWidth(), cr.height()));
}
void SqlTextEdit::LineNumberArea::paintEvent(QPaintEvent* event)
{
QPainter painter(this);
painter.fillRect(event->rect(), Qt::lightGray);
QTextBlock block = parent->firstVisibleBlock();
int blockNumber = block.blockNumber();
int top = parent->blockBoundingGeometry(block).translated(parent->contentOffset()).top();
int bottom = top + parent->blockBoundingRect(block).height();
while(block.isValid() && top <= event->rect().bottom())
{
if(block.isVisible() && bottom >= event->rect().top())
{
QString number = QString::number(blockNumber + 1);
painter.setPen(Qt::black);
painter.drawText(0, top, width(), fontMetrics().height(), Qt::AlignRight, number);
}
block = block.next();
top = bottom;
bottom = top + parent->blockBoundingRect(block).height();
blockNumber++;
}
}
void SqlTextEdit::dropEvent(QDropEvent* e)
{
QList<QUrl> urls = e->mimeData()->urls();
if(urls.isEmpty())
return QPlainTextEdit::dropEvent(e);
QString file = urls.first().toLocalFile();
if(!QFile::exists(file))
return;
QFile f(file);
f.open(QIODevice::ReadOnly);
setPlainText(f.readAll());
f.close();
}
QSize SqlTextEdit::LineNumberArea::sizeHint() const
{
return QSize(parent->lineNumberAreaWidth(), 0);
}
namespace {
bool isSqliteIdentifierChar(QChar c) {
return c.isLetterOrNumber() || c == '.' || c == '_';
}
}
/**
* @brief SqlTextEdit::identifierUnderCursor
* @return The partial or full sqlite identifier (table(.field)?)? under the cursor
* or a empty string.
*/
QString SqlTextEdit::identifierUnderCursor() const
{
QTextCursor tc = textCursor();
const int abspos = tc.position() - 1;
tc.movePosition(QTextCursor::StartOfLine);
const int linestartpos = tc.position();
const int linepos = abspos - linestartpos;
tc.select(QTextCursor::LineUnderCursor);
QString line = tc.selectedText();
int start = 0, end;
// look where the identifier starts
for( int i = linepos; i >= 0 && i < line.length() && start == 0; --i)
{
if( !(isSqliteIdentifierChar(line.at(i))))
start = i + 1;
}
end = line.length();
// see where the word ends
for( int i = start; i < line.length() && i >= 0 && end == line.length(); ++i)
{
if( !(isSqliteIdentifierChar(line.at(i))))
end = i;
}
// extract the identifier table.field
QString identifier = line.mid(start, end - start);
// check if it has a dot in it
int dotpos = identifier.indexOf('.');
// this is a little hack so editing a table name won't show fields
// fields are only shown if type the word at the end
if( dotpos > -1 && linepos + 1 != end )
return identifier.left(dotpos);
else
return identifier;
}
void SqlTextEdit::focusInEvent(QFocusEvent *e)
{
if (m_Completer)
m_Completer->setWidget(this);
QPlainTextEdit::focusInEvent(e);
}
void SqlTextEdit::keyPressEvent(QKeyEvent *e)
{
if (m_Completer && m_Completer->popup()->isVisible()) {
// The following keys are forwarded by the completer to the widget
switch (e->key()) {
case Qt::Key_Enter:
case Qt::Key_Return:
case Qt::Key_Escape:
case Qt::Key_Tab:
case Qt::Key_Backtab:
e->ignore();
return; // let the completer do default behavior
default:
break;
}
}
bool isShortcut = ((e->modifiers() & Qt::ControlModifier) && e->key() == Qt::Key_Space); // CTRL+SPACE
if (!m_Completer || !isShortcut) // do not process the shortcut when we have a completer
QPlainTextEdit::keyPressEvent(e);
const bool ctrlOrShift = e->modifiers() & (Qt::ControlModifier | Qt::ShiftModifier);
const bool cursorKey = e->key() == Qt::Key_Left ||
e->key() == Qt::Key_Up ||
e->key() == Qt::Key_Right ||
e->key() == Qt::Key_Down;
if (!m_Completer || (ctrlOrShift && e->text().isEmpty()) || cursorKey)
return;
QString identifier = identifierUnderCursor();
QString table = identifier;
QString field;
int dotpos = 0;
if((dotpos = identifier.indexOf('.')) > 0)
{
table = identifier.left(dotpos);
field = identifier.mid(dotpos + 1);
}
if( dotpos > 0 )
{
// swap model to field completion
FieldCompleterModelMap::ConstIterator it = m_fieldCompleterMap.find(table.toLower());
if( it != m_fieldCompleterMap.end() )
{
if( *it != m_Completer->model() )
m_Completer->setModel(*it);
if (field != m_Completer->completionPrefix()) {
m_Completer->setCompletionPrefix(field);
m_Completer->popup()->setCurrentIndex(m_Completer->completionModel()->index(0, 0));
}
QRect cr = cursorRect();
cr.setWidth(m_Completer->popup()->sizeHintForColumn(0)
+ m_Completer->popup()->verticalScrollBar()->sizeHint().width());
m_Completer->complete(cr);
}
return;
}
// table completion mode
if( m_Completer->model() != m_defaultCompleterModel )
m_Completer->setModel(m_defaultCompleterModel);
static QString eow("~!@#$%^&*()_+{}|:\"<>?,./;'[]\\-="); // end of word
bool hasModifier = (e->modifiers() != Qt::NoModifier) && !ctrlOrShift;
if (!isShortcut && (hasModifier || e->text().isEmpty()|| identifier.length() < 3
|| eow.contains(e->text().right(1)))) {
m_Completer->popup()->hide();
return;
}
if (identifier != m_Completer->completionPrefix()) {
m_Completer->setCompletionPrefix(identifier);
m_Completer->popup()->setCurrentIndex(m_Completer->completionModel()->index(0, 0));
}
QRect cr = cursorRect();
cr.setWidth(m_Completer->popup()->sizeHintForColumn(0)
+ m_Completer->popup()->verticalScrollBar()->sizeHint().width());
m_Completer->complete(cr); // popup it up!
}