forked from qt-creator/qt-creator
27 lines
615 B
QML
27 lines
615 B
QML
|
|
import QtQuick 1.0
|
||
|
|
import "custom" as Components
|
||
|
|
import "plugin"
|
||
|
|
|
||
|
|
// jb : Size should not depend on background, we should make it consistent
|
||
|
|
|
||
|
|
Components.CheckBox{
|
||
|
|
id:checkbox
|
||
|
|
property string text
|
||
|
|
property string hint
|
||
|
|
height:20
|
||
|
|
width: Math.max(110, backgroundItem.textWidth(text) + 40)
|
||
|
|
|
||
|
|
background: QStyleItem {
|
||
|
|
elementType:"checkbox"
|
||
|
|
sunken:pressed
|
||
|
|
on:checked || pressed
|
||
|
|
hover:containsMouse
|
||
|
|
text:checkbox.text
|
||
|
|
enabled:checkbox.enabled
|
||
|
|
focus:checkbox.focus
|
||
|
|
hint:checkbox.hint
|
||
|
|
}
|
||
|
|
Keys.onSpacePressed:checked = !checked
|
||
|
|
}
|
||
|
|
|