code_editor.h 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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/popup.h"
  39. #include "scene/main/timer.h"
  40. class MenuButton;
  41. class CodeTextEditor;
  42. class LineEdit;
  43. class GotoLinePopup : public PopupPanel {
  44. GDCLASS(GotoLinePopup, PopupPanel);
  45. Variant original_state;
  46. LineEdit *line_input = nullptr;
  47. CodeTextEditor *text_editor = nullptr;
  48. void _goto_line();
  49. void _submit();
  50. protected:
  51. void _notification(int p_what);
  52. virtual void _input_from_window(const Ref<InputEvent> &p_event) override;
  53. public:
  54. void popup_find_line(CodeTextEditor *p_text_editor);
  55. GotoLinePopup();
  56. };
  57. class FindReplaceBar : public HBoxContainer {
  58. GDCLASS(FindReplaceBar, HBoxContainer);
  59. enum SearchMode {
  60. SEARCH_CURRENT,
  61. SEARCH_NEXT,
  62. SEARCH_PREV,
  63. };
  64. Button *toggle_replace_button = nullptr;
  65. LineEdit *search_text = nullptr;
  66. Label *matches_label = nullptr;
  67. Button *find_prev = nullptr;
  68. Button *find_next = nullptr;
  69. CheckBox *case_sensitive = nullptr;
  70. CheckBox *whole_words = nullptr;
  71. TextureButton *hide_button = nullptr;
  72. LineEdit *replace_text = nullptr;
  73. Button *replace = nullptr;
  74. Button *replace_all = nullptr;
  75. CheckBox *selection_only = nullptr;
  76. VBoxContainer *vbc_lineedit = nullptr;
  77. HBoxContainer *hbc_button_replace = nullptr;
  78. HBoxContainer *hbc_option_replace = nullptr;
  79. CodeTextEditor *base_text_editor = nullptr;
  80. CodeEdit *text_editor = nullptr;
  81. uint32_t flags = 0;
  82. int result_line = 0;
  83. int result_col = 0;
  84. int results_count = -1;
  85. int results_count_to_current = -1;
  86. bool replace_all_mode = false;
  87. bool preserve_cursor = false;
  88. void _get_search_from(int &r_line, int &r_col, SearchMode p_search_mode);
  89. void _update_results_count();
  90. void _update_matches_display();
  91. void _show_search(bool p_with_replace, bool p_show_only);
  92. void _hide_bar(bool p_force_focus = false);
  93. void _update_toggle_replace_button(bool p_replace_visible);
  94. void _editor_text_changed();
  95. void _search_options_changed(bool p_pressed);
  96. void _search_text_changed(const String &p_text);
  97. void _search_text_submitted(const String &p_text);
  98. void _replace_text_submitted(const String &p_text);
  99. void _toggle_replace_pressed();
  100. protected:
  101. void _notification(int p_what);
  102. virtual void unhandled_input(const Ref<InputEvent> &p_event) override;
  103. void _focus_lost();
  104. void _update_flags(bool p_direction_backwards);
  105. bool _search(uint32_t p_flags, int p_from_line, int p_from_col);
  106. void _replace();
  107. void _replace_all();
  108. static void _bind_methods();
  109. public:
  110. String get_search_text() const;
  111. String get_replace_text() const;
  112. bool is_case_sensitive() const;
  113. bool is_whole_words() const;
  114. bool is_selection_only() const;
  115. void set_error(const String &p_label);
  116. void set_text_edit(CodeTextEditor *p_text_editor);
  117. void popup_search(bool p_show_only = false);
  118. void popup_replace();
  119. bool search_current();
  120. bool search_prev();
  121. bool search_next();
  122. bool needs_to_count_results = true;
  123. bool line_col_changed_for_result = false;
  124. FindReplaceBar();
  125. };
  126. typedef void (*CodeTextEditorCodeCompleteFunc)(void *p_ud, const String &p_code, List<ScriptLanguage::CodeCompletionOption> *r_options, bool &r_forced);
  127. class CodeTextEditor : public VBoxContainer {
  128. GDCLASS(CodeTextEditor, VBoxContainer);
  129. CodeEdit *text_editor = nullptr;
  130. FindReplaceBar *find_replace_bar = nullptr;
  131. HBoxContainer *status_bar = nullptr;
  132. Button *toggle_scripts_button = nullptr;
  133. Control *toggle_scripts_list = nullptr;
  134. Button *error_button = nullptr;
  135. Button *warning_button = nullptr;
  136. MenuButton *zoom_button = nullptr;
  137. Label *line_and_col_txt = nullptr;
  138. Label *indentation_txt = nullptr;
  139. Label *info = nullptr;
  140. Timer *idle = nullptr;
  141. float idle_time = 0.0f;
  142. float idle_time_with_errors = 0.0f;
  143. bool code_complete_enabled = true;
  144. Timer *code_complete_timer = nullptr;
  145. int code_complete_timer_line = 0;
  146. float zoom_factor = 1.0f;
  147. Label *error = nullptr;
  148. int error_line;
  149. int error_column;
  150. bool preview_navigation_change = false;
  151. Dictionary previous_state;
  152. void _update_text_editor_theme();
  153. void _update_font_ligatures();
  154. void _complete_request();
  155. Ref<Texture2D> _get_completion_icon(const ScriptLanguage::CodeCompletionOption &p_option);
  156. virtual void input(const Ref<InputEvent> &event) override;
  157. void _text_editor_gui_input(const Ref<InputEvent> &p_event);
  158. Color completion_font_color;
  159. Color completion_string_color;
  160. Color completion_string_name_color;
  161. Color completion_node_path_color;
  162. Color completion_comment_color;
  163. Color completion_doc_comment_color;
  164. CodeTextEditorCodeCompleteFunc code_complete_func;
  165. void *code_complete_ud = nullptr;
  166. void _zoom_in();
  167. void _zoom_out();
  168. void _zoom_to(float p_zoom_factor);
  169. void _error_button_pressed();
  170. void _warning_button_pressed();
  171. void _set_show_errors_panel(bool p_show);
  172. void _set_show_warnings_panel(bool p_show);
  173. void _error_pressed(const Ref<InputEvent> &p_event);
  174. void _zoom_popup_id_pressed(int p_idx);
  175. void _toggle_scripts_pressed();
  176. protected:
  177. virtual void _load_theme_settings() {}
  178. virtual void _validate_script() {}
  179. virtual void _code_complete_script(const String &p_code, List<ScriptLanguage::CodeCompletionOption> *r_options) {}
  180. void _text_changed_idle_timeout();
  181. void _code_complete_timer_timeout();
  182. void _text_changed();
  183. void _line_col_changed();
  184. void _notification(int);
  185. static void _bind_methods();
  186. bool is_warnings_panel_opened = false;
  187. bool is_errors_panel_opened = false;
  188. public:
  189. void trim_trailing_whitespace();
  190. void trim_final_newlines();
  191. void insert_final_newline();
  192. enum CaseStyle {
  193. UPPER,
  194. LOWER,
  195. CAPITALIZE,
  196. };
  197. void convert_case(CaseStyle p_case);
  198. void set_indent_using_spaces(bool p_use_spaces);
  199. /// Toggle inline comment on currently selected lines, or on current line if nothing is selected,
  200. /// by adding or removing comment delimiter
  201. void toggle_inline_comment(const String &delimiter);
  202. void goto_line(int p_line, int p_column = 0);
  203. void goto_line_selection(int p_line, int p_begin, int p_end);
  204. void goto_line_centered(int p_line, int p_column = 0);
  205. void set_executing_line(int p_line);
  206. void clear_executing_line();
  207. Variant get_edit_state();
  208. void set_edit_state(const Variant &p_state);
  209. Variant get_navigation_state();
  210. Variant get_previous_state();
  211. void store_previous_state();
  212. bool is_previewing_navigation_change() const;
  213. void set_preview_navigation_change(bool p_preview);
  214. void set_error_count(int p_error_count);
  215. void set_warning_count(int p_warning_count);
  216. void update_editor_settings();
  217. void set_error(const String &p_error);
  218. void set_error_pos(int p_line, int p_column);
  219. Point2i get_error_pos() const;
  220. void update_line_and_column() { _line_col_changed(); }
  221. CodeEdit *get_text_editor() { return text_editor; }
  222. FindReplaceBar *get_find_replace_bar() { return find_replace_bar; }
  223. void set_find_replace_bar(FindReplaceBar *p_bar);
  224. void remove_find_replace_bar();
  225. virtual void apply_code() {}
  226. virtual void goto_error();
  227. void toggle_bookmark();
  228. void goto_next_bookmark();
  229. void goto_prev_bookmark();
  230. void remove_all_bookmarks();
  231. void set_zoom_factor(float p_zoom_factor);
  232. float get_zoom_factor();
  233. void set_code_complete_func(CodeTextEditorCodeCompleteFunc p_code_complete_func, void *p_ud);
  234. void validate_script();
  235. void set_toggle_list_control(Control *p_control);
  236. void show_toggle_scripts_button();
  237. void update_toggle_scripts_button();
  238. CodeTextEditor();
  239. };
  240. #endif // CODE_EDITOR_H