summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Look/Widgets/TouchButton_PCA.qml
blob: e46dbf28c526e4874b96ed7c87b3520ba00ae322 (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
25
26
27
import QtQuick 2.0
import com.ford.hmiframework 1.0
import "../Widgets"
import "../WidgetLayouts"

FWidget {

    id:pcaButton


    property alias text: button.text
    property alias textWidth: button.centerWidth
    property alias touchBtn: button.touchBtn
    property alias pressed: button.pressed
    width: textWidth+44
    clip: false



    layout: TouchButtonPCALayout{
        id:button
    }



}