blob: bc864229687f335435bbc6fe6bed8dada38801c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
------------------------------------------------------------------------------
-- Separator class
------------------------------------------------------------------------------
local ctrl = {
nick = "separator",
parent = iup.WIDGET,
creation = "",
callback = {}
}
function ctrl.createElement(class, param)
return iup.Separator()
end
iup.RegisterWidget(ctrl)
iup.SetClass(ctrl, "iup widget")
|