QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
FlyViewToolStripActionList.qml
Go to the documentation of this file.
1import QtQml.Models
2
3import QGroundControl
4import QGroundControl.Controls
5import QGroundControl.Viewer3D
6
7ToolStripActionList {
8 id: _root
9
10 signal displayPreFlightChecklist
11
12 model: [
13 Viewer3DShowAction { },
14 PreFlightCheckListShowAction { onTriggered: displayPreFlightChecklist() },
15 GuidedActionTakeoff { },
16 GuidedActionLand { },
17 GuidedActionRTL { },
18 GuidedActionPause { },
19 FlyViewAdditionalActionsButton { },
20 FlyViewGripperButton { }
21 ]
22}