summaryrefslogtreecommitdiffstats
path: root/doc/classes/VSlider.xml
blob: 7475e5ff7e883a60b37aa81677d1e58e006da1f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8" ?>
<class name="VSlider" inherits="Slider" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		A vertical slider that goes from bottom (min) to top (max).
	</brief_description>
	<description>
		A vertical slider, used to adjust a value by moving a grabber along a vertical axis. It is a [Range]-based control and goes from bottom (min) to top (max). Note that this direction is the opposite of [VScrollBar]'s.
	</description>
	<tutorials>
	</tutorials>
	<members>
		<member name="size_flags_horizontal" type="int" setter="set_h_size_flags" getter="get_h_size_flags" overrides="Control" enum="Control.SizeFlags" is_bitfield="true" default="0" />
		<member name="size_flags_vertical" type="int" setter="set_v_size_flags" getter="get_v_size_flags" overrides="Control" enum="Control.SizeFlags" is_bitfield="true" default="1" />
	</members>
	<theme_items>
		<theme_item name="center_grabber" data_type="constant" type="int" default="0">
			Boolean constant. If [code]1[/code], the grabber texture size will be ignored and it will fit within slider's bounds based only on its center position.
		</theme_item>
		<theme_item name="grabber_offset" data_type="constant" type="int" default="0">
			Horizontal offset of the grabber.
		</theme_item>
		<theme_item name="grabber" data_type="icon" type="Texture2D">
			The texture for the grabber (the draggable element).
		</theme_item>
		<theme_item name="grabber_disabled" data_type="icon" type="Texture2D">
			The texture for the grabber when it's disabled.
		</theme_item>
		<theme_item name="grabber_highlight" data_type="icon" type="Texture2D">
			The texture for the grabber when it's focused.
		</theme_item>
		<theme_item name="tick" data_type="icon" type="Texture2D">
			The texture for the ticks, visible when [member Slider.tick_count] is greater than 0.
		</theme_item>
		<theme_item name="grabber_area" data_type="style" type="StyleBox">
			The background of the area below the grabber.
		</theme_item>
		<theme_item name="grabber_area_highlight" data_type="style" type="StyleBox">
			The background of the area below the grabber that displays when it's being hovered or focused.
		</theme_item>
		<theme_item name="slider" data_type="style" type="StyleBox">
			The background for the whole slider. Determines the width of the [code]grabber_area[/code].
		</theme_item>
	</theme_items>
</class>