diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-06-24 21:13:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-24 21:13:26 +0200 |
commit | 118f54aeeb3c2f67e721d261edf4f96dce7cf0d4 (patch) | |
tree | 652962af8406a411d38c11c371bb316d19a17e9c /doc | |
parent | 7c4221f62aba064718301e0de69c0edc3bb1ae3b (diff) | |
parent | 4f54e721895d44ded7b49fe6d6138a97d56d456b (diff) |
Merge pull request #5328 from Paulb23/line_edit_caret
Added caret blink to line edit
Diffstat (limited to 'doc')
-rw-r--r-- | doc/base/classes.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 808bf20c25..7224ae8554 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -18959,6 +18959,34 @@ Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) Set the cursor position inside the [LineEdit], causing it to scroll if needed. </description> </method> + <method name="cursor_set_blink_enabled"> + <argument index="0" name="enable" type="bool"> + </argument> + <description> + Set the line edit caret to blink. + </description> + </method> + <method name="cursor_get_blink_enabled" qualifiers="const"> + <return type="float"> + </return> + <description> + Gets whether the line edit caret is blinking. + </description> + </method> + <method name="cursor_set_blink_speed"> + <argument index="0" name="blink_speed" type="float"> + </argument> + <description> + Set the line edit caret blink speed. Cannot be less then or equal to 0. + </description> + </method> + <method name="cursor_get_blink_speed" qualifiers="const"> + <return type="float"> + </return> + <description> + Gets the line edit caret blink speed. + </description> + </method> <method name="set_editable"> <argument index="0" name="enabled" type="bool"> </argument> |