diff options
| author | nyamatongwe <devnull@localhost> | 2000-07-01 13:34:28 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-07-01 13:34:28 +0000 |
| commit | 7c7c50a602db8e4192071fc2c1b80ddbdfac2140 (patch) | |
| tree | 608ab59ded48de4f3ef480c329ad4b8b4a363a50 /src/Editor.h | |
| parent | 67060f15a16ddd34a1fc8d1074fb02d10a571dca (diff) | |
| download | scintilla-mirror-7c7c50a602db8e4192071fc2c1b80ddbdfac2140.tar.gz | |
Making Drawline less context dependent by moving state from Editor to
LineLayout and ViewStyle. Helps avoid attributes leaking into printing.
Diffstat (limited to 'src/Editor.h')
| -rw-r--r-- | src/Editor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index d1074073e..456fdd1ea 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -33,6 +33,9 @@ public: int numCharsInLine; int xHighlightGuide; bool highlightColumn; + int selStart; + int selEnd; + int edgeColumn; char chars[maxLineLength]; char styles[maxLineLength]; char indicators[maxLineLength]; @@ -106,7 +109,6 @@ protected: // ScintillaBase subclass needs access to much of Editor int bracesMatchStyle; int highlightGuideColumn; - int edgeState; int theEdge; enum { notPainting, painting, paintAbandoned } paintState; |
