]>
Commit | Line | Data |
---|---|---|
9ce192d4 | 1 | // Scintilla source code edit control |
65ec6247 RD |
2 | /** @file Document.h |
3 | ** Text document that handles notifications, DBCS, styling, words and end of line. | |
4 | **/ | |
9e730a78 | 5 | // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> |
9ce192d4 RD |
6 | // The License.txt file describes the conditions under which this software may be distributed. |
7 | ||
8 | #ifndef DOCUMENT_H | |
9 | #define DOCUMENT_H | |
10 | ||
65ec6247 RD |
11 | /** |
12 | * A Position is a position within a document between two characters or at the beginning or end. | |
13 | * Sometimes used as a character index where it identifies the character after the position. | |
14 | */ | |
9ce192d4 RD |
15 | typedef int Position; |
16 | const Position invalidPosition = -1; | |
17 | ||
65ec6247 RD |
18 | /** |
19 | * The range class represents a range of text in a document. | |
20 | * The two values are not sorted as one end may be more significant than the other | |
21 | * as is the case for the selection where the end position is the position of the caret. | |
22 | * If either position is invalidPosition then the range is invalid and most operations will fail. | |
23 | */ | |
9ce192d4 RD |
24 | class Range { |
25 | public: | |
26 | Position start; | |
27 | Position end; | |
65ec6247 | 28 | |
9e730a78 | 29 | Range(Position pos=0) : |
9ce192d4 RD |
30 | start(pos), end(pos) { |
31 | }; | |
9e730a78 | 32 | Range(Position start_, Position end_) : |
9ce192d4 RD |
33 | start(start_), end(end_) { |
34 | }; | |
65ec6247 | 35 | |
9ce192d4 RD |
36 | bool Valid() const { |
37 | return (start != invalidPosition) && (end != invalidPosition); | |
38 | } | |
65ec6247 | 39 | |
1a2fb4cd | 40 | // Is the position within the range? |
9ce192d4 RD |
41 | bool Contains(Position pos) const { |
42 | if (start < end) { | |
43 | return (pos >= start && pos <= end); | |
44 | } else { | |
45 | return (pos <= start && pos >= end); | |
46 | } | |
47 | } | |
65ec6247 | 48 | |
1a2fb4cd RD |
49 | // Is the character after pos within the range? |
50 | bool ContainsCharacter(Position pos) const { | |
51 | if (start < end) { | |
52 | return (pos >= start && pos < end); | |
53 | } else { | |
54 | return (pos < start && pos >= end); | |
55 | } | |
56 | } | |
57 | ||
9ce192d4 RD |
58 | bool Contains(Range other) const { |
59 | return Contains(other.start) && Contains(other.end); | |
60 | } | |
65ec6247 | 61 | |
9ce192d4 | 62 | bool Overlaps(Range other) const { |
9e730a78 | 63 | return |
9ce192d4 RD |
64 | Contains(other.start) || |
65 | Contains(other.end) || | |
66 | other.Contains(start) || | |
67 | other.Contains(end); | |
68 | } | |
69 | }; | |
70 | ||
71 | class DocWatcher; | |
72 | class DocModification; | |
65ec6247 | 73 | class RESearch; |
9ce192d4 | 74 | |
65ec6247 RD |
75 | /** |
76 | */ | |
9ce192d4 RD |
77 | class Document { |
78 | ||
79 | public: | |
65ec6247 | 80 | /** Used to pair watcher pointer with user data. */ |
9ce192d4 RD |
81 | class WatcherWithUserData { |
82 | public: | |
83 | DocWatcher *watcher; | |
84 | void *userData; | |
85 | WatcherWithUserData() { | |
86 | watcher = 0; | |
87 | userData = 0; | |
88 | } | |
89 | }; | |
591d01be | 90 | |
8e54aaed | 91 | enum charClassification { ccSpace, ccNewLine, ccWord, ccPunctuation }; |
65ec6247 | 92 | |
9e730a78 | 93 | private: |
9ce192d4 RD |
94 | int refCount; |
95 | CellBuffer cb; | |
1a2fb4cd | 96 | charClassification charClass[256]; |
f6bcfd97 | 97 | char stylingMask; |
9ce192d4 | 98 | int endStyled; |
1a2fb4cd | 99 | int styleClock; |
9ce192d4 | 100 | int enteredCount; |
f6bcfd97 | 101 | int enteredReadOnlyCount; |
65ec6247 | 102 | |
9ce192d4 RD |
103 | WatcherWithUserData *watchers; |
104 | int lenWatchers; | |
65ec6247 RD |
105 | |
106 | bool matchesValid; | |
107 | RESearch *pre; | |
108 | char *substituted; | |
109 | ||
9ce192d4 RD |
110 | public: |
111 | int stylingBits; | |
112 | int stylingBitsMask; | |
65ec6247 | 113 | |
9ce192d4 | 114 | int eolMode; |
65ec6247 | 115 | /// Can also be SC_CP_UTF8 to enable UTF-8 mode |
9ce192d4 RD |
116 | int dbcsCodePage; |
117 | int tabInChars; | |
f6bcfd97 | 118 | int indentInChars; |
591d01be | 119 | int actualIndentInChars; |
f6bcfd97 | 120 | bool useTabs; |
65ec6247 RD |
121 | bool tabIndents; |
122 | bool backspaceUnindents; | |
123 | ||
9ce192d4 RD |
124 | Document(); |
125 | virtual ~Document(); | |
65ec6247 | 126 | |
9ce192d4 RD |
127 | int AddRef(); |
128 | int Release(); | |
65ec6247 | 129 | |
9ce192d4 RD |
130 | int LineFromPosition(int pos); |
131 | int ClampPositionIntoDocument(int pos); | |
132 | bool IsCrLf(int pos); | |
f6bcfd97 | 133 | int LenChar(int pos); |
9ce192d4 RD |
134 | int MovePositionOutsideChar(int pos, int moveDir, bool checkLineEnd=true); |
135 | ||
136 | // Gateways to modifying document | |
a834585d RD |
137 | bool DeleteChars(int pos, int len); |
138 | bool InsertStyledString(int position, char *s, int insertLength); | |
9ce192d4 RD |
139 | int Undo(); |
140 | int Redo(); | |
141 | bool CanUndo() { return cb.CanUndo(); } | |
142 | bool CanRedo() { return cb.CanRedo(); } | |
143 | void DeleteUndoHistory() { cb.DeleteUndoHistory(); } | |
d134f170 | 144 | bool SetUndoCollection(bool collectUndo) { |
9ce192d4 RD |
145 | return cb.SetUndoCollection(collectUndo); |
146 | } | |
d134f170 | 147 | bool IsCollectingUndo() { return cb.IsCollectingUndo(); } |
9ce192d4 RD |
148 | void BeginUndoAction() { cb.BeginUndoAction(); } |
149 | void EndUndoAction() { cb.EndUndoAction(); } | |
150 | void SetSavePoint(); | |
151 | bool IsSavePoint() { return cb.IsSavePoint(); } | |
f6bcfd97 BP |
152 | |
153 | int GetLineIndentation(int line); | |
154 | void SetLineIndentation(int line, int indent); | |
155 | int GetLineIndentPosition(int line); | |
d134f170 | 156 | int GetColumn(int position); |
1a2fb4cd | 157 | int FindColumn(int line, int column); |
9ce192d4 RD |
158 | void Indent(bool forwards, int lineBottom, int lineTop); |
159 | void ConvertLineEnds(int eolModeSet); | |
160 | void SetReadOnly(bool set) { cb.SetReadOnly(set); } | |
d134f170 | 161 | bool IsReadOnly() { return cb.IsReadOnly(); } |
9ce192d4 | 162 | |
a834585d RD |
163 | bool InsertChar(int pos, char ch); |
164 | bool InsertString(int position, const char *s); | |
165 | bool InsertString(int position, const char *s, size_t insertLength); | |
f6bcfd97 | 166 | void ChangeChar(int pos, char ch); |
9ce192d4 | 167 | void DelChar(int pos); |
a834585d | 168 | void DelCharBack(int pos); |
9ce192d4 RD |
169 | |
170 | char CharAt(int position) { return cb.CharAt(position); } | |
171 | void GetCharRange(char *buffer, int position, int lengthRetrieve) { | |
172 | cb.GetCharRange(buffer, position, lengthRetrieve); | |
173 | } | |
174 | char StyleAt(int position) { return cb.StyleAt(position); } | |
175 | int GetMark(int line) { return cb.GetMark(line); } | |
f6bcfd97 BP |
176 | int AddMark(int line, int markerNum); |
177 | void DeleteMark(int line, int markerNum); | |
178 | void DeleteMarkFromHandle(int markerHandle); | |
179 | void DeleteAllMarks(int markerNum); | |
9ce192d4 RD |
180 | int LineFromHandle(int markerHandle) { return cb.LineFromHandle(markerHandle); } |
181 | int LineStart(int line); | |
f6bcfd97 | 182 | int LineEnd(int line); |
9ce192d4 RD |
183 | int LineEndPosition(int position); |
184 | int VCHomePosition(int position); | |
185 | ||
186 | int SetLevel(int line, int level); | |
187 | int GetLevel(int line) { return cb.GetLevel(line); } | |
d134f170 | 188 | void ClearLevels() { cb.ClearLevels(); } |
9ce192d4 RD |
189 | int GetLastChild(int lineParent, int level=-1); |
190 | int GetFoldParent(int line); | |
191 | ||
192 | void Indent(bool forwards); | |
1a2fb4cd | 193 | int ExtendWordSelect(int pos, int delta, bool onlyWordCharacters=false); |
9ce192d4 | 194 | int NextWordStart(int pos, int delta); |
8e54aaed | 195 | int NextWordEnd(int pos, int delta); |
9ce192d4 | 196 | int Length() { return cb.Length(); } |
591d01be | 197 | void Allocate(int newSize) { cb.Allocate(newSize*2); } |
9e730a78 RD |
198 | long FindText(int minPos, int maxPos, const char *s, |
199 | bool caseSensitive, bool word, bool wordStart, bool regExp, bool posix, int *length); | |
d134f170 | 200 | long FindText(int iMessage, unsigned long wParam, long lParam); |
65ec6247 | 201 | const char *SubstituteByPosition(const char *text, int *length); |
9ce192d4 | 202 | int LinesTotal(); |
65ec6247 | 203 | |
f6bcfd97 | 204 | void ChangeCase(Range r, bool makeUpperCase); |
591d01be RD |
205 | |
206 | void SetDefaultCharClasses(bool includeWordClass); | |
207 | void SetCharClasses(const unsigned char *chars, charClassification newCharClass); | |
9ce192d4 RD |
208 | void SetStylingBits(int bits); |
209 | void StartStyling(int position, char mask); | |
a834585d RD |
210 | bool SetStyleFor(int length, char style); |
211 | bool SetStyles(int length, char *styles); | |
9ce192d4 | 212 | int GetEndStyled() { return endStyled; } |
f6bcfd97 | 213 | bool EnsureStyledTo(int pos); |
1a2fb4cd | 214 | int GetStyleClock() { return styleClock; } |
591d01be | 215 | void IncrementStyleClock(); |
9ce192d4 RD |
216 | |
217 | int SetLineState(int line, int state) { return cb.SetLineState(line, state); } | |
218 | int GetLineState(int line) { return cb.GetLineState(line); } | |
219 | int GetMaxLineState() { return cb.GetMaxLineState(); } | |
65ec6247 | 220 | |
9ce192d4 RD |
221 | bool AddWatcher(DocWatcher *watcher, void *userData); |
222 | bool RemoveWatcher(DocWatcher *watcher, void *userData); | |
223 | const WatcherWithUserData *GetWatchers() const { return watchers; } | |
224 | int GetLenWatchers() const { return lenWatchers; } | |
65ec6247 RD |
225 | |
226 | bool IsWordPartSeparator(char ch); | |
227 | int WordPartLeft(int pos); | |
228 | int WordPartRight(int pos); | |
8e54aaed | 229 | int ExtendStyleRange(int pos, int delta, bool singleLine = false); |
9e730a78 RD |
230 | int ParaUp(int pos); |
231 | int ParaDown(int pos); | |
591d01be | 232 | int IndentSize() { return actualIndentInChars; } |
65ec6247 | 233 | |
9ce192d4 | 234 | private: |
1a2fb4cd | 235 | charClassification WordCharClass(unsigned char ch); |
d134f170 RD |
236 | bool IsWordStartAt(int pos); |
237 | bool IsWordEndAt(int pos); | |
9ce192d4 RD |
238 | bool IsWordAt(int start, int end); |
239 | void ModifiedAt(int pos); | |
65ec6247 | 240 | |
9ce192d4 RD |
241 | void NotifyModifyAttempt(); |
242 | void NotifySavePoint(bool atSavePoint); | |
243 | void NotifyModified(DocModification mh); | |
244 | }; | |
245 | ||
65ec6247 RD |
246 | /** |
247 | * To optimise processing of document modifications by DocWatchers, a hint is passed indicating the | |
248 | * scope of the change. | |
249 | * If the DocWatcher is a document view then this can be used to optimise screen updating. | |
250 | */ | |
9ce192d4 RD |
251 | class DocModification { |
252 | public: | |
253 | int modificationType; | |
254 | int position; | |
255 | int length; | |
65ec6247 RD |
256 | int linesAdded; /**< Negative if lines deleted. */ |
257 | const char *text; /**< Only valid for changes to text, not for changes to style. */ | |
9ce192d4 RD |
258 | int line; |
259 | int foldLevelNow; | |
260 | int foldLevelPrev; | |
261 | ||
9e730a78 | 262 | DocModification(int modificationType_, int position_=0, int length_=0, |
9ce192d4 RD |
263 | int linesAdded_=0, const char *text_=0) : |
264 | modificationType(modificationType_), | |
265 | position(position_), | |
266 | length(length_), | |
267 | linesAdded(linesAdded_), | |
268 | text(text_), | |
269 | line(0), | |
270 | foldLevelNow(0), | |
271 | foldLevelPrev(0) {} | |
f6bcfd97 BP |
272 | |
273 | DocModification(int modificationType_, const Action &act, int linesAdded_=0) : | |
274 | modificationType(modificationType_), | |
275 | position(act.position / 2), | |
276 | length(act.lenData), | |
277 | linesAdded(linesAdded_), | |
278 | text(act.data), | |
279 | line(0), | |
280 | foldLevelNow(0), | |
281 | foldLevelPrev(0) {} | |
9ce192d4 RD |
282 | }; |
283 | ||
65ec6247 RD |
284 | /** |
285 | * A class that wants to receive notifications from a Document must be derived from DocWatcher | |
286 | * and implement the notification methods. It can then be added to the watcher list with AddWatcher. | |
287 | */ | |
9ce192d4 RD |
288 | class DocWatcher { |
289 | public: | |
290 | virtual ~DocWatcher() {} | |
65ec6247 | 291 | |
9ce192d4 RD |
292 | virtual void NotifyModifyAttempt(Document *doc, void *userData) = 0; |
293 | virtual void NotifySavePoint(Document *doc, void *userData, bool atSavePoint) = 0; | |
294 | virtual void NotifyModified(Document *doc, DocModification mh, void *userData) = 0; | |
295 | virtual void NotifyDeleted(Document *doc, void *userData) = 0; | |
f6bcfd97 | 296 | virtual void NotifyStyleNeeded(Document *doc, void *userData, int endPos) = 0; |
9ce192d4 RD |
297 | }; |
298 | ||
299 | #endif |