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
8339e840
Commit
8339e840
authored
Feb 27, 2017
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rework InstrumentSwipeView
parent
f5c3f3cf
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
78 additions
and
90 deletions
+78
-90
InstrumentSwipeView.qml
src/FlightMap/Widgets/InstrumentSwipeView.qml
+67
-89
ValuesWidget.qml
src/FlightMap/Widgets/ValuesWidget.qml
+1
-1
VehicleHealthWidget.qml
src/FlightMap/Widgets/VehicleHealthWidget.qml
+5
-0
VibrationWidget.qml
src/FlightMap/Widgets/VibrationWidget.qml
+5
-0
No files found.
src/FlightMap/Widgets/InstrumentSwipeView.qml
View file @
8339e840
import
QtQuick
2.5
import
QtQuick
2.5
import
QtQuick
.
Controls
1.4
import
QtQuick
.
Controls
2.0
import
QtQuick
.
Layouts
1.3
import
QGroundControl
.
Palette
1.0
import
QGroundControl
.
Palette
1.0
import
QGroundControl
.
ScreenTools
1.0
import
QGroundControl
.
ScreenTools
1.0
import
QGroundControl
.
FlightMap
1.0
import
QGroundControl
.
FlightMap
1.0
Item
{
Item
{
id
:
_root
id
:
_root
clip
:
true
clip
:
true
height
:
valuesPage
.
height
+
pageIndicatorRow
.
anchors
.
topMargin
+
pageIndicatorRow
.
height
height
:
column
.
height
property
var
qgcView
///< QGCView to use for showing dialogs
property
var
qgcView
///< QGCView to use for showing dialogs
property
color
textColor
property
color
textColor
property
color
backgroundColor
property
color
backgroundColor
property
var
maxHeight
///< Maximum height that should be taken, smaller than this is ok
property
var
maxHeight
///< Maximum height that should be taken, smaller than this is ok
property
real
_margins
:
ScreenTools
.
defaultFontPixelWidth
/
2
property
real
_margins
:
ScreenTools
.
defaultFontPixelWidth
/
2
property
real
_pageWidth
:
_root
.
width
property
real
_pageWidth
:
_root
.
width
property
int
_currentPage
:
0
property
int
_currentPage
:
0
property
int
_maxPage
:
2
property
int
_maxPage
:
3
onWidthChanged
:
showPage
(
_currentPage
)
function
showPicker
()
{
function
showPicker
()
{
valuesPage
.
showPicker
()
valuesPage
.
showPicker
()
}
}
function
showPage
(
pageIndex
)
{
function
showPage
(
pageIndex
)
{
_root
.
height
=
Qt
.
binding
(
function
()
{
return
_root
.
children
[
pageIndex
].
height
+
pageIndicatorRow
.
anchors
.
topMargin
+
pageIndicatorRow
.
height
}
)
pageRow
.
x
=
-
(
pageIndex
*
_pageWidth
)
_root
.
children
[
0
].
x
=
-
(
pageIndex
*
_pageWidth
)
}
ValuesWidget
{
id
:
valuesPage
width
:
_pageWidth
qgcView
:
_root
.
qgcView
textColor
:
_root
.
textColor
maxHeight
:
_root
.
maxHeight
}
VehicleHealthWidget
{
id
:
healthPage
anchors.left
:
valuesPage
.
right
width
:
_pageWidth
qgcView
:
_root
.
qgcView
textColor
:
_root
.
textColor
maxHeight
:
_root
.
maxHeight
}
}
VibrationWidget
{
function
showNextPage
()
{
id
:
vibrationPage
if
(
_currentPage
==
_maxPage
)
{
anchors.left
:
healthPage
.
right
_currentPage
=
0
width
:
_pageWidth
}
else
{
textColor
:
_root
.
textColor
_currentPage
++
backgroundColor
:
_root
.
backgroundColor
maxHeight
:
_root
.
maxHeight
}
Row
{
id
:
pageIndicatorRow
anchors.bottom
:
parent
.
bottom
anchors.horizontalCenter
:
parent
.
horizontalCenter
spacing
:
_margins
Repeater
{
model
:
_maxPage
+
1
Rectangle
{
height
:
radius
*
2
width
:
radius
*
2
radius
:
ScreenTools
.
defaultFontPixelWidth
/
3
border.color
:
textColor
border.width
:
1
color
:
_currentPage
==
index
?
textColor
:
"
transparent
"
}
}
}
showPage
(
_currentPage
)
}
}
MouseArea
{
MouseArea
{
anchors.fill
:
parent
anchors.fill
:
parent
onClicked
:
showNextPage
()
onClicked
:
{
if
(
_currentPage
==
_maxPage
)
{
_currentPage
=
0
}
else
{
_currentPage
++
}
showPage
(
_currentPage
)
}
}
}
/*
Column
{
Switching from swipe to click to change pages. Keeping swipe code for now in case of change back.
id
:
column
MouseArea {
anchors.left
:
parent
.
left
anchors.
fill: paren
t
anchors.
right
:
parent
.
righ
t
property real xDragStart
Row
{
property real xFirstPageSave
id
:
pageRow
onPressed: {
ValuesWidget
{
if (mouse.button == Qt.LeftButton) {
id
:
valuesPage
mouse.accepted = true
width
:
_pageWidth
xDragStart = mouse.x
qgcView
:
_root
.
qgcView
xFirstPageSave = _root.children[0].x
textColor
:
_root
.
textColor
maxHeight
:
_root
.
maxHeight
}
CameraWidget
{
width
:
_pageWidth
qgcView
:
_root
.
qgcView
textColor
:
_root
.
textColor
maxHeight
:
_root
.
maxHeight
}
VehicleHealthWidget
{
width
:
_pageWidth
qgcView
:
_root
.
qgcView
textColor
:
_root
.
textColor
maxHeight
:
_root
.
maxHeight
}
VibrationWidget
{
width
:
_pageWidth
textColor
:
_root
.
textColor
backgroundColor
:
_root
.
backgroundColor
maxHeight
:
_root
.
maxHeight
}
}
}
}
onPositionChanged: {
Row
{
_root.children[0].x = xFirstPageSave + mouse.x - xDragStart
anchors.horizontalCenter
:
parent
.
horizontalCenter
}
spacing
:
_margins
onReleased: {
Repeater
{
if (mouse.x < xDragStart) {
model
:
_maxPage
+
1
// Swipe left
_currentPage = Math.min(_currentPage + 1, _maxPage)
Rectangle
{
} else {
height
:
radius
*
2
// Swipe right
width
:
radius
*
2
_currentPage = Math.max(_currentPage - 1, 0)
radius
:
ScreenTools
.
defaultFontPixelWidth
/
3
border.color
:
textColor
border.width
:
1
color
:
_currentPage
==
index
?
textColor
:
"
transparent
"
}
}
}
showPage(_currentPage)
}
}
}
}
*/
}
}
src/FlightMap/Widgets/ValuesWidget.qml
View file @
8339e840
...
@@ -54,7 +54,7 @@ QGCFlickable {
...
@@ -54,7 +54,7 @@ QGCFlickable {
MouseArea
{
MouseArea
{
anchors.fill
:
parent
anchors.fill
:
parent
onClicked
:
show
Picker
()
onClicked
:
show
NextPage
()
}
}
Column
{
Column
{
...
...
src/FlightMap/Widgets/VehicleHealthWidget.qml
View file @
8339e840
...
@@ -34,6 +34,11 @@ QGCFlickable {
...
@@ -34,6 +34,11 @@ QGCFlickable {
}
}
}
}
MouseArea
{
anchors.fill
:
parent
onClicked
:
showNextPage
()
}
Column
{
Column
{
id
:
healthColumn
id
:
healthColumn
width
:
parent
.
width
width
:
parent
.
width
...
...
src/FlightMap/Widgets/VibrationWidget.qml
View file @
8339e840
...
@@ -39,6 +39,11 @@ QGCFlickable {
...
@@ -39,6 +39,11 @@ QGCFlickable {
QGCPalette
{
id
:
qgcPal
;
colorGroupEnabled
:
true
}
QGCPalette
{
id
:
qgcPal
;
colorGroupEnabled
:
true
}
MouseArea
{
anchors.fill
:
parent
onClicked
:
showNextPage
()
}
Item
{
Item
{
id
:
innerItem
id
:
innerItem
width
:
parent
.
width
width
:
parent
.
width
...
...
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