aboutsummaryrefslogtreecommitdiffstats
path: root/DemoApplication/controls/CNCheckBox.qml
blob: 3fd12e9bdd0b7f6d80fee92505d74821f620f851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.9
import QtQuick.Controls 2.2
import CursorNavigation 1.0

CheckBox {
    id: root
    CursorNavigation.acceptsCursor: true
    CNCursorIndicator { cursorItem : parent }

    CursorNavigation.onActivated: {
        root.toggle()
    }
}