diff options
| author | Neil <nyamatongwe@gmail.com> | 2013-08-15 15:13:15 +1000 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2013-08-15 15:13:15 +1000 | 
| commit | 2b08c6ee48f984b99165a156690dfcf4c67fea21 (patch) | |
| tree | 87a806590e7d7e4a4aee9ebdaa97ab41fa022dc1 /src/Editor.h | |
| parent | a499680e07e1eeb55d23bbf1f61dde535d5beb78 (diff) | |
| download | scintilla-mirror-2b08c6ee48f984b99165a156690dfcf4c67fea21.tar.gz | |
Feature: [feature-requests:#1007]. Option to allow mouse selection to
switch to rectangular by pressing Alt after start of gesture.
From Neomi.
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 54358a075..20877b29e 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -219,6 +219,7 @@ protected:	// ScintillaBase subclass needs access to much of Editor  	bool endAtLastLine;  	int caretSticky;  	int marginOptions; +	bool mouseSelectionRectangularSwitch;  	bool multipleSelection;  	bool additionalSelectionTyping;  	int multiPasteMode; @@ -566,6 +567,7 @@ protected:	// ScintillaBase subclass needs access to much of Editor  	void DwellEnd(bool mouseMoved);  	void MouseLeave();  	virtual void ButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, bool alt); +	void ButtonMoveWithModifiers(Point pt, int modifiers);  	void ButtonMove(Point pt);  	void ButtonUp(Point pt, unsigned int curTime, bool ctrl);  | 
