blob: b98984c4af84f9076d9a219db062ce86661687d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
------------------------------------------------------------------------------
-- VBox class
------------------------------------------------------------------------------
local ctrl = {
nick = "vbox",
parent = BOX,
creation = "-",
callback = {}
}
function ctrl.append (handle, elem)
Append(handle, elem)
end
function ctrl.createElement(class, arg)
return Vbox()
end
iupRegisterWidget(ctrl)
iupSetClass(ctrl, "iup widget")
|