mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 22:23:07 +00:00
Improved TextEdit search usability & documentation
This commit is contained in:
parent
99324d9fda
commit
d29c8ab81b
@ -310,7 +310,15 @@
|
|||||||
<argument index="3" name="from_column" type="int">
|
<argument index="3" name="from_column" type="int">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Perform a search inside the text. Search flags can be specified in the[code]SEARCH_*[/code] enum.
|
Perform a search inside the text. Search flags can be specified in the [code]SEARCH_*[/code] enum.
|
||||||
|
Returns an empty [code]PoolIntArray[/code] if no result was found. Otherwise, the result line and column can be accessed at indices specified in the [code]SEARCH_RESULT_*[/code] enum, e.g:
|
||||||
|
[codeblock]
|
||||||
|
var result = search(key, flags, line, column)
|
||||||
|
if result.size() > 0:
|
||||||
|
# result found
|
||||||
|
var res_line = result[TextEdit.SEARCH_RESULT_LINE]
|
||||||
|
var res_column = result[TextEdit.SEARCH_RESULT_COLUMN]
|
||||||
|
[/codeblock]
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="select">
|
<method name="select">
|
||||||
@ -504,6 +512,12 @@
|
|||||||
<constant name="SEARCH_BACKWARDS" value="4" enum="SearchFlags">
|
<constant name="SEARCH_BACKWARDS" value="4" enum="SearchFlags">
|
||||||
Search from end to beginning.
|
Search from end to beginning.
|
||||||
</constant>
|
</constant>
|
||||||
|
<constant name="SEARCH_RESULT_COLUMN" value="0" enum="SearchResult">
|
||||||
|
Used to access the result column from [member search].
|
||||||
|
</constant>
|
||||||
|
<constant name="SEARCH_RESULT_LINE" value="1" enum="SearchResult">
|
||||||
|
Used to access the result line from [member search].
|
||||||
|
</constant>
|
||||||
<constant name="MENU_CUT" value="0" enum="MenuItems">
|
<constant name="MENU_CUT" value="0" enum="MenuItems">
|
||||||
Cuts (Copies and clears) the selected text.
|
Cuts (Copies and clears) the selected text.
|
||||||
</constant>
|
</constant>
|
||||||
|
@ -5443,11 +5443,11 @@ int TextEdit::_get_column_pos_of_word(const String &p_key, const String &p_searc
|
|||||||
PoolVector<int> TextEdit::_search_bind(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_from_column) const {
|
PoolVector<int> TextEdit::_search_bind(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_from_column) const {
|
||||||
|
|
||||||
int col, line;
|
int col, line;
|
||||||
if (search(p_key, p_search_flags, p_from_line, p_from_column, col, line)) {
|
if (search(p_key, p_search_flags, p_from_line, p_from_column, line, col)) {
|
||||||
PoolVector<int> result;
|
PoolVector<int> result;
|
||||||
result.resize(2);
|
result.resize(2);
|
||||||
result.set(0, line);
|
result.set(SEARCH_RESULT_COLUMN, col);
|
||||||
result.set(1, col);
|
result.set(SEARCH_RESULT_LINE, line);
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
@ -6960,6 +6960,9 @@ void TextEdit::_bind_methods() {
|
|||||||
BIND_ENUM_CONSTANT(SEARCH_WHOLE_WORDS);
|
BIND_ENUM_CONSTANT(SEARCH_WHOLE_WORDS);
|
||||||
BIND_ENUM_CONSTANT(SEARCH_BACKWARDS);
|
BIND_ENUM_CONSTANT(SEARCH_BACKWARDS);
|
||||||
|
|
||||||
|
BIND_ENUM_CONSTANT(SEARCH_RESULT_COLUMN);
|
||||||
|
BIND_ENUM_CONSTANT(SEARCH_RESULT_LINE);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
ClassDB::bind_method(D_METHOD("delete_char"),&TextEdit::delete_char);
|
ClassDB::bind_method(D_METHOD("delete_char"),&TextEdit::delete_char);
|
||||||
ClassDB::bind_method(D_METHOD("delete_line"),&TextEdit::delete_line);
|
ClassDB::bind_method(D_METHOD("delete_line"),&TextEdit::delete_line);
|
||||||
|
@ -504,12 +504,16 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
enum SearchFlags {
|
enum SearchFlags {
|
||||||
|
|
||||||
SEARCH_MATCH_CASE = 1,
|
SEARCH_MATCH_CASE = 1,
|
||||||
SEARCH_WHOLE_WORDS = 2,
|
SEARCH_WHOLE_WORDS = 2,
|
||||||
SEARCH_BACKWARDS = 4
|
SEARCH_BACKWARDS = 4
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum SearchResult {
|
||||||
|
SEARCH_RESULT_COLUMN,
|
||||||
|
SEARCH_RESULT_LINE,
|
||||||
|
};
|
||||||
|
|
||||||
virtual CursorShape get_cursor_shape(const Point2 &p_pos = Point2i()) const;
|
virtual CursorShape get_cursor_shape(const Point2 &p_pos = Point2i()) const;
|
||||||
|
|
||||||
void _get_mouse_pos(const Point2i &p_mouse, int &r_row, int &r_col) const;
|
void _get_mouse_pos(const Point2i &p_mouse, int &r_row, int &r_col) const;
|
||||||
@ -768,6 +772,7 @@ public:
|
|||||||
|
|
||||||
VARIANT_ENUM_CAST(TextEdit::MenuItems);
|
VARIANT_ENUM_CAST(TextEdit::MenuItems);
|
||||||
VARIANT_ENUM_CAST(TextEdit::SearchFlags);
|
VARIANT_ENUM_CAST(TextEdit::SearchFlags);
|
||||||
|
VARIANT_ENUM_CAST(TextEdit::SearchResult);
|
||||||
|
|
||||||
class SyntaxHighlighter {
|
class SyntaxHighlighter {
|
||||||
protected:
|
protected:
|
||||||
|
Loading…
Reference in New Issue
Block a user