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
285ac2ba
Commit
285ac2ba
authored
Nov 29, 2015
by
dogmaphobic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finalizing thumbstick WIP.
parent
16480717
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
8 deletions
+67
-8
FlightDisplayView.qml
src/FlightDisplay/FlightDisplayView.qml
+5
-5
FlightDisplayViewVideo.qml
src/FlightDisplay/FlightDisplayViewVideo.qml
+1
-1
FlightDisplayViewWidgets.qml
src/FlightDisplay/FlightDisplayViewWidgets.qml
+61
-2
No files found.
src/FlightDisplay/FlightDisplayView.qml
View file @
285ac2ba
...
...
@@ -128,7 +128,7 @@ Item {
}
//-- PIP Window
Rectangle
{
Item
{
id
:
pip
visible
:
_controller
.
hasVideo
&&
_isPipVisible
anchors.margins
:
ScreenTools
.
defaultFontPixelHeight
...
...
@@ -136,8 +136,6 @@ Item {
anchors.bottom
:
parent
.
bottom
width
:
_pipSize
height
:
_pipSize
*
(
9
/
16
)
color
:
"
#000010
"
border.color
:
isBackgroundDark
?
Qt
.
rgba
(
1
,
1
,
1
,
0.75
)
:
Qt
.
rgba
(
0
,
0
,
0
,
0.75
)
Loader
{
id
:
pipLoader
anchors.fill
:
parent
...
...
@@ -219,10 +217,12 @@ Item {
//-- Virtual Joystick
Item
{
id
:
multiTouchItem
width
:
parent
.
width
*
0.6
width
:
parent
.
width
-
(
pip
.
width
/
2
)
height
:
thumbAreaHeight
visible
:
QGroundControl
.
virtualTabletJoystick
anchors.centerIn
:
parent
anchors.bottom
:
pip
.
top
anchors.bottomMargin
:
ScreenTools
.
defaultFontPixelHeight
*
2
anchors.horizontalCenter
:
parent
.
horizontalCenter
readonly
property
real
thumbAreaHeight
:
Math
.
min
(
parent
.
height
*
0.25
,
ScreenTools
.
defaultFontPixelWidth
*
16
)
...
...
src/FlightDisplay/FlightDisplayViewVideo.qml
View file @
285ac2ba
...
...
@@ -39,7 +39,7 @@ Item {
Rectangle
{
id
:
noVideo
anchors.fill
:
parent
color
:
"
black
"
color
:
Qt
.
rgba
(
0
,
0
,
0
,
0.75
)
visible
:
!
_controller
.
videoRunning
QGCLabel
{
text
:
"
NO VIDEO
"
...
...
src/FlightDisplay/FlightDisplayViewWidgets.qml
View file @
285ac2ba
...
...
@@ -92,7 +92,7 @@ Item {
anchors.margins
:
ScreenTools
.
defaultFontPixelHeight
anchors.right
:
parent
.
right
anchors.verticalCenter
:
parent
.
verticalCenter
visible
:
_isInstrumentVisible
visible
:
_isInstrumentVisible
&&
!
QGroundControl
.
virtualTabletJoystick
size
:
getGadgetWidth
()
active
:
_activeVehicle
!=
null
heading
:
_heading
...
...
@@ -109,6 +109,65 @@ Item {
}
}
//-- Alternate Instrument Panel
Rectangle
{
visible
:
QGroundControl
.
virtualTabletJoystick
anchors.margins
:
ScreenTools
.
defaultFontPixelHeight
anchors.right
:
parent
.
right
anchors.bottom
:
parent
.
bottom
width
:
_pipSize
height
:
_pipSize
*
(
9
/
16
)
color
:
Qt
.
rgba
(
0
,
0
,
0
,
0.75
)
Column
{
id
:
instruments
width
:
parent
.
width
spacing
:
ScreenTools
.
defaultFontPixelSize
*
0.33
Item
{
height
:
ScreenTools
.
defaultFontPixelHeight
*
0.33
width
:
1
}
QGCLabel
{
text
:
"
Altitude (m)
"
font.pixelSize
:
ScreenTools
.
defaultFontPixelSize
*
0.75
width
:
parent
.
width
height
:
ScreenTools
.
defaultFontPixelSize
*
0.75
color
:
"
white
"
horizontalAlignment
:
TextEdit
.
AlignHCenter
}
QGCLabel
{
text
:
_altitudeWGS84
<
10000
?
_altitudeWGS84
.
toFixed
(
1
)
:
_altitudeWGS84
.
toFixed
(
0
)
font.pixelSize
:
ScreenTools
.
defaultFontPixelSize
*
2.5
font.weight
:
Font
.
DemiBold
width
:
parent
.
width
color
:
"
white
"
horizontalAlignment
:
TextEdit
.
AlignHCenter
}
//-- Ground Speed
Rectangle
{
height
:
1
width
:
parent
.
width
*
0.9
color
:
Qt
.
rgba
(
1
,
1
,
1
,
0.25
)
anchors.horizontalCenter
:
parent
.
horizontalCenter
}
QGCLabel
{
text
:
"
Ground Speed (km/h)
"
font.pixelSize
:
ScreenTools
.
defaultFontPixelSize
*
0.75
width
:
parent
.
width
height
:
ScreenTools
.
defaultFontPixelSize
*
0.75
color
:
"
white
"
horizontalAlignment
:
TextEdit
.
AlignHCenter
}
QGCLabel
{
text
:
(
_groundSpeed
*
3.6
).
toFixed
(
1
)
font.pixelSize
:
ScreenTools
.
defaultFontPixelSize
*
1.5
font.weight
:
Font
.
DemiBold
width
:
parent
.
width
color
:
"
white
"
horizontalAlignment
:
TextEdit
.
AlignHCenter
}
}
}
//-- Show (Hidden) Instrument Panel
Rectangle
{
id
:
openButton
...
...
@@ -118,7 +177,7 @@ Item {
height
:
ScreenTools
.
defaultFontPixelSize
*
2
width
:
ScreenTools
.
defaultFontPixelSize
*
2
radius
:
ScreenTools
.
defaultFontPixelSize
/
3
visible
:
!
_isInstrumentVisible
visible
:
!
_isInstrumentVisible
&&
!
QGroundControl
.
virtualTabletJoystick
color
:
isBackgroundDark
?
Qt
.
rgba
(
0
,
0
,
0
,
0.75
)
:
Qt
.
rgba
(
0
,
0
,
0
,
0.5
)
Image
{
width
:
parent
.
width
*
0.75
...
...
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