aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-10-05 12:20:59 +0000
committernyamatongwe <devnull@localhost>2000-10-05 12:20:59 +0000
commit2ca50cc7e4f1f901eeefd87f0417e353d076b457 (patch)
treec80e2b4a5f9c9c89f72fed1ea652a39d45457510 /src/Editor.h
parent9a01d2bdda91768a75e58a8e0a87b74b71d4e003 (diff)
downloadscintilla-mirror-2ca50cc7e4f1f901eeefd87f0417e353d076b457.tar.gz
SetCursor implemented.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h
index f40b21576..4d0ceec37 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -61,6 +61,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
Palette palette;
int printMagnification;
int printColourMode;
+ int cursorMode;
bool hasFocus;
bool hideSelection;
@@ -273,6 +274,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
char *CopySelectionRange();
void CopySelectionIntoDrag();
void SetDragPosition(int newPos);
+ void DisplayCursor(Window::Cursor c);
virtual void StartDrag();
void DropAt(int position, const char *value, bool moving, bool rectangular);
// PositionInSelection returns 0 if position in selection, -1 if position before selection, and 1 if after.