2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2021-04-26 13:14:51 +02:00
<class name= "WindowDialog" inherits= "Popup" version= "3.4" >
2017-09-12 22:42:36 +02:00
<brief_description >
Base class for window dialogs.
</brief_description>
<description >
Windowdialog is the base class for all window-based dialogs. It's a by-default toplevel [Control] that draws a window decoration and allows motion and resizing.
</description>
<tutorials >
</tutorials>
<methods >
<method name= "get_close_button" >
2021-07-30 15:28:05 +02:00
<return type= "TextureButton" />
2017-09-12 22:42:36 +02:00
<description >
2019-05-24 04:15:43 +02:00
Returns the close [TextureButton].
2021-10-10 22:10:07 +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>
<members >
2019-06-29 12:38:01 +02:00
<member name= "resizable" type= "bool" setter= "set_resizable" getter= "get_resizable" default= "false" >
2019-06-29 15:24:23 +02:00
If [code]true[/code], the user can resize the window.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "window_title" type= "String" setter= "set_title" getter= "get_title" default= """" >
2018-08-27 00:31:09 +02:00
The text displayed in the window's title bar.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
</constants>
<theme_items >
2021-08-06 17:07:21 +02:00
<theme_item name= "close" data_type= "icon" type= "Texture" >
2020-03-03 19:21:21 +01:00
The icon for the close button.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-06 17:07:21 +02:00
<theme_item name= "close_h_ofs" data_type= "constant" type= "int" default= "18" >
2020-03-03 19:21:21 +01:00
The horizontal offset of the close button.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-06 17:07:21 +02:00
<theme_item name= "close_highlight" data_type= "icon" type= "Texture" >
2020-03-03 19:21:21 +01:00
The icon used for the close button when it's hovered with the mouse cursor.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-06 17:07:21 +02:00
<theme_item name= "close_v_ofs" data_type= "constant" type= "int" default= "18" >
2020-03-03 19:21:21 +01:00
The vertical offset of the close button.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-06 17:07:21 +02:00
<theme_item name= "panel" data_type= "style" type= "StyleBox" >
2020-08-30 07:52:55 +02:00
The style for both the content background of the [WindowDialog] and the title bar. The title bar is created with a top border and an expand margin using the [code]panel[/code] stylebox.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-06 17:07:21 +02:00
<theme_item name= "scaleborder_size" data_type= "constant" type= "int" default= "4" >
2020-03-03 19:21:21 +01:00
The thickness of the border that can be dragged when scaling the window (if [member resizable] is enabled).
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-06 17:07:21 +02:00
<theme_item name= "title_color" data_type= "color" type= "Color" default= "Color( 0, 0, 0, 1 )" >
2020-03-03 19:21:21 +01:00
The color of the title text.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-06 17:07:21 +02:00
<theme_item name= "title_font" data_type= "font" type= "Font" >
2020-03-03 19:21:21 +01:00
The font used to draw the title.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-06 17:07:21 +02:00
<theme_item name= "title_height" data_type= "constant" type= "int" default= "20" >
2020-03-03 19:21:21 +01:00
The vertical offset of the title text.
2017-09-12 22:42:36 +02:00
</theme_item>
</theme_items>
</class>