diff --git a/src/plugins/studiowelcome/qml/welcomepage/ExamplesModel.qml b/src/plugins/studiowelcome/qml/welcomepage/ExamplesModel.qml index 3f33f0205e8..25257f9ea7d 100644 --- a/src/plugins/studiowelcome/qml/welcomepage/ExamplesModel.qml +++ b/src/plugins/studiowelcome/qml/welcomepage/ExamplesModel.qml @@ -75,6 +75,13 @@ ListModel { displayName: "Washing Machine" } + ListElement { + projectName: "SimpleKeyboard" + qmlFileName: "SimpleKeyboard.qml" + thumbnail: "images/virtualkeyboard_thumbnail.png" + displayName: "Virtual Keyboard" + } + ListElement { projectName: "highendivisystem" qmlFileName: "Screen01.ui.qml" @@ -83,4 +90,13 @@ ListModel { url: "https://download.qt.io/learning/examples/qtdesignstudio/highendivisystem.zip" showDownload: true } + + ListElement { + projectName: "highendivisystem" + qmlFileName: "Screen01.ui.qml" + thumbnail: "images/digital_cluster_thumbnail.png" + displayName: "Digital Cluster" + url: "https://download.qt.io/learning/examples/qtdesignstudio/digitalcluster.zip" + showDownload: true + } } diff --git a/src/plugins/studiowelcome/qml/welcomepage/TutorialsModel.qml b/src/plugins/studiowelcome/qml/welcomepage/TutorialsModel.qml index 770726d9327..516d623d637 100644 --- a/src/plugins/studiowelcome/qml/welcomepage/TutorialsModel.qml +++ b/src/plugins/studiowelcome/qml/welcomepage/TutorialsModel.qml @@ -141,8 +141,20 @@ ListModel { } ListElement { - displayName: "Getting Started - Create New Project" + displayName: "Create New Project" thumbnail: "images/gettingStarted_newProject.png" url: "https://youtu.be/9ihYeC0YJ0M" } + + ListElement { + displayName: "Using Qt Quick 3D Components" + thumbnail: "images/gettingStarted_3dComponents.png" + url: "https://youtu.be/u3kZJjlk3CY" + } + + ListElement { + displayName: "Using Custom Shaders, Materials, and Effects" + thumbnail: "images/gettingStarted_shaders.png" + url: "https://youtu.be/bMXeeQw6BYs" + } } diff --git a/src/plugins/studiowelcome/qml/welcomepage/images/digital_cluster_thumbnail.png b/src/plugins/studiowelcome/qml/welcomepage/images/digital_cluster_thumbnail.png new file mode 100644 index 00000000000..afad8c8c7b8 Binary files /dev/null and b/src/plugins/studiowelcome/qml/welcomepage/images/digital_cluster_thumbnail.png differ diff --git a/src/plugins/studiowelcome/qml/welcomepage/images/gettingStarted_3dComponents.png b/src/plugins/studiowelcome/qml/welcomepage/images/gettingStarted_3dComponents.png new file mode 100644 index 00000000000..9708bff0832 Binary files /dev/null and b/src/plugins/studiowelcome/qml/welcomepage/images/gettingStarted_3dComponents.png differ diff --git a/src/plugins/studiowelcome/qml/welcomepage/images/gettingStarted_shaders.png b/src/plugins/studiowelcome/qml/welcomepage/images/gettingStarted_shaders.png new file mode 100644 index 00000000000..70e17747049 Binary files /dev/null and b/src/plugins/studiowelcome/qml/welcomepage/images/gettingStarted_shaders.png differ diff --git a/src/plugins/studiowelcome/qml/welcomepage/images/virtualkeyboard_thumbnail.png b/src/plugins/studiowelcome/qml/welcomepage/images/virtualkeyboard_thumbnail.png new file mode 100644 index 00000000000..20471299a9a Binary files /dev/null and b/src/plugins/studiowelcome/qml/welcomepage/images/virtualkeyboard_thumbnail.png differ