5import QGroundControl.Controls
8 objectName: "settingsPage_Help"
12 readonly property real _margins: ScreenTools.defaultFontPixelHeight
14 QGCPalette { id: qgcPal; colorGroupEnabled: true }
17 anchors.margins: _margins
19 contentWidth: grid.width
20 contentHeight: grid.height
27 QGCLabel { text: qsTr("QGroundControl User Guide") }
29 linkColor: qgcPal.text
30 text: "<a href=\"https://docs.qgroundcontrol.com\">https://docs.qgroundcontrol.com</a>"
31 onLinkActivated: (link) => Qt.openUrlExternally(link)
34 QGCLabel { text: qsTr("PX4 Users Discussion Forum") }
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)
41 QGCLabel { text: qsTr("ArduPilot Users Discussion Forum") }
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)
48 QGCLabel { text: qsTr("QGroundControl Discord Channel") }
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)