blob: 3fd886f25f029a622973eba3ab4b9c2e39569de9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
IUPGAUGE = {parent = WIDGET}
function IUPGAUGE:CreateIUPelement (obj)
return iupCreateGauge ()
end
function iupgauge (o)
return IUPGAUGE:Constructor (o)
end
iup.gauge = iupgauge
|