5import QGroundControl.Controls
11 readonly property real _margins: ScreenTools.defaultFontPixelHeight
13 QGCPalette { id: qgcPal; colorGroupEnabled: true }
16 anchors.margins: _margins
18 contentWidth: grid.width
19 contentHeight: grid.height
26 QGCLabel { text: qsTr("QGroundControl User Guide") }
28 linkColor: qgcPal.text
29 text: "<a href=\"https://docs.qgroundcontrol.com\">https://docs.qgroundcontrol.com</a>"
30 onLinkActivated: (link) => Qt.openUrlExternally(link)
33 QGCLabel { text: qsTr("PX4 Users Discussion Forum") }
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)
40 QGCLabel { text: qsTr("ArduPilot Users Discussion Forum") }
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)
47 QGCLabel { text: qsTr("QGroundControl Discord Channel") }
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)