CT CONTROLS GROUP: Difference between revisions
Lou Montana (talk | contribs) m (Text replacement - "{{TODO" to "{{Wiki|todo") |
Lou Montana (talk | contribs) m (Text replacement - " ( *class [a-zA-Z0-9_]+): *([a-zA-Z0-9_]+ *) " to " $1 : $2 ") |
||
(11 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{CT|intro | {{CT|intro | ||
|macro = CT_CONTROLS_GROUP | |macro = CT_CONTROLS_GROUP | ||
|value = 15 | |value = 15 | ||
|description = Container control for other controls. The child controls have to be defined in the '''controls''' subclass. The child controls' positions are calculated relatively to the control group, so x = 0 and y = 0 moves the child control to the top left corner of the controls group. If the position or height/width of any child controls cause any part of the child control to fall outside the dimensions of the controls group then scrollbars will become visible. This allows for the creation of scrollable text controls for example. Control groups are not visible by themselves, therefore most of the common attributes, eg. colorBackground, do not apply. | |description = Container control for other controls. The child controls have to be defined in the '''controls''' subclass. The child controls' positions are calculated relatively to the control group, so {{hl|x {{=}} 0;}} and {{hl|y {{=}} 0;}} moves the child control to the top left corner of the controls group. However, that does not mean that {{hl|x {{=}} 1;}} and {{hl|y {{=}} 1;}} will move it to the bottom right corner since the height and width of the control can be {{hl|> 1}}! If the position or height/width of any child controls cause any part of the child control to fall outside the dimensions of the controls group then scrollbars will become visible. This allows for the creation of scrollable text controls for example. Any commands operating on the Controls Group also affect the child controls. For example <sqf inline>_ctrlGroup ctrlShow false</sqf> will also hide the children of the group. Control groups are not visible by themselves, therefore most of the common attributes, eg. colorBackground, do not apply. | ||
{{ | {{Feature|important|A generalised screw-up occurs in Arrowhead rscControlGroup where color is not specified for V and H scrollbars and shadow should not have been specified. As a result any deriving class: | ||
* a) cannot inherit the existing scrollbar | |||
* b) must repeat the entire thing with the addition of color.}} | |||
|gallery= | |gallery= | ||
|commands = | |commands = | ||
Line 14: | Line 12: | ||
}} | }} | ||
{{CT|abc start}} | {{CT|abc start}} | ||
=== C === | === C === | ||
Line 30: | Line 20: | ||
|value1=class controls | |value1=class controls | ||
{ | { | ||
class Subcontrol: RscText | class Subcontrol : RscText | ||
{ | { | ||
text = "This is a sub control"; | text = "This is a sub control"; | ||
Line 40: | Line 30: | ||
}; | }; | ||
|description=Any user added [[Arma: GUI Configuration#Controls|controls]] to be contained within the controls group. | |description=Any user added [[Arma: GUI Configuration#Controls|controls]] to be contained within the controls group. | ||
}} | }} | ||
=== H === | === H === | ||
{{CT|attribute | {{CT|attribute | ||
|name=HScrollbar | |name=HScrollbar | ||
Line 111: | Line 57: | ||
All available properties of '''VScrollbar''' and '''HScrollbar'''. Not all available properties make sense for each of these as outlined below. | All available properties of '''VScrollbar''' and '''HScrollbar'''. Not all available properties make sense for each of these as outlined below. | ||
{{{!}}class="wikitable" border="1" align="left" cellpadding="3" cellspacing="0" {{!}} | {{{!}}class="wikitable" border="1" align="left" cellpadding="3" cellspacing="0" {{!}} | ||
! colspan="6 | ! colspan="6" {{!}} Properties | ||
{{!}}- | {{!}}- | ||
! | ! Name | ||
! | ! Type | ||
! | ! Remark | ||
! | ! Scrollbar | ||
! | ! VScrollbar | ||
! | ! HScrollbar | ||
{{!}}- | {{!}}- | ||
Line 158: | Line 104: | ||
{{!}} '''autoScrollEnabled''' | {{!}} '''autoScrollEnabled''' | ||
{{!}} [[Number]] | {{!}} [[Number]] | ||
{{!}} 1 - enabled, 0 - disabled, | {{!}} 1 - enabled, 0 - disabled, auto-scrolling does not work when the control group or one of its parents is in focus ([[ctrlSetFocus]] or clicking on the control group) | ||
{{!}} <center>x</center> | {{!}} <center>x</center> | ||
{{!}} <center>x</center> | {{!}} <center>x</center> | ||
Line 165: | Line 111: | ||
{{!}} '''autoScrollSpeed''' | {{!}} '''autoScrollSpeed''' | ||
{{!}} [[Number]] | {{!}} [[Number]] | ||
{{!}} Default -1, smaller numbers scroll faster, '''cannot''' be forced to scroll backwards by supplying negative numbers | {{!}} Default -1, smaller numbers scroll faster, '''cannot''' be forced to scroll backwards by supplying negative numbers. Setting to < 0 disables auto-scrolling | ||
{{!}} <center>x</center> | {{!}} <center>x</center> | ||
{{!}} <center>x</center> | {{!}} <center>x</center> | ||
Line 220: | Line 166: | ||
{{!}}- | {{!}}- | ||
{{!}}}<br clear="all"> | {{!}}}<br clear="all"> | ||
}} | }} | ||
Line 276: | Line 199: | ||
at preStart. | at preStart. | ||
<br/>UI's that have had their scripts compiled in this way can then use an onLoad event with BIS_fnc_initDisplay to call the function when the display is created. | <br/>UI's that have had their scripts compiled in this way can then use an onLoad event with BIS_fnc_initDisplay to call the function when the display is created. | ||
}} | }} | ||
Line 329: | Line 224: | ||
}; | }; | ||
|description=Settings relatied to the vertical (↕) scrollbar. For details see [[#HScrollbar]] | |description=Settings relatied to the vertical (↕) scrollbar. For details see [[#HScrollbar]] | ||
}} | }} | ||
Line 355: | Line 235: | ||
deletable = 0; | deletable = 0; | ||
fade = 0; | fade = 0; | ||
class VScrollbar: ScrollBar | class VScrollbar : ScrollBar | ||
{ | { | ||
color[] = {1,1,1,1}; | color[] = {1,1,1,1}; | ||
Line 361: | Line 241: | ||
autoScrollEnabled = 1; | autoScrollEnabled = 1; | ||
}; | }; | ||
class HScrollbar: ScrollBar | class HScrollbar : ScrollBar | ||
{ | { | ||
color[] = {1,1,1,1}; | color[] = {1,1,1,1}; | ||
Line 381: | Line 261: | ||
== Other examples == | == Other examples == | ||
<syntaxhighlight lang="cpp">class Dialog | <syntaxhighlight lang="cpp"> | ||
class Dialog | |||
{ | { | ||
idd = -1; | |||
class Controls | |||
{ | |||
class _CT_CONTROLS_GROUP | |||
{ | |||
type = 15; | |||
idc = -1; | |||
style = 16; | |||
x = 0; | |||
y = 0; | |||
w = 1; | |||
h = 1; | |||
shadow = 0; | |||
class ScrollBar | |||
{ | |||
color[] = {1,1,1,0.6}; | |||
colorActive[] = {1,1,1,1}; | |||
colorDisabled[] = {1,1,1,0.3}; | |||
thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa"; | |||
arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa"; | |||
arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa"; | |||
border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa"; | |||
}; | |||
class VScrollbar : ScrollBar | |||
{ | |||
width = 0.021; | |||
autoScrollSpeed = -1; | |||
autoScrollDelay = 5; | |||
autoScrollRewind = 0; | |||
shadow = 0; | |||
}; | |||
class HScrollbar : ScrollBar | |||
{ | |||
height = 0.028; | |||
shadow = 0; | |||
}; | |||
class Controls | |||
{ | |||
class _CT_EDIT | |||
{ | |||
idc = -1; | |||
onLoad = "params ['_ctrl']; _ctrl ctrlSetText loadFile 'A3\functions_f\Actions\fn_packStaticWeapon.sqf'"; | |||
type = 2; | |||
style = 16; | |||
autocomplete = ""; | |||
canModify = 1; | |||
colorBackground[] = {0,0,0,0.5}; | |||
colorText[] = {1,1,1,1}; | |||
colorDisabled[] = {1,1,1,0.25}; | |||
colorSelection[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.77])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.51])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.08])",1}; | |||
text = ""; | |||
x = 0; | |||
y = 0; | |||
w = 2; | |||
h = 2; | |||
sizeEx = 0.05; | |||
font = "RobotoCondensedLight"; | |||
}; | |||
}; | |||
}; | |||
}; | |||
};</syntaxhighlight> | }; | ||
</syntaxhighlight> | |||
[[Category: Control Types]] |
Latest revision as of 10:58, 6 December 2023
Control Types / MACRO (TYPE VALUE) | |
---|---|
Text/Image/Video |
CT_STATIC (0) | CT_EDIT (2) | CT_HTML (9) | CT_STRUCTURED_TEXT (13) |
Buttons |
CT_BUTTON (1) | CT_ACTIVETEXT (11) | CT_SHORTCUTBUTTON (16) | CT_CHECKBOX (77) | CT_XBUTTON (41) |
Lists |
CT_COMBO (4) | CT_TOOLBOX (6) | CT_CHECKBOXES (7) | CT_TREE (12) | CT_CONTROLS_TABLE (19) | CT_XCOMBO (44) | CT_LISTBOX (5) | CT_LISTNBOX (102) | CT_LISTNBOX_CHECKABLE (104) | CT_XLISTBOX (45) |
3D Objects |
CT_OBJECT (80) | CT_OBJECT_ZOOM (81) | CT_OBJECT_CONTAINER (82) | CT_OBJECT_CONT_ANIM (83) |
Maps |
CT_MAP (100) | CT_MAP_MAIN (101) |
Meta |
CT_SLIDER (3) | CT_XSLIDER (43) | CT_PROGRESS (8) | CT_CONTROLS_GROUP (15) | CT_WEBBROWSER (106) | CT_EXTENSION (107) |
Menu |
CT_CONTEXT_MENU (14) | CT_MENU (46) | CT_MENU_STRIP (47) |
Unknown |
CT_STATIC_SKEW (10) | CT_HITZONES (17) | CT_VEHICLETOGGLES (18) | CT_XKEYDESC (40) | CT_ANIMATED_TEXTURE (45) | CT_LINEBREAK (98) | CT_USER (99) | CT_ITEMSLOT (103) | CT_VEHICLE_DIRECTION (105) |
Introduction
Container control for other controls. The child controls have to be defined in the controls subclass. The child controls' positions are calculated relatively to the control group, so x = 0; and y = 0; moves the child control to the top left corner of the controls group. However, that does not mean that x = 1; and y = 1; will move it to the bottom right corner since the height and width of the control can be > 1! If the position or height/width of any child controls cause any part of the child control to fall outside the dimensions of the controls group then scrollbars will become visible. This allows for the creation of scrollable text controls for example. Any commands operating on the Controls Group also affect the child controls. For example _ctrlGroup ctrlShow false will also hide the children of the group. Control groups are not visible by themselves, therefore most of the common attributes, eg. colorBackground, do not apply.
Related commands & functions
Related User Interface Eventhandlers
Alphabetical Order
#define CT_CONTROLS_GROUP 15
C
controls
class controls
{
class Subcontrol : RscText
{
text = "This is a sub control";
x = 0;
y = 0;
w = 10 * GUI_GRID_W;
h = 1 * GUI_GRID_H;
};
};
H
HScrollbar
- Type
- Class
- Description
- Settings relatied to the horizontal (↔) scrollbar.
All available properties of VScrollbar and HScrollbar. Not all available properties make sense for each of these as outlined below.
Properties | |||||
---|---|---|---|---|---|
Name | Type | Remark | Scrollbar | VScrollbar | HScrollbar |
color | color array | Color of thumb and arrow heads, also arrow backgrounds when pressed. | |||
colorActive | color array | Color when the scrollbar is focused. | |||
colorDisabled | color array | Color when the scrollbar is deactivated. | |||
width | Number | Width of the controlsGroup's scroll bars in screen space dimensions. Setting to 0 will cause no scrollbar to be shown even if a child falls outside the controlsGroup's dimensions | |||
height | Number | Height of the controlsGroup's scroll bars in screen space dimensions. Setting to 0 will cause no scrollbar to be shown even if a child falls outside the controlsGroup's dimensions | |||
autoScrollEnabled | Number | 1 - enabled, 0 - disabled, auto-scrolling does not work when the control group or one of its parents is in focus (ctrlSetFocus or clicking on the control group) | |||
autoScrollSpeed | Number | Default -1, smaller numbers scroll faster, cannot be forced to scroll backwards by supplying negative numbers. Setting to < 0 disables auto-scrolling | |||
autoScrollDelay | Number | Time in seconds before autoScroll starts, restarts after user input and time before rewind happens when the end has been reached | |||
autoScrollRewind | Number | 0 - disable, 1 - enabled : If autoScroll reaches the bottom of the controlsGroup it will wait autoScrollDelay then fade out, scroll back to the top, fade back in, wait autoScrollDelay before proceeding to start auto scrolling again. | |||
thumb | String | Path to texture or Procedural Texture "#(argb,8,8,3)color(1,1,1,1)"; | |||
arrowEmpty/Full | String | Path to texture or Procedural Texture "#(argb,8,8,3)color(1,1,1,1)"; | |||
border | String | Path to texture or Procedural Texture "#(argb,8,8,3)color(1,1,1,1)"; | |||
shadow | Number | ||||
scrollSpeed | Number | Default 0.06 : Speed of user vertical scroll input when using the mouse wheel, can be set to 0 to disable the user from being able to scroll, can be set to negative number to reverse scroll direction. |
class HScrollbar
{
height = 0;
color[] = {1,1,1,1};
colorActive[] = {1,1,1,1};
colorDisabled[] = {1,1,1,0.3};
thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa";
arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa";
arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa";
border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa";
shadow = 0;
scrollSpeed = 0.06;
width = 0;
autoScrollEnabled = 0;
autoScrollSpeed = -1;
autoScrollDelay = 5;
autoScrollRewind = 0;
};
S
scriptName
- Type
- String
- Description
- Used along with scriptPath to compile a UI's script at preStart.
scriptName is both the actual name of the file #.sqf and the name of the compiled function in uinamespace #_script.
UI's only have their scripts compiled if they exist in one of...
- configFile
- configFile >> RscTitles
- configFile >> RscInGameUI
- configFile >> CfgEden >> Attributes
at preStart.
UI's that have had their scripts compiled in this way can then use an onLoad event with BIS_fnc_initDisplay to call the function when the display is created.
scriptName = "RscHorizontalCompass";
scriptPath
- Type
- String
- Description
- Used along with scriptName to compile UI's script at preStart.
The string value is not the path itself but instead is a lookup from CfgScriptPaths.
UI's only have their scripts compiled if they exist in one of...
- configFile
- configFile >> RscTitles
- configFile >> RscInGameUI
- configFile >> CfgEden >> Attributes
at preStart.
UI's that have had their scripts compiled in this way can then use an onLoad event with BIS_fnc_initDisplay to call the function when the display is created.
scriptPath = "EnochCommon";
V
VScrollbar
- Type
- Class
- Description
- Settings relatied to the vertical (↕) scrollbar. For details see #HScrollbar
class VScrollbar
{
width = 0;
color[] = {1,1,1,1};
autoScrollEnabled = 1;
colorActive[] = {1,1,1,1};
colorDisabled[] = {1,1,1,0.3};
thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa";
arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa";
arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa";
border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa";
shadow = 0;
scrollSpeed = 0.06;
height = 0;
autoScrollSpeed = -1;
autoScrollDelay = 5;
autoScrollRewind = 0;
};
Default Classes
RscControlsGroup
class RscControlsGroup
{
deletable = 0;
fade = 0;
class VScrollbar : ScrollBar
{
color[] = {1,1,1,1};
width = 0.021;
autoScrollEnabled = 1;
};
class HScrollbar : ScrollBar
{
color[] = {1,1,1,1};
height = 0.028;
};
class Controls
{
};
type = CT_CONTROLS_GROUP;
idc = -1;
x = 0;
y = 0;
w = 1;
h = 1;
shadow = 0;
style = ST_MULTI;
};
Other examples
class Dialog
{
idd = -1;
class Controls
{
class _CT_CONTROLS_GROUP
{
type = 15;
idc = -1;
style = 16;
x = 0;
y = 0;
w = 1;
h = 1;
shadow = 0;
class ScrollBar
{
color[] = {1,1,1,0.6};
colorActive[] = {1,1,1,1};
colorDisabled[] = {1,1,1,0.3};
thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa";
arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa";
arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa";
border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa";
};
class VScrollbar : ScrollBar
{
width = 0.021;
autoScrollSpeed = -1;
autoScrollDelay = 5;
autoScrollRewind = 0;
shadow = 0;
};
class HScrollbar : ScrollBar
{
height = 0.028;
shadow = 0;
};
class Controls
{
class _CT_EDIT
{
idc = -1;
onLoad = "params ['_ctrl']; _ctrl ctrlSetText loadFile 'A3\functions_f\Actions\fn_packStaticWeapon.sqf'";
type = 2;
style = 16;
autocomplete = "";
canModify = 1;
colorBackground[] = {0,0,0,0.5};
colorText[] = {1,1,1,1};
colorDisabled[] = {1,1,1,0.25};
colorSelection[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.77])","(profilenamespace getvariable ['GUI_BCG_RGB_G',0.51])","(profilenamespace getvariable ['GUI_BCG_RGB_B',0.08])",1};
text = "";
x = 0;
y = 0;
w = 2;
h = 2;
sizeEx = 0.05;
font = "RobotoCondensedLight";
};
};
};
};
};