mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
6ca9d59443
* Merge ACEX - first attempt Backwards compatibility with XGVAR set of macros used on all settings and config entries Public API functions not taken into account yet, many other things probably still missed * Resolve issues * Switch to addSetting, backward compatible CfgPatches, missed XGVAR. * Remove unnecessary backwards compat * Convert ACEX Categorised settings to initSettings / Fix Intel items magazine * Apply suggestions from code review Co-authored-by: PabstMirror <pabstmirror@gmail.com> * Remove maintainers from merged ACEX components * Cleanup unused module and faction classes * Sitting - Add more object configs by @Dystopian https://github.com/acemod/ACEX/pull/255 * Translations - Add Japanese by @classicarma https://github.com/acemod/ACEX/pull/259 * Kill Tracker - Add killtracker.inc public include file by @Freddo3000" https://github.com/acemod/ACEX/pull/251 * Add ACEX authors and sort authors file * acex - final tweaks (#8513) * acex - handle old funcs * replace thirst/hunger setvars to acex naming fix macro Revert "fix macro" This reverts commit d807e5e804c43916eaa42d34a89af94c6d9a48ad. Revert "replace thirst/hunger setvars to acex naming" This reverts commit bafc607884932d6e339daedc7c22e25dddbdd868. x Co-authored-by: TyroneMF <TyroneMF@hotmail.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
56 lines
1.7 KiB
Plaintext
56 lines
1.7 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: PabstMirror, mharis001
|
|
* Creates an intel controls group.
|
|
*
|
|
* Arguments:
|
|
* 0: Control type <STRING>
|
|
* 1: Intel index <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* ["RscNotepad", 1] call ace_intelitems_fnc_createControl
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_controlType", "_index"];
|
|
|
|
private _display = findDisplay IDD_MAIN_MAP;
|
|
private _controlsGroup = _display ctrlCreate [_controlType, -1];
|
|
_controlsGroup setVariable [QGVAR(index), _index];
|
|
|
|
GVAR(controlsGroups) pushBack _controlsGroup;
|
|
|
|
// Add event handlers to header to allow moving controls group
|
|
private _ctrlHeader = _controlsGroup controlsGroupCtrl IDC_HEADER;
|
|
_ctrlHeader ctrlAddEventHandler ["MouseButtonDown", {call FUNC(onMouseButtonDown)}];
|
|
_ctrlHeader ctrlAddEventHandler ["MouseButtonUp", {call FUNC(onMouseButtonUp)}];
|
|
_ctrlHeader ctrlAddEventHandler ["MouseMoving", {call FUNC(onMouseMoving)}];
|
|
|
|
// Add event handler to close controls group
|
|
private _ctrlClose = _controlsGroup controlsGroupCtrl IDC_CLOSE;
|
|
_ctrlClose ctrlAddEventHandler ["ButtonClick", {
|
|
params ["_ctrlClose"];
|
|
|
|
private _controlsGroup = ctrlParentControlsGroup _ctrlClose;
|
|
[_controlsGroup] call FUNC(deleteControl);
|
|
}];
|
|
|
|
// Set data in content control
|
|
private _ctrlContent = _controlsGroup controlsGroupCtrl IDC_CONTENT;
|
|
_ctrlContent ctrlSetText GET_DATA(_index);
|
|
|
|
// Restore position of controls group (center if not saved)
|
|
private _position = [GVAR(controlsData), _index] call CBA_fnc_hashGet;
|
|
|
|
if (isNil "_position") then {
|
|
ctrlPosition _controlsGroup params ["", "", "_posW", "_posH"];
|
|
_position = [0.5 - _posW / 2, 0.5 - _posH / 2];
|
|
};
|
|
|
|
_controlsGroup ctrlSetPosition _position;
|
|
_controlsGroup ctrlCommit 0;
|