| 133 skipped lines |
| 134 | U | 134 | U | int MovePositionOutsideChar(int pos, int moveDir, bool checkLineEnd=true); |
|
|
| 136 | U | 136 | U | // Gateways to modifying document |
|
| | | 137 | A | void ModifiedAt(int pos); |
| 137 | U | 138 | U | bool DeleteChars(int pos, int len); |
|
| 138 | U | 139 | U | bool InsertStyledString(int position, char *s, int insertLength); |
|
|
| 35 skipped lines |
| 175 | U | 176 | U | char StyleAt(int position) { return cb.StyleAt(position); } |
|
| 176 | U | 177 | U | int GetMark(int line) { return cb.GetMark(line); } |
|
| 177 | U | 178 | U | int AddMark(int line, int markerNum); |
|
| | | 179 | A | void AddMarkSet(int line, int valueSet); |
| 178 | U | 180 | U | void DeleteMark(int line, int markerNum); |
|
| 179 | U | 181 | U | void DeleteMarkFromHandle(int markerHandle); |
|
| 180 | U | 182 | U | void DeleteAllMarks(int markerNum); |
|
| 47 skipped lines |
| 228 | U | 230 | U | int WordPartLeft(int pos); |
|
| 229 | U | 231 | U | int WordPartRight(int pos); |
|
| 230 | U | 232 | U | int ExtendStyleRange(int pos, int delta, bool singleLine = false); |
|
| | | 233 | A | bool IsWhiteLine(int line); |
| 231 | U | 234 | U | int ParaUp(int pos); |
|
| 232 | U | 235 | U | int ParaDown(int pos); |
|
| 233 | U | 236 | U | int IndentSize() { return actualIndentInChars; } |
|
| | | 237 | A | int BraceMatch(int position, int maxReStyle); |
|
|
| | | 240 | A | void CheckReadOnly(); |
| | | 241 | A | |
| 236 | U | 242 | U | charClassification WordCharClass(unsigned char ch); |
|
| 237 | U | 243 | U | bool IsWordStartAt(int pos); |
|
| 238 | U | 244 | U | bool IsWordEndAt(int pos); |
|
| 239 | U | 245 | U | bool IsWordAt(int start, int end); |
|
| 240 | R | void ModifiedAt(int pos); | | |
|
| 242 | U | 247 | U | void NotifyModifyAttempt(); |
|
| 243 | U | 248 | U | void NotifySavePoint(bool atSavePoint); |
|
| 17 skipped lines |
| 261 | U | 266 | U | int foldLevelPrev; |
|
|
| 263 | U | 268 | U | DocModification(int modificationType_, int position_=0, int length_=0, |
|
| 264 | C | int linesAdded_=0, const char *text_=0) : | | 269 | C | int linesAdded_=0, const char *text_=0, int line_=0) : |
| 265 | U | 270 | U | modificationType(modificationType_), |
|
| 266 | U | 271 | U | position(position_), |
|
| 267 | U | 272 | U | length(length_), |
|
| 268 | U | 273 | U | linesAdded(linesAdded_), |
|
|
| 270 | C | line(0), | | 275 | C | line(line_), |
| 271 | U | 276 | U | foldLevelNow(0), |
|
| 272 | U | 277 | U | foldLevelPrev(0) {} |
|
|
| 274 | C | DocModification(int modificationType_, const Action &act, int linesAdded_=0) : | | 279 | C | DocModification(int modificationType_, const Action &act, int linesAdded_=0) : |
| 275 | U | 280 | U | modificationType(modificationType_), |
|
| 276 | C | position(act.position / 2), | | 281 | C | position(act.position), |
| 277 | U | 282 | U | length(act.lenData), |
|
| 278 | U | 283 | U | linesAdded(linesAdded_), |
|
|
| 22 skipped lines |