code_editor.h 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. /**************************************************************************/
  2. /* code_editor.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef CODE_EDITOR_H
  31. #define CODE_EDITOR_H
  32. #include "scene/gui/box_container.h"
  33. #include "scene/gui/button.h"
  34. #include "scene/gui/check_box.h"
  35. #include "scene/gui/code_edit.h"
  36. #include "scene/gui/dialogs.h"
  37. #include "scene/gui/label.h"
  38. #include "scene/gui/line_edit.h"
  39. #include "scene/main/timer.h"
  40. class MenuButton;
  41. class GotoLineDialog : public ConfirmationDialog {
  42. GDCLASS(GotoLineDialog, ConfirmationDialog);
  43. Label *line_label = nullptr;
  44. LineEdit *line = nullptr;
  45. CodeEdit *text_editor = nullptr;
  46. virtual void ok_pressed() override;
  47. public:
  48. void popup_find_line(CodeEdit *p_edit);
  49. int get_line() const;
  50. GotoLineDialog();
  51. };
  52. class CodeTextEditor;
  53. class FindReplaceBar : public HBoxContainer {
  54. GDCLASS(FindReplaceBar, HBoxContainer);
  55. enum SearchMode {
  56. SEARCH_CURRENT,
  57. SEARCH_NEXT,
  58. SEARCH_PREV,
  59. };
  60. LineEdit *search_text = nullptr;
  61. Label *matches_label = nullptr;
  62. Button *find_prev = nullptr;
  63. Button *find_next = nullptr;
  64. CheckBox *case_sensitive = nullptr;
  65. CheckBox *whole_words = nullptr;
  66. TextureButton *hide_button = nullptr;
  67. LineEdit *replace_text = nullptr;
  68. Button *replace = nullptr;
  69. Button *replace_all = nullptr;
  70. CheckBox *selection_only = nullptr;
  71. VBoxContainer *vbc_lineedit = nullptr;
  72. HBoxContainer *hbc_button_replace = nullptr;
  73. HBoxContainer *hbc_option_replace = nullptr;
  74. CodeTextEditor *base_text_editor = nullptr;
  75. CodeEdit *text_editor = nullptr;
  76. uint32_t flags = 0;
  77. int result_line = 0;
  78. int result_col = 0;
  79. int results_count = -1;
  80. int results_count_to_current = -1;
  81. bool replace_all_mode = false;
  82. bool preserve_cursor = false;
  83. void _get_search_from(int &r_line, int &r_col, SearchMode p_search_mode);
  84. void _update_results_count();
  85. void _update_matches_display();
  86. void _show_search(bool p_with_replace, bool p_show_only);
  87. void _hide_bar(bool p_force_focus = false);
  88. void _editor_text_changed();
  89. void _search_options_changed(bool p_pressed);
  90. void _search_text_changed(const String &p_text);
  91. void _search_text_submitted(const String &p_text);
  92. void _replace_text_submitted(const String &p_text);
  93. protected:
  94. void _notification(int p_what);
  95. virtual void unhandled_input(const Ref<InputEvent> &p_event) override;
  96. void _focus_lost();
  97. void _update_flags(bool p_direction_backwards);
  98. bool _search(uint32_t p_flags, int p_from_line, int p_from_col);
  99. void _replace();
  100. void _replace_all();
  101. static void _bind_methods();
  102. public:
  103. String get_search_text() const;
  104. String get_replace_text() const;
  105. bool is_case_sensitive() const;
  106. bool is_whole_words() const;
  107. bool is_selection_only() const;
  108. void set_error(const String &p_label);
  109. void set_text_edit(CodeTextEditor *p_text_editor);
  110. void popup_search(bool p_show_only = false);
  111. void popup_replace();
  112. bool search_current();
  113. bool search_prev();
  114. bool search_next();
  115. bool needs_to_count_results = true;
  116. bool line_col_changed_for_result = false;
  117. FindReplaceBar();
  118. };
  119. typedef void (*CodeTextEditorCodeCompleteFunc)(void *p_ud, const String &p_code, List<ScriptLanguage::CodeCompletionOption> *r_options, bool &r_forced);
  120. class CodeTextEditor : public VBoxContainer {
  121. GDCLASS(CodeTextEditor, VBoxContainer);
  122. CodeEdit *text_editor = nullptr;
  123. FindReplaceBar *find_replace_bar = nullptr;
  124. HBoxContainer *status_bar = nullptr;
  125. Button *toggle_scripts_button = nullptr;
  126. Button *error_button = nullptr;
  127. Button *warning_button = nullptr;
  128. MenuButton *zoom_button = nullptr;
  129. Label *line_and_col_txt = nullptr;
  130. Label *indentation_txt = nullptr;
  131. Label *info = nullptr;
  132. Timer *idle = nullptr;
  133. bool code_complete_enabled = true;
  134. Timer *code_complete_timer = nullptr;
  135. int code_complete_timer_line = 0;
  136. float zoom_factor = 1.0f;
  137. Label *error = nullptr;
  138. int error_line;
  139. int error_column;
  140. Dictionary previous_state;
  141. void _update_text_editor_theme();
  142. void _update_font_ligatures();
  143. void _complete_request();
  144. Ref<Texture2D> _get_completion_icon(const ScriptLanguage::CodeCompletionOption &p_option);
  145. virtual void input(const Ref<InputEvent> &event) override;
  146. void _text_editor_gui_input(const Ref<InputEvent> &p_event);
  147. Color completion_font_color;
  148. Color completion_string_color;
  149. Color completion_string_name_color;
  150. Color completion_node_path_color;
  151. Color completion_comment_color;
  152. Color completion_doc_comment_color;
  153. CodeTextEditorCodeCompleteFunc code_complete_func;
  154. void *code_complete_ud = nullptr;
  155. void _zoom_in();
  156. void _zoom_out();
  157. void _zoom_to(float p_zoom_factor);
  158. void _error_button_pressed();
  159. void _warning_button_pressed();
  160. void _set_show_errors_panel(bool p_show);
  161. void _set_show_warnings_panel(bool p_show);
  162. void _error_pressed(const Ref<InputEvent> &p_event);
  163. void _zoom_popup_id_pressed(int p_idx);
  164. void _toggle_scripts_pressed();
  165. protected:
  166. virtual void _load_theme_settings() {}
  167. virtual void _validate_script() {}
  168. virtual void _code_complete_script(const String &p_code, List<ScriptLanguage::CodeCompletionOption> *r_options) {}
  169. void _text_changed_idle_timeout();
  170. void _code_complete_timer_timeout();
  171. void _text_changed();
  172. void _line_col_changed();
  173. void _notification(int);
  174. static void _bind_methods();
  175. bool is_warnings_panel_opened = false;
  176. bool is_errors_panel_opened = false;
  177. public:
  178. void trim_trailing_whitespace();
  179. void trim_final_newlines();
  180. void insert_final_newline();
  181. enum CaseStyle {
  182. UPPER,
  183. LOWER,
  184. CAPITALIZE,
  185. };
  186. void convert_case(CaseStyle p_case);
  187. void set_indent_using_spaces(bool p_use_spaces);
  188. /// Toggle inline comment on currently selected lines, or on current line if nothing is selected,
  189. /// by adding or removing comment delimiter
  190. void toggle_inline_comment(const String &delimiter);
  191. void goto_line(int p_line);
  192. void goto_line_selection(int p_line, int p_begin, int p_end);
  193. void goto_line_centered(int p_line);
  194. void set_executing_line(int p_line);
  195. void clear_executing_line();
  196. Variant get_edit_state();
  197. void set_edit_state(const Variant &p_state);
  198. Variant get_navigation_state();
  199. Variant get_previous_state();
  200. void store_previous_state();
  201. void set_error_count(int p_error_count);
  202. void set_warning_count(int p_warning_count);
  203. void update_editor_settings();
  204. void set_error(const String &p_error);
  205. void set_error_pos(int p_line, int p_column);
  206. Point2i get_error_pos() const;
  207. void update_line_and_column() { _line_col_changed(); }
  208. CodeEdit *get_text_editor() { return text_editor; }
  209. FindReplaceBar *get_find_replace_bar() { return find_replace_bar; }
  210. void set_find_replace_bar(FindReplaceBar *p_bar);
  211. void remove_find_replace_bar();
  212. virtual void apply_code() {}
  213. virtual void goto_error();
  214. void toggle_bookmark();
  215. void goto_next_bookmark();
  216. void goto_prev_bookmark();
  217. void remove_all_bookmarks();
  218. void set_zoom_factor(float p_zoom_factor);
  219. float get_zoom_factor();
  220. void set_code_complete_func(CodeTextEditorCodeCompleteFunc p_code_complete_func, void *p_ud);
  221. void validate_script();
  222. void show_toggle_scripts_button();
  223. void update_toggle_scripts_button();
  224. CodeTextEditor();
  225. };
  226. #endif // CODE_EDITOR_H