forked from BalazsJako/ImGuiColorTextEdit
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathTextEditor.h
More file actions
735 lines (630 loc) · 21.7 KB
/
TextEditor.h
File metadata and controls
735 lines (630 loc) · 21.7 KB
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
#pragma once
#include <string>
#include <vector>
#include <array>
#include <memory>
#include <unordered_set>
#include <unordered_map>
#include <functional>
#include <thread>
#include <map>
#include <regex>
#include <imgui/imgui.h>
#include <SHADERed/Objects/SPIRVParser.h>
class TextEditor {
public:
enum class PaletteIndex {
Default,
Keyword,
Number,
String,
CharLiteral,
Punctuation,
Preprocessor,
Identifier,
KnownIdentifier,
PreprocIdentifier,
Comment,
MultiLineComment,
Background,
Cursor,
Selection,
ErrorMarker,
Breakpoint,
BreakpointOutline,
CurrentLineIndicator,
CurrentLineIndicatorOutline,
LineNumber,
CurrentLineFill,
CurrentLineFillInactive,
CurrentLineEdge,
ErrorMessage,
BreakpointDisabled,
UserFunction,
UserType,
UniformVariable,
GlobalVariable,
LocalVariable,
FunctionArgument,
Max
};
enum class ShortcutID {
Undo,
Redo,
MoveUp,
SelectUp,
MoveDown,
SelectDown,
MoveLeft,
SelectLeft,
MoveWordLeft,
SelectWordLeft,
MoveRight,
SelectRight,
MoveWordRight,
SelectWordRight,
MoveUpBlock,
SelectUpBlock,
MoveDownBlock,
SelectDownBlock,
MoveTop,
SelectTop,
MoveBottom,
SelectBottom,
MoveStartLine,
SelectStartLine,
MoveEndLine,
SelectEndLine,
ForwardDelete,
ForwardDeleteWord,
DeleteRight,
BackwardDelete,
BackwardDeleteWord,
DeleteLeft,
OverwriteCursor,
Copy,
Paste,
Cut,
SelectAll,
AutocompleteOpen,
AutocompleteSelect,
AutocompleteSelectActive,
AutocompleteUp,
AutocompleteDown,
NewLine,
Indent,
Unindent,
Find,
Replace,
FindNext,
DebugStep,
DebugStepInto,
DebugStepOut,
DebugContinue,
DebugJumpHere,
DebugBreakpoint,
DebugStop,
DuplicateLine,
CommentLines,
UncommentLines,
Count
};
static const int LineNumberSpace = 20;
static const int DebugDataSpace = 10;
struct Shortcut {
// 0 - not used, 1 - used
bool Alt;
bool Ctrl;
bool Shift;
// -1 - not used, everything else: Win32 VK_ code
int Key1;
int Key2;
Shortcut(int vk1 = -1, int vk2 = -2, bool alt = 0, bool ctrl = 0, bool shift = 0)
: Key1(vk1)
, Key2(vk2)
, Alt(alt)
, Ctrl(ctrl)
, Shift(shift)
{
}
};
enum class SelectionMode {
Normal,
Word,
Line
};
struct Breakpoint {
int mLine;
bool mEnabled;
bool mUseCondition;
std::string mCondition;
Breakpoint()
: mLine(-1)
, mEnabled(false)
{
}
};
// Represents a character coordinate from the user's point of view,
// i. e. consider an uniform grid (assuming fixed-width font) on the
// screen as it is rendered, and each cell has its own coordinate, starting from 0.
// Tabs are counted as [1..mTabSize] count empty spaces, depending on
// how many space is necessary to reach the next tab stop.
// For example, coordinate (1, 5) represents the character 'B' in a line "\tABC", when mTabSize = 4,
// because it is rendered as " ABC" on the screen.
struct Coordinates {
int mLine, mColumn;
Coordinates()
: mLine(0)
, mColumn(0)
{
}
Coordinates(int aLine, int aColumn)
: mLine(aLine)
, mColumn(aColumn)
{
assert(aLine >= 0);
assert(aColumn >= 0);
}
static Coordinates Invalid()
{
static Coordinates invalid(-1, -1);
return invalid;
}
bool operator==(const Coordinates& o) const
{
return mLine == o.mLine && mColumn == o.mColumn;
}
bool operator!=(const Coordinates& o) const
{
return mLine != o.mLine || mColumn != o.mColumn;
}
bool operator<(const Coordinates& o) const
{
if (mLine != o.mLine)
return mLine < o.mLine;
return mColumn < o.mColumn;
}
bool operator>(const Coordinates& o) const
{
if (mLine != o.mLine)
return mLine > o.mLine;
return mColumn > o.mColumn;
}
bool operator<=(const Coordinates& o) const
{
if (mLine != o.mLine)
return mLine < o.mLine;
return mColumn <= o.mColumn;
}
bool operator>=(const Coordinates& o) const
{
if (mLine != o.mLine)
return mLine > o.mLine;
return mColumn >= o.mColumn;
}
};
struct Identifier {
Identifier() {}
Identifier(const std::string& declr)
: mDeclaration(declr)
{
}
Coordinates mLocation;
std::string mDeclaration;
};
typedef std::string String;
typedef std::unordered_map<std::string, Identifier> Identifiers;
typedef std::unordered_set<std::string> Keywords;
typedef std::map<int, std::string> ErrorMarkers;
typedef std::array<ImU32, (unsigned)PaletteIndex::Max> Palette;
typedef uint8_t Char;
struct Glyph {
Char mChar;
PaletteIndex mColorIndex = PaletteIndex::Default;
bool mComment : 1;
bool mMultiLineComment : 1;
bool mPreprocessor : 1;
Glyph(Char aChar, PaletteIndex aColorIndex)
: mChar(aChar)
, mColorIndex(aColorIndex)
, mComment(false)
, mMultiLineComment(false)
, mPreprocessor(false)
{
}
};
typedef std::vector<Glyph> Line;
typedef std::vector<Line> Lines;
struct LanguageDefinition {
typedef std::pair<std::string, PaletteIndex> TokenRegexString;
typedef std::vector<TokenRegexString> TokenRegexStrings;
typedef bool (*TokenizeCallback)(const char* in_begin, const char* in_end, const char*& out_begin, const char*& out_end, PaletteIndex& paletteIndex);
std::string mName;
Keywords mKeywords;
Identifiers mIdentifiers;
Identifiers mPreprocIdentifiers;
std::string mCommentStart, mCommentEnd, mSingleLineComment;
char mPreprocChar;
bool mAutoIndentation;
TokenizeCallback mTokenize;
TokenRegexStrings mTokenRegexStrings;
bool mCaseSensitive;
LanguageDefinition()
: mPreprocChar('#')
, mAutoIndentation(true)
, mTokenize(nullptr)
, mCaseSensitive(true)
{
}
static const LanguageDefinition& CPlusPlus();
static const LanguageDefinition& HLSL();
static const LanguageDefinition& GLSL();
static const LanguageDefinition& SPIRV();
static const LanguageDefinition& C();
static const LanguageDefinition& SQL();
static const LanguageDefinition& AngelScript();
static const LanguageDefinition& Lua();
private:
static void m_HLSLDocumentation(Identifiers& idents);
static void m_GLSLDocumentation(Identifiers& idents);
};
TextEditor();
~TextEditor();
void SetLanguageDefinition(const LanguageDefinition& aLanguageDef);
const LanguageDefinition& GetLanguageDefinition() const { return mLanguageDefinition; }
const Palette& GetPalette() const { return mPaletteBase; }
void SetPalette(const Palette& aValue);
void SetErrorMarkers(const ErrorMarkers& aMarkers) { mErrorMarkers = aMarkers; }
bool HasBreakpoint(int line);
void AddBreakpoint(int line, bool useCondition = false, std::string condition = "", bool enabled = true);
void RemoveBreakpoint(int line);
void SetBreakpointEnabled(int line, bool enable);
Breakpoint& GetBreakpoint(int line);
inline const std::vector<Breakpoint>& GetBreakpoints() { return mBreakpoints; }
void SetCurrentLineIndicator(int line, bool displayBar = true);
inline int GetCurrentLineIndicator() { return mDebugCurrentLine; }
inline bool IsDebugging() { return mDebugCurrentLine > 0; }
void Render(const char* aTitle, const ImVec2& aSize = ImVec2(), bool aBorder = false);
void SetText(const std::string& aText);
std::string GetText() const;
void SetTextLines(const std::vector<std::string>& aLines);
void GetTextLines(std::vector<std::string>& out) const;
std::string GetSelectedText() const;
std::string GetCurrentLineText() const;
int GetTotalLines() const { return (int)mLines.size(); }
bool IsOverwrite() const { return mOverwrite; }
bool IsFocused() const { return mFocused; }
void SetReadOnly(bool aValue);
bool IsReadOnly() { return mReadOnly || IsDebugging(); }
bool IsTextChanged() const { return mTextChanged; }
bool IsCursorPositionChanged() const { return mCursorPositionChanged; }
inline void ResetTextChanged()
{
mTextChanged = false;
mChangedLines.clear();
}
bool IsColorizerEnabled() const { return mColorizerEnabled; }
void SetColorizerEnable(bool aValue);
Coordinates GetCorrectCursorPosition(); // The GetCursorPosition() returns the cursor pos where \t == 4 spaces
Coordinates GetCursorPosition() const { return GetActualCursorCoordinates(); }
void SetCursorPosition(const Coordinates& aPosition);
inline void SetHandleMouseInputs(bool aValue) { mHandleMouseInputs = aValue; }
inline bool IsHandleMouseInputsEnabled() const { return mHandleKeyboardInputs; }
inline void SetHandleKeyboardInputs(bool aValue) { mHandleKeyboardInputs = aValue; }
inline bool IsHandleKeyboardInputsEnabled() const { return mHandleKeyboardInputs; }
inline void SetImGuiChildIgnored(bool aValue) { mIgnoreImGuiChild = aValue; }
inline bool IsImGuiChildIgnored() const { return mIgnoreImGuiChild; }
inline void SetShowWhitespaces(bool aValue) { mShowWhitespaces = aValue; }
inline bool IsShowingWhitespaces() const { return mShowWhitespaces; }
void InsertText(const std::string& aValue, bool indent = false);
void InsertText(const char* aValue, bool indent = false);
void MoveUp(int aAmount = 1, bool aSelect = false);
void MoveDown(int aAmount = 1, bool aSelect = false);
void MoveLeft(int aAmount = 1, bool aSelect = false, bool aWordMode = false);
void MoveRight(int aAmount = 1, bool aSelect = false, bool aWordMode = false);
void MoveTop(bool aSelect = false);
void MoveBottom(bool aSelect = false);
void MoveHome(bool aSelect = false);
void MoveEnd(bool aSelect = false);
void SetSelectionStart(const Coordinates& aPosition);
void SetSelectionEnd(const Coordinates& aPosition);
void SetSelection(const Coordinates& aStart, const Coordinates& aEnd, SelectionMode aMode = SelectionMode::Normal);
void SelectWordUnderCursor();
void SelectAll();
bool HasSelection() const;
void Copy();
void Cut();
void Paste();
void Delete();
bool CanUndo();
bool CanRedo();
void Undo(int aSteps = 1);
void Redo(int aSteps = 1);
std::vector<std::string> GetRelevantExpressions(int line);
inline void SetHighlightedLines(const std::vector<int>& lines) { mHighlightedLines = lines; }
inline void ClearHighlightedLines() { mHighlightedLines.clear(); }
inline void SetTabSize(int s) { mTabSize = std::max<int>(0, std::min<int>(32, s)); }
inline int GetTabSize() { return mTabSize; }
inline void SetInsertSpaces(bool s) { mInsertSpaces = s; }
inline int GetInsertSpaces() { return mInsertSpaces; }
inline void SetSmartIndent(bool s) { mSmartIndent = s; }
inline void SetAutoIndentOnPaste(bool s) { mAutoindentOnPaste = s; }
inline void SetHighlightLine(bool s) { mHighlightLine = s; }
inline void SetCompleteBraces(bool s) { mCompleteBraces = s; }
inline void SetHorizontalScroll(bool s) { mHorizontalScroll = s; }
inline void SetSmartPredictions(bool s) { mAutocomplete = s; }
inline void SetFunctionDeclarationTooltip(bool s) { mFunctionDeclarationTooltipEnabled = s; }
inline void SetFunctionTooltips(bool s) { mFuncTooltips = s; }
inline void SetActiveAutocomplete(bool cac) { mActiveAutocomplete = cac; }
inline void SetScrollbarMarkers(bool markers) { mScrollbarMarkers = markers; }
inline void SetSidebarVisible(bool s) { mSidebar = s; }
inline void SetSearchEnabled(bool s) { mHasSearch = s; }
inline void SetHiglightBrackets(bool s) { mHighlightBrackets = s; }
inline void SetFoldEnabled(bool s) { mFoldEnabled = s; }
inline void SetUIScale(float scale) { mUIScale = scale; }
inline void SetUIFontSize(float size) { mUIFontSize = size; }
inline void SetEditorFontSize(float size) { mEditorFontSize = size; }
void SetShortcut(TextEditor::ShortcutID id, Shortcut s);
inline void SetShowLineNumbers(bool s)
{
mShowLineNumbers = s;
mTextStart = (s ? 20 : 6);
mLeftMargin = (s ? (DebugDataSpace + LineNumberSpace) : (DebugDataSpace - LineNumberSpace));
}
inline int GetTextStart() const { return mShowLineNumbers ? 7 : 3; }
void Colorize(int aFromLine = 0, int aCount = -1);
void ColorizeRange(int aFromLine = 0, int aToLine = 0);
void ColorizeInternal();
inline void ClearAutocompleteData()
{
mACFunctions.clear();
mACUserTypes.clear();
mACUniforms.clear();
mACGlobals.clear();
}
inline void ClearAutocompleteEntries()
{
mACEntries.clear();
mACEntrySearch.clear();
}
inline const std::unordered_map<std::string, ed::SPIRVParser::Function>& GetAutocompleteFunctions() { return mACFunctions; }
inline const std::unordered_map<std::string, std::vector<ed::SPIRVParser::Variable>>& GetAutocompleteUserTypes() { return mACUserTypes; }
inline const std::vector<ed::SPIRVParser::Variable>& GetAutocompleteUniforms() { return mACUniforms; }
inline const std::vector<ed::SPIRVParser::Variable>& GetAutocompleteGlobals() { return mACGlobals; }
inline void SetAutocompleteFunctions(const std::unordered_map<std::string, ed::SPIRVParser::Function>& funcs)
{
mACFunctions = funcs;
}
inline void SetAutocompleteUserTypes(const std::unordered_map<std::string, std::vector<ed::SPIRVParser::Variable>>& utypes)
{
mACUserTypes = utypes;
}
inline void SetAutocompleteUniforms(const std::vector<ed::SPIRVParser::Variable>& unis)
{
mACUniforms = unis;
}
inline void SetAutocompleteGlobals(const std::vector<ed::SPIRVParser::Variable>& globs)
{
mACGlobals = globs;
}
inline void AddAutocompleteEntry(const std::string& search, const std::string& display, const std::string& value)
{
mACEntrySearch.push_back(search);
mACEntries.push_back(std::make_pair(display, value));
}
static const std::vector<Shortcut> GetDefaultShortcuts();
static const Palette& GetDarkPalette();
static const Palette& GetLightPalette();
static const Palette& GetRetroBluePalette();
enum class DebugAction
{
Step,
StepInto,
StepOut,
Continue,
Stop
};
std::function<void(TextEditor*, int)> OnDebuggerJump;
std::function<void(TextEditor*, DebugAction)> OnDebuggerAction;
std::function<void(TextEditor*, const std::string&)> OnIdentifierHover;
std::function<bool(TextEditor*, const std::string&)> HasIdentifierHover;
std::function<void(TextEditor*, const std::string&)> OnExpressionHover;
std::function<bool(TextEditor*, const std::string&)> HasExpressionHover;
std::function<void(TextEditor*, int)> OnBreakpointRemove;
std::function<void(TextEditor*, int, bool, const std::string&, bool)> OnBreakpointUpdate;
std::function<void(TextEditor*, const std::string&, TextEditor::Coordinates coords)> OnCtrlAltClick;
std::function<void(TextEditor*, const std::string&, const std::string&)> RequestOpen;
std::function<void(TextEditor*)> OnContentUpdate;
inline void SetPath(const std::string& path) { mPath = path; }
inline const std::string& GetPath() { return mPath; }
private:
std::string mPath;
typedef std::vector<std::pair<std::regex, PaletteIndex>> RegexList;
struct EditorState
{
Coordinates mSelectionStart;
Coordinates mSelectionEnd;
Coordinates mCursorPosition;
};
class UndoRecord
{
public:
UndoRecord() {}
~UndoRecord() {}
UndoRecord(
const std::string& aAdded,
const TextEditor::Coordinates aAddedStart,
const TextEditor::Coordinates aAddedEnd,
const std::string& aRemoved,
const TextEditor::Coordinates aRemovedStart,
const TextEditor::Coordinates aRemovedEnd,
TextEditor::EditorState& aBefore,
TextEditor::EditorState& aAfter);
void Undo(TextEditor* aEditor);
void Redo(TextEditor* aEditor);
std::string mAdded;
Coordinates mAddedStart;
Coordinates mAddedEnd;
std::string mRemoved;
Coordinates mRemovedStart;
Coordinates mRemovedEnd;
EditorState mBefore;
EditorState mAfter;
};
typedef std::vector<UndoRecord> UndoBuffer;
void ProcessInputs();
float TextDistanceToLineStart(const Coordinates& aFrom) const;
void EnsureCursorVisible();
int GetPageSize() const;
std::string GetText(const Coordinates& aStart, const Coordinates& aEnd) const;
Coordinates GetActualCursorCoordinates() const;
Coordinates SanitizeCoordinates(const Coordinates& aValue) const;
void Advance(Coordinates& aCoordinates) const;
void DeleteRange(const Coordinates& aStart, const Coordinates& aEnd);
int InsertTextAt(Coordinates& aWhere, const char* aValue, bool indent = false);
void AddUndo(UndoRecord& aValue);
Coordinates ScreenPosToCoordinates(const ImVec2& aPosition) const;
Coordinates MousePosToCoordinates(const ImVec2& aPosition) const;
ImVec2 CoordinatesToScreenPos(const TextEditor::Coordinates& aPosition) const;
Coordinates FindWordStart(const Coordinates& aFrom) const;
Coordinates FindWordEnd(const Coordinates& aFrom) const;
Coordinates FindNextWord(const Coordinates& aFrom) const;
int GetCharacterIndex(const Coordinates& aCoordinates) const;
int GetCharacterColumn(int aLine, int aIndex) const;
int GetLineCharacterCount(int aLine) const;
int GetLineMaxColumn(int aLine) const;
bool IsOnWordBoundary(const Coordinates& aAt) const;
void RemoveLine(int aStart, int aEnd);
void RemoveLine(int aIndex);
Line& InsertLine(int aIndex, int column);
void EnterCharacter(ImWchar aChar, bool aShift);
void Backspace();
void DeleteSelection();
std::string GetWordUnderCursor() const;
std::string GetWordAt(const Coordinates& aCoords) const;
ImU32 GetGlyphColor(const Glyph& aGlyph) const;
Coordinates FindFirst(const std::string& what, const Coordinates& fromWhere);
void HandleKeyboardInputs();
void HandleMouseInputs();
void RenderInternal(const char* aTitle);
bool mFuncTooltips;
float mUIScale, mUIFontSize, mEditorFontSize;
inline float mUICalculateSize(float h)
{
return h * (mUIScale + mUIFontSize / 18.0f - 1.0f);
}
inline float mEditorCalculateSize(float h)
{
return h * (mUIScale + mEditorFontSize / 18.0f - 1.0f);
}
bool mFunctionDeclarationTooltipEnabled;
TextEditor::Coordinates mFunctionDeclarationCoord;
bool mFunctionDeclarationTooltip;
std::string mFunctionDeclaration;
void mOpenFunctionDeclarationTooltip(const std::string& obj, TextEditor::Coordinates coord);
std::string mBuildFunctionDef(const std::string& func, const std::string& lang);
std::string mBuildVariableType(const ed::SPIRVParser::Variable& var, const std::string& lang);
float mLineSpacing;
Lines mLines;
EditorState mState;
UndoBuffer mUndoBuffer;
int mUndoIndex;
int mReplaceIndex;
bool mSidebar;
bool mHasSearch;
char mFindWord[256];
bool mFindOpened;
bool mFindJustOpened;
bool mFindNext;
bool mFindFocused, mReplaceFocused;
bool mReplaceOpened;
char mReplaceWord[256];
bool mFoldEnabled;
std::vector<Coordinates> mFoldBegin, mFoldEnd;
std::vector<int> mFoldConnection;
std::vector<bool> mFold;
bool mFoldSorted;
void mRemoveFolds(const Coordinates& start, const Coordinates& end);
void mRemoveFolds(std::vector<Coordinates>& folds, const Coordinates& start, const Coordinates& end);
uint64_t mFoldLastIteration;
float mLastScroll;
std::vector<std::string> mACEntrySearch;
std::vector<std::pair<std::string, std::string>> mACEntries;
bool mIsSnippet;
std::vector<Coordinates> mSnippetTagStart, mSnippetTagEnd;
std::vector<int> mSnippetTagID;
std::vector<bool> mSnippetTagHighlight;
int mSnippetTagSelected, mSnippetTagLength, mSnippetTagPreviousLength;
std::string mAutcompleteParse(const std::string& str, const Coordinates& start);
void mAutocompleteSelect();
bool m_requestAutocomplete, m_readyForAutocomplete;
void m_buildMemberSuggestions(bool* keepACOpened = nullptr);
void m_buildSuggestions(bool* keepACOpened = nullptr);
bool mActiveAutocomplete;
bool mAutocomplete;
std::unordered_map<std::string, ed::SPIRVParser::Function> mACFunctions;
std::unordered_map<std::string, std::vector<ed::SPIRVParser::Variable>> mACUserTypes;
std::vector<ed::SPIRVParser::Variable> mACUniforms;
std::vector<ed::SPIRVParser::Variable> mACGlobals;
std::string mACWord;
std::vector<std::pair<std::string, std::string>> mACSuggestions;
int mACIndex;
bool mACOpened;
bool mACSwitched; // if == true then allow selection with enter
std::string mACObject; // if mACObject is not empty, it means user typed '.' -> suggest struct members and methods for mACObject
Coordinates mACPosition;
std::vector<Shortcut> m_shortcuts;
bool mScrollbarMarkers;
std::vector<int> mChangedLines;
std::vector<int> mHighlightedLines;
bool mHorizontalScroll;
bool mCompleteBraces;
bool mShowLineNumbers;
bool mHighlightLine;
bool mHighlightBrackets;
bool mInsertSpaces;
bool mSmartIndent;
bool mFocused;
int mTabSize;
bool mOverwrite;
bool mReadOnly;
bool mWithinRender;
bool mScrollToCursor;
bool mScrollToTop;
bool mTextChanged;
bool mColorizerEnabled;
float mTextStart; // position (in pixels) where a code line starts relative to the left of the TextEditor.
int mLeftMargin;
bool mCursorPositionChanged;
int mColorRangeMin, mColorRangeMax;
SelectionMode mSelectionMode;
bool mHandleKeyboardInputs;
bool mHandleMouseInputs;
bool mIgnoreImGuiChild;
bool mShowWhitespaces;
bool mAutoindentOnPaste;
Palette mPaletteBase;
Palette mPalette;
LanguageDefinition mLanguageDefinition;
RegexList mRegexList;
float mDebugBarWidth, mDebugBarHeight;
bool mDebugBar;
bool mDebugCurrentLineUpdated;
int mDebugCurrentLine;
ImVec2 mUICursorPos, mFindOrigin;
float mWindowWidth;
std::vector<Breakpoint> mBreakpoints;
ImVec2 mRightClickPos;
int mPopupCondition_Line;
bool mPopupCondition_Use;
char mPopupCondition_Condition[512];
bool mCheckComments;
ErrorMarkers mErrorMarkers;
ImVec2 mCharAdvance;
Coordinates mInteractiveStart, mInteractiveEnd;
std::string mLineBuffer;
uint64_t mStartTime;
Coordinates mLastHoverPosition;
std::chrono::steady_clock::time_point mLastHoverTime;
float mLastClick;
};