QGCButton.qml 4.4 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2
4
import QtQuick.Controls.Private 1.0
Don Gagne's avatar
Don Gagne committed
5 6

import QGroundControl.Palette 1.0
7
import QGroundControl.ScreenTools 1.0
Don Gagne's avatar
Don Gagne committed
8 9

Button {
10 11 12

    property bool primary: false    // primary: true - primary button for a group of buttons
    property bool showBorder: false ///< true: draw border around button
13 14 15

    property var __qgcPal: QGCPalette { colorGroupEnabled: enabled }

Don Gagne's avatar
Don Gagne committed
16
    property bool __showHighlight: (pressed | hovered | checked) && !__forceHoverOff
Don Gagne's avatar
Don Gagne committed
17

Don Gagne's avatar
Don Gagne committed
18 19 20 21 22
    // This fixes the issue with button hover where if a Button is near the edge oa QQuickWidget you can
    // move the mouse fast enough such that the MouseArea does not trigger an onExited. This is turn
    // cause the hover property to not be cleared correctly.

    property bool __forceHoverOff: false
Don Gagne's avatar
Don Gagne committed
23

Don Gagne's avatar
Don Gagne committed
24 25
    property int __lastGlobalMouseX: 0
    property int __lastGlobalMouseY: 0
Don Gagne's avatar
Don Gagne committed
26

Don Gagne's avatar
Don Gagne committed
27 28 29
    Connections {
        target: __behavior
        onMouseXChanged: {
Don Gagne's avatar
Don Gagne committed
30 31
            __lastGlobalMouseX = ScreenTools.mouseX()
            __lastGlobalMouseY = ScreenTools.mouseY()
Don Gagne's avatar
Don Gagne committed
32 33
        }
        onMouseYChanged: {
Don Gagne's avatar
Don Gagne committed
34 35
            __lastGlobalMouseX = ScreenTools.mouseX()
            __lastGlobalMouseY = ScreenTools.mouseY()
Don Gagne's avatar
Don Gagne committed
36 37 38 39 40 41 42 43 44 45 46
        }
        onEntered: { __forceHoverOff; false; hoverTimer.start() }
        onExited: { __forceHoverOff; false; hoverTimer.stop() }
    }

    Timer {
        id:         hoverTimer
        interval:   250
        repeat:     true

        onTriggered: {
Don Gagne's avatar
Don Gagne committed
47
            if (__lastGlobalMouseX != ScreenTools.mouseX() || __lastGlobalMouseY != ScreenTools.mouseY()) {
Don Gagne's avatar
Don Gagne committed
48 49 50
                __forceHoverOff = true
            } else {
                __forceHoverOff = false
Don Gagne's avatar
Don Gagne committed
51
            }
Don Gagne's avatar
Don Gagne committed
52 53
        }
    }
54

Don Gagne's avatar
Don Gagne committed
55
    style: ButtonStyle {
56 57 58 59 60 61 62 63 64 65 66 67
            /*! The padding between the background and the label components. */
            padding {
                top: 4
                left: 4
                right:  control.menu !== null ? Math.round(TextSingleton.implicitHeight * 0.5) : 4
                bottom: 4
            }

            /*! This defines the background of the button. */
            background: Item {
                property bool down: control.pressed || (control.checkable && control.checked)
                implicitWidth: Math.round(TextSingleton.implicitHeight * 4.5)
68
                implicitHeight: ScreenTools.isMobile ? ScreenTools.defaultFontPixelHeight * 3 * 0.75 : Math.max(25, Math.round(TextSingleton.implicitHeight * 1.2))
69 70

                Rectangle {
71 72 73 74 75 76
                    anchors.fill:   parent
                    border.width:   showBorder ? 1: 0
                    border.color:   __qgcPal.buttonText
                    color:          __showHighlight ?
                                        control.__qgcPal.buttonHighlight :
                                        (primary ? control.__qgcPal.primaryButton : control.__qgcPal.button)
77 78 79 80 81
                }

                Image {
                    id: imageItem
                    visible: control.menu !== null
82
                    source: "/qmlimages/arrow-down.png"
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
                    anchors.verticalCenter: parent.verticalCenter
                    anchors.right: parent.right
                    anchors.rightMargin: padding.right
                    opacity: control.enabled ? 0.6 : 0.5
                }
            }

            /*! This defines the label of the button.  */
            label: Item {
                implicitWidth: row.implicitWidth
                implicitHeight: row.implicitHeight
                baselineOffset: row.y + text.y + text.baselineOffset

                Row {
                    id: row
                    anchors.centerIn: parent
                    spacing: 2

                    Image {
                        source: control.iconSource
                        anchors.verticalCenter: parent.verticalCenter
                    }

                    Text {
107
                        id:             text
108
                        antialiasing:   true
109
                        text:           control.text
Don Gagne's avatar
Don Gagne committed
110
                        font.pixelSize: ScreenTools.defaultFontPixelSize
111

112
                        anchors.verticalCenter: parent.verticalCenter
113

114 115 116 117 118 119
                        color: __showHighlight ?
                            control.__qgcPal.buttonHighlightText :
                            (primary ? control.__qgcPal.primaryButtonText : control.__qgcPal.buttonText)
                    }
                }
            }
Don Gagne's avatar
Don Gagne committed
120 121
        }
}