Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
2e877b1d
Commit
2e877b1d
authored
Aug 03, 2018
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parent
efbf70dc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
65 additions
and
0 deletions
+65
-0
qgroundcontrol.qrc
qgroundcontrol.qrc
+1
-0
QGCCorePlugin.cc
src/api/QGCCorePlugin.cc
+5
-0
HelpSettings.qml
src/ui/preferences/HelpSettings.qml
+59
-0
No files found.
qgroundcontrol.qrc
View file @
2e877b1d
...
...
@@ -39,6 +39,7 @@
<file alias="GeneralSettings.qml">src/ui/preferences/GeneralSettings.qml</file>
<file alias="GeoTagPage.qml">src/AnalyzeView/GeoTagPage.qml</file>
<file alias="HealthPageWidget.qml">src/FlightMap/Widgets/HealthPageWidget.qml</file>
<file alias="HelpSettings.qml">src/ui/preferences/HelpSettings.qml</file>
<file alias="JoystickConfig.qml">src/VehicleSetup/JoystickConfig.qml</file>
<file alias="LinkSettings.qml">src/ui/preferences/LinkSettings.qml</file>
<file alias="LogDownloadPage.qml">src/AnalyzeView/LogDownloadPage.qml</file>
...
...
src/api/QGCCorePlugin.cc
View file @
2e877b1d
...
...
@@ -33,6 +33,7 @@ public:
,
pOfflineMaps
(
NULL
)
,
pMAVLink
(
NULL
)
,
pConsole
(
NULL
)
,
pHelp
(
NULL
)
#if defined(QT_DEBUG)
,
pMockLink
(
NULL
)
,
pDebug
(
NULL
)
...
...
@@ -73,6 +74,7 @@ public:
QmlComponentInfo
*
pOfflineMaps
;
QmlComponentInfo
*
pMAVLink
;
QmlComponentInfo
*
pConsole
;
QmlComponentInfo
*
pHelp
;
#if defined(QT_DEBUG)
QmlComponentInfo
*
pMockLink
;
QmlComponentInfo
*
pDebug
;
...
...
@@ -135,6 +137,9 @@ QVariantList &QGCCorePlugin::settingsPages()
_p
->
pConsole
=
new
QmlComponentInfo
(
tr
(
"Console"
),
QUrl
::
fromUserInput
(
"qrc:/qml/QGroundControl/Controls/AppMessages.qml"
));
_p
->
settingsList
.
append
(
QVariant
::
fromValue
((
QmlComponentInfo
*
)
_p
->
pConsole
));
_p
->
pHelp
=
new
QmlComponentInfo
(
tr
(
"Help"
),
QUrl
::
fromUserInput
(
"qrc:/qml/HelpSettings.qml"
));
_p
->
settingsList
.
append
(
QVariant
::
fromValue
((
QmlComponentInfo
*
)
_p
->
pHelp
));
#if defined(QT_DEBUG)
//-- These are always present on Debug builds
_p
->
pMockLink
=
new
QmlComponentInfo
(
tr
(
"Mock Link"
),
...
...
src/ui/preferences/HelpSettings.qml
0 → 100644
View file @
2e877b1d
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import
QtQuick
2.3
import
QtQuick
.
Layouts
1.11
import
QGroundControl
1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
Palette
1.0
import
QGroundControl
.
ScreenTools
1.0
Rectangle
{
color
:
qgcPal
.
window
anchors.fill
:
parent
readonly
property
real
_margins
:
ScreenTools
.
defaultFontPixelHeight
QGCPalette
{
id
:
qgcPal
;
colorGroupEnabled
:
true
}
QGCFlickable
{
anchors.margins
:
_margins
anchors.fill
:
parent
contentWidth
:
grid
.
width
contentHeight
:
grid
.
height
clip
:
true
GridLayout
{
id
:
grid
columns
:
2
QGCLabel
{
text
:
qsTr
(
"
QGroundControl User Guide
"
)
}
QGCLabel
{
linkColor
:
qgcPal
.
text
text
:
"
<a href=
\"
https://docs.qgroundcontrol.com
\"
>https://docs.qgroundcontrol.com</a>
"
onLinkActivated
:
Qt
.
openUrlExternally
(
link
)
}
QGCLabel
{
text
:
qsTr
(
"
PX4 Users Discussion Forum
"
)
}
QGCLabel
{
linkColor
:
qgcPal
.
text
text
:
"
<a href=
\"
http://discuss.px4.io/c/qgroundcontrol
\"
>http://discuss.px4.io/c/qgroundcontrol</a>
"
onLinkActivated
:
Qt
.
openUrlExternally
(
link
)
}
QGCLabel
{
text
:
qsTr
(
"
ArduPilot Users Discussion Forum
"
)
}
QGCLabel
{
linkColor
:
qgcPal
.
text
text
:
"
<a href=
\"
https://discuss.ardupilot.org/c/ground-control-software/qgroundcontrol
\"
>https://discuss.ardupilot.org/c/ground-control-software/qgroundcontrol</a>
"
onLinkActivated
:
Qt
.
openUrlExternally
(
link
)
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment