File: Images.qml

package info (click to toggle)
qt6-declarative 6.8.2%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 305,852 kB
  • sloc: cpp: 760,684; javascript: 514,174; xml: 10,618; python: 2,806; ansic: 2,253; java: 815; sh: 213; makefile: 41; php: 27
file content (81 lines) | stat: -rw-r--r-- 2,360 bytes parent folder | download | duplicates (2)
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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick 2.3

Item {
    Rectangle {
        width: 100
        height: 100
        anchors.centerIn: parent
        color: "red"
        NumberAnimation on rotation { from: 0; to: 360; duration: 2000; loops: Animation.Infinite; }
    }

    Image {
        id: im
        source: "qrc:/qt.png"
        mipmap: true

        // Changing the mipmap property results in...nothing but a warning, but
        // regardless, enable the following to test.
//        Timer {
//            interval: 5000
//            onTriggered: {
//                if (im.mipmap) {
//                    console.log("disabling mipmap");
//                    im.mipmap = false;
//                } else {
//                    console.log("enabling mipmap");
//                    im.mipmap = true;
//                }
//            }
//            running: true
//            repeat: true
//        }

        SequentialAnimation on scale {
            loops: Animation.Infinite
            NumberAnimation {
                from: 1.0
                to: 4.0
                duration: 2000
            }
            NumberAnimation {
                from: 4.0
                to: 0.1
                duration: 3000
            }
            NumberAnimation {
                from: 0.1
                to: 1.0
                duration: 1000
            }
        }

        Image {
            anchors.centerIn: parent
            source: "qrc:/face-smile.png"
        }
    }

    Image {
        source: "qrc:/face-smile.png"
        anchors.bottom: parent.bottom
        anchors.right: parent.right
        antialiasing: true // trigger smooth texture material
        NumberAnimation on rotation { from: 0; to: 360; duration: 2000; loops: Animation.Infinite; }
    }

    Item {
        anchors.right: parent.right
        anchors.top: parent.top
        anchors.margins: 10
        scale: 20
        width: 20
        Image { x: 0; source: "blacknwhite.png"; smooth: false } // solid black
        Image { x: 2; source: "blacknwhite.png"; smooth: true } // fade to white on right
        Image { x: 4; source: "blacknwhite.png"; smooth: false } // solid black
        Image { x: 6; source: "blacknwhite.png"; smooth: true } // fade to white on right
    }
}