QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
HelpSettings.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Layouts
3
4import QGroundControl
5import QGroundControl.Controls
6
7Rectangle {
8 color: qgcPal.window
9 anchors.fill: parent
10
11 readonly property real _margins: ScreenTools.defaultFontPixelHeight
12
13 QGCPalette { id: qgcPal; colorGroupEnabled: true }
14
15 QGCFlickable {
16 anchors.margins: _margins
17 anchors.fill: parent
18 contentWidth: grid.width
19 contentHeight: grid.height
20 clip: true
21
22 GridLayout {
23 id: grid
24 columns: 2
25
26 QGCLabel { text: qsTr("QGroundControl User Guide") }
27 QGCLabel {
28 linkColor: qgcPal.text
29 text: "<a href=\"https://docs.qgroundcontrol.com\">https://docs.qgroundcontrol.com</a>"
30 onLinkActivated: (link) => Qt.openUrlExternally(link)
31 }
32
33 QGCLabel { text: qsTr("PX4 Users Discussion Forum") }
34 QGCLabel {
35 linkColor: qgcPal.text
36 text: "<a href=\"http://discuss.px4.io/c/qgroundcontrol\">http://discuss.px4.io/c/qgroundcontrol</a>"
37 onLinkActivated: (link) => Qt.openUrlExternally(link)
38 }
39
40 QGCLabel { text: qsTr("ArduPilot Users Discussion Forum") }
41 QGCLabel {
42 linkColor: qgcPal.text
43 text: "<a href=\"https://discuss.ardupilot.org/c/ground-control-software/qgroundcontrol\">https://discuss.ardupilot.org/c/ground-control-software/qgroundcontrol</a>"
44 onLinkActivated: (link) => Qt.openUrlExternally(link)
45 }
46
47 QGCLabel { text: qsTr("QGroundControl Discord Channel") }
48 QGCLabel {
49 linkColor: qgcPal.text
50 text: "<a href=\"https://discord.com/channels/1022170275984457759/1022185820683255908\">https://discord.com/channels/1022170275984457759/1022185820683255908</a>"
51 onLinkActivated: (link) => Qt.openUrlExternally(link)
52 }
53 }
54 }
55}