forked from psemiletov/tea-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocument.h
374 lines (274 loc) · 9.1 KB
/
document.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
/***************************************************************************
* 2007-2021 by Peter Semiletov <[email protected]> *
* *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
**************************************************************************/
/*
Copyright (C) 2006-2008 Trolltech ASA. All rights reserved.
*/
/*
Diego Iastrubni <[email protected]> //some GPL'ed code from new-editor-diego-3, found on qtcentre forum
*/
/*
code from qwriter:
* Copyright (C) 2009 by Gancov Kostya *
*/
#ifndef DOCUMENT_H
#define DOCUMENT_H
#include <vector>
#include <utility>
#include <QPoint>
#include <QStatusBar>
#include <QMainWindow>
#include <QTabWidget>
#include <QPlainTextEdit>
#include <QSyntaxHighlighter>
#include <QMultiHash>
#if QT_VERSION >= 0x050000
#include <QRegularExpression>
#else
#include <QRegExp>
#endif
#if defined (JOYSTICK_SUPPORTED)
#include "myjoystick.h"
#endif
#include "logmemo.h"
#include "tio.h"
#include "todo.h"
using namespace std;
class CDox;
class CDocument;
class CLineNumberArea;
class CSyntaxHighlighter: public QSyntaxHighlighter
{
public:
CDocument *document;
bool casecare;
QString comment_mult;
QString comment_single;
QTextCharFormat fmt_multi_line_comment;
CSyntaxHighlighter (QTextDocument *parent = 0, CDocument *doc = 0, const QString &fname = "none");
};
#if QT_VERSION < 0x050000
class CSyntaxHighlighterQRegExp: public CSyntaxHighlighter
{
Q_OBJECT
protected:
void highlightBlock (const QString &text);
public:
vector <pair <QRegExp, QTextCharFormat> > hl_rules;
QRegExp commentStartExpression;
QRegExp commentEndExpression;
Qt::CaseSensitivity cs;
CSyntaxHighlighterQRegExp (QTextDocument *parent = 0, CDocument *doc = 0, const QString &fname = "none");
void load_from_xml (const QString &fname);
};
#endif
#if QT_VERSION >= 0x050000
class CSyntaxHighlighterQRegularExpression: public CSyntaxHighlighter
{
Q_OBJECT
protected:
void highlightBlock (const QString &text);
public:
vector <pair <QRegularExpression, QTextCharFormat> > hl_rules;
QRegularExpression commentStartExpression;
QRegularExpression commentEndExpression;
QRegularExpression::PatternOptions pattern_opts;
CSyntaxHighlighterQRegularExpression (QTextDocument *parent = 0, CDocument *doc = 0, const QString &fname = "none");
void load_from_xml (const QString &fname);
};
#endif
class CDocument: public QPlainTextEdit
{
Q_OBJECT
private:
CLineNumberArea *line_num_area;
QList <QTextEdit::ExtraSelection> extra_selections;
QTextEdit::ExtraSelection brace_selection;
protected:
QMimeData* createMimeDataFromSelection() const;
bool canInsertFromMimeData (const QMimeData *source) const;
void insertFromMimeData (const QMimeData *source);
void paintEvent (QPaintEvent *event);
void keyPressEvent (QKeyEvent *event);
void resizeEvent (QResizeEvent *event);
void wheelEvent (QWheelEvent *e);
public:
CDox *holder; //uplink
QWidget *tab_page; //pointer
CSyntaxHighlighter *highlighter;
QStringList labels;
QString eol;
QString markup_mode;
QString file_name;
QString text_to_search;
QString charset;
QString indent_val;
QPoint rect_sel_start; //rect selection
QPoint rect_sel_end; //rect selection
QColor current_line_color;
QColor brackets_color;
QColor margin_color;
QColor linenums_bg;
QColor text_color;
QColor sel_text_color;
QColor sel_back_color;
bool cursor_xy_visible;
bool highlight_current_line;
bool hl_brackets;
bool draw_margin;
bool draw_linenums;
bool auto_indent;
bool spaces_instead_of_tabs;
int position;
int tab_sp_width; //in spaces
int brace_width; //in pixels
int margin_pos; //in chars
int margin_x; //in pixels
CDocument (CDox *hldr, QWidget *parent = 0);
~CDocument();
QString get() const; //return selected text
void put (const QString &value); //replace selection or insert text at cursor
bool file_open (const QString &fileName, const QString &codec);
bool file_save_with_name (const QString &fileName, const QString &codec);
bool file_save_with_name_plain (const QString &fileName);
int get_tab_idx();
QString get_triplex();
QString get_filename_at_cursor();
QStringList get_words();
void goto_pos (int pos);
void set_tab_caption (const QString &fileName);
void set_hl (bool mode_auto = true, const QString &theext = "txt");
void set_markup_mode();
void insert_image (const QString &full_path);
void reload (const QString &enc);
void update_status();
void update_title (bool fullname = true);
void update_labels();
void set_show_linenums (bool enable);
void set_show_margin (bool enable);
void set_margin_pos (int mp);
void set_hl_cur_line (bool enable);
void set_hl_brackets (bool enable);
void set_word_wrap (bool wrap);
bool get_word_wrap();
void indent();
void un_indent();
void calc_auto_indent();
void setup_brace_width();
void brace_highlight();
void update_ext_selections();
void rect_block_start();
void rect_block_end();
bool has_rect_selection() const;
void rect_sel_reset();
void rect_sel_replace (const QString &s, bool insert = false);
void rect_sel_upd();
QString rect_sel_get() const;
void rect_sel_cut (bool just_del = false);
void lineNumberAreaPaintEvent (QPaintEvent *event);
int line_number_area_width();
public slots:
void updateLineNumberAreaWidth();
void cb_cursorPositionChanged();
void updateLineNumberArea (const QRect &, int);
void slot_selectionChanged();
};
class CDox: public QObject
{
Q_OBJECT
public:
QStringList recent_files;
//regexp pattern and file name of syntax hl rules
#if QT_VERSION >= 0x050000
std::vector<std::pair <QRegularExpression, QString> > hl_files;
#else
std::vector<std::pair <QRegExp, QString> > hl_files;
#endif
std::vector <CDocument*> items;
QHash <QString, QString> markup_modes;
QHash <QString, QString> hash_project;
CTioHandler tio_handler;
CTodo todo;
QString dir_last;
QString fname_current_session;
QString fname_current_project;
QString dir_config;
QString fname_crapbook;
QString markup_mode;
QString recent_list_fname;
QLabel *l_status_bar;
QLabel *l_charset;
CLogMemo *log; //uplink
QMainWindow *parent_wnd; //uplink
QTabWidget *tab_widget; //uplink
QTabWidget *main_tab_widget; //uplink
QMenu *menu_recent; //uplink
QTimer *timer;
#if defined(JOYSTICK_SUPPORTED)
CJoystick *joystick;
#endif
CDox();
~CDox();
void update_project (const QString &fileName);
void reload_recent_list();
void add_to_recent (CDocument *d);
void update_recent_menu();
void update_current_files_menu();
void move_cursor (QTextCursor::MoveOperation mo);
CDocument* create_new();
CDocument* open_file (const QString &fileName, const QString &codec);
CDocument* open_file_triplex (const QString &triplex);
CDocument* get_document_by_fname (const QString &fileName);
CDocument* get_current();
void close_by_idx (int i);
void close_current();
void save_to_session (const QString &fileName);
void load_from_session (const QString &fileName);
void apply_settings();
void apply_settings_single (CDocument *d);
#if defined(JOYSTICK_SUPPORTED)
bool event (QEvent *ev);
void handle_joystick_event (CJoystickAxisEvent *ev);
#endif
public slots:
void open_recent();
void open_current();
void move_cursor_up();
void move_cursor_down();
void move_cursor_left();
void move_cursor_right();
void move_cursor_x (double v);
void move_cursor_y (double v);
};
class CLineNumberArea: public QWidget
{
public:
CDocument *code_editor; //uplink
CLineNumberArea (CDocument *editor = 0): QWidget (editor), code_editor (editor) {}
QSize sizeHint() const {
return QSize (code_editor->line_number_area_width(), 0);
}
protected:
void paintEvent (QPaintEvent *event)
{
code_editor->lineNumberAreaPaintEvent (event);
}
};
#endif