You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If ``true``, the dialog is hidden when the OK button is pressed. You can set it to ``false`` if you want to do e.g. input validation when receiving the :ref:`confirmed<class_AcceptDialog_signal_confirmed>` signal, and handle hiding the dialog in your own logic.
190
190
@@ -202,8 +202,8 @@ If ``true``, the dialog is hidden when the OK button is pressed. You can set it
202
202
203
203
.. rst-class:: classref-property-setget
204
204
205
-
- void **set_text** **(** :ref:`String<class_String>` value **)**
Adds a button with label ``text`` and a custom ``action`` to the dialog and returns the created button. ``action`` will be passed to the :ref:`custom_action<class_AcceptDialog_signal_custom_action>` signal when pressed.
243
243
@@ -253,7 +253,7 @@ You can use :ref:`remove_button<class_AcceptDialog_method_remove_button>` method
253
253
254
254
.. rst-class:: classref-method
255
255
256
-
:ref:`Button<class_Button>` **add_cancel_button** **(** :ref:`String<class_String>` name **)**
Removes the ``button`` from the dialog. Does NOT free the ``button``. The ``button`` must be a :ref:`Button<class_Button>` added with :ref:`add_button<class_AcceptDialog_method_add_button>` or :ref:`add_cancel_button<class_AcceptDialog_method_add_cancel_button>` method. After removal, pressing the ``button`` will no longer emit this dialog's :ref:`custom_action<class_AcceptDialog_signal_custom_action>` or :ref:`canceled<class_AcceptDialog_signal_canceled>` signals.
313
313
@@ -347,3 +347,4 @@ The panel that fills the background of the window.
347
347
.. |static| replace:::abbr:`static(This method doesn't need an instance to be called, so it can be called directly using the class name.)`
348
348
.. |operator| replace:::abbr:`operator(This method describes a valid operator to use with this type as left-hand operand.)`
349
349
.. |bitfield| replace:::abbr:`BitField(This value is an integer composed as a bitmask of the following flags.)`
Get the current IV state for this context (IV gets updated when calling :ref:`update<class_AESContext_method_update>`). You normally don't need this function.
200
200
@@ -208,7 +208,7 @@ Get the current IV state for this context (IV gets updated when calling :ref:`up
Start the AES context in the given ``mode``. A ``key`` of either 16 or 32 bytes must always be provided, while an ``iv`` (initialization vector) of exactly 16 bytes, is only needed when ``mode`` is either :ref:`MODE_CBC_ENCRYPT<class_AESContext_constant_MODE_CBC_ENCRYPT>` or :ref:`MODE_CBC_DECRYPT<class_AESContext_constant_MODE_CBC_DECRYPT>`.
214
214
@@ -220,7 +220,7 @@ Start the AES context in the given ``mode``. A ``key`` of either 16 or 32 bytes
Run the desired operation for this AES context. Will return a :ref:`PackedByteArray<class_PackedByteArray>` containing the result of encrypting (or decrypting) the given ``src``. See :ref:`start<class_AESContext_method_start>` for mode of operation.
226
226
@@ -233,3 +233,4 @@ Run the desired operation for this AES context. Will return a :ref:`PackedByteAr
233
233
.. |static| replace:::abbr:`static(This method doesn't need an instance to be called, so it can be called directly using the class name.)`
234
234
.. |operator| replace:::abbr:`operator(This method describes a valid operator to use with this type as left-hand operand.)`
235
235
.. |bitfield| replace:::abbr:`BitField(This value is an integer composed as a bitmask of the following flags.)`
0 commit comments