summaryrefslogtreecommitdiff
path: root/FL/Fl_Text_Editor.H
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2009-09-20 19:24:24 +0000
committerGreg Ercolano <erco@seriss.com>2009-09-20 19:24:24 +0000
commit6c54b06dd8f81a4a593a194e7af4ece8d7310d42 (patch)
tree677cac5098152963149e43db1731cc5e9d5f5164 /FL/Fl_Text_Editor.H
parent72c722bb96b2d67b54918f7ac45cc349783a152f (diff)
Fixes STR #2169: Adds missing cursor movement to OSX:
CLOVERLEAF-LEFT move cursor to beginning of line, CLOVERLEAF-RIGHT move cursor to end of line, CLOVERLEAF-UP move to top line CLOVERLEAD-DOWN move to end line ..and SHIFT combos with those will do a 'text selection' equivalents. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6893 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Text_Editor.H')
-rw-r--r--FL/Fl_Text_Editor.H2
1 files changed, 2 insertions, 0 deletions
diff --git a/FL/Fl_Text_Editor.H b/FL/Fl_Text_Editor.H
index 17d601adc..c9294a457 100644
--- a/FL/Fl_Text_Editor.H
+++ b/FL/Fl_Text_Editor.H
@@ -103,6 +103,8 @@ class FL_EXPORT Fl_Text_Editor : public Fl_Text_Display {
static int kf_shift_move(int c, Fl_Text_Editor* e);
static int kf_ctrl_move(int c, Fl_Text_Editor* e);
static int kf_c_s_move(int c, Fl_Text_Editor* e);
+ static int kf_meta_move(int c, Fl_Text_Editor* e);
+ static int kf_m_s_move(int c, Fl_Text_Editor* e);
static int kf_home(int, Fl_Text_Editor* e);
static int kf_end(int c, Fl_Text_Editor* e);
static int kf_left(int c, Fl_Text_Editor* e);