blob: 35339704e30fa474588f07711896ab74e680db38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
------------------------------------------------------------------------------
-- Cbox class
------------------------------------------------------------------------------
local ctrl = {
nick = "cbox",
parent = WIDGET,
creation = "v",
callback = {},
funcname = "Cboxv",
createfunc = [[
static int Cboxv(lua_State *L)
{
Ihandle **hlist = iuplua_checkihandle_array(L, 1);
Ihandle *h = IupCboxv(hlist);
iuplua_plugstate(L, h);
iuplua_pushihandle_raw(L, h);
free(hlist);
return 1;
}
]],
}
function ctrl.createElement(class, arg)
return Cboxv(arg)
end
iupRegisterWidget(ctrl)
iupSetClass(ctrl, "iup widget")
|