summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/Widgets/GridViewPresetItemWidget.qml
blob: fa2cb44918d044c8452b29047677b310e8d8af88 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// import QtQuick 2.0 // to target S60 5th Edition or Maemo 5
import QtQuick 2.0
import com.ford.hmiframework 1.0
import "../Widgets"
import "../WidgetLayouts"

FWidget {
    id: w
    height: 115
    width: 169

    property int currPreset: 0
    property bool pressed: false



    layout: GridViewPresetItemLayout {
        id: l
        presetName: menuText
        pressed: w.pressed
        presetNumber: index + 1
    }

    FViewUseCaseSimple {
        condition: isEnabled == false
        PropertyChanges { target: l
            opacity: 0.5
        }
    }

    FViewUseCaseSimple {
        condition: w.currPreset===index+1
        PropertyChanges { target: w; pressed: true}
    }

    triggers: [
        FTrgTouchArea { touchArea: l.touchBtn.touchBtn; touchAction: TA.Out
            FActScriptCall { onScript: w.GridView.view.model.selectElement(index) }
        }
    ]
}