-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample01.lua
36 lines (32 loc) · 1.04 KB
/
example01.lua
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
local lpugl = require"lpugl_cairo"
local world = lpugl.newWorld("Hello World App")
local scale = world:getScreenScale()
local view = world:newView
{
title = "Hello World Window",
size = {300*scale, 100*scale},
resizable = true,
eventFunc = function(view, event, ...)
print(event, ...)
if event == "EXPOSE" then
local cairo = view:getDrawContext()
local w, h = view:getSize()
cairo:set_source_rgb(0.9, 0.9, 0.9)
cairo:rectangle(0, 0, w, h)
cairo:fill()
cairo:set_source_rgb(0, 0, 0)
cairo:select_font_face("sans-serif", "normal", "normal")
cairo:set_font_size(24*scale)
local text = "Hello World!"
local ext = cairo:text_extents(text)
cairo:move_to((w - ext.width)/2, (h - ext.height)/2 + ext.height)
cairo:show_text(text)
elseif event == "CLOSE" then
view:close()
end
end
}
view:show()
while world:hasViews() do
world:update()
end