summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Look/Widgets/PresetPCA.qml
blob: a575ff91eb945d07b181450de9d590ab16345843 (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 active: button.active
    property alias presetNumber: button.text
    property alias presetName: button.presetText
    property alias touchBtn: button.touchBtn


    clip: false



    layout: PresetPCALayout{
        id:button
    }



}