27 lines
504 B
QML
27 lines
504 B
QML
|
|
import QtQuick 2.0
|
||
|
|
import QtQuick.Controls
|
||
|
|
BaseCommon
|
||
|
|
{
|
||
|
|
width: parent.width
|
||
|
|
height: 25
|
||
|
|
Item
|
||
|
|
{
|
||
|
|
id: titleItem
|
||
|
|
width: 100
|
||
|
|
height: parent.height
|
||
|
|
CheckBox{
|
||
|
|
id: cb
|
||
|
|
text: title
|
||
|
|
anchors.left: parent.left
|
||
|
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
|
onCheckedChanged: {
|
||
|
|
value = checked
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function setValue(_value)
|
||
|
|
{
|
||
|
|
cb.checked = _value
|
||
|
|
}
|
||
|
|
}
|