30 lines
546 B
QML
30 lines
546 B
QML
|
import QtQuick 2.0
|
||
|
import QtQuick.Controls 1.1
|
||
|
import QtQuick.Layouts 1.1
|
||
|
|
||
|
Item {
|
||
|
default property alias children : inner_layout.children
|
||
|
property int value
|
||
|
width: 100
|
||
|
height: 32
|
||
|
|
||
|
ExclusiveGroup {
|
||
|
id: choice_group
|
||
|
|
||
|
onCurrentChanged: value = current.value
|
||
|
}
|
||
|
|
||
|
Row {
|
||
|
id: inner_layout
|
||
|
spacing: 5
|
||
|
anchors.fill: parent
|
||
|
}
|
||
|
|
||
|
onChildrenChanged: {
|
||
|
for (var i = 0; i < children.length; i++)
|
||
|
{
|
||
|
children[i].exclusiveGroup = choice_group;
|
||
|
}
|
||
|
}
|
||
|
}
|