19 lines
500 B
Lua
Executable File
19 lines
500 B
Lua
Executable File
------------------------------------------------------------------------------
|
|
-- AnimatedLabel class
|
|
------------------------------------------------------------------------------
|
|
local ctrl = {
|
|
nick = "animatedlabel",
|
|
parent = iup.WIDGET, -- not a BOX
|
|
subdir = "elem",
|
|
creation = "I",
|
|
funcname = "AnimatedLabel",
|
|
callback = {}
|
|
}
|
|
|
|
function ctrl.createElement(class, param)
|
|
return iup.AnimatedLabel(param[0]) -- not a BOX
|
|
end
|
|
|
|
iup.RegisterWidget(ctrl)
|
|
iup.SetClass(ctrl, "iupWidget")
|