2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-03-01 01:44:37 +01:00
<class name= "ProgressBar" inherits= "Range" version= "4.1" 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 control used for visual representation of a percentage.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2023-04-30 16:26:09 +02:00
A control used for visual representation of a percentage. Shows fill percentage from right to left.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<members >
2021-02-19 07:02:59 +01:00
<member name= "fill_mode" type= "int" setter= "set_fill_mode" getter= "get_fill_mode" default= "0" >
The fill direction. See [enum FillMode] for possible values.
</member>
2022-08-29 15:20:48 +02:00
<member name= "show_percentage" type= "bool" setter= "set_show_percentage" getter= "is_percentage_shown" default= "true" >
2019-06-29 15:24:23 +02:00
If [code]true[/code], the fill percentage is displayed on the bar.
2017-09-12 22:42:36 +02:00
</member>
</members>
2021-02-19 07:02:59 +01:00
<constants >
<constant name= "FILL_BEGIN_TO_END" value= "0" enum= "FillMode" >
The progress bar fills from begin to end horizontally, according to the language direction. If [method Control.is_layout_rtl] returns [code]false[/code], it fills from left to right, and if it returns [code]true[/code], it fills from right to left.
</constant>
<constant name= "FILL_END_TO_BEGIN" value= "1" enum= "FillMode" >
The progress bar fills from end to begin horizontally, according to the language direction. If [method Control.is_layout_rtl] returns [code]false[/code], it fills from right to left, and if it returns [code]true[/code], it fills from left to right.
</constant>
<constant name= "FILL_TOP_TO_BOTTOM" value= "2" enum= "FillMode" >
The progress fills from top to bottom.
</constant>
<constant name= "FILL_BOTTOM_TO_TOP" value= "3" enum= "FillMode" >
The progress fills from bottom to top.
</constant>
</constants>
2017-09-12 22:42:36 +02:00
<theme_items >
2021-12-30 17:22:06 +01:00
<theme_item name= "font_color" data_type= "color" type= "Color" default= "Color(0.95, 0.95, 0.95, 1)" >
2020-03-03 19:21:21 +01:00
The color of the text.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-08-04 18:54:41 +02:00
<theme_item name= "font_outline_color" data_type= "color" type= "Color" default= "Color(1, 1, 1, 1)" >
2020-12-25 22:45:28 +01:00
The tint of text outline of the [ProgressBar].
</theme_item>
2021-08-04 18:54:41 +02:00
<theme_item name= "font_shadow_color" data_type= "color" type= "Color" default= "Color(0, 0, 0, 1)" >
2020-03-03 19:21:21 +01:00
The color of the text's shadow.
2017-09-12 22:42:36 +02:00
</theme_item>
2021-12-01 19:02:20 +01:00
<theme_item name= "outline_size" data_type= "constant" type= "int" default= "0" >
The size of the text outline.
2022-12-19 17:15:44 +01:00
[b]Note:[/b] If using a font with [member FontFile.multichannel_signed_distance_field] enabled, its [member FontFile.msdf_pixel_range] must be set to at least [i]twice[/i] the value of [theme_item outline_size] for outline rendering to look correct. Otherwise, the outline may appear to be cut off earlier than intended.
2021-12-01 19:02:20 +01:00
</theme_item>
<theme_item name= "font" data_type= "font" type= "Font" >
2022-08-29 15:20:48 +02:00
Font used to draw the fill percentage if [member show_percentage] is [code]true[/code].
2021-12-01 19:02:20 +01:00
</theme_item>
2021-08-04 18:54:41 +02:00
<theme_item name= "font_size" data_type= "font_size" type= "int" >
2022-08-29 15:20:48 +02:00
Font size used to draw the fill percentage if [member show_percentage] is [code]true[/code].
2020-08-12 13:49:10 +02:00
</theme_item>
2022-09-06 19:09:32 +02:00
<theme_item name= "background" data_type= "style" type= "StyleBox" >
2021-12-01 19:02:20 +01:00
The style of the background.
</theme_item>
2022-09-06 19:09:32 +02:00
<theme_item name= "fill" data_type= "style" type= "StyleBox" >
2021-12-01 19:02:20 +01:00
The style of the progress (i.e. the part that fills the bar).
2020-12-25 22:45:28 +01:00
</theme_item>
2017-09-12 22:42:36 +02:00
</theme_items>
</class>