Newer
Older
import QtQuick 2.3
import QtQuick.Controls 1.2
import QtGraphicalEffects 1.0
import QGroundControl.Palette 1.0
import QGroundControl.ScreenTools 1.0
property bool setupComplete: true ///< true: setup complete indicator shows as completed
property bool setupIndicator: true ///< true: show setup complete indicator
property string imageResource: "/qmlimages/subMenuButtonImage.png" ///< Button image
property size sourceSize: Qt.size(ScreenTools.defaultFontPixelHeight * 2, ScreenTools.defaultFontPixelHeight * 2)
text: "Button" ///< Pass in your own button text
implicitHeight: ScreenTools.isTinyScreen ? ScreenTools.defaultFontPixelHeight * 3.5 : ScreenTools.defaultFontPixelHeight * 2.5
QGCPalette {
id: qgcPal
colorGroupEnabled: control.enabled
property bool showHighlight: control.pressed | control.checked
color: showHighlight ? qgcPal.buttonHighlight : qgcPal.windowShade
implicitWidth: titleBar.x + titleBar.contentWidth + ScreenTools.defaultFontPixelWidth
QGCColoredImage {
id: image
anchors.leftMargin: ScreenTools.defaultFontPixelWidth
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
width: ScreenTools.defaultFontPixelHeight * 2
height: ScreenTools.defaultFontPixelHeight * 2
fillMode: Image.PreserveAspectFit
color: control.setupComplete ? qgcPal.button : "red"
source: control.imageResource
sourceSize: _rootButton.sourceSize
QGCLabel {
id: titleBar
anchors.leftMargin: ScreenTools.defaultFontPixelWidth
anchors.left: image.right
anchors.verticalCenter: parent.verticalCenter
verticalAlignment: TextEdit.AlignVCenter
color: showHighlight ? qgcPal.buttonHighlightText : qgcPal.buttonText
text: control.text