Skip to main content

Meta_Slider

Module: Metanodes / Definitions

A Slider is a GUI control that can be moved with a cursor by clicking the handle and dragging it.

#include <meta_gui.hpp>

Public Types

TypeName
enumIDX { Idx_Enabled, Idx_Position, Idx_Size, Idx_Style, Idx_HandleStyle, Idx_Type, Idx_Minimum, Idx_Maximum, Idx_Length, Idx_Step, Idx_Value, Idx_HandleOffset, Idx_ToolTip, Idx_ToolTipStyle }
Property index.
enumSliderType { SLIDERTYPE_HORIZONTAL, SLIDERTYPE_VERTICAL }
Values for Idx_Type.

Public Types Documentation

enum IDX

EnumeratorValueDescription
Idx_Enabledbool - When enabled, this panel and its children are drawn
Idx_Positionvec3f - Position of the panel relative to its parent
Idx_Size
Idx_Stylelink - Style to apply to the bar (Meta_ColouredPanelStyle, Meta_TexturedPanelStyle, Meta_GradientPanelStyle)
Idx_HandleStylelink - Style to apply to the handle (Meta_ColouredPanelStyle, Meta_TexturedPanelStyle, Meta_GradientPanelStyle)
Idx_TypeSliderType (int) - Horizontal or Vertical
Idx_Minimumfloat - Minimum value represented by the slider
Idx_Maximumfloat - Maximum value represented by the slider
Idx_Lengthfloat - Length of the slider bar
Idx_Stepfloat - Step size, or zero for continuous values
Idx_Valuefloat - Current value of the slider (location of the handle along the bar)
Idx_HandleOffsetvec2f - Offset the handle visual
Idx_ToolTipstring - Text to display on hover
Idx_ToolTipStyle

Property index.

enum SliderType

EnumeratorValueDescription
SLIDERTYPE_HORIZONTALSymbols - C: "Horiztonal", Lua: __Slider_Horiztonal
SLIDERTYPE_VERTICALSymbols - C: "Vertical", Lua: __Slider_Vertical

Values for Idx_Type.