DialogControls-Sliders: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "{{Informative|TokenNames common to most controls, such as x, y, w, h, text, idc... are not listed here.}}" to "{{Informative|TokenNames common to most controls, such as x, y, w, h, text, idc... can be found [[Arma:_GUI_Configuration...) |
m (updated examples and added all properties to the tables) |
||
Line 16: | Line 16: | ||
! bgcolor="#ddddff" | Remark | ! bgcolor="#ddddff" | Remark | ||
|- | |- | ||
| ''' | | '''color''' | ||
| | | Color | ||
| | | Color of the slider | ||
|- | |||
| '''colorActive''' | |||
| Color | |||
| Color when the slider is focused. | |||
|- | |||
| '''colorDisabled''' | |||
| Color | |||
| Color when slider is disabled. | |||
|- | |||
| '''sliderPosition''' | |||
| Float | |||
| Inital value the slider is set to when loaded. | |||
|- | |||
| '''sliderRange''' | |||
| Array | |||
| Slider range in format {min,max}. | |||
|- | |- | ||
|}<br clear="all"> | |}<br clear="all"> | ||
Line 44: | Line 60: | ||
| String | | String | ||
| Texture of the border. | | Texture of the border. | ||
|- | |||
| '''color''' | |||
| Color | |||
| Color of the slider | |||
|- | |- | ||
| '''colorActive''' | | '''colorActive''' | ||
Line 81: | Line 101: | ||
[[Image:ControlSlider.JPG|thumb|200px|A Slider Control]] | [[Image:ControlSlider.JPG|thumb|200px|A Slider Control]] | ||
* '''Example Config:''' | * '''Example Config:''' | ||
<syntaxhighlight lang="cpp">class | <syntaxhighlight lang="cpp">class Dialog | ||
{ | { | ||
idd = -1; | |||
class Controls | |||
{ | |||
class _CT_SLIDER | |||
{ | |||
idc = -1; | |||
type = 3; | |||
style = 1024; | |||
x = 0.4; | |||
y = 0.2; | |||
w = 0.3; | |||
h = 0.04; | |||
color[] = {1,1,1,0.5}; | |||
coloractive[] = {1,1,1,1}; | |||
sliderRange[] = {1,10}; | |||
sliderPosition = 5; | |||
}; | |||
class _CT_XSLIDER | |||
{ | |||
idc = -1; | |||
type = 43; | |||
style = 1024; | |||
x = 0.4; | |||
y = 0.3; | |||
w = 0.3; | |||
h = 0.04; | |||
arrowEmpty = "\A3\ui_f\data\gui\cfg\slider\arrowEmpty_ca.paa"; | |||
arrowFull = "\A3\ui_f\data\gui\cfg\slider\arrowFull_ca.paa"; | |||
border = "\A3\ui_f\data\gui\cfg\slider\border_ca.paa"; | |||
thumb = "\A3\ui_f\data\gui\cfg\slider\thumb_ca.paa"; | |||
color[] = {1,1,1,0.5}; | |||
coloractive[] = {1,1,1,1}; | |||
sliderPosition = 5; | |||
sliderRange[] = {1,10}; | |||
sliderStep = 1; | |||
lineSize = 1; | |||
}; | |||
}; | |||
};</syntaxhighlight> | };</syntaxhighlight> | ||
Revision as of 10:32, 20 March 2020
General
- 'Sliders' and 'ScrollBars' are synonymous.
- Default scrollbars are vertical. Use ST_HORZ to change orientation.
- Embedded child scrollbars are created by the engine as and when required for various control types. (CT_LISTBOX e.g.). The engine generates it's own idc for them. In most cases you can alter characteristics of that auto-generated scrollbar via class ScrollBar
CT_SLIDER=3 (deprecated)
Properties | ||
---|---|---|
Name | Type | Remark |
color | Color | Color of the slider |
colorActive | Color | Color when the slider is focused. |
colorDisabled | Color | Color when slider is disabled. |
sliderPosition | Float | Inital value the slider is set to when loaded. |
sliderRange | Array | Slider range in format {min,max}. |
CT_XSLIDER=43 or Embedded Scrollbar Class
Embedded scrollbar classes (such as those in listboxes e.g.) use the xbox properties as per a CT_XSLIDER
Properties | ||
---|---|---|
Name | Type | Remark |
arrowEmpty | String | Texture shown when the left or right arrow is not pressed. |
arrowFull | String | Texture shown when the left or right arrow is pressed. |
border | String | Texture of the border. |
color | Color | Color of the slider |
colorActive | Color | Color when the slider is focused. |
colorDisabled | Color | Color when slider is disabled. |
thumb | String | Texture of the part that can be dragged. |
sliderPosition | Float | Inital value the slider is set to when loaded. |
sliderRange | Array | Slider range in format {min,max}. |
sliderStep | Float | Increment size when slider is dragged. |
sliderStep | Float | Increment size when slider is dragged. |
lineSize | Float | Increment size when an arrow is pressed. |
- Example Config:
class Dialog
{
idd = -1;
class Controls
{
class _CT_SLIDER
{
idc = -1;
type = 3;
style = 1024;
x = 0.4;
y = 0.2;
w = 0.3;
h = 0.04;
color[] = {1,1,1,0.5};
coloractive[] = {1,1,1,1};
sliderRange[] = {1,10};
sliderPosition = 5;
};
class _CT_XSLIDER
{
idc = -1;
type = 43;
style = 1024;
x = 0.4;
y = 0.3;
w = 0.3;
h = 0.04;
arrowEmpty = "\A3\ui_f\data\gui\cfg\slider\arrowEmpty_ca.paa";
arrowFull = "\A3\ui_f\data\gui\cfg\slider\arrowFull_ca.paa";
border = "\A3\ui_f\data\gui\cfg\slider\border_ca.paa";
thumb = "\A3\ui_f\data\gui\cfg\slider\thumb_ca.paa";
color[] = {1,1,1,0.5};
coloractive[] = {1,1,1,1};
sliderPosition = 5;
sliderRange[] = {1,10};
sliderStep = 1;
lineSize = 1;
};
};
};
Helpful Script Commands
sliderPosition, sliderRange, sliderSetPosition, sliderSetRange, sliderSetSpeed, sliderSpeed