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