2017-09-12 22:42:36 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
2020-02-01 02:03:48 +01:00
|
|
|
<class name="ConfirmationDialog" inherits="AcceptDialog" version="4.0">
|
2017-09-12 22:42:36 +02:00
|
|
|
<brief_description>
|
|
|
|
Dialog for confirmation of actions.
|
|
|
|
</brief_description>
|
|
|
|
<description>
|
|
|
|
Dialog for confirmation of actions. This dialog inherits from [AcceptDialog], but has by default an OK and Cancel button (in host OS order).
|
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]
|
2019-12-21 00:19:13 +01:00
|
|
|
get_cancel().connect("pressed", self, "cancelled")
|
2020-09-12 17:06:13 +02:00
|
|
|
[/gdscript]
|
|
|
|
[csharp]
|
|
|
|
GetCancel().Connect("pressed", this, nameof(Cancelled));
|
|
|
|
[/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">
|
2017-09-12 22:42:36 +02:00
|
|
|
<return type="Button">
|
|
|
|
</return>
|
|
|
|
<description>
|
2019-05-24 04:15:43 +02:00
|
|
|
Returns the cancel button.
|
2017-09-12 22:42:36 +02:00
|
|
|
</description>
|
|
|
|
</method>
|
|
|
|
</methods>
|
2019-09-03 12:44:58 +02:00
|
|
|
<members>
|
2020-03-31 11:56:58 +02:00
|
|
|
<member name="min_size" type="Vector2i" setter="set_min_size" getter="get_min_size" override="true" default="Vector2i( 200, 70 )" />
|
|
|
|
<member name="size" type="Vector2i" setter="set_size" getter="get_size" override="true" default="Vector2i( 200, 100 )" />
|
|
|
|
<member name="title" type="String" setter="set_title" getter="get_title" override="true" default=""Please Confirm..."" />
|
2019-09-03 12:44:58 +02:00
|
|
|
</members>
|
2017-09-12 22:42:36 +02:00
|
|
|
<constants>
|
|
|
|
</constants>
|
|
|
|
</class>
|