diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-31 10:32:07 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-31 10:32:07 +0100 |
commit | 273410ba5a5eae4ee9614f76a9c31770b934669a (patch) | |
tree | 53d252b0a92b221ccdf1c9d7d351f0d42ce14c9f /scene/gui/text_edit.h | |
parent | 996f7e5142b5055fca4b0fab2929c6082a76e404 (diff) | |
parent | e5354cacd0e85dc8c054179b40fecc2d7d24a8fd (diff) | |
download | redot-engine-273410ba5a5eae4ee9614f76a9c31770b934669a.tar.gz |
Merge pull request #67139 from PucklaMotzer09/insert_caret_at_carets
Add Caret Insert Below and Above shortcuts to TextEdit
Diffstat (limited to 'scene/gui/text_edit.h')
-rw-r--r-- | scene/gui/text_edit.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/gui/text_edit.h b/scene/gui/text_edit.h index 86b838e387..e57f321887 100644 --- a/scene/gui/text_edit.h +++ b/scene/gui/text_edit.h @@ -598,6 +598,9 @@ private: void _move_caret_document_start(bool p_select); void _move_caret_document_end(bool p_select); + // Used in add_caret_at_carets + void _get_above_below_caret_line_column(int p_old_line, int p_old_wrap_index, int p_old_column, bool p_below, int &p_new_line, int &p_new_column, int p_last_fit_x = -1) const; + protected: void _notification(int p_what); @@ -816,6 +819,7 @@ public: void remove_secondary_carets(); void merge_overlapping_carets(); int get_caret_count() const; + void add_caret_at_carets(bool p_below); Vector<int> get_caret_index_edit_order(); void adjust_carets_after_edit(int p_caret, int p_from_line, int p_from_col, int p_to_line, int p_to_col); |