123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- :github_url: hide
- .. Generated automatically by doc/tools/make_rst.py in Godot's source tree.
- .. DO NOT EDIT THIS FILE, but the WindowDialog.xml source instead.
- .. The source is found in doc/classes or modules/<name>/doc_classes.
- .. _class_WindowDialog:
- WindowDialog
- ============
- **Inherits:** :ref:`Popup<class_Popup>` **<** :ref:`Control<class_Control>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
- **Inherited By:** :ref:`AcceptDialog<class_AcceptDialog>`
- Base class for window dialogs.
- Description
- -----------
- Windowdialog is the base class for all window-based dialogs. It's a by-default toplevel :ref:`Control<class_Control>` that draws a window decoration and allows motion and resizing.
- Properties
- ----------
- +-----------------------------+---------------------------------------------------------------+-----------+
- | :ref:`bool<class_bool>` | :ref:`resizable<class_WindowDialog_property_resizable>` | ``false`` |
- +-----------------------------+---------------------------------------------------------------+-----------+
- | :ref:`String<class_String>` | :ref:`window_title<class_WindowDialog_property_window_title>` | ``""`` |
- +-----------------------------+---------------------------------------------------------------+-----------+
- Methods
- -------
- +-------------------------------------------+---------------------------------------------------------------------------------+
- | :ref:`TextureButton<class_TextureButton>` | :ref:`get_close_button<class_WindowDialog_method_get_close_button>` **(** **)** |
- +-------------------------------------------+---------------------------------------------------------------------------------+
- Theme Properties
- ----------------
- +---------------------------------+-----------------------------------------------------------------------------+-------------------------+
- | :ref:`Color<class_Color>` | :ref:`title_color<class_WindowDialog_theme_color_title_color>` | ``Color( 0, 0, 0, 1 )`` |
- +---------------------------------+-----------------------------------------------------------------------------+-------------------------+
- | :ref:`int<class_int>` | :ref:`close_h_ofs<class_WindowDialog_theme_constant_close_h_ofs>` | ``18`` |
- +---------------------------------+-----------------------------------------------------------------------------+-------------------------+
- | :ref:`int<class_int>` | :ref:`close_v_ofs<class_WindowDialog_theme_constant_close_v_ofs>` | ``18`` |
- +---------------------------------+-----------------------------------------------------------------------------+-------------------------+
- | :ref:`int<class_int>` | :ref:`scaleborder_size<class_WindowDialog_theme_constant_scaleborder_size>` | ``4`` |
- +---------------------------------+-----------------------------------------------------------------------------+-------------------------+
- | :ref:`int<class_int>` | :ref:`title_height<class_WindowDialog_theme_constant_title_height>` | ``20`` |
- +---------------------------------+-----------------------------------------------------------------------------+-------------------------+
- | :ref:`Font<class_Font>` | :ref:`title_font<class_WindowDialog_theme_font_title_font>` | |
- +---------------------------------+-----------------------------------------------------------------------------+-------------------------+
- | :ref:`Texture<class_Texture>` | :ref:`close<class_WindowDialog_theme_icon_close>` | |
- +---------------------------------+-----------------------------------------------------------------------------+-------------------------+
- | :ref:`Texture<class_Texture>` | :ref:`close_highlight<class_WindowDialog_theme_icon_close_highlight>` | |
- +---------------------------------+-----------------------------------------------------------------------------+-------------------------+
- | :ref:`StyleBox<class_StyleBox>` | :ref:`panel<class_WindowDialog_theme_style_panel>` | |
- +---------------------------------+-----------------------------------------------------------------------------+-------------------------+
- Property Descriptions
- ---------------------
- .. _class_WindowDialog_property_resizable:
- - :ref:`bool<class_bool>` **resizable**
- +-----------+----------------------+
- | *Default* | ``false`` |
- +-----------+----------------------+
- | *Setter* | set_resizable(value) |
- +-----------+----------------------+
- | *Getter* | get_resizable() |
- +-----------+----------------------+
- If ``true``, the user can resize the window.
- ----
- .. _class_WindowDialog_property_window_title:
- - :ref:`String<class_String>` **window_title**
- +-----------+------------------+
- | *Default* | ``""`` |
- +-----------+------------------+
- | *Setter* | set_title(value) |
- +-----------+------------------+
- | *Getter* | get_title() |
- +-----------+------------------+
- The text displayed in the window's title bar.
- Method Descriptions
- -------------------
- .. _class_WindowDialog_method_get_close_button:
- - :ref:`TextureButton<class_TextureButton>` **get_close_button** **(** **)**
- Returns the close :ref:`TextureButton<class_TextureButton>`.
- **Warning:** 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 :ref:`CanvasItem.visible<class_CanvasItem_property_visible>` property.
- Theme Property Descriptions
- ---------------------------
- .. _class_WindowDialog_theme_color_title_color:
- - :ref:`Color<class_Color>` **title_color**
- +-----------+-------------------------+
- | *Default* | ``Color( 0, 0, 0, 1 )`` |
- +-----------+-------------------------+
- The color of the title text.
- ----
- .. _class_WindowDialog_theme_constant_close_h_ofs:
- - :ref:`int<class_int>` **close_h_ofs**
- +-----------+--------+
- | *Default* | ``18`` |
- +-----------+--------+
- The horizontal offset of the close button.
- ----
- .. _class_WindowDialog_theme_constant_close_v_ofs:
- - :ref:`int<class_int>` **close_v_ofs**
- +-----------+--------+
- | *Default* | ``18`` |
- +-----------+--------+
- The vertical offset of the close button.
- ----
- .. _class_WindowDialog_theme_constant_scaleborder_size:
- - :ref:`int<class_int>` **scaleborder_size**
- +-----------+-------+
- | *Default* | ``4`` |
- +-----------+-------+
- The thickness of the border that can be dragged when scaling the window (if :ref:`resizable<class_WindowDialog_property_resizable>` is enabled).
- ----
- .. _class_WindowDialog_theme_constant_title_height:
- - :ref:`int<class_int>` **title_height**
- +-----------+--------+
- | *Default* | ``20`` |
- +-----------+--------+
- The vertical offset of the title text.
- ----
- .. _class_WindowDialog_theme_font_title_font:
- - :ref:`Font<class_Font>` **title_font**
- The font used to draw the title.
- ----
- .. _class_WindowDialog_theme_icon_close:
- - :ref:`Texture<class_Texture>` **close**
- The icon for the close button.
- ----
- .. _class_WindowDialog_theme_icon_close_highlight:
- - :ref:`Texture<class_Texture>` **close_highlight**
- The icon used for the close button when it's hovered with the mouse cursor.
- ----
- .. _class_WindowDialog_theme_style_panel:
- - :ref:`StyleBox<class_StyleBox>` **panel**
- 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 ``panel`` stylebox.
- .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
- .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
- .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
|