-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathclass_CGui.ahk
365 lines (305 loc) · 6.83 KB
/
class_CGui.ahk
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
#Include <CGuiCtrl>
class CGui
{
app := ""
n := ""
options := ""
title := ""
titleId := ""
controls := []
controlsByNames := {}
visible := false
created := false
enabled := false
fontName := ""
fontOptions := ""
windowColor := ""
controlColor := ""
marginX := ""
marginY := ""
menu := ""
windowState := ""
isFlashing := false
isDefault := false
isLocalizable := true
owner := ""
disableOwner := false
__New(app, n = "", options = "", title = "", isLocalizable = true)
{
; OutputDebug Gui.__New(%app%, %n%, %options%, %title%,%isLocalizable%)
this.app := app
this.n := n
this.options := options
this.isLocalizable := isLocalizable
this.titleId := title
if(isLocalizable)
this.title := _t(this.titleId)
else
this.title := this.titleId
this.DetectOwner()
if(!InStr(this.options, "+Label"))
this.AddOption("Label" this.n "Gui")
; OutputDebug % "Gui, " this.GetCmdPrefix() "New, " this.options ", " this.title
Gui, % this.GetCmdPrefix() "New", % this.options, % this.title
}
Create()
{
this.CreateControls()
}
CreateControls()
{
for i, ctrl in this.controls
{
; OutputDebug % "Creating control " ctrl.GetName()
ctrl.Create()
}
this.created := true
}
DetectOwner()
{
pos := RegExMatch(this.options, "O)\+Owner([\S]+)", match)
if(pos)
this.owner := this.app.Forms[match.Value(1)]
; OutputDebug % "owner " this.owner.n " pos " pos
}
GetCmdPrefix()
{
if(this.n)
return this.n ":"
else
return ""
}
AddControl(Type, options = "", text ="", tabControl = "", tabPage = 0, isLocalizable = true)
{
; OutputDebug Adding control %Type%, %options%, %text%, %tabControl%, %tabPage%, %isLocalizable%
ctrl := new CGuiCtrl(this, Type, Options, Text, tabControl, tabPage, isLocalizable)
this.controls.insert(ctrl)
if(tabControl && tabPage)
{
this.controls[tabControl.GetName()].controls.insert(ctrl)
}
this.controlsByNames[ctrl.GetName()] := ctrl
return ctrl
}
AddButton(options = "", text ="OK", tabControl = "", tabPage = 0, isLocalizable = true)
{
if(!options)
options := "w75 h25"
return this.AddControl("Button", options, text, tabControl, tabPage, isLocalizable)
}
AddOkButton(options = "", text ="OK", tabControl = "", tabPage = 0, isLocalizable = true)
{
if(!text)
text := "OK"
btn := this.AddButton(options, text, tabControl, tabPage, isLocalizable)
btn.options .= " gAppGuiSubmit"
return btn
}
AddCancelButton(options = "", text ="", tabControl = "", tabPage = 0, isLocalizable = true)
{
if(!text)
text := "Cancel"
btn := this.AddButton(options, text, tabControl, tabPage, isLocalizable)
btn.options .= " gAppGuiCancel"
return btn
}
Show(disableOwner = false, options = "", title = "")
{
this.options := options
if(title)
{
this.titleId := title
if(isLocalizable)
this.title := _t(this.titleId)
else
this.title := this.titleId
}
; OutputDebug % "Gui, " this.GetCmdPrefix() "Show, " this.options ", " this.title
Gui, % this.GetCmdPrefix() "Show", % this.options, % this.title
this.visible := true
if(disableOwner)
{
this.owner.Disable()
this.disableOwner := true
}
if(InStr(this.options, "Minimize"))
this.windowState := "Minimized"
else if(InStr(this.options, "Maximize"))
this.windowState := "Maximized"
else if(InStr(this.options, "Restore"))
this.windowState := "Restored"
if(InStr(this.options, "NoActivate"))
this.windowState := "Restored"
; OutputDebug % this.n ".Show(): IsBound() = " this.IsBound()
if(this.IsBound())
{
for i, ctrl in this.controls
{
if(ctrl.IsBound())
{
ctrl.UpdateValue()
}
}
}
this.enabled := true
}
Submit(NoHide = true)
{
if(NoHide)
Gui, % this.GetCmdPrefix() "Submit", NoHide
else
{
Gui, % this.GetCmdPrefix() "Submit"
this.visible := false
}
}
Cancel()
{
if(this.disableOwner)
{
this.owner.Enable()
this.disableOwner := false
}
Gui, % this.GetCmdPrefix() "Cancel"
this.visible := false
}
Destroy()
{
if(this.disableOwner)
{
this.owner.Enable()
this.disableOwner := false
}
Gui, % this.GetCmdPrefix() "Destroy"
this.visible := false
this.created := false
}
Font(options = "", fontName = "")
{
Gui, % this.GetCmdPrefix() "Font", %options%, %fontName%
this.fontName := fontName
this.fontOptions := options
}
Color(WindowColor = "", ControlColor = "")
{
Gui, % this.GetCmdPrefix() "Color", %WindowColor%, %ControlColor%
this.windowColor := WindowColor
this.controlColor := ControlColor
}
Margin(x = "", y = "")
{
Gui, % this.GetCmdPrefix() "Margin", %x%, %y%
this.marginX := x
this.marginY := y
}
AddOption(option)
{
if(!InStr(this.options, option))
{
this.options .= " +" option
Gui, % this.GetCmdPrefix() "+" option
if(InStr(option, "Owner"))
this.DetectOwner()
}
}
RemoveOption(option)
{
if(InStr(this.options, "+" option))
{
options := this.options
StringReplace, options, options, +%option%, -%option%,All
this.options := options
}
else if(InStr(this.options, option))
{
options := this.options
StringReplace, options, options, %option%, -%option%,All
this.options := options
}
else
this.options .= " -" option
Gui, % this.GetCmdPrefix() "-" option
}
Enable()
{
this.RemoveOption("Disabled")
this.enabled := true
}
Disable()
{
this.AddOption("Disabled")
this.enabled := false
}
MenuBar(menu = "")
{
if(menu)
{
Gui, % this.GetCmdPrefix() "Menu", % menu.name
this.menu := menu
}
else
{
Gui, % this.GetCmdPrefix() "Menu"
this.menu := ""
}
}
Hide()
{
if(this.disableOwner)
{
this.owner.Enable()
this.disableOwner := false
}
Gui, % this.GetCmdPrefix() "Hide"
this.visible := false
}
Minimize()
{
Gui, % this.GetCmdPrefix() "Minimize"
this.windowState := "Minimized"
}
Maximize()
{
Gui, % this.GetCmdPrefix() "Maximize"
this.windowState := "Maximized"
}
Restore()
{
Gui, % this.GetCmdPrefix() "Restore"
this.windowState := "Restored"
}
Flash(Off = false)
{
if(Off)
{
Gui, % this.GetCmdPrefix() "Flash", Off
this.isFlashing := false
}
else
{
Gui, % this.GetCmdPrefix() "Flash"
this.isFlashing := true
}
}
Default()
{
Gui, % this.GetCmdPrefix() "Default"
this.isDefault := true
}
Localize()
{
for i, ctrl in this.controls
{
ctrl.Localize()
}
this.title := _t(this.titleId)
if(!this.visible)
{
Gui, % this.GetCmdPrefix() "Show",Hide, % this.title
}
else
{
Gui, % this.GetCmdPrefix() "Show",NoActivate, % this.title
}
}
}