| 63 skipped lines |
|
|
| 66 | U | 66 | U | unsigned char *styles; |
|
| | | 67 | A | int styleBitsSet; |
|
|
| 69 | U | 70 | U | char bracePreviousStyles[2]; |
|
| 35 skipped lines |
| 105 | U | 106 | U | LineLayout **cache; |
|
| 106 | U | 107 | U | bool allInvalidated; |
|
|
| | | 109 | A | int useCount; |
| 108 | U | 110 | U | void Allocate(int length_); |
|
| 109 | U | 111 | U | void AllocateForLevel(int linesOnScreen, int linesInDoc); |
|
|
| 107 skipped lines |
| 218 | U | 220 | U | int scrollWidth; |
|
| 219 | U | 221 | U | bool verticalScrollBarVisible; |
|
| 220 | U | 222 | U | bool endAtLastLine; |
|
| | | 223 | A | bool caretSticky; |
|
| 222 | U | 225 | U | Surface *pixmapLine; |
|
| 223 | U | 226 | U | Surface *pixmapSelMargin; |
|
| 77 skipped lines |
|
|
| 303 | U | 306 | U | // Wrapping support |
|
| 304 | C | enum { eWrapNone, eWrapWord } wrapState; | | 307 | C | enum { eWrapNone, eWrapWord, eWrapChar } wrapState; |
| 305 | U | 308 | U | bool backgroundWrapEnabled; |
|
|
| 307 | U | 310 | U | int docLineLastWrapped; |
|
| 3 skipped lines |
| 311 | U | 314 | U | int wrapVisualStartIndent; |
|
| 312 | U | 315 | U | int actualWrapVisualStartIndent; |
|
|
| | | 317 | A | bool convertPastes; |
| | | 318 | A | |
|
|
|
| 24 skipped lines |
| 341 | U | 346 | U | bool AbandonPaint(); |
|
| 342 | U | 347 | U | void RedrawRect(PRectangle rc); |
|
|
| 344 | C | void RedrawSelMargin(); | | 349 | C | void RedrawSelMargin(int line=-1); |
| 345 | U | 350 | U | PRectangle RectangleFromRange(int start, int end); |
|
| 346 | U | 351 | U | void InvalidateRange(int start, int end); |
|
|
| 1 skipped line |
| 349 | U | 354 | U | bool SelectionEmpty(); |
|
| 350 | U | 355 | U | int SelectionStart(); |
|
| 351 | U | 356 | U | int SelectionEnd(); |
|
| | | 357 | A | void SetRectangularRange(); |
| 352 | U | 358 | U | void InvalidateSelection(int currentPos_, int anchor_); |
|
| 353 | U | 359 | U | void SetSelection(int currentPos_, int anchor_); |
|
| 354 | U | 360 | U | void SetSelection(int currentPos_); |
|
| 95 skipped lines |
| 450 | U | 456 | U | void PageMove(int direction, selTypes sel=noSel, bool stuttered = false); |
|
| 451 | U | 457 | U | void ChangeCaseOfSelection(bool makeUpperCase); |
|
| 452 | U | 458 | U | void LineTranspose(); |
|
| 453 | C | void LineDuplicate(); | | 459 | C | void Duplicate(bool forLine); |
| 454 | U | 460 | U | virtual void CancelModes(); |
|
|
| 456 | U | 462 | U | void CursorUpOrDown(int direction, selTypes sel=noSel); |
|
| | | 463 | A | void ParaUpOrDown(int direction, selTypes sel=noSel); |
| 457 | U | 464 | U | int StartEndDisplayLine(int pos, bool start); |
|
| 458 | U | 465 | U | virtual int KeyCommand(unsigned int iMessage); |
|
| 459 | U | 466 | U | virtual int KeyDefault(int /* key */, int /*modifiers*/); |
|
| 39 skipped lines |
| 499 | U | 506 | U | virtual bool HaveMouseCapture() = 0; |
|
| 500 | U | 507 | U | void SetFocusState(bool focusState); |
|
|
| | | 509 | A | virtual bool PaintContains(PRectangle rc); |
| | | 510 | A | bool PaintContainsMargin(); |
| 502 | U | 511 | U | void CheckForChangeOutsidePaint(Range r); |
|
| 503 | R | int BraceMatch(int position, int maxReStyle); | | |
| 504 | U | 512 | U | void SetBraceHighlight(Position pos0, Position pos1, int matchStyle); |
|
|
| 506 | U | 514 | U | void SetDocPointer(Document *document); |
|
| 9 skipped lines |
| 516 | U | 524 | U | void GetHotSpotRange(int& hsStart, int& hsEnd); |
|
|
| 518 | U | 526 | U | int CodePage() const; |
|
| | | 527 | A | int WrapCount(int line); |
|
| 520 | U | 529 | U | virtual sptr_t DefWndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) = 0; |
|
|
| 51 skipped lines |