diff options
| author | nyamatongwe <unknown> | 2000-10-05 12:20:59 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2000-10-05 12:20:59 +0000 | 
| commit | a2bc00fb8619d2a130500cfcfb458fa2f87c7ca9 (patch) | |
| tree | c80e2b4a5f9c9c89f72fed1ea652a39d45457510 /src/Editor.h | |
| parent | 64b89c25354dba83c93e8c05150d6db39f6219da (diff) | |
| download | scintilla-mirror-a2bc00fb8619d2a130500cfcfb458fa2f87c7ca9.tar.gz | |
SetCursor implemented.
Diffstat (limited to 'src/Editor.h')
| -rw-r--r-- | src/Editor.h | 2 | 
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. | 
