summaryrefslogtreecommitdiff
path: root/iup/srclua5/dial.lua
blob: 0384b4364af24254e45a6f946752cfb14a07bc11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
------------------------------------------------------------------------------
-- Dial class 
------------------------------------------------------------------------------
local ctrl = {
  nick = "dial",
  parent = WIDGET,
  creation = "s",
  callback = {
     mousemove_cb = "d",       -- already registered by the val, but has a name conflict
--     button_press_cb = "d",    -- already registered by the val
--     button_release_cb = "d",  -- already registered by the val
  },
  include = "iupcontrols.h",
}

function ctrl.createElement(class, arg)
   return Dial(arg[1])
end

iupRegisterWidget(ctrl)
iupSetClass(ctrl, "iup widget")