私は lua を初めて使用し、 conkyのスクリプトを作成することでさらに詳しくしようとしていました。私の例では、キャンバスに追加できるキャンバス オブジェクトとドローアブル オブジェクト(つまり、テキスト オブジェクト) に cairo 機能をカプセル化しようとしていました。
cairo_surfaceとcairoオブジェクトをテーブルに保存しようとすると、それらを使用できなくなりました。2 番目の例では、エラーは発生しませんでしたが(メッセージ、segfault、またはリークは発生しませんでした)、テキストは表示されませんでした。
この例は機能します:
Canvas = {
init = function (w)
local cs = cairo_xlib_surface_create(w.display,w.drawable,w.visual,w.width,w.height)
local cr = cairo_create(cs)
return cr, cs
end,
destroy = function (cr, cs)
cairo_destroy(cr)
cairo_surface_destroy(cs)
end
}
function conky_main ()
if conky_window == nil then
return
else
local cr, cs = Canvas.init(conky_window)
local tx = Text:new{text="Hello World!"}
tx:draw(cr)
Canvas.destroy(cr, cs)
end
end
この例は機能しません:
Canvas = {
init = function (w) -- returns table instead of 2 variables
return {
cs = cairo_xlib_surface_create(w.display,w.drawable,w.visual,w.width,w.height),
cr = cairo_create(cs)
}
end,
destroy = function (cnv)
cairo_destroy(cnv.cr)
cairo_surface_destroy(cnv.cs)
end
}
function conky_main ()
if conky_window == nil then
return
else
local cnv = Canvas.init(conky_window)
local tx = Text:new{text="Hello World!"}
tx:draw(cnv.cr) -- access table member instead of variable
Canvas.destroy(cnv)
end
end