aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-07-01 13:34:28 +0000
committernyamatongwe <devnull@localhost>2000-07-01 13:34:28 +0000
commit7c7c50a602db8e4192071fc2c1b80ddbdfac2140 (patch)
tree608ab59ded48de4f3ef480c329ad4b8b4a363a50 /src/Editor.h
parent67060f15a16ddd34a1fc8d1074fb02d10a571dca (diff)
downloadscintilla-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.h4
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;