ACE3/addons/optionsmenu/functions/fnc_onListBoxSettingsChanged.sqf

44 lines
1.4 KiB
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Called when the listbox selection is changed for an options (eg: chaning a setting from false to true)
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* [] call ACE_optionsmenu_fnc_onListBoxSettingsChanged
*
* Public: No
*/
#include "script_component.hpp"
private _rightDropDownIndex = lbCurSel 400; //Index of right drop down
2015-01-21 19:53:05 +00:00
if (_rightDropDownIndex < 0) then {_rightDropDownIndex = 0;};
private _settingIndex = -1;
2015-08-11 09:15:55 +00:00
if (((lnbCurSelRow 200) >= 0) && {(lnbCurSelRow 200) < ((lnbSize 200) select 0)}) then {
_settingIndex = lnbValue [200, [(lnbCurSelRow 200), 0]];
};
if (_settingIndex == -1) exitWith {};
switch (GVAR(optionMenu_openTab)) do {
2015-04-05 00:33:45 +00:00
case (MENU_TAB_OPTIONS): {
if ((_settingIndex >= 0) && (_settingIndex < (count GVAR(clientSideOptions)))) then {
_settingIndex = (GVAR(clientSideOptions) select _settingIndex) select 0;
[MENU_TAB_OPTIONS, _settingIndex, _rightDropDownIndex] call FUNC(updateSetting);
2015-04-05 00:33:45 +00:00
};
[false] call FUNC(settingsMenuUpdateList);
};
2015-04-05 00:33:45 +00:00
case (MENU_TAB_SERVER_OPTIONS): {
if ((_settingIndex >= 0) && (_settingIndex < (count GVAR(serverSideOptions)))) then {
_settingIndex = (GVAR(serverSideOptions) select _settingIndex) select 0;
[MENU_TAB_SERVER_OPTIONS, _settingIndex, _rightDropDownIndex] call FUNC(updateSetting);
2015-04-05 00:33:45 +00:00
};
[false] call FUNC(serverSettingsMenuUpdateList);
};
};