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
788ec028
Unverified
Commit
788ec028
authored
Nov 10, 2019
by
Don Gagne
Committed by
GitHub
Nov 10, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8010 from DonLakeFlyer/InspectorSize
Mavlink Inspector: Dynamic sizing of message buttons
parents
19e998a5
3d63d21e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
17 deletions
+33
-17
MAVLinkInspectorPage.qml
src/AnalyzeView/MAVLinkInspectorPage.qml
+11
-8
MAVLinkMessageButton.qml
src/QmlControls/MAVLinkMessageButton.qml
+22
-9
No files found.
src/AnalyzeView/MAVLinkInspectorPage.qml
View file @
788ec028
...
...
@@ -23,10 +23,11 @@ Item {
anchors.margins
:
ScreenTools
.
defaultFontPixelWidth
property
var
curVehicle
:
controller
?
controller
.
activeVehicle
:
null
property
int
curMessageIndex
:
0
property
int
curMessageIndex
:
0
property
var
curMessage
:
curVehicle
&&
curVehicle
.
messages
.
count
?
curVehicle
.
messages
.
get
(
curMessageIndex
)
:
null
property
int
curCompID
:
0
property
bool
selectionValid
:
false
property
real
maxButtonWidth
:
0
MAVLinkInspectorController
{
id
:
controller
...
...
@@ -76,11 +77,13 @@ Item {
anchors.topMargin
:
ScreenTools
.
defaultFontPixelHeight
anchors.bottom
:
parent
.
bottom
anchors.left
:
parent
.
left
width
:
buttonCol
.
w
idth
contentWidth
:
buttonCol
.
width
width
:
maxButtonW
idth
contentWidth
:
width
contentHeight
:
buttonCol
.
height
ColumnLayout
{
id
:
buttonCol
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
spacing
:
ScreenTools
.
defaultFontPixelHeight
*
0.25
Repeater
{
model
:
curVehicle
?
curVehicle
.
messages
:
[]
...
...
@@ -94,7 +97,7 @@ Item {
selectionValid
=
true
curMessageIndex
=
index
}
Layout.
minimumWidth
:
ScreenTools
.
defaultFontPixelWidth
*
40
Layout.
fillWidth
:
true
}
}
}
...
...
src/QmlControls/MAVLinkMessageButton.qml
View file @
788ec028
...
...
@@ -18,6 +18,12 @@ Button {
id
:
control
height
:
ScreenTools
.
defaultFontPixelHeight
*
2
autoExclusive
:
true
leftPadding
:
ScreenTools
.
defaultFontPixelWidth
rightPadding
:
leftPadding
property
real
_compIDWidth
:
ScreenTools
.
defaultFontPixelWidth
*
3
property
real
_hzWidth
:
ScreenTools
.
defaultFontPixelWidth
*
7
property
real
_nameWidth
:
nameLabel
.
contentWidth
background
:
Rectangle
{
anchors.fill
:
parent
...
...
@@ -28,20 +34,27 @@ Button {
property
int
compID
:
0
contentItem
:
RowLayout
{
id
:
rowLayout
spacing
:
ScreenTools
.
defaultFontPixelWidth
QGCLabel
{
text
:
control
.
compID
color
:
checked
?
qgcPal
.
buttonHighlightText
:
qgcPal
.
buttonText
Layout.minimumWidth
:
ScreenTools
.
defaultFontPixelWidth
*
3
Layout.minimumWidth
:
_compIDWidth
}
QGCLabel
{
id
:
nameLabel
text
:
control
.
text
color
:
checked
?
qgcPal
.
buttonHighlightText
:
qgcPal
.
buttonText
Layout.
minimumWidth
:
ScreenTools
.
defaultFontPixelWidth
*
28
Layout.
fillWidth
:
true
}
QGCLabel
{
color
:
checked
?
qgcPal
.
buttonHighlightText
:
qgcPal
.
buttonText
text
:
messageHz
.
toFixed
(
1
)
+
'
Hz
'
Layout.alignment
:
Qt
.
AlignRight
horizontalAlignment
:
Text
.
AlignRight
Layout.minimumWidth
:
_hzWidth
}
}
Component.onCompleted
:
maxButtonWidth
=
Math
.
max
(
maxButtonWidth
,
_compIDWidth
+
_hzWidth
+
_nameWidth
+
(
rowLayout
.
spacing
*
2
)
+
(
control
.
leftPadding
*
2
))
}
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