QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
CustomGuidedActionsController.qml
Go to the documentation of this file.
1// Custom builds can override this file to add custom guided actions.
2
3import QtQml
4
5QtObject {
6 function customConfirmAction(actionCode, actionData, mapIndicator, confirmDialog) {
7 return false // false = action not handled here
8 }
9
10 function customExecuteAction(actionCode, actionData, sliderOutputValue, optionCheckedode) {
11 return false // false = action not handled here
12 }
13}