text_edit.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. /*************************************************************************/
  2. /* text_edit.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  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 TEXT_EDIT_H
  31. #define TEXT_EDIT_H
  32. #include "scene/gui/control.h"
  33. #include "scene/gui/popup_menu.h"
  34. #include "scene/gui/scroll_bar.h"
  35. #include "scene/main/timer.h"
  36. class SyntaxHighlighter;
  37. class TextEdit : public Control {
  38. GDCLASS(TextEdit, Control);
  39. public:
  40. struct HighlighterInfo {
  41. Color color;
  42. };
  43. struct ColorRegion {
  44. Color color;
  45. String begin_key;
  46. String end_key;
  47. bool line_only;
  48. bool eq;
  49. ColorRegion(const String &p_begin_key = "", const String &p_end_key = "", const Color &p_color = Color(), bool p_line_only = false) {
  50. begin_key = p_begin_key;
  51. end_key = p_end_key;
  52. color = p_color;
  53. line_only = p_line_only || p_end_key == "";
  54. eq = begin_key == end_key;
  55. }
  56. };
  57. class Text {
  58. public:
  59. struct ColorRegionInfo {
  60. int region;
  61. bool end;
  62. ColorRegionInfo() {
  63. region = 0;
  64. end = false;
  65. }
  66. };
  67. struct Line {
  68. int width_cache : 24;
  69. bool marked : 1;
  70. bool breakpoint : 1;
  71. bool bookmark : 1;
  72. bool hidden : 1;
  73. bool safe : 1;
  74. bool has_info : 1;
  75. int wrap_amount_cache : 24;
  76. Map<int, ColorRegionInfo> region_info;
  77. Ref<Texture> info_icon;
  78. String info;
  79. String data;
  80. Line() {
  81. width_cache = 0;
  82. marked = false;
  83. breakpoint = false;
  84. bookmark = false;
  85. hidden = false;
  86. safe = false;
  87. has_info = false;
  88. wrap_amount_cache = 0;
  89. }
  90. };
  91. private:
  92. const Vector<ColorRegion> *color_regions;
  93. mutable Vector<Line> text;
  94. Ref<Font> font;
  95. int indent_size;
  96. void _update_line_cache(int p_line) const;
  97. public:
  98. void set_indent_size(int p_indent_size);
  99. void set_font(const Ref<Font> &p_font);
  100. void set_color_regions(const Vector<ColorRegion> *p_regions) { color_regions = p_regions; }
  101. int get_line_width(int p_line) const;
  102. int get_max_width(bool p_exclude_hidden = false) const;
  103. int get_char_width(CharType c, CharType next_c, int px) const;
  104. void set_line_wrap_amount(int p_line, int p_wrap_amount) const;
  105. int get_line_wrap_amount(int p_line) const;
  106. const Map<int, ColorRegionInfo> &get_color_region_info(int p_line) const;
  107. void set(int p_line, const String &p_text);
  108. void set_marked(int p_line, bool p_marked) { text.write[p_line].marked = p_marked; }
  109. bool is_marked(int p_line) const { return text[p_line].marked; }
  110. void set_bookmark(int p_line, bool p_bookmark) { text.write[p_line].bookmark = p_bookmark; }
  111. bool is_bookmark(int p_line) const { return text[p_line].bookmark; }
  112. void set_breakpoint(int p_line, bool p_breakpoint) { text.write[p_line].breakpoint = p_breakpoint; }
  113. bool is_breakpoint(int p_line) const { return text[p_line].breakpoint; }
  114. void set_hidden(int p_line, bool p_hidden) { text.write[p_line].hidden = p_hidden; }
  115. bool is_hidden(int p_line) const { return text[p_line].hidden; }
  116. void set_safe(int p_line, bool p_safe) { text.write[p_line].safe = p_safe; }
  117. bool is_safe(int p_line) const { return text[p_line].safe; }
  118. void set_info_icon(int p_line, Ref<Texture> p_icon, String p_info) {
  119. if (p_icon.is_null()) {
  120. text.write[p_line].has_info = false;
  121. return;
  122. }
  123. text.write[p_line].info_icon = p_icon;
  124. text.write[p_line].info = p_info;
  125. text.write[p_line].has_info = true;
  126. }
  127. bool has_info_icon(int p_line) const { return text[p_line].has_info; }
  128. const Ref<Texture> &get_info_icon(int p_line) const { return text[p_line].info_icon; }
  129. const String &get_info(int p_line) const { return text[p_line].info; }
  130. void insert(int p_at, const String &p_text);
  131. void remove(int p_at);
  132. int size() const { return text.size(); }
  133. void clear();
  134. void clear_width_cache();
  135. void clear_wrap_cache();
  136. void clear_info_icons();
  137. _FORCE_INLINE_ const String &operator[](int p_line) const { return text[p_line].data; }
  138. Text() { indent_size = 4; }
  139. };
  140. private:
  141. struct Cursor {
  142. int last_fit_x;
  143. int line, column; ///< cursor
  144. int x_ofs, line_ofs, wrap_ofs;
  145. Cursor() {
  146. last_fit_x = 0;
  147. line = 0;
  148. column = 0; ///< cursor
  149. x_ofs = 0;
  150. line_ofs = 0;
  151. wrap_ofs = 0;
  152. }
  153. } cursor;
  154. struct Selection {
  155. enum Mode {
  156. MODE_NONE,
  157. MODE_SHIFT,
  158. MODE_POINTER,
  159. MODE_WORD,
  160. MODE_LINE
  161. };
  162. Mode selecting_mode;
  163. int selecting_line, selecting_column;
  164. int selected_word_beg, selected_word_end, selected_word_origin;
  165. bool selecting_text;
  166. bool active;
  167. int from_line, from_column;
  168. int to_line, to_column;
  169. bool shiftclick_left;
  170. Selection() {
  171. selecting_mode = MODE_NONE;
  172. selecting_line = 0;
  173. selecting_column = 0;
  174. selected_word_beg = 0;
  175. selected_word_end = 0;
  176. selected_word_origin = 0;
  177. selecting_text = false;
  178. active = false;
  179. from_line = 0;
  180. from_column = 0;
  181. to_line = 0;
  182. to_column = 0;
  183. shiftclick_left = false;
  184. }
  185. } selection;
  186. struct Cache {
  187. Ref<Texture> tab_icon;
  188. Ref<Texture> space_icon;
  189. Ref<Texture> can_fold_icon;
  190. Ref<Texture> folded_icon;
  191. Ref<Texture> folded_eol_icon;
  192. Ref<Texture> executing_icon;
  193. Ref<StyleBox> style_normal;
  194. Ref<StyleBox> style_focus;
  195. Ref<StyleBox> style_readonly;
  196. Ref<Font> font;
  197. Color completion_background_color;
  198. Color completion_selected_color;
  199. Color completion_existing_color;
  200. Color completion_font_color;
  201. Color caret_color;
  202. Color caret_background_color;
  203. Color line_number_color;
  204. Color safe_line_number_color;
  205. Color font_color;
  206. Color font_color_selected;
  207. Color font_color_readonly;
  208. Color keyword_color;
  209. Color control_flow_keyword_color;
  210. Color number_color;
  211. Color function_color;
  212. Color member_variable_color;
  213. Color selection_color;
  214. Color mark_color;
  215. Color bookmark_color;
  216. Color breakpoint_color;
  217. Color executing_line_color;
  218. Color code_folding_color;
  219. Color current_line_color;
  220. Color line_length_guideline_color;
  221. Color brace_mismatch_color;
  222. Color word_highlighted_color;
  223. Color search_result_color;
  224. Color search_result_border_color;
  225. Color symbol_color;
  226. Color background_color;
  227. int row_height;
  228. int line_spacing;
  229. int line_number_w;
  230. int breakpoint_gutter_width;
  231. int fold_gutter_width;
  232. int info_gutter_width;
  233. int minimap_width;
  234. Cache() {
  235. row_height = 0;
  236. line_spacing = 0;
  237. line_number_w = 0;
  238. breakpoint_gutter_width = 0;
  239. fold_gutter_width = 0;
  240. info_gutter_width = 0;
  241. minimap_width = 0;
  242. }
  243. } cache;
  244. Map<int, int> color_region_cache;
  245. Map<int, Map<int, HighlighterInfo>> syntax_highlighting_cache;
  246. struct TextOperation {
  247. enum Type {
  248. TYPE_NONE,
  249. TYPE_INSERT,
  250. TYPE_REMOVE
  251. };
  252. Type type;
  253. int from_line, from_column;
  254. int to_line, to_column;
  255. String text;
  256. uint32_t prev_version;
  257. uint32_t version;
  258. bool chain_forward;
  259. bool chain_backward;
  260. TextOperation() {
  261. type = TYPE_NONE;
  262. from_line = 0;
  263. from_column = 0;
  264. to_line = 0;
  265. to_column = 0;
  266. prev_version = 0;
  267. version = 0;
  268. chain_forward = false;
  269. chain_backward = false;
  270. }
  271. };
  272. String ime_text;
  273. Point2 ime_selection;
  274. TextOperation current_op;
  275. List<TextOperation> undo_stack;
  276. List<TextOperation>::Element *undo_stack_pos;
  277. int undo_stack_max_size;
  278. void _clear_redo();
  279. void _do_text_op(const TextOperation &p_op, bool p_reverse);
  280. //syntax coloring
  281. SyntaxHighlighter *syntax_highlighter;
  282. HashMap<String, Color> keywords;
  283. HashMap<String, Color> member_keywords;
  284. Map<int, HighlighterInfo> _get_line_syntax_highlighting(int p_line);
  285. Vector<ColorRegion> color_regions;
  286. Set<String> completion_prefixes;
  287. bool completion_enabled;
  288. List<ScriptCodeCompletionOption> completion_sources;
  289. Vector<ScriptCodeCompletionOption> completion_options;
  290. bool completion_active;
  291. bool completion_forced;
  292. ScriptCodeCompletionOption completion_current;
  293. String completion_base;
  294. int completion_index;
  295. Rect2i completion_rect;
  296. int completion_line_ofs;
  297. String completion_hint;
  298. int completion_hint_offset;
  299. bool setting_text;
  300. // data
  301. Text text;
  302. uint32_t version;
  303. uint32_t saved_version;
  304. bool readonly;
  305. bool syntax_coloring;
  306. bool indent_using_spaces;
  307. int indent_size;
  308. String space_indent;
  309. Timer *caret_blink_timer;
  310. bool caret_blink_enabled;
  311. bool draw_caret;
  312. bool window_has_focus;
  313. bool block_caret;
  314. bool right_click_moves_caret;
  315. bool wrap_enabled;
  316. int wrap_at;
  317. int wrap_right_offset;
  318. bool first_draw;
  319. bool setting_row;
  320. bool draw_tabs;
  321. bool draw_spaces;
  322. bool override_selected_font_color;
  323. bool cursor_changed_dirty;
  324. bool text_changed_dirty;
  325. bool undo_enabled;
  326. bool line_numbers;
  327. bool line_numbers_zero_padded;
  328. bool line_length_guidelines;
  329. int line_length_guideline_soft_col;
  330. int line_length_guideline_hard_col;
  331. bool draw_bookmark_gutter;
  332. bool draw_breakpoint_gutter;
  333. int breakpoint_gutter_width;
  334. bool draw_fold_gutter;
  335. int fold_gutter_width;
  336. bool hiding_enabled;
  337. bool draw_info_gutter;
  338. int info_gutter_width;
  339. bool draw_minimap;
  340. int minimap_width;
  341. Point2 minimap_char_size;
  342. int minimap_line_spacing;
  343. bool highlight_all_occurrences;
  344. bool scroll_past_end_of_file_enabled;
  345. bool auto_brace_completion_enabled;
  346. bool brace_matching_enabled;
  347. bool highlight_current_line;
  348. bool auto_indent;
  349. String cut_copy_line;
  350. bool insert_mode;
  351. bool select_identifiers_enabled;
  352. bool smooth_scroll_enabled;
  353. bool scrolling;
  354. bool dragging_selection;
  355. bool hovering_minimap;
  356. bool dragging_minimap;
  357. bool can_drag_minimap;
  358. bool minimap_clicked;
  359. double minimap_scroll_ratio;
  360. double minimap_scroll_click_pos;
  361. float target_v_scroll;
  362. float v_scroll_speed;
  363. String highlighted_word;
  364. uint64_t last_dblclk;
  365. Vector2 last_dblclk_pos;
  366. Timer *idle_detect;
  367. Timer *click_select_held;
  368. HScrollBar *h_scroll;
  369. VScrollBar *v_scroll;
  370. bool updating_scrolls;
  371. ObjectID tooltip_obj_id;
  372. StringName tooltip_func;
  373. Variant tooltip_ud;
  374. bool next_operation_is_complex;
  375. bool callhint_below;
  376. Vector2 callhint_offset;
  377. String search_text;
  378. uint32_t search_flags;
  379. int search_result_line;
  380. int search_result_col;
  381. bool selecting_enabled;
  382. bool context_menu_enabled;
  383. bool shortcut_keys_enabled;
  384. bool virtual_keyboard_enabled = true;
  385. int executing_line;
  386. void _generate_context_menu();
  387. int get_visible_rows() const;
  388. int get_total_visible_rows() const;
  389. int _get_minimap_visible_rows() const;
  390. void update_cursor_wrap_offset();
  391. void _update_wrap_at();
  392. bool line_wraps(int line) const;
  393. int times_line_wraps(int line) const;
  394. Vector<String> get_wrap_rows_text(int p_line) const;
  395. int get_cursor_wrap_index() const;
  396. int get_line_wrap_index_at_col(int p_line, int p_column) const;
  397. int get_char_count();
  398. double get_scroll_pos_for_line(int p_line, int p_wrap_index = 0) const;
  399. void set_line_as_first_visible(int p_line, int p_wrap_index = 0);
  400. void set_line_as_center_visible(int p_line, int p_wrap_index = 0);
  401. void set_line_as_last_visible(int p_line, int p_wrap_index = 0);
  402. int get_first_visible_line() const;
  403. int get_last_full_visible_line() const;
  404. int get_last_full_visible_line_wrap_index() const;
  405. double get_visible_rows_offset() const;
  406. double get_v_scroll_offset() const;
  407. int get_char_pos_for_line(int p_px, int p_line, int p_wrap_index = 0) const;
  408. int get_column_x_offset_for_line(int p_char, int p_line) const;
  409. int get_char_pos_for(int p_px, String p_str) const;
  410. int get_column_x_offset(int p_char, String p_str) const;
  411. void adjust_viewport_to_cursor();
  412. double get_scroll_line_diff() const;
  413. void _scroll_moved(double);
  414. void _update_scrollbars();
  415. void _v_scroll_input();
  416. void _click_selection_held();
  417. void _update_selection_mode_pointer();
  418. void _update_selection_mode_word();
  419. void _update_selection_mode_line();
  420. void _update_minimap_hover();
  421. void _update_minimap_click();
  422. void _update_minimap_drag();
  423. void _scroll_up(real_t p_delta);
  424. void _scroll_down(real_t p_delta);
  425. void _pre_shift_selection();
  426. void _post_shift_selection();
  427. void _scroll_lines_up();
  428. void _scroll_lines_down();
  429. //void mouse_motion(const Point& p_pos, const Point& p_rel, int p_button_mask);
  430. Size2 get_minimum_size() const;
  431. int _get_control_height() const;
  432. int get_row_height() const;
  433. void _reset_caret_blink_timer();
  434. void _toggle_draw_caret();
  435. void _update_caches();
  436. void _cursor_changed_emit();
  437. void _text_changed_emit();
  438. void _line_edited_from(int p_line);
  439. void _push_current_op();
  440. /* Line and character position. */
  441. struct LineDrawingCache {
  442. int y_offset = 0;
  443. Vector<int> first_visible_char;
  444. Vector<int> last_visible_char;
  445. };
  446. Map<int, LineDrawingCache> line_drawing_cache;
  447. /* super internal api, undo/redo builds on it */
  448. void _base_insert_text(int p_line, int p_char, const String &p_text, int &r_end_line, int &r_end_column);
  449. String _base_get_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column) const;
  450. void _base_remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
  451. int _get_column_pos_of_word(const String &p_key, const String &p_search, uint32_t p_search_flags, int p_from_column);
  452. PoolVector<int> _search_bind(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_from_column) const;
  453. PopupMenu *menu;
  454. void _clear();
  455. void _cancel_completion();
  456. void _cancel_code_hint();
  457. void _confirm_completion();
  458. void _update_completion_candidates();
  459. int _calculate_spaces_till_next_left_indent(int column);
  460. int _calculate_spaces_till_next_right_indent(int column);
  461. protected:
  462. virtual String get_tooltip(const Point2 &p_pos) const;
  463. void _insert_text(int p_line, int p_char, const String &p_text, int *r_end_line = nullptr, int *r_end_char = nullptr);
  464. void _remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
  465. void _insert_text_at_cursor(const String &p_text);
  466. void _gui_input(const Ref<InputEvent> &p_gui_input);
  467. void _notification(int p_what);
  468. void _consume_pair_symbol(CharType ch);
  469. void _consume_backspace_for_pair_symbol(int prev_line, int prev_column);
  470. static void _bind_methods();
  471. public:
  472. SyntaxHighlighter *_get_syntax_highlighting();
  473. void _set_syntax_highlighting(SyntaxHighlighter *p_syntax_highlighter);
  474. int _is_line_in_region(int p_line);
  475. ColorRegion _get_color_region(int p_region) const;
  476. Map<int, Text::ColorRegionInfo> _get_line_color_region_info(int p_line) const;
  477. enum MenuItems {
  478. MENU_CUT,
  479. MENU_COPY,
  480. MENU_PASTE,
  481. MENU_CLEAR,
  482. MENU_SELECT_ALL,
  483. MENU_UNDO,
  484. MENU_REDO,
  485. MENU_MAX
  486. };
  487. enum SearchFlags {
  488. SEARCH_MATCH_CASE = 1,
  489. SEARCH_WHOLE_WORDS = 2,
  490. SEARCH_BACKWARDS = 4
  491. };
  492. enum SearchResult {
  493. SEARCH_RESULT_COLUMN,
  494. SEARCH_RESULT_LINE,
  495. };
  496. virtual CursorShape get_cursor_shape(const Point2 &p_pos = Point2i()) const;
  497. void _get_mouse_pos(const Point2i &p_mouse, int &r_row, int &r_col) const;
  498. void _get_minimap_mouse_row(const Point2i &p_mouse, int &r_row) const;
  499. //void delete_char();
  500. //void delete_line();
  501. void begin_complex_operation();
  502. void end_complex_operation();
  503. bool is_insert_text_operation();
  504. void set_text(String p_text);
  505. void insert_text_at_cursor(const String &p_text);
  506. void insert_at(const String &p_text, int at);
  507. int get_line_count() const;
  508. int get_line_width(int p_line, int p_wrap_index = -1) const;
  509. int get_line_height() const;
  510. void set_line_as_marked(int p_line, bool p_marked);
  511. void set_line_as_bookmark(int p_line, bool p_bookmark);
  512. bool is_line_set_as_bookmark(int p_line) const;
  513. void get_bookmarks(List<int> *p_bookmarks) const;
  514. Array get_bookmarks_array() const;
  515. void set_line_as_breakpoint(int p_line, bool p_breakpoint);
  516. bool is_line_set_as_breakpoint(int p_line) const;
  517. void get_breakpoints(List<int> *p_breakpoints) const;
  518. Array get_breakpoints_array() const;
  519. void remove_breakpoints();
  520. void set_executing_line(int p_line);
  521. void clear_executing_line();
  522. void set_line_as_safe(int p_line, bool p_safe);
  523. bool is_line_set_as_safe(int p_line) const;
  524. void set_line_info_icon(int p_line, Ref<Texture> p_icon, String p_info = "");
  525. void clear_info_icons();
  526. void set_line_as_hidden(int p_line, bool p_hidden);
  527. bool is_line_hidden(int p_line) const;
  528. void fold_all_lines();
  529. void unhide_all_lines();
  530. int num_lines_from(int p_line_from, int visible_amount) const;
  531. int num_lines_from_rows(int p_line_from, int p_wrap_index_from, int visible_amount, int &wrap_index) const;
  532. int get_last_unhidden_line() const;
  533. bool can_fold(int p_line) const;
  534. bool is_folded(int p_line) const;
  535. Vector<int> get_folded_lines() const;
  536. void fold_line(int p_line);
  537. void unfold_line(int p_line);
  538. void toggle_fold_line(int p_line);
  539. String get_text();
  540. String get_line(int line) const;
  541. void set_line(int line, String new_text);
  542. void backspace_at_cursor();
  543. void indent_left();
  544. void indent_right();
  545. int get_indent_level(int p_line) const;
  546. bool is_line_comment(int p_line) const;
  547. inline void set_scroll_pass_end_of_file(bool p_enabled) {
  548. scroll_past_end_of_file_enabled = p_enabled;
  549. update();
  550. }
  551. inline void set_auto_brace_completion(bool p_enabled) {
  552. auto_brace_completion_enabled = p_enabled;
  553. }
  554. inline void set_brace_matching(bool p_enabled) {
  555. brace_matching_enabled = p_enabled;
  556. update();
  557. }
  558. inline void set_callhint_settings(bool below, Vector2 offset) {
  559. callhint_below = below;
  560. callhint_offset = offset;
  561. }
  562. void set_auto_indent(bool p_auto_indent);
  563. void center_viewport_to_cursor();
  564. void cursor_set_column(int p_col, bool p_adjust_viewport = true);
  565. void cursor_set_line(int p_row, bool p_adjust_viewport = true, bool p_can_be_hidden = true, int p_wrap_index = 0);
  566. int cursor_get_column() const;
  567. int cursor_get_line() const;
  568. Vector2i _get_cursor_pixel_pos();
  569. bool cursor_get_blink_enabled() const;
  570. void cursor_set_blink_enabled(const bool p_enabled);
  571. float cursor_get_blink_speed() const;
  572. void cursor_set_blink_speed(const float p_speed);
  573. void cursor_set_block_mode(const bool p_enable);
  574. bool cursor_is_block_mode() const;
  575. void set_right_click_moves_caret(bool p_enable);
  576. bool is_right_click_moving_caret() const;
  577. void set_readonly(bool p_readonly);
  578. bool is_readonly() const;
  579. void set_wrap_enabled(bool p_wrap_enabled);
  580. bool is_wrap_enabled() const;
  581. void clear();
  582. void set_syntax_coloring(bool p_enabled);
  583. bool is_syntax_coloring_enabled() const;
  584. void cut();
  585. void copy();
  586. void paste();
  587. void select_all();
  588. void select(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
  589. void deselect();
  590. void swap_lines(int line1, int line2);
  591. void set_search_text(const String &p_search_text);
  592. void set_search_flags(uint32_t p_flags);
  593. void set_current_search_result(int line, int col);
  594. void set_highlight_all_occurrences(const bool p_enabled);
  595. bool is_highlight_all_occurrences_enabled() const;
  596. bool is_selection_active() const;
  597. int get_selection_from_line() const;
  598. int get_selection_from_column() const;
  599. int get_selection_to_line() const;
  600. int get_selection_to_column() const;
  601. String get_selection_text() const;
  602. String get_word_under_cursor() const;
  603. String get_word_at_pos(const Vector2 &p_pos) const;
  604. /* Line and character position. */
  605. Point2 get_pos_at_line_column(int p_line, int p_column) const;
  606. Rect2 get_rect_at_line_column(int p_line, int p_column) const;
  607. Point2 get_line_column_at_pos(const Point2 &p_pos) const;
  608. bool search(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_from_column, int &r_line, int &r_column) const;
  609. bool has_undo() const;
  610. bool has_redo() const;
  611. void undo();
  612. void redo();
  613. void clear_undo_history();
  614. void set_indent_using_spaces(const bool p_use_spaces);
  615. bool is_indent_using_spaces() const;
  616. void set_indent_size(const int p_size);
  617. int get_indent_size();
  618. void set_draw_tabs(bool p_draw);
  619. bool is_drawing_tabs() const;
  620. void set_draw_spaces(bool p_draw);
  621. bool is_drawing_spaces() const;
  622. void set_override_selected_font_color(bool p_override_selected_font_color);
  623. bool is_overriding_selected_font_color() const;
  624. void set_insert_mode(bool p_enabled);
  625. bool is_insert_mode() const;
  626. void add_keyword_color(const String &p_keyword, const Color &p_color);
  627. bool has_keyword_color(String p_keyword) const;
  628. Color get_keyword_color(String p_keyword) const;
  629. void add_color_region(const String &p_begin_key = String(), const String &p_end_key = String(), const Color &p_color = Color(), bool p_line_only = false);
  630. void clear_colors();
  631. void add_member_keyword(const String &p_keyword, const Color &p_color);
  632. bool has_member_color(String p_member) const;
  633. Color get_member_color(String p_member) const;
  634. void clear_member_keywords();
  635. double get_v_scroll() const;
  636. void set_v_scroll(double p_scroll);
  637. int get_h_scroll() const;
  638. void set_h_scroll(int p_scroll);
  639. void set_smooth_scroll_enabled(bool p_enable);
  640. bool is_smooth_scroll_enabled() const;
  641. void set_v_scroll_speed(float p_speed);
  642. float get_v_scroll_speed() const;
  643. uint32_t get_version() const;
  644. uint32_t get_saved_version() const;
  645. void tag_saved_version();
  646. void menu_option(int p_option);
  647. void set_show_line_numbers(bool p_show);
  648. bool is_show_line_numbers_enabled() const;
  649. void set_highlight_current_line(bool p_enabled);
  650. bool is_highlight_current_line_enabled() const;
  651. void set_line_numbers_zero_padded(bool p_zero_padded);
  652. void set_show_line_length_guidelines(bool p_show);
  653. void set_line_length_guideline_soft_column(int p_column);
  654. void set_line_length_guideline_hard_column(int p_column);
  655. void set_bookmark_gutter_enabled(bool p_draw);
  656. bool is_bookmark_gutter_enabled() const;
  657. void set_breakpoint_gutter_enabled(bool p_draw);
  658. bool is_breakpoint_gutter_enabled() const;
  659. void set_breakpoint_gutter_width(int p_gutter_width);
  660. int get_breakpoint_gutter_width() const;
  661. void set_draw_fold_gutter(bool p_draw);
  662. bool is_drawing_fold_gutter() const;
  663. void set_fold_gutter_width(int p_gutter_width);
  664. int get_fold_gutter_width() const;
  665. void set_draw_info_gutter(bool p_draw);
  666. bool is_drawing_info_gutter() const;
  667. void set_info_gutter_width(int p_gutter_width);
  668. int get_info_gutter_width() const;
  669. int get_total_gutter_width() const;
  670. void set_draw_minimap(bool p_draw);
  671. bool is_drawing_minimap() const;
  672. void set_minimap_width(int p_minimap_width);
  673. int get_minimap_width() const;
  674. void set_hiding_enabled(bool p_enabled);
  675. bool is_hiding_enabled() const;
  676. void set_tooltip_request_func(Object *p_obj, const StringName &p_function, const Variant &p_udata);
  677. void set_completion(bool p_enabled, const Vector<String> &p_prefixes);
  678. void code_complete(const List<ScriptCodeCompletionOption> &p_strings, bool p_forced = false);
  679. void set_code_hint(const String &p_hint);
  680. void query_code_comple();
  681. void set_select_identifiers_on_hover(bool p_enable);
  682. bool is_selecting_identifiers_on_hover_enabled() const;
  683. void set_context_menu_enabled(bool p_enable);
  684. bool is_context_menu_enabled();
  685. void set_selecting_enabled(bool p_enabled);
  686. bool is_selecting_enabled() const;
  687. void set_shortcut_keys_enabled(bool p_enabled);
  688. bool is_shortcut_keys_enabled() const;
  689. void set_virtual_keyboard_enabled(bool p_enable);
  690. bool is_virtual_keyboard_enabled() const;
  691. PopupMenu *get_menu() const;
  692. String get_text_for_completion();
  693. String get_text_for_lookup_completion();
  694. virtual bool is_text_field() const;
  695. TextEdit();
  696. ~TextEdit();
  697. };
  698. VARIANT_ENUM_CAST(TextEdit::MenuItems);
  699. VARIANT_ENUM_CAST(TextEdit::SearchFlags);
  700. VARIANT_ENUM_CAST(TextEdit::SearchResult);
  701. class SyntaxHighlighter {
  702. protected:
  703. TextEdit *text_editor;
  704. public:
  705. virtual ~SyntaxHighlighter() {}
  706. virtual void _update_cache() = 0;
  707. virtual Map<int, TextEdit::HighlighterInfo> _get_line_syntax_highlighting(int p_line) = 0;
  708. virtual String get_name() const = 0;
  709. virtual List<String> get_supported_languages() = 0;
  710. void set_text_editor(TextEdit *p_text_editor);
  711. TextEdit *get_text_editor();
  712. };
  713. #endif // TEXT_EDIT_H