summaryrefslogtreecommitdiff
path: root/rockwork/qml/PebbleModels.qml
blob: d2248c1dd1aa4a53ce78b0beb7d22cc286a7300c (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
import QtQuick 2.0

ListModel {
    id: modelModel
    ListElement { image: 'tintin-black.png'; shape: "rectangle" } // Fallback for Unknown
    ListElement { image: 'tintin-black.png'; shape: "rectangle" }
    ListElement { image: 'tintin-white.png'; shape: "rectangle" }
    ListElement { image: 'tintin-red.png'; shape: "rectangle" }
    ListElement { image: 'tintin-orange.png'; shape: "rectangle" }
    ListElement { image: 'tintin-grey.png'; shape: "rectangle" }
    ListElement { image: 'bianca-silver.png'; shape: "rectangle" }
    ListElement { image: 'bianca-black.png'; shape: "rectangle" }
    ListElement { image: 'tintin-blue.png'; shape: "rectangle" }
    ListElement { image: 'tintin-green.png'; shape: "rectangle" }
    ListElement { image: 'tintin-pink.png'; shape: "rectangle" }
    ListElement { image: 'snowy-white.png'; shape: "rectangle" }
    ListElement { image: 'snowy-black.png'; shape: "rectangle" }
    ListElement { image: 'snowy-red.png'; shape: "rectangle" }
    ListElement { image: 'bobby-silver.png'; shape: "rectangle" }
    ListElement { image: 'bobby-black.png'; shape: "rectangle" }
    ListElement { image: 'bobby-gold.png'; shape: "rectangle" }
    ListElement { image: 'spalding-14mm-silver.png'; shape: "round" }
    ListElement { image: 'spalding-14mm-black.png'; shape: "round" }
    ListElement { image: 'spalding-20mm-silver.png'; shape: "round" }
    ListElement { image: 'spalding-20mm-black.png'; shape: "round" }
    ListElement { image: 'spalding-14mm-rose-gold.png'; shape: "round" }
}