2012-01-05 02:28:29 +01:00
|
|
|
UICheckBox = extends(UIWidget)
|
|
|
|
|
|
|
|
function UICheckBox.create()
|
|
|
|
local checkbox = UICheckBox.internalCreate()
|
|
|
|
checkbox:setFocusable(false)
|
2012-01-10 23:13:40 +01:00
|
|
|
checkbox:setTextAlign(AlignLeft)
|
2012-01-05 02:28:29 +01:00
|
|
|
return checkbox
|
|
|
|
end
|
2012-01-10 23:13:40 +01:00
|
|
|
|
2012-02-08 00:06:52 +01:00
|
|
|
function UICheckBox:onMousePress(mousePos, mouseButton)
|
|
|
|
self:setChecked(not self:isChecked())
|
|
|
|
return true
|
2012-01-10 23:13:40 +01:00
|
|
|
end
|