summaryrefslogtreecommitdiff
path: root/iup/srclua5/progressbar.lua
blob: e591e4979d0857ad350c07ebcd92ac7142152cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
------------------------------------------------------------------------------
-- ProgressBar class 
------------------------------------------------------------------------------
local ctrl = {
  nick = "progressbar",
  parent = iup.WIDGET,
  creation = "",
  funcname = "ProgressBar",
  callback = {}
} 

function ctrl.createElement(class, param)
   return iup.ProgressBar()
end
   
iup.RegisterWidget(ctrl)
iup.SetClass(ctrl, "iup widget")