/**************************************************************************** * * (c) 2009-2019 QGROUNDCONTROL PROJECT * * QGroundControl is licensed according to the terms in the file * COPYING.md in the root of the source code directory. * * @file * @author Gus Grubba */ import QtQuick 2.11 import QtQuick.Controls 2.4 import QtQuick.Layouts 1.11 import QGroundControl.Controls 1.0 import QGroundControl.Palette 1.0 import QGroundControl.ScreenTools 1.0 ComboBox { id: control padding: ScreenTools.comboBoxPadding property bool centeredLabel: false background: Rectangle { implicitWidth: ScreenTools.implicitComboBoxWidth implicitHeight: ScreenTools.implicitComboBoxHeight color: qgcPal.textField border.width: enabled ? 1 : 0 border.color: "#999" } /*! This defines the label of the button. */ contentItem: Item { implicitWidth: text.implicitWidth implicitHeight: text.implicitHeight QGCLabel { id: text anchors.verticalCenter: parent.verticalCenter anchors.horizontalCenter: centeredLabel ? parent.horizontalCenter : undefined text: control.currentText color: qgcPal.textFieldText } } }