26 lines
573 B
Lua
Executable File
26 lines
573 B
Lua
Executable File
------------------------------------------------------------------------------
|
|
-- Colorbar class
|
|
------------------------------------------------------------------------------
|
|
local ctrl = {
|
|
nick = "colorbar",
|
|
parent = iup.WIDGET,
|
|
creation = "",
|
|
subdir = "elem",
|
|
callback = {
|
|
select_cb = "nn",
|
|
cell_cb = {"n", ret = "s"},
|
|
switch_cb = "nn",
|
|
extended_cb = "n",
|
|
},
|
|
}
|
|
|
|
iup.PRIMARY = -1
|
|
iup.SECONDARY = -2
|
|
|
|
function ctrl.createElement(class, param)
|
|
return iup.Colorbar(param.action)
|
|
end
|
|
|
|
iup.RegisterWidget(ctrl)
|
|
iup.SetClass(ctrl, "iupWidget")
|