-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample10.lua
94 lines (83 loc) · 2.99 KB
/
example10.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
local lwtk = require("lwtk")
local Application = lwtk.Application
local Group = lwtk.Group
local Widget = lwtk.Widget
local Color = lwtk.Color
local newClass = lwtk.newClass
local MyButton = newClass("MyButton", Widget)
do
MyButton:declare("onClicked", "text")
function MyButton:setOnClicked(onClicked)
self.onClicked = onClicked
end
function MyButton:setText(text)
self.text = text
self:triggerRedraw()
end
function MyButton.implement:onMouseEnter(x, y)
self:setState("hover", true)
end
function MyButton.implement:onMouseLeave(x, y)
self:setState("hover", false)
end
function MyButton.implement:onMouseDown(x, y, button, modState)
self:setState("pressed", true)
end
function MyButton.implement:onMouseUp(x, y, button, modState)
self:setState("pressed", false)
if self.state.hover and self.onClicked then
self:onClicked()
end
end
function MyButton.implement:onDraw(ctx)
local w, h = self:getSize()
ctx:fillRect(self:getStyleParam("BackgroundColor"), 0, 0, w, h)
ctx:setColor(self:getStyleParam("TextColor"):toRGBA())
if self.text then
ctx:selectFont("sans-serif", "normal", "normal", self:getStyleParam("TextSize"))
local tw, th = ctx:getTextMeasures(self.text)
local fontHeight, fontAscent = ctx:getFontHeightMeasures()
local offs = self:getStyleParam("TextOffset")
local tx = (w - tw)/2
local ty = (h - fontHeight)/2 + fontAscent
ctx:drawText(offs + math.floor(tx+0.5), offs + math.floor(ty+0.5), self.text)
end
end
end
local app = Application {
name = "example10.lua",
style = {
{ "*TransitionSeconds", 0.05 },
{ "HoverTransitionSeconds:", 0.20 },
{ "HoverTransitionSeconds:hover", 0.20 },
{ "PressedTransitionSeconds:pressed", 0.20 },
{ "TextSize", 13 },
{ "TextOffset", 0 },
{ "TextOffset:pressed+hover", 1 },
{ "BackgroundColor", Color"f9f9fa" },
{ "TextColor", Color"000000" },
{ "BackgroundColor@MyButton", Color"e1e1e2" },
{ "BackgroundColor@MyButton:hover",
"BackgroundColor@MyButton:pressed", Color"c9c9ca" },
{ "BackgroundColor@MyButton:pressed+hover", Color"b1b1b2" },
}
}
local scale = app.scale
local win = app:newWindow {
title = "example10",
size = scale { 240, 50 },
Group {
MyButton {
frame = scale { 10, 10, 100, 30 },
text = "OK",
onClicked = function() print("Button Clicked") end
},
MyButton {
frame = scale { 120, 10, 100, 30 },
text = "Exit",
onClicked = function() app:close() end
}
}
}
win:show()
app:runEventLoop()