forked from Mudlet/Mudlet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTConsole.h
391 lines (343 loc) · 14.4 KB
/
TConsole.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
#ifndef MUDLET_TCONSOLE_H
#define MUDLET_TCONSOLE_H
/***************************************************************************
* Copyright (C) 2008-2012 by Heiko Koehn - KoehnHeiko@googlemail.com *
* Copyright (C) 2014 by Ahmed Charles - acharles@outlook.com *
* Copyright (C) 2014-2016, 2018-2020 by Stephen Lyons *
* - slysven@virginmedia.com *
* Copyright (C) 2016 by Ian Adkins - ieadkins@gmail.com *
* *
* 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 2 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. *
***************************************************************************/
#include "TBuffer.h"
#include "pre_guard.h"
#include <QDataStream>
#include <QFile>
#include <QPointer>
#include <QTextStream>
#include <QWidget>
#include "post_guard.h"
#include <hunspell/hunspell.h>
#include <list>
#include <map>
class QCloseEvent;
class QLineEdit;
class QScrollBar;
class QToolButton;
class dlgMapper;
class Host;
class TTextEdit;
class TCommandLine;
class TDockWidget;
class TLabel;
class TSplitter;
class dlgNotepad;
class TConsole : public QWidget
{
Q_OBJECT
public:
enum ConsoleTypeFlag {
UnknownType = 0x0, // Should not be encountered but left as a trap value
CentralDebugConsole = 0x1, // One of these for whole application
ErrorConsole = 0x2, // The bottom right corner of the Editor, one per profile
MainConsole = 0x4, // One per profile
SubConsole = 0x8, // Overlaid on top of MainConsole instance, should be uniquely named in pool of SubConsole/UserWindow/Buffers AND Labels
UserWindow = 0x10, // Floatable/Dockable console, should be uniquely named in pool of SubConsole/UserWindow/Buffers AND Labels
Buffer = 0x20 // Non-visible store for data that can be copied to/from other per profile TConsoles, should be uniquely named in pool of SubConsole/UserWindow/Buffers AND Labels
};
Q_DECLARE_FLAGS(ConsoleType, ConsoleTypeFlag)
Q_DISABLE_COPY(TConsole)
TConsole(Host*, ConsoleType type = UnknownType, QWidget* parent = nullptr);
~TConsole();
void reset();
void resetMainConsole();
Host* getHost();
void replace(const QString&);
void insertHTML(const QString&);
void insertText(const QString&);
void insertText(const QString&, QPoint);
void insertLink(const QString&, QStringList&, QStringList&, QPoint, bool customFormat = false);
void insertLink(const QString&, QStringList&, QStringList&, bool customFormat = false);
void echoLink(const QString& text, QStringList& func, QStringList& hint, bool customFormat = false);
void setLabelStyleSheet(std::string& buf, std::string& sh);
void copy();
void cut();
void paste();
void appendBuffer();
void appendBuffer(TBuffer);
int getButtonState();
void closeEvent(QCloseEvent* event) override;
void resizeEvent(QResizeEvent* event) override;
void pasteWindow(TBuffer);
QStringList getLines(int from, int to);
int getLineNumber();
int getLineCount();
bool deleteLine(int);
std::list<int> getFgColor(std::string& buf);
std::list<int> getBgColor(std::string& buf);
void luaWrapLine(std::string& buf, int line);
int getColumnNumber();
std::pair<bool, QString> createMapper(const QString &windowname, int, int, int, int);
void setWrapAt(int pos)
{
mWrapAt = pos;
buffer.setWrapAt(pos);
}
void setIndentCount(int count)
{
mIndentCount = count;
buffer.setWrapIndent(count);
}
void echo(const QString&);
bool moveCursor(int x, int y);
int select(const QString&, int numOfMatch = 1);
std::tuple<bool, QString, int, int> getSelection();
void deselect();
bool selectSection(int, int);
void skipLine();
void setFgColor(int, int, int);
void setFgColor(const QColor&);
void setBgColor(int, int, int);
void setBgColor(const QColor&);
void setScrollBarVisible(bool);
void changeColors();
TConsole* createBuffer(const QString& name);
void scrollDown(int lines);
void scrollUp(int lines);
void print(const QString&, QColor fgColor, QColor bgColor);
void print(const QString& msg);
void print(const char*);
void printSystemMessage(const QString& msg);
void printOnDisplay(std::string&, bool isFromServer = false);
void printCommand(QString&);
bool hasSelection();
void moveCursorEnd();
int getLastLineNumber();
void refresh();
TLabel*
createLabel(const QString& windowname, const QString& name, int x, int y, int width, int height, bool fillBackground, bool clickThrough = false);
TConsole* createMiniConsole(const QString& windowname, const QString& name, int x, int y, int width, int height);
std::pair<bool, QString> deleteLabel(const QString&);
std::pair<bool, QString> setLabelToolTip(const QString& name, const QString& text, double duration);
std::pair<bool, QString> setLabelCursor(const QString& name, int shape);
std::pair<bool, QString> setLabelCustomCursor(const QString& name, const QString& pixMapLocation, int hotX, int hotY);
bool raiseWindow(const QString& name);
bool lowerWindow(const QString& name);
bool showWindow(const QString& name);
bool hideWindow(const QString& name);
bool printWindow(const QString& name, const QString& text);
bool setBackgroundImage(const QString& name, const QString& path);
bool setBackgroundColor(const QString& name, int r, int g, int b, int alpha);
QString getCurrentLine(std::string&);
void selectCurrentLine(std::string&);
bool setMiniConsoleFontSize(int);
bool setMiniConsoleFont(const QString& font);
void setLink(const QStringList& linkFunction, const QStringList& linkHint);
// Cannot be called setAttributes as that would mask an inherited method
void setDisplayAttributes(const TChar::AttributeFlags, const bool);
void finalize();
void runTriggers(int);
void showStatistics();
void showEvent(QShowEvent* event) override;
void hideEvent(QHideEvent* event) override;
void setConsoleBgColor(int, int, int);
// Not used: void setConsoleFgColor(int, int, int);
std::list<int> _getFgColor();
std::list<int> _getBgColor();
void _luaWrapLine(int);
QString getCurrentLine();
void selectCurrentLine();
bool saveMap(const QString&, int saveVersion = 0);
bool loadMap(const QString&);
bool importMap(const QString&, QString* errMsg = Q_NULLPTR);
// Returns the size of the main buffer area (excluding the command line and toolbars).
QSize getMainWindowSize() const;
QSize getUserWindowSize(const QString& windowname) const;
void toggleLogging(bool);
ConsoleType getType() const { return mType; }
QPair<bool, QString> addWordToSet(const QString&);
QPair<bool, QString> removeWordFromSet(const QString&);
void setSystemSpellDictionary(const QString&);
void setProfileSpellDictionary();
const QString& getSystemSpellDictionary() const { return mSpellDic; }
QTextCodec* getHunspellCodec_system() const { return mpHunspellCodec_system; }
Hunhandle* getHunspellHandle_system() const { return mpHunspell_system; }
// Either returns the handle of the per profile or the shared Mudlet one or
// nullptr depending on the state of the flags mEnableUserDictionary and
// mUseSharedDictionary:
Hunhandle* getHunspellHandle_user() const {
return mEnableUserDictionary
? (mUseSharedDictionary
? mpHunspell_shared
: mpHunspell_profile)
: nullptr; }
QSet<QString> getWordSet() const;
void setProfileName(const QString&);
bool isUsingSharedDictionary() const { return mUseSharedDictionary; }
// In the next pair of functions the first element in the return is an
// error code:
// 0 = Okay
// 1 = Window not found
// 2 = Selection not valid
QPair<quint8, TChar> getTextAttributes() const;
QPair<quint8, TChar> getTextAttributes(const QString&) const;
QPointer<Host> mpHost;
// Only assigned a value for user windows:
QPointer<TDockWidget> mpDockWidget;
// Only on a MainConsole type instance:
QPointer<TCommandLine> mpCommandLine;
TBuffer buffer;
static const QString cmLuaLineVariable;
TTextEdit* mUpperPane;
TTextEdit* mLowerPane;
QToolButton* emergencyStop;
QWidget* layer;
QWidget* layerCommandLine;
QWidget* layerEdit;
QColor mBgColor;
int mButtonState;
TBuffer mClipboard;
QColor mCommandBgColor;
QColor mCommandFgColor;
QString mConsoleName;
QString mCurrentLine;
int mDeletedLines;
QString mDisplayFontName;
int mDisplayFontSize;
QFont mDisplayFont;
int mEngineCursor;
QColor mFgColor;
TChar mFormatBasic;
TChar mFormatSystemMessage;
int mIndentCount;
QMap<QString, TConsole*> mSubConsoleMap;
QMap<QString, TDockWidget*> mDockWidgetMap;
QMap<QString, TLabel*> mLabelMap;
QFile mLogFile;
QString mLogFileName;
QTextStream mLogStream;
bool mLogToLogFile;
int mMainFrameBottomHeight;
int mMainFrameLeftWidth;
int mMainFrameRightWidth;
int mMainFrameTopHeight;
int mOldX;
int mOldY;
TChar mFormatCurrent;
QString mFormatSequenceRest;
QWidget* mpBaseVFrame;
QWidget* mpTopToolBar;
QWidget* mpBaseHFrame;
QWidget* mpLeftToolBar;
QWidget* mpMainFrame;
QWidget* mpRightToolBar;
QWidget* mpMainDisplay;
dlgMapper* mpMapper;
QScrollBar* mpScrollBar;
QTime mProcessingTime;
bool mRecordReplay;
QFile mReplayFile;
QDataStream mReplayStream;
TChar mStandardFormat;
QColor mSystemMessageBgColor;
QColor mSystemMessageFgColor;
bool mTriggerEngineMode;
QPoint mUserCursor;
bool mWindowIsHidden;
int mWrapAt;
QLineEdit* networkLatency;
QPoint P_begin;
QPoint P_end;
QString mProfileName;
TSplitter* splitter;
bool mIsPromptLine;
QToolButton* logButton;
bool mUserAgreedToCloseConsole;
QLineEdit* mpBufferSearchBox;
QToolButton* mpBufferSearchUp;
QToolButton* mpBufferSearchDown;
int mCurrentSearchResult;
QList<int> mSearchResults;
QString mSearchQuery;
QWidget* mpButtonMainLayer;
signals:
// Raised when new data is incoming to trigger Alert handling in mudlet
// class, second argument is true for a lower priority indication when
// locally produced information is painted into main console
void signal_newDataAlert(const QString&, bool isLowerPriorityChange = false);
public slots:
void slot_searchBufferUp();
void slot_searchBufferDown();
void slot_toggleReplayRecording();
void slot_stop_all_triggers(bool);
void slot_toggleLogging();
// Used by mudlet class as told by "Profile Preferences"
// =>"Copy Map" in another profile to inform a list of
// profiles - asynchronously - to load in an updated map
void slot_reloadMap(QList<QString>);
protected:
void dragEnterEvent(QDragEnterEvent* e);
void dropEvent(QDropEvent* e);
private:
void refreshMiniConsole() const;
ConsoleType mType;
// Was public in Host class but made private there and cloned to here
// (for main TConsole) to prevent it being changed without going through the
// process to load in the the changed dictionary:
QString mSpellDic;
// Cloned from Host
bool mEnableUserDictionary;
bool mUseSharedDictionary;
// Three handles, one for the dictionary the user choses from the system
// one created by the mudlet class for all profiles and the third for a per
// profile one - the last pair are built by the user and/or lua functions:
Hunhandle* mpHunspell_system;
Hunhandle* mpHunspell_shared;
Hunhandle* mpHunspell_profile;
// The user dictionary will always use the UTF-8 codec, but the one
// selected from the system's ones may not:
QByteArray mHunspellCodecName_system;
QTextCodec* mpHunspellCodec_system;
// To update the profile dictionary we actually have to track all the words
// in it so we loaded the contents into this on startup and adjust it as we
// go. Then, at the end of a session we will put the revised contents
// back into the user's ".dic" file and regenerate the needed pair of lines
// for the ".aff" file - this member is for the per profile option only as
// the shared one is held by the mudlet singleton class:
QSet<QString> mWordSet_profile;
};
Q_DECLARE_OPERATORS_FOR_FLAGS(TConsole::ConsoleType)
#if !defined(QT_NO_DEBUG)
inline QDebug& operator<<(QDebug& debug, const TConsole::ConsoleType& type)
{
QString text;
QDebugStateSaver saver(debug);
switch (type) {
case TConsole::UnknownType: text = QStringLiteral("Unknown"); break;
case TConsole::CentralDebugConsole: text = QStringLiteral("Central Debug Console"); break;
case TConsole::ErrorConsole: text = QStringLiteral("Profile Error Console"); break;
case TConsole::MainConsole: text = QStringLiteral("Profile Main Console"); break;
case TConsole::SubConsole: text = QStringLiteral("Mini Console"); break;
case TConsole::UserWindow: text = QStringLiteral("User Window"); break;
case TConsole::Buffer: text = QStringLiteral("Buffer"); break;
default:
text = QStringLiteral("Non-coded Type");
}
debug.nospace() << text;
return debug;
}
#endif // !defined(QT_NO_DEBUG)
#endif // MUDLET_TCONSOLE_H