17 lines
453 B
Text
17 lines
453 B
Text
|
gui.widgets.Switch = {
|
||
|
new: func(parent, style = nil, cfg = nil) {
|
||
|
cfg = cfg or {};
|
||
|
cfg["type"] = "switch";
|
||
|
var m = gui.widgets.Button.new(parent, style, cfg);
|
||
|
m._checkable = 1;
|
||
|
|
||
|
append(m.parents, gui.widgets.Switch);
|
||
|
|
||
|
m.setFixedSize(48, 24);
|
||
|
return m;
|
||
|
},
|
||
|
setCheckable: nil,
|
||
|
setText: nil,
|
||
|
};
|
||
|
|