ExclusiveGroupItem.qml 426 Bytes
Newer Older
1 2
import QtQuick                  2.3
import QtQuick.Controls         1.2
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18


/// The ExclusiveGroupItem control can be used as a base class for a control which
/// needs support for ExclusiveGroup
Item {
    id: _root

    property bool checked: false
    property ExclusiveGroup exclusiveGroup: null

    onExclusiveGroupChanged: {
        if (exclusiveGroup) {
            exclusiveGroup.bindCheckable(_root)
        }
    }
}