2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-06 10:08:05 +02:00
<class name= "ConfirmationDialog" inherits= "AcceptDialog" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
2023-04-30 16:26:09 +02:00
A dialog used for confirmation of actions.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2023-04-30 16:26:09 +02:00
A dialog used for confirmation of actions. This window is similar to [AcceptDialog], but pressing its Cancel button can have a different outcome from pressing the OK button. The order of the two buttons varies depending on the host OS.
2019-12-21 00:19:13 +01:00
To get cancel action, you can use:
2020-09-12 17:06:13 +02:00
[codeblocks]
[gdscript]
2023-01-21 12:25:29 +01:00
get_cancel_button().pressed.connect(self.canceled)
2020-09-12 17:06:13 +02:00
[/gdscript]
[csharp]
2023-01-21 12:25:29 +01:00
GetCancelButton().Pressed += Canceled;
2020-09-12 17:06:13 +02:00
[/csharp]
[/codeblocks]
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
2020-12-14 19:37:30 +01:00
<method name= "get_cancel_button" >
2021-07-30 15:28:05 +02:00
<return type= "Button" />
2017-09-12 22:42:36 +02:00
<description >
2019-05-24 04:15:43 +02:00
Returns the cancel button.
2021-10-10 21:28:56 +02:00
[b]Warning:[/b] This is a required internal node, removing and freeing it may cause a crash. If you wish to hide it or any of its children, use their [member CanvasItem.visible] property.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
2019-09-03 12:44:58 +02:00
<members >
2022-07-08 02:31:19 +02:00
<member name= "cancel_button_text" type= "String" setter= "set_cancel_button_text" getter= "get_cancel_button_text" default= ""Cancel"" >
The text displayed by the cancel button (see [method get_cancel_button]).
</member>
2021-12-02 20:38:49 +01:00
<member name= "min_size" type= "Vector2i" setter= "set_min_size" getter= "get_min_size" overrides= "Window" default= "Vector2i(200, 70)" />
<member name= "size" type= "Vector2i" setter= "set_size" getter= "get_size" overrides= "Window" default= "Vector2i(200, 100)" />
<member name= "title" type= "String" setter= "set_title" getter= "get_title" overrides= "Window" default= ""Please Confirm..."" />
2019-09-03 12:44:58 +02:00
</members>
2017-09-12 22:42:36 +02:00
</class>