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