FLTK
Fl_Text_Editor.H
1 //
2 // Header file for Fl_Text_Editor class.
3 //
4 // Copyright 2001-2010 by Bill Spitzak and others.
5 // Original code Copyright Mark Edel. Permission to distribute under
6 // the LGPL for the FLTK library granted by Mark Edel.
7 //
8 // This library is free software. Distribution and use rights are outlined in
9 // the file "COPYING" which should have been included with this file. If this
10 // file is missing or damaged, see the license at:
11 //
12 // https://www.fltk.org/COPYING.php
13 //
14 // Please see the following page on how to report bugs and issues:
15 //
16 // https://www.fltk.org/bugs.php
17 //
18 
19 /* \file
20  Fl_Text_Editor widget . */
21 
22 
23 #ifndef FL_TEXT_EDITOR_H
24 #define FL_TEXT_EDITOR_H
25 
26 #include "Fl_Text_Display.H"
27 
28 // key will match in any state
29 #define FL_TEXT_EDITOR_ANY_STATE (-1L)
30 
38 class FL_EXPORT Fl_Text_Editor : public Fl_Text_Display {
39  public:
41  typedef int (*Key_Func)(int key, Fl_Text_Editor* editor);
42 
44  struct Key_Binding {
45  int key;
46  int state;
47  Key_Func function;
49  };
50 
51  Fl_Text_Editor(int X, int Y, int W, int H, const char* l = 0);
52  ~Fl_Text_Editor() { remove_all_key_bindings(); }
53  virtual int handle(int e);
59  void insert_mode(int b) { insert_mode_ = b; }
65  int insert_mode() { return insert_mode_; }
66  void tab_nav(int val);
67  int tab_nav() const;
68  void add_key_binding(int key, int state, Key_Func f, Key_Binding** list);
70  void add_key_binding(int key, int state, Key_Func f)
71  { add_key_binding(key, state, f, &key_bindings); }
72  void remove_key_binding(int key, int state, Key_Binding** list);
74  void remove_key_binding(int key, int state)
75  { remove_key_binding(key, state, &key_bindings); }
76  void remove_all_key_bindings(Key_Binding** list);
79  void add_default_key_bindings(Key_Binding** list);
80  Key_Func bound_key_function(int key, int state, Key_Binding* list) const;
82  Key_Func bound_key_function(int key, int state) const
83  { return bound_key_function(key, state, key_bindings); }
85  void default_key_function(Key_Func f) { default_key_function_ = f; }
86 
87  // functions for the built in default bindings
88  static int kf_default(int c, Fl_Text_Editor* e);
89  static int kf_ignore(int c, Fl_Text_Editor* e);
90  static int kf_backspace(int c, Fl_Text_Editor* e);
91  static int kf_enter(int c, Fl_Text_Editor* e);
92  static int kf_move(int c, Fl_Text_Editor* e);
93  static int kf_shift_move(int c, Fl_Text_Editor* e);
94  static int kf_ctrl_move(int c, Fl_Text_Editor* e);
95  static int kf_c_s_move(int c, Fl_Text_Editor* e);
96  static int kf_meta_move(int c, Fl_Text_Editor* e);
97  static int kf_m_s_move(int c, Fl_Text_Editor* e);
98  static int kf_home(int, Fl_Text_Editor* e);
99  static int kf_end(int c, Fl_Text_Editor* e);
100  static int kf_left(int c, Fl_Text_Editor* e);
101  static int kf_up(int c, Fl_Text_Editor* e);
102  static int kf_right(int c, Fl_Text_Editor* e);
103  static int kf_down(int c, Fl_Text_Editor* e);
104  static int kf_page_up(int c, Fl_Text_Editor* e);
105  static int kf_page_down(int c, Fl_Text_Editor* e);
106  static int kf_insert(int c, Fl_Text_Editor* e);
107  static int kf_delete(int c, Fl_Text_Editor* e);
108  static int kf_copy(int c, Fl_Text_Editor* e);
109  static int kf_cut(int c, Fl_Text_Editor* e);
110  static int kf_paste(int c, Fl_Text_Editor* e);
111  static int kf_select_all(int c, Fl_Text_Editor* e);
112  static int kf_undo(int c, Fl_Text_Editor* e);
113 
114  protected:
115  int handle_key();
116  void maybe_do_callback();
117 
118 #ifndef FL_DOXYGEN
119  int insert_mode_;
120  Key_Binding* key_bindings;
121 #endif
122 
131 
132 #ifndef FL_DOXYGEN
133  Key_Func default_key_function_;
134 #endif
135 };
136 
137 #endif
138 
void remove_all_key_bindings()
Removes all of the key bindings associated with the text editor or list.
Definition: Fl_Text_Editor.H:78
int state
the state of key modifiers
Definition: Fl_Text_Editor.H:46
void add_key_binding(int key, int state, Key_Func f)
Adds a key of state state with the function f.
Definition: Fl_Text_Editor.H:70
void default_key_function(Key_Func f)
Sets the default key function for unassigned keys.
Definition: Fl_Text_Editor.H:85
This is the FLTK text editor widget.
Definition: Fl_Text_Editor.H:38
static Key_Binding * global_key_bindings
Global key binding list.
Definition: Fl_Text_Editor.H:130
void remove_key_binding(int key, int state)
Removes the key binding associated with the key "key" of state "state".
Definition: Fl_Text_Editor.H:74
Simple linked list item associating a key/state to a function.
Definition: Fl_Text_Editor.H:44
int key
the key pressed
Definition: Fl_Text_Editor.H:45
Key_Func bound_key_function(int key, int state) const
Returns the function associated with a key binding.
Definition: Fl_Text_Editor.H:82
Key_Binding * next
next key binding in the list
Definition: Fl_Text_Editor.H:48
int insert_mode()
Gets the current insert mode; if non-zero, new text is inserted before the current cursor position...
Definition: Fl_Text_Editor.H:65
void insert_mode(int b)
Sets the current insert mode; if non-zero, new text is inserted before the current cursor position...
Definition: Fl_Text_Editor.H:59
Rich text display widget.
Definition: Fl_Text_Display.H:78