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
0a815248
Commit
0a815248
authored
Jul 20, 2016
by
dogmaphobic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing CW/CCW Legend
parent
6e6bf4cc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
78 deletions
+0
-78
qgroundcontrol.qrc
qgroundcontrol.qrc
+0
-1
MotorComponent.qml
src/AutoPilotPlugins/Common/MotorComponent.qml
+0
-5
MultiRotorMotorDisplayLegend.qml
src/QmlControls/MultiRotorMotorDisplayLegend.qml
+0
-71
QGroundControl.Controls.qmldir
src/QmlControls/QGroundControl.Controls.qmldir
+0
-1
No files found.
qgroundcontrol.qrc
View file @
0a815248
...
...
@@ -57,7 +57,6 @@
<file alias="QGroundControl/Controls/MissionItemStatus.qml">src/MissionEditor/MissionItemStatus.qml</file>
<file alias="QGroundControl/Controls/MissionCommandDialog.qml">src/QmlControls/MissionCommandDialog.qml</file>
<file alias="QGroundControl/Controls/MultiRotorMotorDisplay.qml">src/QmlControls/MultiRotorMotorDisplay.qml</file>
<file alias="QGroundControl/Controls/MultiRotorMotorDisplayLegend.qml">src/QmlControls/MultiRotorMotorDisplayLegend.qml</file>
<file alias="QGroundControl/Controls/ModeSwitchDisplay.qml">src/QmlControls/ModeSwitchDisplay.qml</file>
<file alias="QGroundControl/Controls/ParameterEditor.qml">src/QmlControls/ParameterEditor.qml</file>
<file alias="QGroundControl/Controls/ParameterEditorDialog.qml">src/QmlControls/ParameterEditorDialog.qml</file>
...
...
src/AutoPilotPlugins/Common/MotorComponent.qml
View file @
0a815248
...
...
@@ -106,11 +106,6 @@ SetupPage {
coaxial
:
controller
.
vehicle
.
coaxialMotors
}
MultiRotorMotorDisplayLegend
{
anchors.top
:
parent
.
top
anchors.bottom
:
parent
.
bottom
width
:
height
}
}
// Row
QGCLabel
{
...
...
src/QmlControls/MultiRotorMotorDisplayLegend.qml
deleted
100644 → 0
View file @
6e6bf4cc
import
QtQuick
2.2
import
QGroundControl
.
Palette
1.0
import
QGroundControl
.
ScreenTools
1.0
Item
{
id
:
legendRoot
property
var
_qgcPal
:
QGCPalette
{
colorGroupEnabled
:
enabled
}
property
real
_rotorRadius
:
legendRoot
.
height
/
16
readonly
property
string
_cwColor
:
"
#15ce15
"
// Green
readonly
property
string
_ccwColor
:
"
#1283e0
"
// Blue
Item
{
id
:
cwItem
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
height
:
legendRoot
.
height
/
2
Rectangle
{
id
:
cwRotor
anchors.left
:
parent
.
left
anchors.verticalCenter
:
parent
.
verticalCenter
width
:
_rotorRadius
*
2
height
:
_rotorRadius
*
2
radius
:
_rotorRadius
color
:
_cwColor
}
QGCLabel
{
anchors.leftMargin
:
ScreenTools
.
defaultFontPixelWidth
anchors.left
:
cwRotor
.
right
anchors.right
:
parent
.
right
anchors.top
:
parent
.
top
anchors.bottom
:
parent
.
bottom
verticalAlignment
:
Text
.
AlignVCenter
wrapMode
:
Text
.
WordWrap
text
:
qsTr
(
"
Clockwise rotation, use pusher propeller
"
)
}
}
Item
{
id
:
ccwItem
anchors.top
:
cwItem
.
bottom
anchors.bottom
:
parent
.
bottom
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
Rectangle
{
id
:
ccwRotor
anchors.left
:
parent
.
left
anchors.verticalCenter
:
parent
.
verticalCenter
width
:
_rotorRadius
*
2
height
:
_rotorRadius
*
2
radius
:
_rotorRadius
color
:
_ccwColor
}
QGCLabel
{
anchors.leftMargin
:
ScreenTools
.
defaultFontPixelWidth
anchors.left
:
ccwRotor
.
right
anchors.right
:
parent
.
right
anchors.top
:
parent
.
top
anchors.bottom
:
parent
.
bottom
verticalAlignment
:
Text
.
AlignVCenter
wrapMode
:
Text
.
WordWrap
text
:
qsTr
(
"
Counter Clockwise rotation, use normal propeller
"
)
}
}
}
// Item
src/QmlControls/QGroundControl.Controls.qmldir
View file @
0a815248
...
...
@@ -14,7 +14,6 @@ MissionItemIndexLabel 1.0 MissionItemIndexLabel.qml
MissionItemStatus 1.0 MissionItemStatus.qml
ModeSwitchDisplay 1.0 ModeSwitchDisplay.qml
MultiRotorMotorDisplay 1.0 MultiRotorMotorDisplay.qml
MultiRotorMotorDisplayLegend 1.0 MultiRotorMotorDisplayLegend.qml
ParameterEditor 1.0 ParameterEditor.qml
ParameterEditorDialog 1.0 ParameterEditorDialog.qml
RCChannelMonitor 1.0 RCChannelMonitor.qml
...
...
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