godot/scene/gui/text_edit.h

852 lines
25 KiB
C++
Raw Normal View History

2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* text_edit.h */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
2014-02-10 02:10:30 +01:00
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
2014-02-10 02:10:30 +01:00
#ifndef TEXT_EDIT_H
#define TEXT_EDIT_H
#include "scene/gui/control.h"
#include "scene/gui/popup_menu.h"
#include "scene/gui/scroll_bar.h"
2014-02-10 02:10:30 +01:00
#include "scene/main/timer.h"
#include "scene/resources/syntax_highlighter.h"
#include "scene/resources/text_paragraph.h"
class TextEdit : public Control {
GDCLASS(TextEdit, Control);
public:
2020-07-25 02:15:23 +02:00
enum GutterType {
GUTTER_TYPE_STRING,
GUTTER_TPYE_ICON,
GUTTER_TPYE_CUSTOM
};
enum SelectionMode {
SELECTION_MODE_NONE,
SELECTION_MODE_SHIFT,
SELECTION_MODE_POINTER,
SELECTION_MODE_WORD,
SELECTION_MODE_LINE
};
2020-07-25 02:15:23 +02:00
private:
struct GutterInfo {
GutterType type = GutterType::GUTTER_TYPE_STRING;
String name = "";
int width = 24;
bool draw = true;
bool clickable = false;
bool overwritable = false;
ObjectID custom_draw_obj = ObjectID();
StringName custom_draw_callback;
};
Vector<GutterInfo> gutters;
int gutters_width = 0;
int gutter_padding = 0;
void _update_gutter_width();
class Text {
public:
2020-07-25 02:15:23 +02:00
struct Gutter {
Variant metadata;
bool clickable = false;
Ref<Texture2D> icon = Ref<Texture2D>();
String text = "";
Color color = Color(1, 1, 1);
};
struct Line {
2020-07-25 02:15:23 +02:00
Vector<Gutter> gutters;
String data;
Vector<Vector2i> bidi_override;
Ref<TextParagraph> data_buf;
bool marked;
bool hidden;
Line() {
data_buf.instance();
marked = false;
hidden = false;
}
};
private:
mutable Vector<Line> text;
Ref<Font> font;
int font_size = -1;
Dictionary opentype_features;
String language;
TextServer::Direction direction = TextServer::DIRECTION_AUTO;
bool draw_control_chars = false;
int width = -1;
2020-07-25 02:15:23 +02:00
int indent_size = 4;
int gutter_count = 0;
public:
void set_indent_size(int p_indent_size);
void set_font(const Ref<Font> &p_font);
void set_font_size(int p_font_size);
void set_font_features(const Dictionary &p_features);
void set_direction_and_language(TextServer::Direction p_direction, String p_language);
void set_draw_control_chars(bool p_draw_control_chars);
int get_line_height(int p_line, int p_wrap_index) const;
int get_line_width(int p_line) const;
int get_max_width(bool p_exclude_hidden = false) const;
void set_width(float p_width);
2018-01-26 02:41:17 +01:00
int get_line_wrap_amount(int p_line) const;
Vector<Vector2i> get_line_wrap_ranges(int p_line) const;
const Ref<TextParagraph> get_line_data(int p_line) const;
void set(int p_line, const String &p_text, const Vector<Vector2i> &p_bidi_override);
void set_marked(int p_line, bool p_marked) { text.write[p_line].marked = p_marked; }
bool is_marked(int p_line) const { return text[p_line].marked; }
void set_hidden(int p_line, bool p_hidden) { text.write[p_line].hidden = p_hidden; }
bool is_hidden(int p_line) const { return text[p_line].hidden; }
void insert(int p_at, const String &p_text, const Vector<Vector2i> &p_bidi_override);
void remove(int p_at);
int size() const { return text.size(); }
void clear();
void invalidate_cache(int p_line, int p_column = -1, const String &p_ime_text = String(), const Vector<Vector2i> &p_bidi_override = Vector<Vector2i>());
void invalidate_all();
void invalidate_all_lines();
_FORCE_INLINE_ const String &operator[](int p_line) const;
2020-07-25 02:15:23 +02:00
/* Gutters. */
void add_gutter(int p_at);
void remove_gutter(int p_gutter);
void move_gutters(int p_from_line, int p_to_line);
void set_line_gutter_metadata(int p_line, int p_gutter, const Variant &p_metadata) { text.write[p_line].gutters.write[p_gutter].metadata = p_metadata; }
const Variant &get_line_gutter_metadata(int p_line, int p_gutter) const { return text[p_line].gutters[p_gutter].metadata; }
void set_line_gutter_text(int p_line, int p_gutter, const String &p_text) { text.write[p_line].gutters.write[p_gutter].text = p_text; }
const String &get_line_gutter_text(int p_line, int p_gutter) const { return text[p_line].gutters[p_gutter].text; }
void set_line_gutter_icon(int p_line, int p_gutter, Ref<Texture2D> p_icon) { text.write[p_line].gutters.write[p_gutter].icon = p_icon; }
const Ref<Texture2D> &get_line_gutter_icon(int p_line, int p_gutter) const { return text[p_line].gutters[p_gutter].icon; }
void set_line_gutter_item_color(int p_line, int p_gutter, const Color &p_color) { text.write[p_line].gutters.write[p_gutter].color = p_color; }
const Color &get_line_gutter_item_color(int p_line, int p_gutter) const { return text[p_line].gutters[p_gutter].color; }
void set_line_gutter_clickable(int p_line, int p_gutter, bool p_clickable) { text.write[p_line].gutters.write[p_gutter].clickable = p_clickable; }
bool is_line_gutter_clickable(int p_line, int p_gutter) const { return text[p_line].gutters[p_gutter].clickable; }
};
2014-02-10 02:10:30 +01:00
struct Cursor {
int last_fit_x;
int line, column; ///< cursor
2018-01-26 02:41:17 +01:00
int x_ofs, line_ofs, wrap_ofs;
Cursor() {
last_fit_x = 0;
line = 0;
column = 0; ///< cursor
x_ofs = 0;
line_ofs = 0;
wrap_ofs = 0;
}
2014-02-10 02:10:30 +01:00
} cursor;
struct Selection {
SelectionMode selecting_mode;
int selecting_line, selecting_column;
2017-11-05 16:54:00 +01:00
int selected_word_beg, selected_word_end, selected_word_origin;
bool selecting_text;
2014-02-10 02:10:30 +01:00
bool active;
int from_line, from_column;
int to_line, to_column;
2014-02-10 02:10:30 +01:00
bool shiftclick_left;
Selection() {
selecting_mode = SelectionMode::SELECTION_MODE_NONE;
selecting_line = 0;
selecting_column = 0;
selected_word_beg = 0;
selected_word_end = 0;
selected_word_origin = 0;
selecting_text = false;
active = false;
from_line = 0;
from_column = 0;
to_line = 0;
to_column = 0;
shiftclick_left = false;
}
2014-02-10 02:10:30 +01:00
} selection;
Map<int, Dictionary> syntax_highlighting_cache;
2014-02-10 02:10:30 +01:00
struct TextOperation {
enum Type {
TYPE_NONE,
TYPE_INSERT,
TYPE_REMOVE
};
Type type;
int from_line, from_column;
2014-02-10 02:10:30 +01:00
int to_line, to_column;
String text;
uint32_t prev_version;
2014-02-10 02:10:30 +01:00
uint32_t version;
bool chain_forward;
bool chain_backward;
TextOperation() {
type = TYPE_NONE;
from_line = 0;
from_column = 0;
to_line = 0;
to_column = 0;
prev_version = 0;
version = 0;
chain_forward = false;
chain_backward = false;
}
2014-02-10 02:10:30 +01:00
};
String ime_text;
Point2 ime_selection;
2014-02-10 02:10:30 +01:00
TextOperation current_op;
List<TextOperation> undo_stack;
List<TextOperation>::Element *undo_stack_pos;
int undo_stack_max_size;
2014-02-10 02:10:30 +01:00
void _clear_redo();
void _do_text_op(const TextOperation &p_op, bool p_reverse);
2014-02-10 02:10:30 +01:00
//syntax coloring
Ref<SyntaxHighlighter> syntax_highlighter;
Set<String> keywords;
2014-02-10 02:10:30 +01:00
Dictionary _get_line_syntax_highlighting(int p_line);
2014-02-10 02:10:30 +01:00
Set<String> completion_prefixes;
bool completion_enabled;
2019-06-13 11:32:03 +02:00
List<ScriptCodeCompletionOption> completion_sources;
Vector<ScriptCodeCompletionOption> completion_options;
2014-02-10 02:10:30 +01:00
bool completion_active;
bool completion_forced;
2019-06-13 11:32:03 +02:00
ScriptCodeCompletionOption completion_current;
2014-02-10 02:10:30 +01:00
String completion_base;
int completion_index;
Rect2i completion_rect;
int completion_line_ofs;
String completion_hint;
int completion_hint_offset;
2014-02-10 02:10:30 +01:00
bool setting_text;
// data
Text text;
Dictionary opentype_features;
String language;
TextDirection text_direction = TEXT_DIRECTION_AUTO;
TextDirection input_direction = TEXT_DIRECTION_LTR;
Control::StructuredTextParser st_parser = STRUCTURED_TEXT_DEFAULT;
Array st_args;
bool draw_control_chars = false;
2014-02-10 02:10:30 +01:00
uint32_t version;
uint32_t saved_version;
int max_chars;
bool readonly;
2017-04-17 15:24:30 +02:00
bool indent_using_spaces;
int indent_size;
String space_indent;
2014-02-10 02:10:30 +01:00
2016-05-09 20:21:55 +02:00
Timer *caret_blink_timer;
bool caret_blink_enabled;
bool draw_caret;
bool window_has_focus;
2016-07-12 17:07:17 +02:00
bool block_caret;
bool right_click_moves_caret;
bool mid_grapheme_caret_enabled = false;
2016-05-09 20:21:55 +02:00
2018-01-26 02:41:17 +01:00
bool wrap_enabled;
int wrap_at;
int wrap_right_offset;
bool first_draw;
2014-02-10 02:10:30 +01:00
bool setting_row;
bool draw_tabs;
2019-04-24 01:33:20 +02:00
bool draw_spaces;
bool override_selected_font_color;
2014-02-10 02:10:30 +01:00
bool cursor_changed_dirty;
bool text_changed_dirty;
bool undo_enabled;
bool line_length_guidelines;
int line_length_guideline_soft_col;
int line_length_guideline_hard_col;
2017-11-13 00:12:17 +01:00
bool hiding_enabled;
2019-08-11 20:31:19 +02:00
bool draw_minimap;
int minimap_width;
Point2 minimap_char_size;
int minimap_line_spacing;
2016-03-09 00:00:52 +01:00
bool highlight_all_occurrences;
2016-03-07 03:32:51 +01:00
bool scroll_past_end_of_file_enabled;
2014-04-30 18:21:58 +02:00
bool auto_brace_completion_enabled;
bool brace_matching_enabled;
bool highlight_current_line;
bool auto_indent;
String cut_copy_line;
2016-03-31 21:49:30 +02:00
bool insert_mode;
bool select_identifiers_enabled;
2017-08-19 16:23:45 +02:00
bool smooth_scroll_enabled;
bool scrolling;
2019-08-11 20:31:19 +02:00
bool dragging_selection;
bool dragging_minimap;
bool can_drag_minimap;
2019-08-11 20:31:19 +02:00
bool minimap_clicked;
double minimap_scroll_ratio;
double minimap_scroll_click_pos;
2017-08-19 16:23:45 +02:00
float target_v_scroll;
float v_scroll_speed;
2017-08-19 16:23:45 +02:00
2017-04-06 17:35:08 +02:00
String highlighted_word;
2014-02-10 02:10:30 +01:00
uint64_t last_dblclk;
Timer *idle_detect;
Timer *click_select_held;
2014-02-10 02:10:30 +01:00
HScrollBar *h_scroll;
VScrollBar *v_scroll;
bool updating_scrolls;
Object *tooltip_obj;
StringName tooltip_func;
Variant tooltip_ud;
2016-03-09 00:00:52 +01:00
2014-04-26 14:42:19 +02:00
bool next_operation_is_complex;
2014-02-10 02:10:30 +01:00
bool callhint_below;
Vector2 callhint_offset;
String search_text;
uint32_t search_flags;
int search_result_line;
int search_result_col;
bool selecting_enabled;
bool context_menu_enabled;
bool shortcut_keys_enabled;
bool virtual_keyboard_enabled = true;
void _generate_context_menu();
2014-02-10 02:10:30 +01:00
int get_visible_rows() const;
2018-01-26 02:41:17 +01:00
int get_total_visible_rows() const;
2019-08-11 20:31:19 +02:00
int _get_minimap_visible_rows() const;
2018-01-26 02:41:17 +01:00
void update_cursor_wrap_offset();
void _update_wrap_at(bool p_force = false);
2018-01-26 02:41:17 +01:00
bool line_wraps(int line) const;
int times_line_wraps(int line) const;
Vector<String> get_wrap_rows_text(int p_line) const;
int get_cursor_wrap_index() const;
int get_line_wrap_index_at_col(int p_line, int p_column) const;
2014-02-10 02:10:30 +01:00
int get_char_count();
2018-01-26 02:41:17 +01:00
double get_scroll_pos_for_line(int p_line, int p_wrap_index = 0) const;
void set_line_as_first_visible(int p_line, int p_wrap_index = 0);
void set_line_as_center_visible(int p_line, int p_wrap_index = 0);
void set_line_as_last_visible(int p_line, int p_wrap_index = 0);
int get_first_visible_line() const;
int get_last_visible_line() const;
int get_last_visible_line_wrap_index() const;
double get_visible_rows_offset() const;
double get_v_scroll_offset() const;
int get_char_pos_for_line(int p_px, int p_line, int p_wrap_index = 0) const;
int get_column_x_offset_for_line(int p_char, int p_line) const;
2014-02-10 02:10:30 +01:00
void adjust_viewport_to_cursor();
2017-11-16 05:00:27 +01:00
double get_scroll_line_diff() const;
2014-02-10 02:10:30 +01:00
void _scroll_moved(double);
void _update_scrollbars();
void _v_scroll_input();
void _click_selection_held();
2014-02-10 02:10:30 +01:00
2017-11-05 16:54:00 +01:00
void _update_selection_mode_pointer();
void _update_selection_mode_word();
void _update_selection_mode_line();
void _update_minimap_click();
void _update_minimap_drag();
2017-11-01 21:49:39 +01:00
void _scroll_up(real_t p_delta);
void _scroll_down(real_t p_delta);
2014-02-10 02:10:30 +01:00
void _pre_shift_selection();
void _post_shift_selection();
2016-04-27 19:32:14 +02:00
void _scroll_lines_up();
void _scroll_lines_down();
//void mouse_motion(const Point& p_pos, const Point& p_rel, int p_button_mask);
2020-07-10 12:34:39 +02:00
Size2 get_minimum_size() const override;
int _get_control_height() const;
2014-02-10 02:10:30 +01:00
Point2 _get_local_mouse_pos() const;
2016-05-09 20:21:55 +02:00
void _reset_caret_blink_timer();
void _toggle_draw_caret();
2014-02-10 02:10:30 +01:00
void _update_caches();
void _cursor_changed_emit();
void _text_changed_emit();
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
void _push_current_op();
/* super internal api, undo/redo builds on it */
2016-03-09 00:00:52 +01:00
void _base_insert_text(int p_line, int p_char, const String &p_text, int &r_end_line, int &r_end_column);
String _base_get_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column) const;
void _base_remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
2014-02-10 02:10:30 +01:00
int _get_column_pos_of_word(const String &p_key, const String &p_search, uint32_t p_search_flags, int p_from_column);
Dictionary _search_bind(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_from_column) const;
2014-02-10 02:10:30 +01:00
PopupMenu *menu;
PopupMenu *menu_dir;
PopupMenu *menu_ctl;
2014-02-10 02:10:30 +01:00
void _clear();
void _cancel_completion();
void _cancel_code_hint();
2014-02-10 02:10:30 +01:00
void _confirm_completion();
void _update_completion_candidates();
int _calculate_spaces_till_next_left_indent(int column);
int _calculate_spaces_till_next_right_indent(int column);
2014-02-10 02:10:30 +01:00
protected:
2020-07-25 19:27:35 +02:00
struct Cache {
Ref<Texture2D> tab_icon;
Ref<Texture2D> space_icon;
Ref<Texture2D> folded_eol_icon;
Ref<StyleBox> style_normal;
Ref<StyleBox> style_focus;
Ref<StyleBox> style_readonly;
Ref<Font> font;
int font_size;
2020-07-25 19:27:35 +02:00
Color completion_background_color;
Color completion_selected_color;
Color completion_existing_color;
Color completion_font_color;
Color caret_color;
Color caret_background_color;
Color font_color;
Color font_selected_color;
Color font_readonly_color;
2020-07-25 19:27:35 +02:00
Color selection_color;
Color mark_color;
Color code_folding_color;
Color current_line_color;
Color line_length_guideline_color;
Color brace_mismatch_color;
Color word_highlighted_color;
Color search_result_color;
Color search_result_border_color;
Color background_color;
int line_spacing;
int minimap_width;
Cache() {
line_spacing = 0;
minimap_width = 0;
}
} cache;
2020-07-10 12:34:39 +02:00
virtual String get_tooltip(const Point2 &p_pos) const override;
2014-02-10 02:10:30 +01:00
2020-04-02 01:20:12 +02:00
void _insert_text(int p_line, int p_char, const String &p_text, int *r_end_line = nullptr, int *r_end_char = nullptr);
void _remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
void _insert_text_at_cursor(const String &p_text);
void _gui_input(const Ref<InputEvent> &p_gui_input);
2014-02-10 02:10:30 +01:00
void _notification(int p_what);
2016-03-09 00:00:52 +01:00
void _consume_pair_symbol(char32_t ch);
2014-04-27 12:34:37 +02:00
void _consume_backspace_for_pair_symbol(int prev_line, int prev_column);
2016-03-09 00:00:52 +01:00
2014-02-10 02:10:30 +01:00
static void _bind_methods();
bool _set(const StringName &p_name, const Variant &p_value);
bool _get(const StringName &p_name, Variant &r_ret) const;
void _get_property_list(List<PropertyInfo> *p_list) const;
2014-02-10 02:10:30 +01:00
public:
2020-07-25 02:15:23 +02:00
/* Syntax Highlighting. */
Ref<SyntaxHighlighter> get_syntax_highlighter();
void set_syntax_highlighter(Ref<SyntaxHighlighter> p_syntax_highlighter);
2020-07-25 02:15:23 +02:00
/* Gutters. */
void add_gutter(int p_at = -1);
void remove_gutter(int p_gutter);
int get_gutter_count() const;
void set_gutter_name(int p_gutter, const String &p_name);
String get_gutter_name(int p_gutter) const;
void set_gutter_type(int p_gutter, GutterType p_type);
GutterType get_gutter_type(int p_gutter) const;
void set_gutter_width(int p_gutter, int p_width);
int get_gutter_width(int p_gutter) const;
void set_gutter_draw(int p_gutter, bool p_draw);
bool is_gutter_drawn(int p_gutter) const;
void set_gutter_clickable(int p_gutter, bool p_clickable);
bool is_gutter_clickable(int p_gutter) const;
void set_gutter_overwritable(int p_gutter, bool p_overwritable);
bool is_gutter_overwritable(int p_gutter) const;
void set_gutter_custom_draw(int p_gutter, Object *p_object, const StringName &p_callback);
// Line gutters.
void set_line_gutter_metadata(int p_line, int p_gutter, const Variant &p_metadata);
Variant get_line_gutter_metadata(int p_line, int p_gutter) const;
void set_line_gutter_text(int p_line, int p_gutter, const String &p_text);
String get_line_gutter_text(int p_line, int p_gutter) const;
void set_line_gutter_icon(int p_line, int p_gutter, Ref<Texture2D> p_icon);
Ref<Texture2D> get_line_gutter_icon(int p_line, int p_gutter) const;
void set_line_gutter_item_color(int p_line, int p_gutter, const Color &p_color);
Color get_line_gutter_item_color(int p_line, int p_gutter);
void set_line_gutter_clickable(int p_line, int p_gutter, bool p_clickable);
bool is_line_gutter_clickable(int p_line, int p_gutter) const;
enum MenuItems {
MENU_CUT,
MENU_COPY,
MENU_PASTE,
MENU_CLEAR,
MENU_SELECT_ALL,
MENU_UNDO,
MENU_REDO,
MENU_DIR_INHERITED,
MENU_DIR_AUTO,
MENU_DIR_LTR,
MENU_DIR_RTL,
MENU_DISPLAY_UCC,
MENU_INSERT_LRM,
MENU_INSERT_RLM,
MENU_INSERT_LRE,
MENU_INSERT_RLE,
MENU_INSERT_LRO,
MENU_INSERT_RLO,
MENU_INSERT_PDF,
MENU_INSERT_ALM,
MENU_INSERT_LRI,
MENU_INSERT_RLI,
MENU_INSERT_FSI,
MENU_INSERT_PDI,
MENU_INSERT_ZWJ,
MENU_INSERT_ZWNJ,
MENU_INSERT_WJ,
MENU_INSERT_SHY,
MENU_MAX
};
2014-02-10 02:10:30 +01:00
enum SearchFlags {
SEARCH_MATCH_CASE = 1,
SEARCH_WHOLE_WORDS = 2,
SEARCH_BACKWARDS = 4
2014-02-10 02:10:30 +01:00
};
2016-03-09 00:00:52 +01:00
2020-07-10 12:34:39 +02:00
virtual CursorShape get_cursor_shape(const Point2 &p_pos = Point2i()) const override;
2014-02-10 02:10:30 +01:00
void _get_mouse_pos(const Point2i &p_mouse, int &r_row, int &r_col) const;
2019-08-11 20:31:19 +02:00
void _get_minimap_mouse_row(const Point2i &p_mouse, int &r_row) const;
2014-02-10 02:10:30 +01:00
//void delete_char();
//void delete_line();
void begin_complex_operation();
void end_complex_operation();
bool is_insert_text_operation();
void set_text_direction(TextDirection p_text_direction);
TextDirection get_text_direction() const;
void set_opentype_feature(const String &p_name, int p_value);
int get_opentype_feature(const String &p_name) const;
void clear_opentype_features();
void set_language(const String &p_language);
String get_language() const;
void set_draw_control_chars(bool p_draw_control_chars);
bool get_draw_control_chars() const;
void set_structured_text_bidi_override(Control::StructuredTextParser p_parser);
Control::StructuredTextParser get_structured_text_bidi_override() const;
void set_structured_text_bidi_override_options(Array p_args);
Array get_structured_text_bidi_override_options() const;
void set_highlighted_word(const String &new_word);
2014-02-10 02:10:30 +01:00
void set_text(String p_text);
void insert_text_at_cursor(const String &p_text);
void insert_at(const String &p_text, int at);
2014-02-10 02:10:30 +01:00
int get_line_count() const;
void set_line_as_marked(int p_line, bool p_marked);
2017-11-16 05:00:27 +01:00
2017-11-13 00:12:17 +01:00
void set_line_as_hidden(int p_line, bool p_hidden);
bool is_line_hidden(int p_line) const;
2017-11-16 05:00:27 +01:00
void fold_all_lines();
2017-11-13 00:12:17 +01:00
void unhide_all_lines();
2018-01-26 02:41:17 +01:00
int num_lines_from(int p_line_from, int visible_amount) const;
int num_lines_from_rows(int p_line_from, int p_wrap_index_from, int visible_amount, int &wrap_index) const;
int get_last_unhidden_line() const;
2017-11-13 00:12:17 +01:00
bool can_fold(int p_line) const;
bool is_folded(int p_line) const;
Vector<int> get_folded_lines() const;
2017-11-13 00:12:17 +01:00
void fold_line(int p_line);
void unfold_line(int p_line);
void toggle_fold_line(int p_line);
2017-11-13 00:12:17 +01:00
2014-02-10 02:10:30 +01:00
String get_text();
String get_line(int line) const;
void set_line(int line, String new_text);
int get_row_height() const;
2014-02-10 02:10:30 +01:00
void backspace_at_cursor();
2016-03-09 00:00:52 +01:00
void indent_left();
void indent_right();
2017-11-28 12:03:46 +01:00
int get_indent_level(int p_line) const;
bool is_line_comment(int p_line) const;
2016-03-07 03:32:51 +01:00
inline void set_scroll_pass_end_of_file(bool p_enabled) {
scroll_past_end_of_file_enabled = p_enabled;
update();
}
2014-04-30 18:21:58 +02:00
inline void set_auto_brace_completion(bool p_enabled) {
auto_brace_completion_enabled = p_enabled;
}
inline void set_brace_matching(bool p_enabled) {
brace_matching_enabled = p_enabled;
update();
}
inline void set_callhint_settings(bool below, Vector2 offset) {
callhint_below = below;
callhint_offset = offset;
}
void set_auto_indent(bool p_auto_indent);
2016-07-21 03:40:08 +02:00
void center_viewport_to_cursor();
void set_mid_grapheme_caret_enabled(const bool p_enabled);
bool get_mid_grapheme_caret_enabled() const;
void cursor_set_column(int p_col, bool p_adjust_viewport = true);
2018-01-26 02:41:17 +01:00
void cursor_set_line(int p_row, bool p_adjust_viewport = true, bool p_can_be_hidden = true, int p_wrap_index = 0);
2014-02-10 02:10:30 +01:00
int cursor_get_column() const;
int cursor_get_line() const;
2020-12-11 08:53:55 +01:00
Vector2i _get_cursor_pixel_pos(bool p_adjust_viewport = true);
2014-02-10 02:10:30 +01:00
2016-05-09 20:21:55 +02:00
bool cursor_get_blink_enabled() const;
void cursor_set_blink_enabled(const bool p_enabled);
float cursor_get_blink_speed() const;
void cursor_set_blink_speed(const float p_speed);
2016-07-12 17:07:17 +02:00
void cursor_set_block_mode(const bool p_enable);
bool cursor_is_block_mode() const;
void set_right_click_moves_caret(bool p_enable);
bool is_right_click_moving_caret() const;
SelectionMode get_selection_mode() const;
void set_selection_mode(SelectionMode p_mode, int p_line = -1, int p_column = -1);
int get_selection_line() const;
int get_selection_column() const;
2014-02-10 02:10:30 +01:00
void set_readonly(bool p_readonly);
bool is_readonly() const;
2014-02-10 02:10:30 +01:00
void set_max_chars(int p_max_chars);
int get_max_chars() const;
2018-01-26 02:41:17 +01:00
void set_wrap_enabled(bool p_wrap_enabled);
bool is_wrap_enabled() const;
2014-02-10 02:10:30 +01:00
void clear();
void cut();
void copy();
void paste();
void select_all();
void select(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
2014-02-10 02:10:30 +01:00
void deselect();
void swap_lines(int line1, int line2);
2014-02-10 02:10:30 +01:00
void set_search_text(const String &p_search_text);
void set_search_flags(uint32_t p_flags);
void set_current_search_result(int line, int col);
void set_highlight_all_occurrences(const bool p_enabled);
2016-07-11 16:20:01 +02:00
bool is_highlight_all_occurrences_enabled() const;
2014-02-10 02:10:30 +01:00
bool is_selection_active() const;
int get_selection_from_line() const;
int get_selection_from_column() const;
2014-02-10 02:10:30 +01:00
int get_selection_to_line() const;
int get_selection_to_column() const;
String get_selection_text() const;
String get_word_under_cursor() const;
String get_word_at_pos(const Vector2 &p_pos) const;
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;
2014-02-10 02:10:30 +01:00
void undo();
void redo();
void clear_undo_history();
2014-02-10 02:10:30 +01:00
2017-04-17 15:24:30 +02:00
void set_indent_using_spaces(const bool p_use_spaces);
bool is_indent_using_spaces() const;
void set_indent_size(const int p_size);
int get_indent_size();
2014-02-10 02:10:30 +01:00
void set_draw_tabs(bool p_draw);
bool is_drawing_tabs() const;
2019-04-24 01:33:20 +02:00
void set_draw_spaces(bool p_draw);
bool is_drawing_spaces() const;
void set_override_selected_font_color(bool p_override_selected_font_color);
bool is_overriding_selected_font_color() const;
2014-02-10 02:10:30 +01:00
2016-03-31 21:49:30 +02:00
void set_insert_mode(bool p_enabled);
bool is_insert_mode() const;
void add_keyword(const String &p_keyword);
void clear_keywords();
2018-01-26 02:41:17 +01:00
double get_v_scroll() const;
void set_v_scroll(double p_scroll);
2014-02-10 02:10:30 +01:00
int get_h_scroll() const;
void set_h_scroll(int p_scroll);
2017-08-19 16:23:45 +02:00
void set_smooth_scroll_enabled(bool p_enable);
bool is_smooth_scroll_enabled() const;
void set_v_scroll_speed(float p_speed);
float get_v_scroll_speed() const;
2014-02-10 02:10:30 +01:00
uint32_t get_version() const;
uint32_t get_saved_version() const;
void tag_saved_version();
void menu_option(int p_option);
void set_highlight_current_line(bool p_enabled);
bool is_highlight_current_line_enabled() const;
void set_show_line_length_guidelines(bool p_show);
void set_line_length_guideline_soft_column(int p_column);
void set_line_length_guideline_hard_column(int p_column);
2019-08-11 20:31:19 +02:00
void set_draw_minimap(bool p_draw);
bool is_drawing_minimap() const;
void set_minimap_width(int p_minimap_width);
int get_minimap_width() const;
void set_hiding_enabled(bool p_enabled);
bool is_hiding_enabled() const;
2017-11-13 00:12:17 +01:00
void set_tooltip_request_func(Object *p_obj, const StringName &p_function, const Variant &p_udata);
2014-02-10 02:10:30 +01:00
void set_completion(bool p_enabled, const Vector<String> &p_prefixes);
2019-06-13 11:32:03 +02:00
void code_complete(const List<ScriptCodeCompletionOption> &p_strings, bool p_forced = false);
void set_code_hint(const String &p_hint);
2014-02-10 02:10:30 +01:00
void query_code_comple();
void set_select_identifiers_on_hover(bool p_enable);
bool is_selecting_identifiers_on_hover_enabled() const;
void set_context_menu_enabled(bool p_enable);
bool is_context_menu_enabled();
void set_selecting_enabled(bool p_enabled);
bool is_selecting_enabled() const;
void set_shortcut_keys_enabled(bool p_enabled);
bool is_shortcut_keys_enabled() const;
void set_virtual_keyboard_enabled(bool p_enable);
bool is_virtual_keyboard_enabled() const;
PopupMenu *get_menu() const;
String get_text_for_completion();
String get_text_for_lookup_completion();
2020-07-10 12:34:39 +02:00
virtual bool is_text_field() const override;
2014-02-10 02:10:30 +01:00
TextEdit();
~TextEdit();
};
2020-07-25 02:15:23 +02:00
VARIANT_ENUM_CAST(TextEdit::GutterType);
VARIANT_ENUM_CAST(TextEdit::SelectionMode);
VARIANT_ENUM_CAST(TextEdit::MenuItems);
VARIANT_ENUM_CAST(TextEdit::SearchFlags);
2014-02-10 02:10:30 +01:00
#endif // TEXT_EDIT_H