2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2012-02-03 04:43:05 +00:00
|
|
|
|
2021-08-23 13:14:25 +00:00
|
|
|
import QtQuick
|
2021-08-31 15:54:15 +00:00
|
|
|
import shared as Shared
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Item {
|
2012-02-03 04:43:05 +00:00
|
|
|
height: 480
|
2012-02-28 03:20:56 +00:00
|
|
|
width: 320
|
2021-08-23 13:14:25 +00:00
|
|
|
Shared.LauncherList {
|
2012-02-03 04:43:05 +00:00
|
|
|
id: ll
|
2023-03-30 07:12:28 +00:00
|
|
|
|
2012-02-03 04:43:05 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
Component.onCompleted: {
|
2023-03-30 07:12:28 +00:00
|
|
|
addExample(qsTr("BorderImage"), qsTr("An image with scaled borders"), Qt.resolvedUrl("borderimage.qml"))
|
|
|
|
addExample(qsTr("Image"), qsTr("A showcase of the options available to Image"), Qt.resolvedUrl("image.qml"))
|
|
|
|
addExample(qsTr("Shadows"), qsTr("Rectangles with a drop-shadow effect"), Qt.resolvedUrl("shadows.qml"))
|
|
|
|
addExample(qsTr("AnimatedImage"), qsTr("An image which plays animated formats"), Qt.resolvedUrl("animatedimage.qml"))
|
|
|
|
addExample(qsTr("AnimatedSprite"), qsTr("A simple sprite-based animation"), Qt.resolvedUrl("animatedsprite.qml"))
|
|
|
|
addExample(qsTr("SpriteSequence"), qsTr("A sprite-based animation with complex transitions"), Qt.resolvedUrl("spritesequence.qml"))
|
|
|
|
addExample(qsTr("FrameStepping"), qsTr("A multi-frame non-animated image"), Qt.resolvedUrl("framestepping.qml"))
|
|
|
|
addExample(qsTr("MultiBorderImage"), qsTr("A multi-frame image with scaled borders"), Qt.resolvedUrl("multiframeborderimage.qml"))
|
2012-02-03 04:43:05 +00:00
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|