2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-01-26 16:01:49 +01:00
<class name= "WindowDialog" inherits= "Popup" version= "3.2" >
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" >
<return type= "TextureButton" >
</return>
<description >
2019-05-24 04:15:43 +02:00
Returns the close [TextureButton].
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 >
<theme_item name= "close" 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>
2019-06-29 12:38:01 +02:00
<theme_item name= "close_h_ofs" 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>
<theme_item name= "close_highlight" 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>
2019-06-29 12:38:01 +02:00
<theme_item name= "close_v_ofs" 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>
<theme_item name= "panel" 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>
2019-06-29 12:38:01 +02:00
<theme_item name= "scaleborder_size" 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>
2019-06-29 12:38:01 +02:00
<theme_item name= "title_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>
<theme_item name= "title_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>
2019-06-29 12:38:01 +02:00
<theme_item name= "title_height" 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>