-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcwAbout.cls
274 lines (213 loc) · 8.38 KB
/
cwAbout.cls
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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "cwAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
'---------------------------------------------------------------------------------------
' Class Module : cwAbout
' Author : beededea
' Date : 17/05/2023
' Purpose :
'---------------------------------------------------------------------------------------
Option Explicit
Private WithEvents W As cWidgetBase '<- this is required in each cwImplementation...
Attribute W.VB_VarHelpID = -1
Private WithEvents tmrFadeIn As cTimer
Attribute tmrFadeIn.VB_VarHelpID = -1
Private WithEvents tmrFadeOut As cTimer
Attribute tmrFadeOut.VB_VarHelpID = -1
Private mOpacity As Double
Private mShow As Boolean
Private aboutxo As Integer
Private aboutyo As Integer
'property opacity
'property show
'---------------------------------------------------------------------------------------
' Procedure : Class_Initialize
' Author : beededea
' Date : 17/05/2023
' Purpose :
'---------------------------------------------------------------------------------------
'
Private Sub Class_Initialize()
On Error GoTo Class_Initialize_Error
aboutxo = 0
aboutyo = 0
opacity = 0
show = False
Set W = Cairo.WidgetBase '<- this is required in each cwImplementation...
Set tmrFadeIn = New_c.Timer(20, False)
Set tmrFadeOut = New_c.Timer(20, False)
On Error GoTo 0
Exit Sub
Class_Initialize_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure Class_Initialize of Class Module cwAbout"
End Sub
Public Property Get Widget() As cWidgetBase: Set Widget = W: End Property
Public Property Get Widgets() As cWidgets: Set Widgets = W.Widgets: End Property ' does this really need to be exposed?
'---------------------------------------------------------------------------------------
' Procedure : W_MouseDown
' Author : beededea
' Date : 17/05/2023
' Purpose :
'---------------------------------------------------------------------------------------
'
Private Sub W_MouseDown(Button As Integer, Shift As Integer, ByVal X As Single, ByVal Y As Single)
On Error GoTo W_MouseDown_Error
tmrFadeOut.Enabled = True
On Error GoTo 0
Exit Sub
W_MouseDown_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure W_MouseDown of Class Module cwAbout"
End Sub
'---------------------------------------------------------------------------------------
' Procedure : opacity
' Author : beededea
' Date : 17/05/2023
' Purpose :
'---------------------------------------------------------------------------------------
'
Public Property Let opacity(ByVal newValue As Double)
On Error GoTo opacityLet_Error
If mOpacity <> newValue Then mOpacity = newValue Else Exit Property
On Error GoTo 0
Exit Property
opacityLet_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure opacity of Class Module cwAbout"
End Property
'---------------------------------------------------------------------------------------
' Procedure : opacity
' Author : beededea
' Date : 17/05/2023
' Purpose :
'---------------------------------------------------------------------------------------
'
Public Property Get opacity() As Double
On Error GoTo opacityGet_Error
opacity = mOpacity
On Error GoTo 0
Exit Property
opacityGet_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure opacity of Class Module cwAbout"
End Property
'---------------------------------------------------------------------------------------
' Procedure : show
' Author : beededea
' Date : 17/05/2023
' Purpose :
'---------------------------------------------------------------------------------------
'
Public Property Let show(ByVal newValue As Boolean)
On Error GoTo showLet_Error
mShow = newValue
If mShow = True Then tmrFadeIn.Enabled = True
On Error GoTo 0
Exit Property
showLet_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure show of Class Module cwAbout"
End Property
'---------------------------------------------------------------------------------------
' Procedure : show
' Author : beededea
' Date : 17/05/2023
' Purpose :
'---------------------------------------------------------------------------------------
'
Public Property Get show() As Boolean
On Error GoTo showGet_Error
show = mShow
On Error GoTo 0
Exit Property
showGet_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure show of Class Module cwAbout"
End Property
'
'---------------------------------------------------------------------------------------
' Procedure : tmrFadeIn_Timer
' Author : beededea
' Date : 17/05/2023
' Purpose : timer to make the about form or about image fade in opacity
'---------------------------------------------------------------------------------------
'
Private Sub tmrFadeIn_Timer()
On Error GoTo tmrFadeIn_Timer_Error
fMain.aboutForm.show
opacity = opacity + 0.05
If opacity >= 1 Then
opacity = 1
tmrFadeIn.Enabled = False
Exit Sub
End If
W.Refresh
On Error GoTo 0
Exit Sub
tmrFadeIn_Timer_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure tmrFadeIn_Timer of Class Module cwAbout"
End Sub
'
'---------------------------------------------------------------------------------------
' Procedure : tmrFadeOut_Timer
' Author : beededea
' Date : 17/05/2023
' Purpose : timer to make the about form or about image fade out in opacity
'---------------------------------------------------------------------------------------
'
Private Sub tmrFadeOut_Timer()
On Error GoTo tmrFadeOut_Timer_Error
opacity = opacity - 0.05
If opacity < 0 Then
opacity = 0
tmrFadeOut.Enabled = False
fMain.aboutForm.Hide
Exit Sub
End If
W.Refresh
On Error GoTo 0
Exit Sub
tmrFadeOut_Timer_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure tmrFadeOut_Timer of Class Module cwAbout"
End Sub
'---------------------------------------------------------------------------------------
' Procedure : W_Paint
' Author : beededea
' Date : 17/05/2023
' Purpose :
'---------------------------------------------------------------------------------------
'
Private Sub W_Paint(CC As vbRichClient5.cCairoContext, ByVal xAbs As Single, ByVal yAbs As Single, ByVal dx_Aligned As Single, ByVal dy_Aligned As Single, UserObj As Object)
On Error GoTo W_Paint_Error
Draw CC, dx_Aligned, dy_Aligned, mOpacity
On Error GoTo 0
Exit Sub
W_Paint_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure W_Paint of Class Module cwAbout"
End Sub
'---------------------------------------------------------------------------------------
' Procedure : Draw
' Author : beededea
' Date : 17/05/2023
' Purpose :
'---------------------------------------------------------------------------------------
'
Private Sub Draw(ByRef CC As cCairoContext, ByVal dx As Single, ByVal dy As Single, ByVal mOpacity As Double)
On Error GoTo Draw_Error
CC.RenderSurfaceContent "about", aboutxo, aboutyo, , , , mOpacity
'set some Font- and ForeColor-Properties and draw some Text on the Widget
W.FontItalic = True
W.FontName = gblPlPrefsFont
W.ForeColor = vbBlack
W.SelectFontSettingsInto CC
CC.DrawText 0, 0, dx + 350, dy - 390, " version " & App.Major & "." & App.Minor & "." & App.Revision & vbNullString, , , 2, True, , mOpacity
On Error GoTo 0
Exit Sub
Draw_Error:
MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure Draw of Class Module cwAbout"
End Sub