Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
e52a8e54
Commit
e52a8e54
authored
Feb 25, 2015
by
Don Gagne
Browse files
Respect QGCPalette and ui design
parent
0c388e55
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/QmlControls/QGCComboBox.qml
View file @
e52a8e54
import
QtQuick
2.2
import
QtQuick
.
Controls
1.2
import
QtQuick
.
Controls
.
Styles
1.2
import
QtQuick
.
Controls
.
Private
1.0
import
QGroundControl
.
Palette
1.0
ComboBox
{
property
var
__
palette
:
QGCPalette
{
colorGroupEnabled
:
enabled
}
property
var
__
qgcPal
:
QGCPalette
{
colorGroupEnabled
:
enabled
}
property
bool
__showHighlight
:
pressed
|
hovered
style
:
ComboBoxStyle
{
textColor
:
__showHighlight
?
control
.
__qgcPal
.
buttonHighlightText
:
control
.
__qgcPal
.
buttonText
background
:
Item
{
implicitWidth
:
Math
.
round
(
TextSingleton
.
implicitHeight
*
4.5
)
implicitHeight
:
Math
.
max
(
25
,
Math
.
round
(
TextSingleton
.
implicitHeight
*
1.2
))
Rectangle
{
anchors.fill
:
parent
color
:
__showHighlight
?
control
.
__qgcPal
.
buttonHighlight
:
control
.
__qgcPal
.
button
}
Image
{
id
:
imageItem
visible
:
control
.
menu
!==
null
source
:
"
arrow-down.png
"
anchors.verticalCenter
:
parent
.
verticalCenter
anchors.right
:
parent
.
right
anchors.rightMargin
:
dropDownButtonWidth
/
2
opacity
:
control
.
enabled
?
0.6
:
0.3
}
}
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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