diff options
author | nyamatongwe <unknown> | 2000-07-01 13:34:28 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-07-01 13:34:28 +0000 |
commit | fb394f628cb2c6be987c7fe45f9c5b22fb8167fe (patch) | |
tree | 608ab59ded48de4f3ef480c329ad4b8b4a363a50 /src/Editor.h | |
parent | 6d9d80245940ec0ad77004117a18666bb9e1fb70 (diff) | |
download | scintilla-mirror-fb394f628cb2c6be987c7fe45f9c5b22fb8167fe.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; |