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