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