You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
5.4KB

  1. //
  2. // "$Id: Fl_Text_Editor.H 7903 2010-11-28 21:06:39Z matt $"
  3. //
  4. // Header file for Fl_Text_Editor class.
  5. //
  6. // Copyright 2001-2010 by Bill Spitzak and others.
  7. // Original code Copyright Mark Edel. Permission to distribute under
  8. // the LGPL for the FLTK library granted by Mark Edel.
  9. //
  10. // This library is free software; you can redistribute it and/or
  11. // modify it under the terms of the GNU Library General Public
  12. // License as published by the Free Software Foundation; either
  13. // version 2 of the License, or (at your option) any later version.
  14. //
  15. // This library is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. // Library General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU Library General Public
  21. // License along with this library; if not, write to the Free Software
  22. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  23. // USA.
  24. //
  25. // Please report all bugs and problems on the following page:
  26. //
  27. // http://www.fltk.org/str.php
  28. //
  29. /* \file
  30. Fl_Text_Editor widget . */
  31. #ifndef FL_TEXT_EDITOR_H
  32. #define FL_TEXT_EDITOR_H
  33. #include "Fl_Text_Display.H"
  34. // key will match in any state
  35. #define FL_TEXT_EDITOR_ANY_STATE (-1L)
  36. /**
  37. This is the FLTK text editor widget. It allows the user to
  38. edit multiple lines of text and supports highlighting and
  39. scrolling. The buffer that is displayed in the widget is managed
  40. by the Fl_Text_Buffer
  41. class.
  42. */
  43. class FL_EXPORT Fl_Text_Editor : public Fl_Text_Display {
  44. public:
  45. /** Key function binding callback type */
  46. typedef int (*Key_Func)(int key, Fl_Text_Editor* editor);
  47. /** Simple linked list associating a key/state to a function */
  48. struct Key_Binding {
  49. int key; ///< the key pressed
  50. int state; ///< the state of key modifiers
  51. Key_Func function; ///< associated function
  52. Key_Binding* next; ///< next key binding in the list
  53. };
  54. Fl_Text_Editor(int X, int Y, int W, int H, const char* l = 0);
  55. ~Fl_Text_Editor() { remove_all_key_bindings(); }
  56. virtual int handle(int e);
  57. /**
  58. Sets the current insert mode; if non-zero, new text
  59. is inserted before the current cursor position. Otherwise, new
  60. text replaces text at the current cursor position.
  61. */
  62. void insert_mode(int b) { insert_mode_ = b; }
  63. /**
  64. Gets the current insert mode; if non-zero, new text
  65. is inserted before the current cursor position. Otherwise, new
  66. text replaces text at the current cursor position.
  67. */
  68. int insert_mode() { return insert_mode_; }
  69. void add_key_binding(int key, int state, Key_Func f, Key_Binding** list);
  70. /** Adds a key of state "state" with the function "function" */
  71. void add_key_binding(int key, int state, Key_Func f)
  72. { add_key_binding(key, state, f, &key_bindings); }
  73. void remove_key_binding(int key, int state, Key_Binding** list);
  74. /** Removes the key binding associated with the key "key" of state "state". */
  75. void remove_key_binding(int key, int state)
  76. { remove_key_binding(key, state, &key_bindings); }
  77. void remove_all_key_bindings(Key_Binding** list);
  78. /** Removes all of the key bindings associated with the text editor or list. */
  79. void remove_all_key_bindings() { remove_all_key_bindings(&key_bindings); }
  80. void add_default_key_bindings(Key_Binding** list);
  81. Key_Func bound_key_function(int key, int state, Key_Binding* list);
  82. /** Returns the function associated with a key binding. */
  83. Key_Func bound_key_function(int key, int state)
  84. { return bound_key_function(key, state, key_bindings); }
  85. /** Sets the default key function for unassigned keys. */
  86. void default_key_function(Key_Func f) { default_key_function_ = f; }
  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. protected:
  114. int handle_key();
  115. void maybe_do_callback();
  116. #ifndef FL_DOXYGEN
  117. int insert_mode_;
  118. Key_Binding* key_bindings;
  119. static Key_Binding* global_key_bindings;
  120. Key_Func default_key_function_;
  121. #endif
  122. };
  123. #endif
  124. //
  125. // End of "$Id: Fl_Text_Editor.H 7903 2010-11-28 21:06:39Z matt $".
  126. //