aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2011-06-15 23:07:00 +1000
committernyamatongwe <unknown>2011-06-15 23:07:00 +1000
commite11e72222237c9b95cd2242aec88421a3dee3452 (patch)
tree9587892f3fe3881aba224c4b840430a2e222ca5c /src/Editor.h
parent3239f7cbe4d9f86b5eb2429a9819d0ce002659d9 (diff)
downloadscintilla-mirror-e11e72222237c9b95cd2242aec88421a3dee3452.tar.gz
Added SCMOD_META key modifier for the Control key on OS X.
New version of KeyDown, KeyDownWithModifiers uses a mask of modifiers.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h
index eccdb717f..74f0eff86 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -465,6 +465,7 @@ protected: // ScintillaBase subclass needs access to much of Editor
int StartEndDisplayLine(int pos, bool start);
virtual int KeyCommand(unsigned int iMessage);
virtual int KeyDefault(int /* key */, int /*modifiers*/);
+ int KeyDownWithModifiers(int key, int modifiers, bool *consumed);
int KeyDown(int key, bool shift, bool ctrl, bool alt, bool *consumed=0);
int GetWhitespaceVisible();