1 // Scintilla source code edit control
3 ** Text document that handles notifications, DBCS, styling, words and end of line.
5 // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
16 * A Position is a position within a document between two characters or at the beginning or end.
17 * Sometimes used as a character index where it identifies the character after the position.
20 const Position invalidPosition
= -1;
23 * The range class represents a range of text in a document.
24 * The two values are not sorted as one end may be more significant than the other
25 * as is the case for the selection where the end position is the position of the caret.
26 * If either position is invalidPosition then the range is invalid and most operations will fail.
33 Range(Position pos
=0) :
34 start(pos
), end(pos
) {
36 Range(Position start_
, Position end_
) :
37 start(start_
), end(end_
) {
41 return (start
!= invalidPosition
) && (end
!= invalidPosition
);
44 // Is the position within the range?
45 bool Contains(Position pos
) const {
47 return (pos
>= start
&& pos
<= end
);
49 return (pos
<= start
&& pos
>= end
);
53 // Is the character after pos within the range?
54 bool ContainsCharacter(Position pos
) const {
56 return (pos
>= start
&& pos
< end
);
58 return (pos
< start
&& pos
>= end
);
62 bool Contains(Range other
) const {
63 return Contains(other
.start
) && Contains(other
.end
);
66 bool Overlaps(Range other
) const {
68 Contains(other
.start
) ||
69 Contains(other
.end
) ||
70 other
.Contains(start
) ||
76 class DocModification
;
80 * Interface class for regular expression searching
82 class RegexSearchBase
{
84 virtual ~RegexSearchBase(){}
86 virtual long FindText(Document
* doc
, int minPos
, int maxPos
, const char *s
,
87 bool caseSensitive
, bool word
, bool wordStart
, int flags
, int *length
) = 0;
89 ///@return String with the substitutions, must remain valid until the next call or destruction
90 virtual const char *SubstituteByPosition(Document
* doc
, const char *text
, int *length
) = 0;
93 /// Factory function for RegexSearchBase
94 extern RegexSearchBase
* CreateRegexSearch(CharClassify
*charClassTable
);
101 const unsigned char *styles
;
102 StyledText( size_t length_
, const char *text_
, bool multipleStyles_
, int style_
, const unsigned char *styles_
) :
103 length(length_
), text(text_
), multipleStyles(multipleStyles_
), style(style_
), styles(styles_
) {
105 // Return number of bytes from start to before '\n' or end of text.
106 // Return 1 when start is outside text
107 size_t LineLength(size_t start
) const {
109 while ((cur
< length
) && (text
[cur
] != '\n'))
113 size_t StyleAt(size_t i
) const {
114 return multipleStyles
? styles
[i
] : style
;
120 class Document
: PerLine
{
123 /** Used to pair watcher pointer with user data. */
124 class WatcherWithUserData
{
128 WatcherWithUserData() {
134 enum charClassification
{ ccSpace
, ccNewLine
, ccWord
, ccPunctuation
};
138 CharClassify charClass
;
142 int enteredModification
;
144 int enteredReadOnlyCount
;
146 WatcherWithUserData
*watchers
;
149 // ldSize is not real data - it is for dimensions and loops
150 enum lineData
{ ldMarkers
, ldLevels
, ldState
, ldMargin
, ldAnnotation
, ldSize
};
151 PerLine
*perLineData
[ldSize
];
154 RegexSearchBase
* regex
;
161 /// Can also be SC_CP_UTF8 to enable UTF-8 mode
165 int actualIndentInChars
;
168 bool backspaceUnindents
;
170 DecorationList decorations
;
179 virtual void InsertLine(int line
);
180 virtual void RemoveLine(int line
);
182 int LineFromPosition(int pos
) const;
183 int ClampPositionIntoDocument(int pos
);
184 bool IsCrLf(int pos
);
185 int LenChar(int pos
);
186 bool InGoodUTF8(int pos
, int &start
, int &end
);
187 int MovePositionOutsideChar(int pos
, int moveDir
, bool checkLineEnd
=true);
189 // Gateways to modifying document
190 void ModifiedAt(int pos
);
191 void CheckReadOnly();
192 bool DeleteChars(int pos
, int len
);
193 bool InsertString(int position
, const char *s
, int insertLength
);
196 bool CanUndo() { return cb
.CanUndo(); }
197 bool CanRedo() { return cb
.CanRedo(); }
198 void DeleteUndoHistory() { cb
.DeleteUndoHistory(); }
199 bool SetUndoCollection(bool collectUndo
) {
200 return cb
.SetUndoCollection(collectUndo
);
202 bool IsCollectingUndo() { return cb
.IsCollectingUndo(); }
203 void BeginUndoAction() { cb
.BeginUndoAction(); }
204 void EndUndoAction() { cb
.EndUndoAction(); }
205 void AddUndoAction(int token
, bool mayCoalesce
) { cb
.AddUndoAction(token
, mayCoalesce
); }
207 bool IsSavePoint() { return cb
.IsSavePoint(); }
208 const char *BufferPointer() { return cb
.BufferPointer(); }
210 int GetLineIndentation(int line
);
211 void SetLineIndentation(int line
, int indent
);
212 int GetLineIndentPosition(int line
) const;
213 int GetColumn(int position
);
214 int FindColumn(int line
, int column
);
215 void Indent(bool forwards
, int lineBottom
, int lineTop
);
216 static char *TransformLineEnds(int *pLenOut
, const char *s
, size_t len
, int eolMode
);
217 void ConvertLineEnds(int eolModeSet
);
218 void SetReadOnly(bool set
) { cb
.SetReadOnly(set
); }
219 bool IsReadOnly() { return cb
.IsReadOnly(); }
221 bool InsertChar(int pos
, char ch
);
222 bool InsertCString(int position
, const char *s
);
223 void ChangeChar(int pos
, char ch
);
224 void DelChar(int pos
);
225 void DelCharBack(int pos
);
227 char CharAt(int position
) { return cb
.CharAt(position
); }
228 void GetCharRange(char *buffer
, int position
, int lengthRetrieve
) {
229 cb
.GetCharRange(buffer
, position
, lengthRetrieve
);
231 char StyleAt(int position
) { return cb
.StyleAt(position
); }
232 int GetMark(int line
);
233 int AddMark(int line
, int markerNum
);
234 void AddMarkSet(int line
, int valueSet
);
235 void DeleteMark(int line
, int markerNum
);
236 void DeleteMarkFromHandle(int markerHandle
);
237 void DeleteAllMarks(int markerNum
);
238 int LineFromHandle(int markerHandle
);
239 int LineStart(int line
) const;
240 int LineEnd(int line
) const;
241 int LineEndPosition(int position
) const;
242 bool IsLineEndPosition(int position
) const;
243 int VCHomePosition(int position
) const;
245 int SetLevel(int line
, int level
);
246 int GetLevel(int line
);
248 int GetLastChild(int lineParent
, int level
=-1);
249 int GetFoldParent(int line
);
251 void Indent(bool forwards
);
252 int ExtendWordSelect(int pos
, int delta
, bool onlyWordCharacters
=false);
253 int NextWordStart(int pos
, int delta
);
254 int NextWordEnd(int pos
, int delta
);
255 int Length() const { return cb
.Length(); }
256 void Allocate(int newSize
) { cb
.Allocate(newSize
); }
257 long FindText(int minPos
, int maxPos
, const char *s
,
258 bool caseSensitive
, bool word
, bool wordStart
, bool regExp
, int flags
, int *length
);
259 long FindText(int iMessage
, unsigned long wParam
, long lParam
);
260 const char *SubstituteByPosition(const char *text
, int *length
);
261 int LinesTotal() const;
263 void ChangeCase(Range r
, bool makeUpperCase
);
265 void SetDefaultCharClasses(bool includeWordClass
);
266 void SetCharClasses(const unsigned char *chars
, CharClassify::cc newCharClass
);
267 void SetStylingBits(int bits
);
268 void StartStyling(int position
, char mask
);
269 bool SetStyleFor(int length
, char style
);
270 bool SetStyles(int length
, const char *styles
);
271 int GetEndStyled() { return endStyled
; }
272 void EnsureStyledTo(int pos
);
273 int GetStyleClock() { return styleClock
; }
274 void IncrementStyleClock();
275 void DecorationFillRange(int position
, int value
, int fillLength
);
277 int SetLineState(int line
, int state
);
278 int GetLineState(int line
);
279 int GetMaxLineState();
281 StyledText
MarginStyledText(int line
);
282 void MarginSetStyle(int line
, int style
);
283 void MarginSetStyles(int line
, const unsigned char *styles
);
284 void MarginSetText(int line
, const char *text
);
285 int MarginLength(int line
) const;
286 void MarginClearAll();
288 bool AnnotationAny() const;
289 StyledText
AnnotationStyledText(int line
);
290 void AnnotationSetText(int line
, const char *text
);
291 void AnnotationSetStyle(int line
, int style
);
292 void AnnotationSetStyles(int line
, const unsigned char *styles
);
293 int AnnotationLength(int line
) const;
294 int AnnotationLines(int line
) const;
295 void AnnotationClearAll();
297 bool AddWatcher(DocWatcher
*watcher
, void *userData
);
298 bool RemoveWatcher(DocWatcher
*watcher
, void *userData
);
299 const WatcherWithUserData
*GetWatchers() const { return watchers
; }
300 int GetLenWatchers() const { return lenWatchers
; }
302 bool IsWordPartSeparator(char ch
);
303 int WordPartLeft(int pos
);
304 int WordPartRight(int pos
);
305 int ExtendStyleRange(int pos
, int delta
, bool singleLine
= false);
306 bool IsWhiteLine(int line
) const;
308 int ParaDown(int pos
);
309 int IndentSize() { return actualIndentInChars
; }
310 int BraceMatch(int position
, int maxReStyle
);
313 CharClassify::cc
WordCharClass(unsigned char ch
);
314 bool IsWordStartAt(int pos
);
315 bool IsWordEndAt(int pos
);
316 bool IsWordAt(int start
, int end
);
318 void NotifyModifyAttempt();
319 void NotifySavePoint(bool atSavePoint
);
320 void NotifyModified(DocModification mh
);
327 UndoGroup(Document
*pdoc_
, bool groupNeeded_
=true) :
328 pdoc(pdoc_
), groupNeeded(groupNeeded_
) {
330 pdoc
->BeginUndoAction();
335 pdoc
->EndUndoAction();
338 bool Needed() const {
345 * To optimise processing of document modifications by DocWatchers, a hint is passed indicating the
346 * scope of the change.
347 * If the DocWatcher is a document view then this can be used to optimise screen updating.
349 class DocModification
{
351 int modificationType
;
354 int linesAdded
; /**< Negative if lines deleted. */
355 const char *text
; /**< Only valid for changes to text, not for changes to style. */
359 int annotationLinesAdded
;
362 DocModification(int modificationType_
, int position_
=0, int length_
=0,
363 int linesAdded_
=0, const char *text_
=0, int line_
=0) :
364 modificationType(modificationType_
),
367 linesAdded(linesAdded_
),
372 annotationLinesAdded(0),
375 DocModification(int modificationType_
, const Action
&act
, int linesAdded_
=0) :
376 modificationType(modificationType_
),
377 position(act
.position
),
379 linesAdded(linesAdded_
),
384 annotationLinesAdded(0),
389 * A class that wants to receive notifications from a Document must be derived from DocWatcher
390 * and implement the notification methods. It can then be added to the watcher list with AddWatcher.
394 virtual ~DocWatcher() {}
396 virtual void NotifyModifyAttempt(Document
*doc
, void *userData
) = 0;
397 virtual void NotifySavePoint(Document
*doc
, void *userData
, bool atSavePoint
) = 0;
398 virtual void NotifyModified(Document
*doc
, DocModification mh
, void *userData
) = 0;
399 virtual void NotifyDeleted(Document
*doc
, void *userData
) = 0;
400 virtual void NotifyStyleNeeded(Document
*doc
, void *userData
, int endPos
) = 0;