forked from qt-creator/qt-creator
118 lines
2.7 KiB
QML
118 lines
2.7 KiB
QML
|
|
// Copyright (C) 2024 The Qt Company Ltd.
|
||
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||
|
|
|
||
|
|
import QtQuick
|
||
|
|
|
||
|
|
ListModel {
|
||
|
|
property bool communityVersion: true
|
||
|
|
property bool designMode: 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"
|
||
|
|
}
|
||
|
|
}
|