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
cdc27364
Commit
cdc27364
authored
Apr 06, 2015
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use common control for summary rows
parent
146f52ce
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
139 additions
and
253 deletions
+139
-253
qgroundcontrol.qrc
qgroundcontrol.qrc
+2
-0
AirframeComponentSummary.qml
src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml
+14
-29
FlightModesComponentSummary.qml
src/AutoPilotPlugins/PX4/FlightModesComponentSummary.qml
+18
-41
PowerComponentSummary.qml
src/AutoPilotPlugins/PX4/PowerComponentSummary.qml
+14
-36
RadioComponentSummary.qml
src/AutoPilotPlugins/PX4/RadioComponentSummary.qml
+30
-59
SafetyComponentSummary.qml
src/AutoPilotPlugins/PX4/SafetyComponentSummary.qml
+24
-50
SensorsComponentSummaryFixedWing.qml
...AutoPilotPlugins/PX4/SensorsComponentSummaryFixedWing.qml
+16
-38
VehicleSummaryRow.qml
src/QmlControls/VehicleSummaryRow.qml
+20
-0
qmldir
src/QmlControls/qmldir
+1
-0
No files found.
qgroundcontrol.qrc
View file @
cdc27364
...
...
@@ -23,9 +23,11 @@
<file alias="QGroundControl/Controls/QGCComboBox.qml">src/QmlControls/QGCComboBox.qml</file>
<file alias="QGroundControl/Controls/QGCColoredImage.qml">src/QmlControls/QGCColoredImage.qml</file>
<file alias="QGroundControl/Controls/QGCToolBarButton.qml">src/QmlControls/QGCToolBarButton.qml</file>
<file alias="QGroundControl/Controls/SubMenuButton.qml">src/QmlControls/SubMenuButton.qml</file>
<file alias="QGroundControl/Controls/IndicatorButton.qml">src/QmlControls/IndicatorButton.qml</file>
<file alias="QGroundControl/Controls/VehicleRotationCal.qml">src/QmlControls/VehicleRotationCal.qml</file>
<file alias="QGroundControl/Controls/VehicleSummaryRow.qml">src/QmlControls/VehicleSummaryRow.qml</file>
<file alias="QGroundControl/Controls/arrow-down.png">src/QmlControls/arrow-down.png</file>
<file alias="SetupViewButtonsConnected.qml">src/VehicleSetup/SetupViewButtonsConnected.qml</file>
...
...
src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml
View file @
cdc27364
...
...
@@ -8,43 +8,28 @@ import QGroundControl.Controls 1.0
import
QGroundControl
.
Controllers
1.0
Column
{
Fact
{
id
:
sysIdFact
;
name
:
"
MAV_SYS_ID
"
}
Fact
{
id
:
sysAutoStartFact
;
name
:
"
SYS_AUTOSTART
"
}
property
bool
autoStartSet
:
sysAutoStartFact
.
value
!=
0
anchors.fill
:
parent
anchors.margins
:
8
AirframeComponentController
{
id
:
controller
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
systemId
;
text
:
"
System ID:
"
}
FactLabel
{
horizontalAlignment
:
Text
.
AlignRight
width
:
parent
.
width
-
systemId
.
contentWidth
fact
:
Fact
{
name
:
"
MAV_SYS_ID
"
}
}
VehicleSummaryRow
{
labelText
:
"
System ID:
"
valueText
:
sysIdFact
.
valueString
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
airframeType
;
text
:
"
Airframe type:
"
}
QGCLabel
{
property
Fact
fact
:
Fact
{
name
:
"
SYS_AUTOSTART
"
}
horizontalAlignment
:
Text
.
AlignRight
width
:
parent
.
width
-
airframeType
.
contentWidth
text
:
fact
.
value
==
0
?
"
Setup required
"
:
controller
.
currentAirframeType
}
VehicleSummaryRow
{
labelText
:
"
Airframe type:
"
valueText
:
autoStartSet
?
controller
.
currentAirframeType
:
"
Setup required
"
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
vehicle
;
text
:
"
Vehicle:
"
}
QGCLabel
{
property
Fact
fact
:
Fact
{
name
:
"
SYS_AUTOSTART
"
}
horizontalAlignment
:
Text
.
AlignRight
width
:
parent
.
width
-
vehicle
.
contentWidth
text
:
fact
.
value
==
0
?
"
Setup required
"
:
controller
.
currentVehicleName
}
VehicleSummaryRow
{
labelText
:
"
Vehicle:
"
valueText
:
autoStartSet
?
controller
.
currentVehicleName
:
"
Setup required
"
}
}
src/AutoPilotPlugins/PX4/FlightModesComponentSummary.qml
View file @
cdc27364
...
...
@@ -6,54 +6,31 @@ import QGroundControl.FactSystem 1.0
import
QGroundControl
.
Controls
1.0
Column
{
anchors.fill
:
parent
anchors.margins
:
8
Fact
{
id
:
modeSwFact
;
name
:
"
RC_MAP_MODE_SW
"
}
Fact
{
id
:
posCtlSwFact
;
name
:
"
RC_MAP_POSCTL_SW
"
}
Fact
{
id
:
loiterSwFact
;
name
:
"
RC_MAP_LOITER_SW
"
}
Fact
{
id
:
returnSwFact
;
name
:
"
RC_MAP_RETURN_SW
"
}
Component
{
id
:
component
anchors.fill
:
parent
anchors.margins
:
8
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
label
;
text
:
labelText
}
QGCLabel
{
property
Fact
fact
:
Fact
{
name
:
factName
}
horizontalAlignment
:
Text
.
AlignRight
width
:
parent
.
width
-
label
.
contentWidth
text
:
fact
.
value
==
0
?
zeroText
:
fact
.
value
}
}
}
Loader
{
property
string
labelText
:
"
Mode switch:
"
property
string
zeroText
:
"
Setup required
"
property
string
factName
:
"
RC_MAP_MODE_SW
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Mode switch:
"
valueText
:
modeSwFact
.
value
==
0
?
"
Setup required
"
:
modeSwFact
.
valueString
}
Loader
{
property
string
labelText
:
"
Position Ctl switch:
"
property
string
zeroText
:
"
Disabled
"
property
string
factName
:
"
RC_MAP_POSCTL_SW
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Position Ctl switch:
"
valueText
:
posCtlSwFact
.
value
==
0
?
"
Disabled
"
:
fact
.
valueString
}
Loader
{
property
string
labelText
:
"
Position Ctl switch:
"
property
string
zeroText
:
"
Disabled
"
property
string
factName
:
"
RC_MAP_LOITER_SW
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Position Ctl switch:
"
valueText
:
loiterSwFact
.
value
==
0
?
"
Disabled
"
:
fact
.
valueString
}
Loader
{
property
string
labelText
:
"
Return switch:
"
property
string
zeroText
:
"
Disabled
"
property
string
factName
:
"
RC_MAP_RETURN_SW
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Return switch:
"
valueText
:
returnSwFact
.
value
==
0
?
"
Disabled
"
:
fact
.
valueString
}
}
src/AutoPilotPlugins/PX4/PowerComponentSummary.qml
View file @
cdc27364
...
...
@@ -34,47 +34,25 @@ import QGroundControl.FactControls 1.0
import
QGroundControl
.
Controls
1.0
Column
{
anchors.fill
:
parent
anchors.margins
:
8
Fact
{
id
:
batVChargedFact
;
name
:
"
BAT_V_CHARGED
"
}
Fact
{
id
:
batVEmptyFact
;
name
:
"
BAT_V_EMPTY
"
}
Fact
{
id
:
batCellsFact
;
name
:
"
BAT_N_CELLS
"
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
battFull
;
text
:
"
Battery Full:
"
}
FactLabel
{
fact
:
Fact
{
name
:
"
BAT_V_CHARGED
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
battFull
.
contentWidth
;
}
}
anchors.fill
:
parent
anchors.margins
:
8
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
battEmpty
;
text
:
"
Battery Empty:
"
}
FactLabel
{
fact
:
Fact
{
name
:
"
BAT_V_EMPTY
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
battEmpty
.
contentWidth
;
}
VehicleSummaryRow
{
labelText
:
"
Battery Full:
"
valueText
:
batVChargedFact
.
valueString
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
battCells
;
text
:
"
Number of Cells:
"
}
FactLabel
{
fact
:
Fact
{
name
:
"
BAT_N_CELLS
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
battCells
.
contentWidth
;
}
VehicleSummaryRow
{
labelText
:
"
Battery Empty:
"
valueText
:
batVEmptyFact
.
valueString
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
battDrop
;
text
:
"
Voltage Drop:
"
}
FactLabel
{
fact
:
Fact
{
name
:
"
BAT_V_LOAD_DROP
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
battDrop
.
contentWidth
;
}
VehicleSummaryRow
{
labelText
:
"
Number of Cells:
"
valueText
:
batCellsFact
.
valueString
}
}
src/AutoPilotPlugins/PX4/RadioComponentSummary.qml
View file @
cdc27364
...
...
@@ -6,78 +6,49 @@ import QGroundControl.FactSystem 1.0
import
QGroundControl
.
Controls
1.0
Column
{
anchors.fill
:
parent
anchors.margins
:
8
Fact
{
id
:
mapRollFact
;
name
:
"
RC_MAP_ROLL
"
}
Fact
{
id
:
mapPitchFact
;
name
:
"
RC_MAP_PITCH
"
}
Fact
{
id
:
mapYawFact
;
name
:
"
RC_MAP_YAW
"
}
Fact
{
id
:
mapThrottleFact
;
name
:
"
RC_MAP_THROTTLE
"
}
Fact
{
id
:
mapFlapsFact
;
name
:
"
RC_MAP_FLAPS
"
}
Fact
{
id
:
mapAux1Fact
;
name
:
"
RC_MAP_AUX1
"
}
Fact
{
id
:
mapAux2Fact
;
name
:
"
RC_MAP_AUX2
"
}
Component
{
id
:
component
anchors.fill
:
parent
anchors.margins
:
8
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
label
;
text
:
labelText
}
QGCLabel
{
Fact
{
id
:
fact
;
name
:
factName
}
horizontalAlignment
:
Text
.
AlignRight
width
:
parent
.
width
-
label
.
contentWidth
text
:
fact
.
value
==
0
?
zeroText
:
fact
.
value
}
}
}
Loader
{
property
string
labelText
:
"
Roll:
"
property
string
zeroText
:
"
Setup required
"
property
string
factName
:
"
RC_MAP_ROLL
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Roll:
"
valueText
:
mapRollFact
.
value
==
0
?
"
Setup required
"
:
mapRollFact
.
valueString
}
Loader
{
property
string
labelText
:
"
Pitch:
"
property
string
zeroText
:
"
Setup required
"
property
string
factName
:
"
RC_MAP_PITCH
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Pitch:
"
valueText
:
mapPitchFact
.
value
==
0
?
"
Setup required
"
:
mapPitchFact
.
valueString
}
Loader
{
property
string
labelText
:
"
Yaw:
"
property
string
zeroText
:
"
Setup required
"
property
string
factName
:
"
RC_MAP_YAW
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Yaw:
"
valueText
:
mapYawFact
.
value
==
0
?
"
Setup required
"
:
mapYawFact
.
valueString
}
Loader
{
property
string
labelText
:
"
Throttle:
"
property
string
zeroText
:
"
Setup required
"
property
string
factName
:
"
RC_MAP_THROTTLE
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Throttle:
"
valueText
:
mapThrottleFact
.
value
==
0
?
"
Setup required
"
:
mapThrottleFact
.
valueString
}
Loader
{
property
string
labelText
:
"
Flaps:
"
property
string
zeroText
:
"
Disabled
"
property
string
factName
:
"
RC_MAP_FLAPS
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Flaps:
"
valueText
:
mapFlapsFact
.
value
==
0
?
"
Disabled
"
:
mapFlapsFact
.
valueString
}
Loader
{
property
string
labelText
:
"
Aux1:
"
property
string
zeroText
:
"
Disabled
"
property
string
factName
:
"
RC_MAP_AUX1
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Aux1:
"
valueText
:
mapAux1Fact
.
value
==
0
?
"
Disabled
"
:
mapAux1Fact
.
valueString
}
Loader
{
property
string
labelText
:
"
Aux2:
"
property
string
zeroText
:
"
Disabled
"
property
string
factName
:
"
RC_MAP_AUX2
"
width
:
parent
.
width
sourceComponent
:
component
VehicleSummaryRow
{
labelText
:
"
Aux2:
"
valueText
:
mapAux2Fact
.
value
==
0
?
"
Disabled
"
:
mapAux2Fact
.
valueString
}
}
src/AutoPilotPlugins/PX4/SafetyComponentSummary.qml
View file @
cdc27364
...
...
@@ -7,63 +7,37 @@ import QGroundControl.FactControls 1.0
import
QGroundControl
.
Controls
1.0
Column
{
anchors.fill
:
parent
anchors.margins
:
8
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
rtlMinAlt
;
text
:
"
RTL min alt:
"
}
FactLabel
{
fact
:
Fact
{
name
:
"
RTL_RETURN_ALT
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
rtlMinAlt
.
contentWidth
;
}
Fact
{
id
:
returnAltFact
;
name
:
"
RTL_RETURN_ALT
"
}
Fact
{
id
:
descendAltFact
;
name
:
"
RTL_DESCEND_ALT
"
}
Fact
{
id
:
landDelayFact
;
name
:
"
RTL_LAND_DELAY
"
}
Fact
{
id
:
commDLLossFact
;
name
:
"
COM_DL_LOSS_EN
"
}
Fact
{
id
:
commRCLossFact
;
name
:
"
COM_RC_LOSS_T
"
}
anchors.fill
:
parent
anchors.margins
:
8
VehicleSummaryRow
{
labelText
:
"
RTL min alt:
"
valueText
:
returnAltFact
.
valueString
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
rtlHomeAlt
;
text
:
"
RTL home alt:
"
}
FactLabel
{
fact
:
Fact
{
name
:
"
RTL_DESCEND_ALT
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
rtlHomeAlt
.
contentWidth
;
}
VehicleSummaryRow
{
labelText
:
"
RTL home alt:
"
valueText
:
descendAltFact
.
valueString
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
rtlLoiter
;
text
:
"
RTL loiter delay:
"
}
QGCLabel
{
property
Fact
fact
:
Fact
{
name
:
"
RTL_LAND_DELAY
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
rtlLoiter
.
contentWidth
;
text
:
fact
.
value
<
0
?
"
Disabled
"
:
fact
.
valueString
}
VehicleSummaryRow
{
labelText
:
"
RTL loiter delay:
"
valueText
:
landDelayFact
.
value
<
0
?
"
Disabled
"
:
landDelayFact
.
valueString
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
commLoss
;
text
:
"
Telemetry loss RTL:
"
}
QGCLabel
{
property
Fact
fact
:
Fact
{
name
:
"
COM_DL_LOSS_EN
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
commLoss
.
contentWidth
;
text
:
fact
.
value
!=
1
?
"
Disabled
"
:
fact
.
valueString
}
VehicleSummaryRow
{
labelText
:
"
Telemetry loss RTL:
"
valueText
:
commDLLossFact
.
value
!=
-
1
?
"
Disabled
"
:
commDLLossFact
.
valueString
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
rcLoss
;
text
:
"
RC loss RTL (seconds):
"
}
FactLabel
{
fact
:
Fact
{
name
:
"
COM_RC_LOSS_T
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
rcLoss
.
contentWidth
;
}
VehicleSummaryRow
{
labelText
:
"
RC loss RTL (seconds):
"
valueText
:
commRCLossFact
.
valueString
}
}
src/AutoPilotPlugins/PX4/SensorsComponentSummaryFixedWing.qml
View file @
cdc27364
...
...
@@ -10,54 +10,32 @@ import QGroundControl.Controls 1.0
*/
Column
{
anchors.fill
:
parent
anchors.margins
:
8
Fact
{
id
:
mag0IdFact
;
name
:
"
CAL_MAG0_ID
"
}
Fact
{
id
:
gyro0IdFact
;
name
:
"
CAL_GYRO0_ID
"
}
Fact
{
id
:
accel0IdFact
;
name
:
"
CAL_ACC0_ID
"
}
Fact
{
id
:
dPressOffFact
;
name
:
"
SENS_DPRES_OFF
"
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
compass
;
text
:
"
Compass:
"
}
QGCLabel
{
property
Fact
fact
:
Fact
{
name
:
"
CAL_MAG0_ID
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
compass
.
contentWidth
;
text
:
fact
.
value
==
0
?
"
Setup required
"
:
"
Ready
"
anchors.fill
:
parent
anchors.margins
:
8
VehicleSummaryRow
{
labelText
:
"
Compass:
"
valueText
:
mag0IdFact
.
value
==
0
?
"
Setup required
"
:
"
Ready
"
}
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
gyro
;
text
:
"
Gyro:
"
}
QGCLabel
{
property
Fact
fact
:
Fact
{
name
:
"
CAL_GYRO0_ID
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
compass
.
contentWidth
;
text
:
fact
.
value
==
0
?
"
Setup required
"
:
"
Ready
"
}
labelText
:
"
Gyro:
"
valueText
:
gyro0IdFact
.
value
==
0
?
"
Setup required
"
:
"
Ready
"
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
accel
;
text
:
"
Accelerometer:
"
}
QGCLabel
{
property
Fact
fact
:
Fact
{
name
:
"
CAL_ACC0_ID
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
compass
.
contentWidth
;
text
:
fact
.
value
==
0
?
"
Setup required
"
:
"
Ready
"
}
labelText
:
"
Accelerometer:
"
valueText
:
accel0IdFact
.
value
==
0
?
"
Setup required
"
:
"
Ready
"
}
Row
{
width
:
parent
.
width
QGCLabel
{
id
:
airspeed
;
text
:
"
Airspeed:
"
}
QGCLabel
{
property
Fact
fact
:
Fact
{
name
:
"
SENS_DPRES_OFF
"
}
horizontalAlignment
:
Text
.
AlignRight
;
width
:
parent
.
width
-
airspeed
.
contentWidth
;
text
:
fact
.
value
==
0.0
?
"
Setup required
"
:
"
Ready
"
}
labelText
:
"
Airspeed:
"
valueText
:
dPressOffFact
.
value
==
0
?
"
Setup required
"
:
"
Ready
"
}
}
src/QmlControls/VehicleSummaryRow.qml
0 → 100644
View file @
cdc27364
import
QtQuick
2.2
import
QtQuick
.
Controls
1.2
import
QtQuick
.
Controls
.
Styles
1.2
Row
{
property
string
labelText
:
"
Label
"
property
string
valueText
:
"
value
"
width
:
parent
.
width
QGCLabel
{
id
:
label
text
:
labelText
}
QGCLabel
{
width
:
parent
.
width
-
label
.
contentWidth
text
:
valueText
horizontalAlignment
:
Text
.
AlignRight
;
}
}
src/QmlControls/qmldir
View file @
cdc27364
...
...
@@ -12,4 +12,5 @@ QGCToolBarButton 1.0 QGCToolBarButton.qml
SubMenuButton 1.0 SubMenuButton.qml
IndicatorButton 1.0 IndicatorButton.qml
VehicleRotationCal 1.0 VehicleRotationCal.qml
VehicleSummaryRow 1.0 VehicleSummaryRow.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