-
Notifications
You must be signed in to change notification settings - Fork 5
/
MySQL_Editor.h
434 lines (325 loc) · 9.54 KB
/
MySQL_Editor.h
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
/****************************************************************************
**
** Copyright (C) 2016 Ken Crossen, bugs corrected, code cleaned up
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Redistributions in source code or binary form may not be sold.
**
****************************************************************************/
#ifndef MYSQL_EDITOR_H
#define MYSQL_EDITOR_H
#include <QtCore>
#include <QtGui>
#include <QPlainTextEdit>
#include <QScopedPointer>
#include <QColor>
#include <QCompleter>
#include <QAbstractItemView>
#include <QAbstractListModel>
#include <QStringListModel>
#include <QScrollBar>
class MySQL_Editor;
class MySQL_Editor_Sidebar;
class MySQL_Editor_Highlighter;
class MySQL_Editor_DocLayout;
#define Open_Fold_Bracket '('
#define Close_Fold_Bracket ')'
class MySQL_Editor: public QPlainTextEdit {
Q_OBJECT
Q_PROPERTY(bool CodeFoldingEnabled READ isCodeFoldingEnabled WRITE setCodeFoldingEnabled)
Q_PROPERTY(bool ShowLineNumbersEnabled READ isShowLineNumbersEnabled WRITE setShowLineNumbersEnabled)
Q_PROPERTY(bool TextWrapEnabled READ isTextWrapEnabled WRITE setTextWrapEnabled)
Q_PROPERTY(bool BracketsMatchingEnabled READ isBracketsMatchingEnabled WRITE setBracketsMatchingEnabled)
Q_PROPERTY(bool AutoIndentEnabled READ isAutoIndentEnabled WRITE setAutoIndentEnabled)
Q_PROPERTY(bool AutoCompleteKeywordsEnabled READ isAutoCompleteKeywordsEnabled WRITE setAutoCompleteKeywordsEnabled)
Q_PROPERTY(bool AutoCompleteIdentifiersEnabled READ isAutoCompleteIdentifiersEnabled WRITE setAutoCompleteIdentifiersEnabled)
Q_PROPERTY(bool AutoUppercaseKeywordsEnabled READ isAutoUppercaseKeywordsEnabled WRITE setAutoUppercaseKeywordsEnabled)
public:
MySQL_Editor ( QWidget *parent = 0 );
~MySQL_Editor ( );
typedef enum {
Background,
Normal,
Comment,
Number,
String,
Operator,
Identifier,
Keyword,
Function,
Type,
Interval,
Sidebar,
LineNumber,
Cursor,
Marker,
BracketMatch,
BracketError,
FoldIndicator
} ColorComponent;
private:
MySQL_Editor_Sidebar *Editor_Sidebar;
MySQL_Editor_Highlighter *Editor_Highlighter;
MySQL_Editor_DocLayout *Editor_Layout;
QList<int> matchPositions;
QList<int> errorPositions;
QColor cursorColor;
QColor bracketMatchColor;
QColor bracketErrorColor;
bool CodeFoldingEnabled;
bool ShowLineNumbersEnabled;
bool TextWrapEnabled;
QRegularExpression MySQL_Bracket_RegEx;
QString Bracket_Source_Text;
QString Bracket_Text;
bool BracketsMatchingEnabled;
bool Quote_Bracket_Character;
bool Post_Select_Bracket_Enclosed_Text;
bool AutoIndentEnabled;
int Tab_Modulus;
bool AutoCompleteKeywordsEnabled;
bool AutoCompleteIdentifiersEnabled;
bool AutoUppercaseKeywordsEnabled;
QRegularExpression SQL_Token_Regular_Expression;
QStringList MySQL_Keywords;
QStringList MySQL_Functions;
QStringList MySQL_Types;
QStringList MySQL_Intervals;
QStringList All_MySQL_Keywords;
QStringList Auto_Complete_Identifier_List;
QHash <QString, QStringList> Auto_Complete_Context_Identifier_List;
// A 'completion context' is entered when a context indetifier is followed by '.', ...
// for example, 'table_name.' in which case all of the column names in table_name ...
// ... are displayed in the completer popup.
bool In_Completion_Context;
QStringList Newline_Word_List;
QStringList JOIN_Modifiers;
bool Uppercasing_In_Process;
int Previous_Cursor_Line;
public:
void
Set_PlainText ( QString Set_Plain_Text );
QString
Replace_Paragraph_Separator ( QString Initial_Text );
QString
Selected_Text ( );
void
Uppercase_SQL_Keywords ( int start_uppercase_position = -1,
int uppercase_length = -1 );
QString
Initial_SQL_Keyword ( QString SQL_Statement );
void
Simple_Format_SQL ( );
void
setColor ( ColorComponent component,
const QColor &color );
QStringList
mysqlKeywords ( ) const;
QStringList
mysqlFunctions ( ) const;
QStringList
mysqlTypes ( ) const;
QStringList
mysqlIntervals ( ) const;
bool
isKeyword ( QString potential_keyword );
bool
isFunction ( QString potential_function );
bool
isType ( QString potential_type );
bool
isInterval ( QString potential_interval );
public slots:
void
setBracketsMatchingEnabled ( bool enable );
public:
bool
isBracketsMatchingEnabled ( ) const;
public slots:
void
setShowLineNumbersEnabled ( bool enable );
public:
bool
isShowLineNumbersEnabled ( ) const;
public slots:
void
setTextWrapEnabled ( bool enable );
public:
bool
isTextWrapEnabled ( ) const;
public slots:
void
setAutoIndentEnabled ( bool enable );
public:
bool
isAutoIndentEnabled ( ) const;
public:
void
Set_Tab_Modulus ( int New_Tab_modulus );
void
Indent_Selected_Text_Lines ( int Indent_Tab_Modulus );
public slots:
void
setCodeFoldingEnabled ( bool enable );
public:
bool
isCodeFoldingEnabled ( ) const;
bool
isFoldable ( int line );
bool
isFolded ( int line ) const;
public slots:
void
fold ( int line );
void
unfold ( int line );
void
toggleFold ( int line );
public slots:
void
mark ( const QString &str,
Qt::CaseSensitivity sens = Qt::CaseInsensitive );
protected:
void
keyPressEvent ( QKeyEvent* event ) Q_DECL_OVERRIDE;
void
resizeEvent ( QResizeEvent* event ) Q_DECL_OVERRIDE;
void
wheelEvent ( QWheelEvent* event ) Q_DECL_OVERRIDE;
void
insertFromMimeData ( const QMimeData* source ) Q_DECL_OVERRIDE;
private:
#define MySQL_Bracket_List "()"
#define Default_Tab_Modulus 4
QString
Compute_Bracket_Text ( QString Source_Text );
int
Bracket_Match_Position ( int Current_Position );
int
Compute_Current_Paren_Indent ( QString Current_Text,
int Current_Position );
QTextCursor
Select_Selected_Text_Lines ( );
private slots:
void
onTextChanged ( );
void
onCursorPositionChanged ( );
private:
int
findClosingConstruct ( const QTextBlock &block );
private slots:
void
updateCursor ( );
public slots:
void
updateSidebar ( );
private slots:
void
updateSidebar ( const QRect &rect,
int d );
// Auto upper case keywords ...
public:
void
setAutoUppercaseKeywordsEnabled ( bool enable ) ;
bool
isAutoUppercaseKeywordsEnabled ( ) const;
// Auto complete ...
private:
void
initializeAutoComplete ( );
public:
void
finalizeAutoComplete ( );
void
setAutoCompleteKeywordsEnabled ( bool enable ) ;
bool
isAutoCompleteKeywordsEnabled ( ) const;
void
setAutoCompleteIdentifierList ( QStringList identifier_list );
void
setAutoCompleteContextIdentifierList ( QHash <QString, QStringList> context_identifier_list );
void
setAutoCompleteIdentifiersEnabled ( bool enable ) ;
bool
isAutoCompleteIdentifiersEnabled ( ) const;
private:
void
setCompleter ( QCompleter *completer );
protected:
void
focusInEvent ( QFocusEvent *event ) Q_DECL_OVERRIDE;
private slots:
void
insertCompletion ( const QString &completion,
bool replace_entire = true );
private:
QString
textUnderCursor ( ) const;
private:
QCompleter *Completer;
// ... Auto complete
};
class MySQLBlockData: public QTextBlockUserData {
public:
QList<int> bracketPositions;
};
class MySQL_Editor_Highlighter : public QSyntaxHighlighter {
public:
MySQL_Editor_Highlighter ( QTextDocument *parent = 0 );
void
setColor( MySQL_Editor::ColorComponent component,
const QColor &color );
void
mark( const QString &str,
Qt::CaseSensitivity caseSensitivity );
public:
void
setHighlightMySQLEditor ( MySQL_Editor *highlight_mysql_editor );
protected:
void
highlightBlock ( const QString &text );
private:
MySQL_Editor *Highlight_MySQL_Editor;
QHash<MySQL_Editor::ColorComponent, QColor> m_colors;
QString m_markString;
Qt::CaseSensitivity m_markCaseSensitivity;
};
struct BlockInfo {
int position;
int number;
bool foldable: 1;
bool folded : 1;
};
Q_DECLARE_TYPEINFO(BlockInfo, Q_PRIMITIVE_TYPE);
class MySQL_Editor_Sidebar : public QWidget {
public:
MySQL_Editor_Sidebar ( MySQL_Editor *editor );
QVector<BlockInfo> lineNumbers;
QColor backgroundColor;
QColor lineNumberColor;
QColor indicatorColor;
QColor foldIndicatorColor;
int foldIndicatorWidth;
QFont font;
QPixmap rightArrowIcon;
QPixmap downArrowIcon;
protected:
void mousePressEvent ( QMouseEvent *event );
void paintEvent ( QPaintEvent *event );
};
class MySQL_Editor_DocLayout: public QPlainTextDocumentLayout {
public:
MySQL_Editor_DocLayout ( QTextDocument *doc );
void
forceUpdate ( );
};
#endif // MYSQL_EDITOR_H