aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/studiowelcome/qml/welcomepage/mockData/projectmodel/ProjectModel.qml
blob: b5c42aa67c1c6de4ba899fc3e876c3f999ab9f60 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

import QtQuick 2.0

ListModel {

    property bool communityVersion: true
    ListElement {
        displayName: "Project 01"
        prettyFilePath: "my_file_1"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 02"
        prettyFilePath: "my_file_2"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 03"
        prettyFilePath: "my_file_3"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 04"
        prettyFilePath: "my_file_4"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 05"
        prettyFilePath: "my_file_5"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 06"
        prettyFilePath: "my_file_6"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 07"
        prettyFilePath: "my_file_7"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 08"
        filename: "my_file_8"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 09"
        filename: "my_file_9"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 10"
        prettyFilePath: "my_file_10"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 11"
        filename: "my_file_11"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 12"
        prettyFilePath: "my_file_12"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 13"
        filename: "my_file_13"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 14"
        prettyFilePath: "my_file_14"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 15"
        filename: "my_file_15"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 16"
        filename: "my_file_16"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 17"
        filename: "my_file_17"
        thumbnail: "images/thumbnail_test.png"
    }

    ListElement {
        displayName: "Project 18"
        prettyFilePath: "my_file_18"
        thumbnail: "images/thumbnail_test.png"
    }
}