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
d8faf3ac
Commit
d8faf3ac
authored
Jun 12, 2016
by
Don Gagne
Committed by
GitHub
Jun 12, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3546 from DonLakeFlyer/GuidedBarFont
Guider bar font sizing changes
parents
e562f417
a73ba2f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
FlightDisplayViewWidgets.qml
src/FlightDisplay/FlightDisplayViewWidgets.qml
+8
-5
SliderSwitch.qml
src/QmlControls/SliderSwitch.qml
+4
-2
No files found.
src/FlightDisplay/FlightDisplayViewWidgets.qml
View file @
d8faf3ac
...
...
@@ -284,6 +284,8 @@ Item {
z
:
QGroundControl
.
zOrderWidgets
state
:
"
Shown
"
property
real
_fontPointSize
:
ScreenTools
.
isMobile
?
ScreenTools
.
largeFontPointSize
:
ScreenTools
.
defaultFontPointSize
states
:
[
State
{
name
:
"
Shown
"
...
...
@@ -448,28 +450,28 @@ Item {
spacing
:
_margins
*
2
QGCButton
{
pointSize
:
ScreenTools
.
largeF
ontPointSize
pointSize
:
_guidedModeBar
.
_f
ontPointSize
text
:
(
_activeVehicle
&&
_activeVehicle
.
armed
)
?
(
_activeVehicle
.
flying
?
qsTr
(
"
Emergency Stop
"
)
:
qsTr
(
"
Disarm
"
))
:
qsTr
(
"
Arm
"
)
visible
:
_activeVehicle
onClicked
:
_guidedModeBar
.
confirmAction
(
_activeVehicle
.
armed
?
(
_activeVehicle
.
flying
?
_guidedModeBar
.
confirmEmergencyStop
:
_guidedModeBar
.
confirmDisarm
)
:
_guidedModeBar
.
confirmArm
)
}
QGCButton
{
pointSize
:
ScreenTools
.
largeF
ontPointSize
pointSize
:
_guidedModeBar
.
_f
ontPointSize
text
:
qsTr
(
"
RTL
"
)
visible
:
(
_activeVehicle
&&
_activeVehicle
.
armed
)
&&
_activeVehicle
.
guidedModeSupported
&&
_activeVehicle
.
flying
onClicked
:
_guidedModeBar
.
confirmAction
(
_guidedModeBar
.
confirmHome
)
}
QGCButton
{
pointSize
:
ScreenTools
.
largeF
ontPointSize
pointSize
:
_guidedModeBar
.
_f
ontPointSize
text
:
(
_activeVehicle
&&
_activeVehicle
.
flying
)
?
qsTr
(
"
Land
"
):
qsTr
(
"
Takeoff
"
)
visible
:
_activeVehicle
&&
_activeVehicle
.
guidedModeSupported
&&
_activeVehicle
.
armed
onClicked
:
_guidedModeBar
.
confirmAction
(
_activeVehicle
.
flying
?
_guidedModeBar
.
confirmLand
:
_guidedModeBar
.
confirmTakeoff
)
}
QGCButton
{
pointSize
:
ScreenTools
.
largeF
ontPointSize
pointSize
:
_guidedModeBar
.
_f
ontPointSize
text
:
qsTr
(
"
Pause
"
)
visible
:
(
_activeVehicle
&&
_activeVehicle
.
armed
)
&&
_activeVehicle
.
pauseVehicleSupported
&&
_activeVehicle
.
flying
onClicked
:
{
...
...
@@ -479,7 +481,7 @@ Item {
}
QGCButton
{
pointSize
:
ScreenTools
.
largeF
ontPointSize
pointSize
:
_guidedModeBar
.
_f
ontPointSize
text
:
qsTr
(
"
Change Altitude
"
)
visible
:
(
_activeVehicle
&&
_activeVehicle
.
flying
)
&&
_activeVehicle
.
guidedModeSupported
&&
_activeVehicle
.
armed
onClicked
:
_guidedModeBar
.
confirmAction
(
_guidedModeBar
.
confirmChangeAlt
)
...
...
@@ -503,6 +505,7 @@ Item {
height
:
_guidedModeBar
.
height
visible
:
false
z
:
QGroundControl
.
zOrderWidgets
fontPointSize
:
_guidedModeBar
.
_fontPointSize
onAccept
:
{
guidedModeConfirm
.
visible
=
false
...
...
src/QmlControls/SliderSwitch.qml
View file @
d8faf3ac
...
...
@@ -15,7 +15,8 @@ Rectangle {
signal
accept
///< Action confirmed
signal
reject
///< Action rejected
property
string
confirmText
///< Text for slider
property
string
confirmText
///< Text for slider
property
alias
fontPointSize
:
label
.
font
.
pointSize
///< Point size for text
property
real
_border
:
4
property
real
_diameter
:
height
-
(
_border
*
2
)
...
...
@@ -26,7 +27,6 @@ Rectangle {
id
:
label
anchors.horizontalCenter
:
parent
.
horizontalCenter
anchors.verticalCenter
:
parent
.
verticalCenter
font.pointSize
:
ScreenTools
.
largeFontPointSize
text
:
qsTr
(
"
Slide to %1
"
).
arg
(
confirmText
)
}
...
...
@@ -48,6 +48,8 @@ Rectangle {
fillMode
:
Image
.
PreserveAspectFit
smooth
:
false
mipmap
:
false
color
:
qgcPal
.
text
cache
:
false
source
:
"
/res/ArrowRight.svg
"
...
...
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