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
bbde40eb
Commit
bbde40eb
authored
Jan 20, 2018
by
Gus Grubba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Expand/Colapse Controllers
Adjust colors Remove unused image
parent
6929d269
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
304 additions
and
104 deletions
+304
-104
qgcresources.qrc
qgcresources.qrc
+2
-0
AirspaceControl.qml
src/Airmap/AirspaceControl.qml
+11
-6
HomeBlack.svg
src/FlightMap/Images/HomeBlack.svg
+0
-9
GeoFenceEditor.qml
src/PlanView/GeoFenceEditor.qml
+1
-1
MissionItemEditor.qml
src/PlanView/MissionItemEditor.qml
+64
-73
PlanView.qml
src/PlanView/PlanView.qml
+188
-4
RallyPointEditorHeader.qml
src/PlanView/RallyPointEditorHeader.qml
+0
-1
RallyPointItemEditor.qml
src/PlanView/RallyPointItemEditor.qml
+4
-8
QGCPalette.cc
src/QGCPalette.cc
+2
-2
QmlTest.qml
src/QmlControls/QmlTest.qml
+32
-0
No files found.
qgcresources.qrc
View file @
bbde40eb
...
...
@@ -123,6 +123,7 @@
<file alias="ZoomPlus.svg">src/FlightMap/Images/ZoomPlus.svg</file>
<file alias="ZoomMinus.svg">src/FlightMap/Images/ZoomMinus.svg</file>
<file alias="Help.svg">src/FlightMap/Images/Help.svg</file>
<file alias="Home.svg">src/FlightMap/Images/Home.svg</file>
<file alias="HelpBlack.svg">src/FlightMap/Images/HelpBlack.svg</file>
<file alias="MapAddMission.svg">src/FlightMap/Images/MapAddMission.svg</file>
<file alias="MapAddMissionBlack.svg">src/FlightMap/Images/MapAddMissionBlack.svg</file>
...
...
@@ -175,6 +176,7 @@
</qresource>
<qresource prefix="/airmap">
<file alias="advisory-icon.svg">src/Airmap/images/advisory-icon.svg</file>
<file alias="expand.svg">src/Airmap/images/expand.svg</file>
<file alias="pencil.svg">src/Airmap/images/pencil.svg</file>
</qresource>
<qresource prefix="/res">
...
...
src/Airmap/AirspaceControl.qml
View file @
bbde40eb
...
...
@@ -63,6 +63,16 @@ Item {
anchors.verticalCenter
:
parent
.
verticalCenter
}
}
QGCColoredImage
{
width
:
height
height
:
ScreenTools
.
defaultFontPixelWidth
*
2.5
sourceSize.height
:
height
source
:
"
qrc:/airmap/expand.svg
"
color
:
_colorWhite
anchors.right
:
parent
.
right
anchors.rightMargin
:
ScreenTools
.
defaultFontPixelWidth
anchors.verticalCenter
:
parent
.
verticalCenter
}
MouseArea
{
anchors.fill
:
parent
onClicked
:
colapsed
=
false
...
...
@@ -115,11 +125,6 @@ Item {
}
}
}
MouseArea
{
anchors.fill
:
parent
enabled
:
!
colapsed
onClicked
:
colapsed
=
true
}
}
//-- Contents (Brown Box)
Rectangle
{
...
...
@@ -189,7 +194,7 @@ Item {
}
Rectangle
{
id
:
regButton
height
:
regLabel
.
height
+
ScreenTools
.
defaultFontPixelHeight
height
:
regLabel
.
height
+
ScreenTools
.
defaultFontPixelHeight
*
0.5
radius
:
2
color
:
_colorMidBrown
Layout.fillWidth
:
true
...
...
src/FlightMap/Images/HomeBlack.svg
deleted
100644 → 0
View file @
6929d269
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
version=
"1.1"
id=
"Layer_1"
xmlns=
"http://www.w3.org/2000/svg"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
x=
"0px"
y=
"0px"
viewBox=
"0 0 72 72"
enable-background=
"new 0 0 72 72"
xml:space=
"preserve"
>
<g>
<polygon
points=
"70.2,41.7 36,1.797 1.8,41.7 10.35,41.7 10.35,70.203 27.45,70.203 27.45,47.401 44.55,47.401 44.55,70.203
61.65,70.203 61.65,41.7 "
/>
</g>
</svg>
src/PlanView/GeoFenceEditor.qml
View file @
bbde40eb
...
...
@@ -42,7 +42,7 @@ QGCFlickable {
anchors.left
:
parent
.
left
anchors.top
:
parent
.
top
text
:
qsTr
(
"
GeoFence
"
)
color
:
"
black
"
anchors.leftMargin
:
ScreenTools
.
defaultFontPixelWidth
}
Rectangle
{
...
...
src/PlanView/MissionItemEditor.qml
View file @
bbde40eb
This diff is collapsed.
Click to expand it.
src/PlanView/PlanView.qml
View file @
bbde40eb
This diff is collapsed.
Click to expand it.
src/PlanView/RallyPointEditorHeader.qml
View file @
bbde40eb
...
...
@@ -28,7 +28,6 @@ QGCFlickable {
anchors.left
:
parent
.
left
anchors.top
:
parent
.
top
text
:
qsTr
(
"
Rally Points
"
)
color
:
"
black
"
}
Rectangle
{
...
...
src/PlanView/RallyPointItemEditor.qml
View file @
bbde40eb
...
...
@@ -17,8 +17,7 @@ Rectangle {
property
var
rallyPoint
///< RallyPoint object associated with editor
property
var
controller
///< RallyPointController
property
bool
_currentItem
:
rallyPoint
?
rallyPoint
==
controller
.
currentRallyPoint
:
false
property
color
_outerTextColor
:
_currentItem
?
"
black
"
:
qgcPal
.
text
property
bool
_currentItem
:
rallyPoint
?
rallyPoint
===
controller
.
currentRallyPoint
:
false
readonly
property
real
_margin
:
ScreenTools
.
defaultFontPixelWidth
/
2
readonly
property
real
_radius
:
ScreenTools
.
defaultFontPixelWidth
/
2
...
...
@@ -47,10 +46,9 @@ Rectangle {
anchors.left
:
indicator
.
right
anchors.verticalCenter
:
parent
.
verticalCenter
text
:
qsTr
(
"
Rally Point
"
)
color
:
_outerTextColor
}
Image
{
QGCColored
Image
{
id
:
hamburger
anchors.rightMargin
:
_margin
anchors.right
:
parent
.
right
...
...
@@ -59,14 +57,12 @@ Rectangle {
height
:
width
sourceSize.height
:
height
source
:
"
qrc:/qmlimages/Hamburger.svg
"
color
:
qgcPal
.
text
MouseArea
{
anchors.fill
:
parent
onClicked
:
hamburgerMenu
.
popup
()
Menu
{
id
:
hamburgerMenu
MenuItem
{
text
:
qsTr
(
"
Delete
"
)
onTriggered
:
controller
.
removePoint
(
rallyPoint
)
...
...
@@ -74,7 +70,7 @@ Rectangle {
}
}
}
}
// Item - titleBar
}
Rectangle
{
id
:
valuesRect
...
...
src/QGCPalette.cc
View file @
bbde40eb
...
...
@@ -73,13 +73,13 @@ void QGCPalette::_buildMap(void)
DECLARE_QGC_COLOR
(
alertBackground
,
"#eecc44"
,
"#eecc44"
,
"#eecc44"
,
"#eecc44"
)
DECLARE_QGC_COLOR
(
alertBorder
,
"#808080"
,
"#808080"
,
"#808080"
,
"#808080"
)
DECLARE_QGC_COLOR
(
alertText
,
"#000000"
,
"#000000"
,
"#000000"
,
"#000000"
)
DECLARE_QGC_COLOR
(
missionItemEditor
,
"#585858"
,
"#
8cb3be"
,
"#585858"
,
"#8cb3be
"
)
DECLARE_QGC_COLOR
(
missionItemEditor
,
"#585858"
,
"#
a39fd3"
,
"#585858"
,
"#4e4480
"
)
// Colors are not affecting by theming
DECLARE_QGC_COLOR
(
mapWidgetBorderLight
,
"#ffffff"
,
"#ffffff"
,
"#ffffff"
,
"#ffffff"
)
DECLARE_QGC_COLOR
(
mapWidgetBorderDark
,
"#000000"
,
"#000000"
,
"#000000"
,
"#000000"
)
DECLARE_QGC_COLOR
(
brandingPurple
,
"#4A2C6D"
,
"#4A2C6D"
,
"#4A2C6D"
,
"#4A2C6D"
)
DECLARE_QGC_COLOR
(
brandingBlue
,
"#48D6FF"
,
"#
48D6FF"
,
"#48D6FF"
,
"#48D6FF
"
)
DECLARE_QGC_COLOR
(
brandingBlue
,
"#48D6FF"
,
"#
6045c5"
,
"#48D6FF"
,
"#6045c5
"
)
}
void
QGCPalette
::
setColorGroupEnabled
(
bool
enabled
)
...
...
src/QmlControls/QmlTest.qml
View file @
bbde40eb
...
...
@@ -841,6 +841,38 @@ Rectangle {
text
:
palette
.
alertText
}
// missionItemEditor
Loader
{
sourceComponent
:
rowHeader
property
var
text
:
"
missionItemEditor
"
}
ClickableColor
{
property
var
palette
:
QGCPalette
{
colorGroupEnabled
:
false
}
color
:
palette
.
missionItemEditor
onColorSelected
:
palette
.
missionItemEditor
=
color
}
ClickableColor
{
property
var
palette
:
QGCPalette
{
colorGroupEnabled
:
true
}
color
:
palette
.
missionItemEditor
onColorSelected
:
palette
.
missionItemEditor
=
color
}
Text
{
width
:
80
height
:
20
color
:
"
black
"
horizontalAlignment
:
Text
.
AlignHCenter
property
var
palette
:
QGCPalette
{
colorGroupEnabled
:
false
}
text
:
palette
.
missionItemEditor
}
Text
{
width
:
80
height
:
20
color
:
"
black
"
horizontalAlignment
:
Text
.
AlignHCenter
property
var
palette
:
QGCPalette
{
colorGroupEnabled
:
true
}
text
:
palette
.
missionItemEditor
}
}
Column
{
...
...
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