summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/Views/PhonePCA.qml
blob: 40969a3a64fb0ecd4ae00b70901bf78205dbdabd (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// import QtQuick 2.0 // to target S60 5th Edition or Maemo 5
import QtQuick 2.0
import com.ford.hmiframework 1.0
import "../Layouts"
import "../Animations"
import "../Widgets"

FStateView {
    id:sv
    priority: 2

    view: FView {
        //viewClass: baseScreen
        layout: TileBackImgLayoutPCA {
            id:l

            //useClose: true
            listWrap: false
            list_data: FProxyListModel {
                id: menuProxy
                sourceModel: menuItemData
            }
            list_itemWidget: GridViewImgItemWidget {

            }
        }

        FMenuModel {
            id: menuItemData
            FMenuElement { id: phone; menuIcon: "menu/phone.png"}
            FMenuElement { id: dnd; menuIcon: "phone/DNDoff.png" }
            FMenuElement { id: phoneBook; menuIcon: "phone/contacts.png"  }
            FMenuElement { id: recent; menuIcon: "phone/recent.png"  }
            FMenuElement { id: messages; menuIcon: "phone/messages.png"   }
            FMenuElement { id: keyPad; menuIcon: "phone/keypad.png"  }
            FMenuElement { id: textMsg; menuIcon: "phone/texts.png"  }
            FMenuElement { id: more; menuIcon: "phone/more.png"}
        }

        FViewUseCaseSimple { condition: sv.isInEntry
            PropertyChanges { target: l; list_data: null }
        }
    }

    baseBehavior: GenListHandling {}

    triggers: [
        // Example for a menu element trigger. This will only work for FMenuModels.
        FTrgMenuElement { menuElement: phone
        },
        FTrgMenuElement { menuElement: dnd
        },
        FTrgMenuElement { menuElement: phoneBook
            FActViewShow { view: "AlphaSortPCA" }
        },
        FTrgMenuElement { menuElement: recent
        },
        FTrgMenuElement { menuElement: more
        },
        FTrgMenuElement { menuElement: messages
        },
        FTrgMenuElement { menuElement: keyPad
        },
        FTrgMenuElement { menuElement: textMsg
        },
        FTrgTouchArea { touchArea:l.close; touchAction: TA.Out
            FActViewShow { view: "GridMenuPCA" }
        },
        FTrgListModel { id: trgList; model: menuItemData
            FActScriptCall { onScript: { FLogger.debug("Test", trgList.element.menuText + ", index: " + trgList.index) } }
        },
        FTrgEntry {
            FActScriptCall { onScript: { FLogger.debug("Test", "Entry") } }
        },
        FTrgEntryComplete {
            FActScriptCall { onScript: { FLogger.debug("Test", "EntryComplete") } }
        },
        FTrgExit {
            FActScriptCall { onScript: { FLogger.debug("Test", "Exit") } }
        },
        FTrgExitComplete {
            FActScriptCall { onScript: { FLogger.debug("Test", "ExitComplete") } }
        }
    ]
}