ACE3/addons/medical_menu/functions/fnc_handleUI_dropDownTriageCard.sqf

34 lines
778 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Handle the triage card display
2015-08-02 14:56:27 +00:00
*
* Arguments:
2015-08-07 03:37:41 +00:00
* None
*
* Return Value:
2015-08-07 03:37:41 +00:00
* None
*
* Example:
* [] call ace_medical_menu_fnc_handleUI_dropDownTriageCard
*
* Public: No
2015-08-02 14:56:27 +00:00
*/
#include "script_component.hpp"
disableSerialization;
2015-08-07 03:37:41 +00:00
2016-06-13 10:49:35 +00:00
private _display = uiNamespace getVariable QGVAR(medicalMenu);
private _pos = [0, 0, 0, 0];
private _currentPos = ctrlPosition (_display displayCtrl 2002);
2015-08-07 03:37:41 +00:00
_currentPos params ["_currentPosX", "_currentPosY"];
if (_currentPosX == 0 && _currentPosY == 0) then {
2015-08-02 14:56:27 +00:00
_pos = ctrlPosition (_display displayCtrl 2001);
};
for "_idc" from 2002 to 2006 step 1 do {
_pos set [1, (_pos select 1) + (_pos select 3)];
2016-06-13 10:49:35 +00:00
private _ctrl = _display displayCtrl _idc;
2015-08-02 14:56:27 +00:00
_ctrl ctrlSetPosition _pos;
_ctrl ctrlCommit 0;
};