blob: 53cda70a4a47a8f9bed0fdf155fdb00c5a7c1cb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
------------------------------------------------------------------------------
-- Timer class
------------------------------------------------------------------------------
local ctrl = {
nick = "timer",
parent = WIDGET,
creation = "",
callback = {
action_cb = "",
},
}
function ctrl.createElement(class, arg)
return Timer()
end
iupRegisterWidget(ctrl)
iupSetClass(ctrl, "iup widget")
|