QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
FlyViewToolStrip.qml
Go to the documentation of this file.
1import QtQml.Models
2
3import QGroundControl
4import QGroundControl.Controls
5import QGroundControl.FlyView
6
7ToolStrip {
8 id: _root
9
10 signal displayPreFlightChecklist
11
12 FlyViewToolStripActionList {
13 id: flyViewToolStripActionList
14
15 onDisplayPreFlightChecklist: _root.displayPreFlightChecklist()
16 }
17
18 model: flyViewToolStripActionList.model
19}