ACE3/addons/microdagr/functions/fnc_appWaypointsButtonDeleteWP.sqf
PabstMirror 95d59a1b3a Headers
2015-03-11 02:06:07 -05:00

38 lines
947 B
Plaintext

/*
* Author: PabstMirror
* Handles clicking the delete button from the waypoint application
*
* Arguments:
* Nothing
*
* Return Value:
* Nothing
*
* Example:
* [] call ace_microdagr_fnc_appWaypointsButtonDeleteWP
*
* Public: No
*/
#include "script_component.hpp"
private ["_display", "_wpIndex"];
disableSerialization;
_display = displayNull;
if (GVAR(currentShowMode) == DISPLAY_MODE_DIALOG) then {
_display = (uiNamespace getVariable [QGVAR(DialogDisplay), displayNull]);
} else {
_display = (uiNamespace getVariable [QGVAR(RscTitleDisplay), displayNull]);
};
if (isNull _display) exitWith {ERROR("No Display");};
_wpIndex = lbCurSel (_display displayCtrl IDC_MODEWAYPOINTS_LISTOFWAYPOINTS);
//If it's our currentWP then deactivate
if (GVAR(currentWaypoint) == _wpIndex) then {GVAR(currentWaypoint) = -1};
//Delete from list:
[_wpIndex] call FUNC(deviceDeleteWaypoint);
//Update list now:
[] call FUNC(updateDisplay);