File: pointergesturestest.qml

package info (click to toggle)
kwin 4%3A5.27.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 55,968 kB
  • sloc: cpp: 219,194; javascript: 2,299; xml: 1,540; ansic: 831; python: 140; sh: 114; perl: 16; makefile: 14
file content (16 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
    SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>

    SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
import QtQuick 2.0
import org.kde.kwin.tests 1.0

Image {
    source: "../48-apps-kwin.png"
    scale: gesture.scale * gesture.progressScale

    PinchGesture {
        id: gesture
    }
}