summaryrefslogtreecommitdiff
path: root/rockwork/qml/PebbleModels.qml
blob: 103064ad2441446cc4ab1139968ef6eb6fe162f8 (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.4

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