File: manykeysequenceitemtest.qml

package info (click to toggle)
kf6-kdeclarative 6.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,320 kB
  • sloc: cpp: 3,020; sh: 18; makefile: 7
file content (28 lines) | stat: -rw-r--r-- 672 bytes parent folder | download | duplicates (3)
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
import QtQuick 2.15
import QtQuick.Window 2.15
import QtQuick.Layouts 1.15

import org.kde.kirigami 2.11 as Kirigami
import org.kde.kquickcontrols 2.0

Kirigami.ApplicationWindow {
    width: 640
    height: 480
    visible: true
    title: qsTr("Test")

    ColumnLayout {
        KeySequenceItem {
            checkForConflictsAgainst: ShortcutType.None
            modifierlessAllowed: true
        }
        KeySequenceItem {
            checkForConflictsAgainst: ShortcutType.None
            modifierlessAllowed: true
        }
        KeySequenceItem {
            checkForConflictsAgainst: ShortcutType.None
            modifierlessAllowed: true
        }
    }
}