summaryrefslogtreecommitdiff
path: root/test/lua/iupcdaux.lua
blob: a56ac1a44597402a86ca21edb06acf2e5bf4439d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
require"cdlua"
require"cdluaiup"
require"iuplua"

iupcdaux = {}
iupcdaux.count = 0

-- Function to easy create a new IUP dialog with an IUP canvas,
-- and a CD canvas pointing to that IUP canvas

function iupcdaux.new_dialog(w, h)

  -- defaul size
  w = w or 300
  h = h or 200
  
  cnv = iup.canvas { bgcolor="255 255 255", rastersize=w.."x"..h }
  dlg = iup.dialog { cnv; title="canvas_"..(iupcdaux.count+1) }

  function cnv:map_cb()
    canvas = cd.CreateCanvas(cd.IUP, self)
    self.canvas = canvas     -- store the CD canvas in a IUP attribute
  end
  
  function cnv:action()
    canvas = self.canvas     -- retrieve the CD canvas from the IUP attribute
    canvas:Activate()
    canvas:Clear()
    
    if (self.Draw) then
      self:Draw(canvas)
    end
  end

  function dlg:close_cb()
    cnv = self[1]
    canvas = cnv.canvas     -- retrieve the CD canvas from the IUP attribute
    canvas:Kill()
    self:destroy()
    return iup.IGNORE -- because we destroy the dialog
  end

  iupcdaux.count = iupcdaux.count + 1
  return dlg
end