-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample02.lua
97 lines (90 loc) · 3.88 KB
/
example02.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
95
96
local lwtk = require"lwtk"
local Application = lwtk.Application
local ViewSwitcher = lwtk.ViewSwitcher
local Column = lwtk.Column
local Row = lwtk.Row
local Box = lwtk.Box
local PushButton = lwtk.PushButton
local TextInput = lwtk.TextInput
local TextLabel = lwtk.TextLabel
local TitleText = lwtk.TitleText
local Space = lwtk.Space
local app = Application("example02.lua")
local win = app:newWindow {
title = "example02",
Column {
Box {
TextLabel { text = "This examples demonstrates a form with two input fields." },
},
Box {
ViewSwitcher {
id = "switcher",
Column {
id = "c1",
onInputChanged = function(widget)
widget:childById("b1"):setDisabled( #widget:childById("i1").text == 0
or #widget:childById("i2").text == 0)
end,
Row {
Column {
TitleText { id = "t1", text = "What's your name?" },
Row {
Column {
TextLabel { input = "i1", text = "&First Name:" },
TextLabel { input = "i2", text = "&Last Name:" },
},
Column {
style = {
{ "Columns@TextInput", 40 }
},
TextInput { id = "i1", focus = true },
TextInput { id = "i2" },
},
}
}
},
Row {
Space {},
PushButton { id = "b1", text = "&OK", disabled = true, default = true,
onClicked = function(widget)
widget:byId("c2/t1"):setText("Hello "..widget:byId("c1/i1").text.." "..widget:byId("c1/i2").text.."!")
widget:byId("switcher"):showChild("c2")
end
},
PushButton { text = "&Quit", onClicked = function() app:close() end },
Space {}
}
},
Column {
id = "c2",
visible = false,
Column {
Space {},
Row {
Space {},
TitleText { id = "t1" },
Space {},
},
Space {}
},
Row {
Space {},
PushButton { text = "&Again",
onClicked = function(widget)
widget:byId("c1/i1"):setText("")
widget:byId("c1/i1"):setFocus()
widget:byId("c1/i2"):setText("")
widget:byId("c2/t1"):setText("")
widget:byId("switcher"):showChild("c1")
end
},
PushButton { text = "&Quit", default = true, onClicked = function() app:close() end },
Space {}
}
}
}
}
}
}
win:show()
app:runEventLoop()