aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-08-15 15:13:15 +1000
committerNeil <nyamatongwe@gmail.com>2013-08-15 15:13:15 +1000
commitd396f66bf0bc8d4c777c744efe77ccb5b28b385f (patch)
tree9dc0a355f751c37c953e835ac04a5dee383d6f51 /src/Editor.h
parentc68e1a5ffc74569e4d406e3c904f010390577fcf (diff)
downloadscintilla-mirror-d396f66bf0bc8d4c777c744efe77ccb5b28b385f.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.h2
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);