summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Components/Clickable.qml
blob: 2fdc97d7cd18da12e7efa8d0fb0b311c498f14b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import QtQuick 2.0

Item {
    property alias text: text.text
    property alias pressed: mousearea.pressed
    property alias textAnchors: text.anchors
    signal press

    id: container

    Text {
        id: text
        color: "white"
        font.pixelSize: 16
    }

    MouseArea {
        id: mousearea
        width: parent.width
        height: parent.height

        onClicked: container.press()
    }
}