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
ffe6bfd4
Commit
ffe6bfd4
authored
Dec 30, 2016
by
Don Gagne
Committed by
GitHub
Dec 30, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4363 from DonLakeFlyer/DropButtonParent
Fix DropButton parenting
parents
3f88517e
d53bb78e
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
221 additions
and
207 deletions
+221
-207
FlightDisplayViewMap.qml
src/FlightDisplay/FlightDisplayViewMap.qml
+93
-86
MissionEditor.qml
src/MissionEditor/MissionEditor.qml
+125
-109
DropButton.qml
src/QmlControls/DropButton.qml
+3
-12
No files found.
src/FlightDisplay/FlightDisplayViewMap.qml
View file @
ffe6bfd4
...
...
@@ -77,7 +77,7 @@ FlightMap {
color
:
mapPal
.
text
visible
:
!
ScreenTools
.
isShortScreen
anchors.topMargin
:
_toolButtonTopMargin
anchors.horizontalCenter
:
toolColum
n
.
horizontalCenter
anchors.horizontalCenter
:
centerMapDropButto
n
.
horizontalCenter
anchors.top
:
parent
.
top
}
...
...
@@ -103,109 +103,116 @@ FlightMap {
}
}
Column
{
id
:
toolColumn
anchors.topMargin
:
ScreenTools
.
isShortScreen
?
_toolButtonTopMargin
:
ScreenTools
.
defaultFontPixelHeight
/
2
anchors.leftMargin
:
ScreenTools
.
defaultFontPixelHeight
anchors.left
:
parent
.
left
anchors.top
:
ScreenTools
.
isShortScreen
?
parent
.
top
:
flyLabel
.
bottom
spacing
:
ScreenTools
.
defaultFontPixelHeight
// IMPORTANT NOTE: Drop Buttons must be parented directly to the map. If they are placed in a Column for example the drop control positioning
// will not work correctly.
//-- Map Center Control
CenterMapDropButton
{
id
:
centerMapDropButton
anchors.topMargin
:
flyLabel
.
visible
?
ScreenTools
.
defaultFontPixelHeight
/
2
:
_toolButtonTopMargin
anchors.leftMargin
:
ScreenTools
.
defaultFontPixelHeight
anchors.left
:
parent
.
left
anchors.top
:
flyLabel
.
visible
?
flyLabel
.
bottom
:
parent
.
top
z
:
QGroundControl
.
zOrderWidgets
exclusiveGroup
:
dropButtonsExclusiveGroup
map
:
_flightMap
mapFitViewport
:
Qt
.
rect
(
leftToolWidth
,
_toolButtonTopMargin
,
flightMap
.
width
-
leftToolWidth
-
rightPanelWidth
,
flightMap
.
height
-
_toolButtonTopMargin
)
usePlannedHomePosition
:
false
geoFenceController
:
geoFenceController
missionController
:
missionController
rallyPointController
:
rallyPointController
showFollowVehicle
:
true
followVehicle
:
_followVehicle
onFollowVehicleChanged
:
_followVehicle
=
followVehicle
property
real
leftToolWidth
:
centerMapDropButton
.
x
+
centerMapDropButton
.
width
}
//-- Map Type Control
DropButton
{
id
:
mapTypeButton
anchors.topMargin
:
ScreenTools
.
defaultFontPixelHeight
anchors.top
:
centerMapDropButton
.
bottom
anchors.left
:
centerMapDropButton
.
left
dropDirection
:
dropRight
buttonImage
:
"
/qmlimages/MapType.svg
"
viewportMargins
:
ScreenTools
.
defaultFontPixelWidth
/
2
exclusiveGroup
:
dropButtonsExclusiveGroup
z
:
QGroundControl
.
zOrderWidgets
lightBorders
:
isSatelliteMap
//-- Map Center Control
CenterMapDropButton
{
id
:
centerMapDropButton
exclusiveGroup
:
dropButtonsExclusiveGroup
map
:
_flightMap
mapFitViewport
:
Qt
.
rect
(
leftToolWidth
,
_toolButtonTopMargin
,
flightMap
.
width
-
leftToolWidth
-
rightPanelWidth
,
flightMap
.
height
-
_toolButtonTopMargin
)
usePlannedHomePosition
:
false
geoFenceController
:
geoFenceController
missionController
:
missionController
rallyPointController
:
rallyPointController
showFollowVehicle
:
true
followVehicle
:
_followVehicle
onFollowVehicleChanged
:
_followVehicle
=
followVehicle
property
real
leftToolWidth
:
centerMapDropButton
.
x
+
centerMapDropButton
.
width
}
dropDownComponent
:
Component
{
Column
{
spacing
:
ScreenTools
.
defaultFontPixelWidth
//-- Map Type Control
DropButton
{
id
:
mapTypeButton
dropDirection
:
dropRight
buttonImage
:
"
/qmlimages/MapType.svg
"
viewportMargins
:
ScreenTools
.
defaultFontPixelWidth
/
2
exclusiveGroup
:
dropButtonsExclusiveGroup
z
:
QGroundControl
.
zOrderWidgets
lightBorders
:
isSatelliteMap
dropDownComponent
:
Component
{
Column
{
Row
{
spacing
:
ScreenTools
.
defaultFontPixelWidth
Row
{
spacing
:
ScreenTools
.
defaultFontPixelWidth
Repeater
{
model
:
QGroundControl
.
flightMapSettings
.
mapTypes
Repeater
{
model
:
QGroundControl
.
flightMapSettings
.
mapTypes
QGCButton
{
checkable
:
true
checked
:
QGroundControl
.
flightMapSettings
.
mapType
===
text
text
:
modelData
width
:
clearButton
.
width
exclusiveGroup
:
mapTypeButtonsExclusiveGroup
QGCButton
{
checkable
:
true
checked
:
QGroundControl
.
flightMapSettings
.
mapType
===
text
text
:
modelData
width
:
clearButton
.
width
exclusiveGroup
:
mapTypeButtonsExclusiveGroup
onClicked
:
{
QGroundControl
.
flightMapSettings
.
mapType
=
text
checked
=
true
dropButtonsExclusiveGroup
.
current
=
null
}
onClicked
:
{
QGroundControl
.
flightMapSettings
.
mapType
=
text
checked
=
true
dropButtonsExclusiveGroup
.
current
=
null
}
}
}
}
QGCButton
{
id
:
clearButton
text
:
qsTr
(
"
Clear Flight Trails
"
)
enabled
:
QGroundControl
.
multiVehicleManager
.
activeVehicle
onClicked
:
{
QGroundControl
.
multiVehicleManager
.
activeVehicle
.
clearTrajectoryPoints
()
dropButtonsExclusiveGroup
.
current
=
null
}
QGCButton
{
id
:
clearButton
text
:
qsTr
(
"
Clear Flight Trails
"
)
enabled
:
QGroundControl
.
multiVehicleManager
.
activeVehicle
onClicked
:
{
QGroundControl
.
multiVehicleManager
.
activeVehicle
.
clearTrajectoryPoints
()
dropButtonsExclusiveGroup
.
current
=
null
}
}
}
}
}
//-- Zoom Map In
RoundButton
{
id
:
mapZoomPlus
visible
:
!
ScreenTools
.
isTinyScreen
&&
_mainIsMap
buttonImage
:
"
/qmlimages/ZoomPlus.svg
"
exclusiveGroup
:
dropButtonsExclusiveGroup
z
:
QGroundControl
.
zOrderWidgets
lightBorders
:
isSatelliteMap
onClicked
:
{
if
(
_flightMap
)
_flightMap
.
zoomLevel
+=
0.5
checked
=
false
}
//-- Zoom Map In
RoundButton
{
id
:
mapZoomPlus
anchors.topMargin
:
ScreenTools
.
defaultFontPixelHeight
anchors.top
:
mapTypeButton
.
bottom
anchors.left
:
mapTypeButton
.
left
visible
:
!
ScreenTools
.
isTinyScreen
&&
_mainIsMap
buttonImage
:
"
/qmlimages/ZoomPlus.svg
"
exclusiveGroup
:
dropButtonsExclusiveGroup
z
:
QGroundControl
.
zOrderWidgets
lightBorders
:
isSatelliteMap
onClicked
:
{
if
(
_flightMap
)
_flightMap
.
zoomLevel
+=
0.5
checked
=
false
}
}
//-- Zoom Map Out
RoundButton
{
id
:
mapZoomMinus
visible
:
!
ScreenTools
.
isTinyScreen
&&
_mainIsMap
buttonImage
:
"
/qmlimages/ZoomMinus.svg
"
exclusiveGroup
:
dropButtonsExclusiveGroup
z
:
QGroundControl
.
zOrderWidgets
lightBorders
:
isSatelliteMap
onClicked
:
{
if
(
_flightMap
)
_flightMap
.
zoomLevel
-=
0.5
checked
=
false
}
//-- Zoom Map Out
RoundButton
{
id
:
mapZoomMinus
anchors.topMargin
:
ScreenTools
.
defaultFontPixelHeight
anchors.top
:
mapZoomPlus
.
bottom
anchors.left
:
mapZoomPlus
.
left
visible
:
!
ScreenTools
.
isTinyScreen
&&
_mainIsMap
buttonImage
:
"
/qmlimages/ZoomMinus.svg
"
exclusiveGroup
:
dropButtonsExclusiveGroup
z
:
QGroundControl
.
zOrderWidgets
lightBorders
:
isSatelliteMap
onClicked
:
{
if
(
_flightMap
)
_flightMap
.
zoomLevel
-=
0.5
checked
=
false
}
}
...
...
src/MissionEditor/MissionEditor.qml
View file @
ffe6bfd4
This diff is collapsed.
Click to expand it.
src/QmlControls/DropButton.qml
View file @
ffe6bfd4
...
...
@@ -15,6 +15,7 @@ Item {
property
int
dropDirection
:
dropDown
property
alias
dropDownComponent
:
dropDownLoader
.
sourceComponent
property
real
viewportMargins
:
0
property
real
topMargin
:
parent
.
height
-
ScreenTools
.
availableHeight
property
alias
lightBorders
:
roundButton
.
lightBorders
width
:
radius
*
2
...
...
@@ -35,7 +36,7 @@ Item {
property
real
_viewportMaxLeft
:
-
x
+
viewportMargins
property
real
_viewportMaxRight
:
parent
.
width
-
(
viewportMargins
*
2
)
-
x
property
real
_viewportMaxTop
:
-
y
+
viewportMargins
property
real
_viewportMaxTop
:
-
y
+
viewportMargins
+
topMargin
property
real
_viewportMaxBottom
:
parent
.
height
-
(
viewportMargins
*
2
)
-
y
// Set up ExclusiveGroup support. We use the checked property to drive visibility of drop down.
...
...
@@ -53,8 +54,6 @@ Item {
checked
=
false
}
Component
.
onCompleted
:
_calcPositions
()
function
_calcPositions
()
{
var
dropComponentWidth
=
dropDownLoader
.
item
.
width
var
dropComponentHeight
=
dropDownLoader
.
item
.
height
...
...
@@ -161,6 +160,7 @@ Item {
id
:
roundButton
radius
:
parent
.
width
/
2
onClicked
:
{
_calcPositions
()
_root
.
clicked
()
}
}
...
...
@@ -216,20 +216,11 @@ Item {
Item
{
id
:
dropItemHolderRect
//color: qgcPal.button
//radius: _dropCornerRadius
Loader
{
id
:
dropDownLoader
x
:
_dropMargin
y
:
_dropMargin
Connections
{
target
:
dropDownLoader
.
item
onWidthChanged
:
_calcPositions
()
onHeightChanged
:
_calcPositions
()
}
}
}
}
// Item - dropDownItem
...
...
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