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
|
/**
* @file llscripteditor.h
* @author Cinder Roxley
* @brief Text editor widget used for viewing and editing scripts
*
* $LicenseInfo:firstyear=2001&license=viewerlgpl$
* Second Life Viewer Source Code
* Copyright (C) 2012, Linden Research, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License only.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
* $/LicenseInfo$
*/
#ifndef LL_SCRIPTEDITOR_H
#define LL_SCRIPTEDITOR_H
#include "lltexteditor.h"
#include <cstddef>
class LLScriptEditor : public LLTextEditor
{
public:
struct Params : public LLInitParam::Block<Params, LLTextEditor::Params>
{
Optional<bool> show_line_numbers;
Optional<bool> default_font_size;
Params();
};
~LLScriptEditor() override;
// LLView override
void draw() override;
bool postBuild() override;
void initKeywords(bool luau_language = false);
void loadKeywords();
void clearSegments();
LLKeywords::keyword_iterator_t keywordsBegin();
LLKeywords::keyword_iterator_t keywordsEnd();
LLKeywords& getKeywords();
bool getIsLuauLanguage() { return mLuauLanguage; }
void setLuauLanguage(bool luau_language) { mLuauLanguage = luau_language; }
U32 getKeywordsGeneration() const { return mKeywordsGeneration; }
void applySyntaxSegments(const LLWString& text, const LLKeywords::segment_ops_t& ops);
static std::string getScriptFontSize();
LLFontGL* getScriptFont();
void onFontSizeChange();
protected:
friend class LLUICtrlFactory;
friend class LLScriptEditorSyntaxWorker;
LLScriptEditor(const Params& p);
private:
enum class SyntaxApplyState
{
Idle,
Building,
Inserting
};
void drawLineNumbers();
void updateSegments() override;
void drawSelectionBackground() override;
void ensureSyntaxWorker();
void queueSyntaxParse();
void queueSyntaxApply(LLWString text,
LLKeywords::segment_ops_t ops,
S32 text_generation,
U32 keywords_generation,
bool disable_highlight,
LLKeywords* keywords);
void processPendingSyntaxApply();
void resetPendingSyntaxApply();
LLKeywords mKeywordsLua;
LLKeywords mKeywordsLSL;
bool mLuauLanguage;
bool mShowLineNumbers;
bool mUseDefaultFontSize;
U32 mKeywordsGeneration;
S32 mLastQueuedTextGeneration;
U32 mLastQueuedKeywordsGeneration;
bool mLastQueuedDisableHighlight;
LLKeywords* mLastQueuedKeywords;
class LLScriptEditorSyntaxWorker* mSyntaxWorker;
SyntaxApplyState mSyntaxApplyState;
LLWString mPendingApplyText;
LLKeywords::segment_ops_t mPendingApplyOps;
segment_vec_t mPendingApplySegments;
segment_set_t mPendingApplySegmentSet;
size_t mPendingApplyOpIndex;
size_t mPendingApplySegmentIndex;
LLStyleConstSP mPendingApplyStyle;
S32 mPendingApplyTextGeneration;
U32 mPendingApplyKeywordsGeneration;
bool mPendingApplyDisableHighlight;
LLKeywords* mPendingApplyKeywords;
};
#endif // LL_SCRIPTEDITOR_H
|