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 objectName: "settingsPage_Help"
9 color: qgcPal.window
10 anchors.fill: parent
11
12 readonly property real _margins: ScreenTools.defaultFontPixelHeight
13
14 QGCPalette { id: qgcPal; colorGroupEnabled: true }
15
16 QGCFlickable {
17 anchors.margins: _margins
18 anchors.fill: parent
19 contentWidth: grid.width
20 contentHeight: grid.height
21 clip: true
22
23 GridLayout {
24 id: grid
25 columns: 2
26
27 QGCLabel { text: qsTr("QGroundControl User Guide") }
28 QGCLabel {
29 linkColor: qgcPal.text
30 text: "<a href=\"https://docs.qgroundcontrol.com\">https://docs.qgroundcontrol.com</a>"
31 onLinkActivated: (link) => Qt.openUrlExternally(link)
32 }
33
34 QGCLabel { text: qsTr("PX4 Users Discussion Forum") }
35 QGCLabel {
36 linkColor: qgcPal.text
37 text: "<a href=\"http://discuss.px4.io/c/qgroundcontrol\">http://discuss.px4.io/c/qgroundcontrol</a>"
38 onLinkActivated: (link) => Qt.openUrlExternally(link)
39 }
40
41 QGCLabel { text: qsTr("ArduPilot Users Discussion Forum") }
42 QGCLabel {
43 linkColor: qgcPal.text
44 text: "<a href=\"https://discuss.ardupilot.org/c/ground-control-software/qgroundcontrol\">https://discuss.ardupilot.org/c/ground-control-software/qgroundcontrol</a>"
45 onLinkActivated: (link) => Qt.openUrlExternally(link)
46 }
47
48 QGCLabel { text: qsTr("QGroundControl Discord Channel") }
49 QGCLabel {
50 linkColor: qgcPal.text
51 text: "<a href=\"https://discord.com/channels/1022170275984457759/1022185820683255908\">https://discord.com/channels/1022170275984457759/1022185820683255908</a>"
52 onLinkActivated: (link) => Qt.openUrlExternally(link)
53 }
54 }
55 }
56}