forked from lee-soft/ViPad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GlassWindow.cls
427 lines (321 loc) · 15.9 KB
/
GlassWindow.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
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "GlassWindow"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Option Explicit
Private m_layeredWindow As LayerdWindowHandles
Private m_form As Form
Private m_slices As Collection
Private m_graphics As GDIPGraphics
Private m_registeredWidth As Long
Private m_registeredHeight As Long
Dim backgroundImage As GDIPImage
Private m_POS As Long
Private m_hasFocus As Boolean
Public Function IsCursorOnBoarder() As Boolean
Dim g_paCursorPos As win.POINTL
Dim m_MyPosition As win.RECT
GetCursorPos g_paCursorPos
GetWindowRect m_form.hWnd, m_MyPosition
If (g_paCursorPos.X < m_MyPosition.Right) And _
(g_paCursorPos.X > m_MyPosition.Left + m_form.ScaleWidth - 22) Then
IsCursorOnBoarder = True
Exit Function
End If
If (g_paCursorPos.Y < m_MyPosition.Bottom) And _
(g_paCursorPos.Y > m_MyPosition.Top + m_form.ScaleHeight - 30) Then
IsCursorOnBoarder = True
Exit Function
End If
If (g_paCursorPos.X > m_MyPosition.Left) And _
(g_paCursorPos.X < m_MyPosition.Left + 22) Then
IsCursorOnBoarder = True
Exit Function
End If
If (g_paCursorPos.Y > (m_MyPosition.Top + 10)) And _
(g_paCursorPos.Y < (m_MyPosition.Top + 15)) Then
IsCursorOnBoarder = True
Exit Function
End If
End Function
Public Function Event_MouseMove(Button As MouseButtonConstants) As Boolean
Dim bRight As Boolean
Dim bBottom As Boolean
Dim bLeft As Boolean
Dim bTop As Boolean
Dim bChanged As Boolean
Dim g_paCursorPos As win.POINTL
Dim m_MyPosition As win.RECT
GetCursorPos g_paCursorPos
GetWindowRect m_form.hWnd, m_MyPosition
m_POS = HTCAPTION
If m_hasFocus Then
'Border Checks
If (g_paCursorPos.X < m_MyPosition.Right) And _
(g_paCursorPos.X > m_MyPosition.Left + m_form.ScaleWidth - 22) Then
bRight = True
End If
If (g_paCursorPos.Y < m_MyPosition.Bottom) And _
(g_paCursorPos.Y > m_MyPosition.Top + m_form.ScaleHeight - 30) Then
bBottom = True
End If
If (g_paCursorPos.X > m_MyPosition.Left) And _
(g_paCursorPos.X < m_MyPosition.Left + 22) Then
bLeft = True
End If
If (g_paCursorPos.Y > (m_MyPosition.Top + 10)) And _
(g_paCursorPos.Y < (m_MyPosition.Top + 15)) Then
bTop = True
End If
If m_form.WindowState = vbNormal Then
If (bBottom And bRight) Then
Screen.MousePointer = vbSizeNWSE
m_POS = HTBOTTOMRIGHT
ElseIf (bBottom And bLeft) Then
Screen.MousePointer = vbSizeNESW
m_POS = HTBOTTOMLEFT
ElseIf (bTop And bLeft) Then
Screen.MousePointer = vbSizeNWSE
m_POS = HTTOPLEFT
ElseIf (bTop And bRight) Then
Screen.MousePointer = vbSizeNESW
m_POS = HTTOPRIGHT
ElseIf bRight Then
Screen.MousePointer = vbSizeWE
m_POS = HTRIGHT
ElseIf bBottom Then
Screen.MousePointer = vbSizeNS
m_POS = HTBOTTOM
ElseIf bLeft Then
Screen.MousePointer = vbSizeWE
m_POS = HTLEFT
ElseIf bTop Then
Screen.MousePointer = vbSizeNS
m_POS = HTTOP
Else
'If IsMouseInRect(m_recTitleBar) Then
'm_bMouseInTitleBar = True
'Else
'm_bMouseInTitleBar = False
'End If
m_POS = HTCAPTION
Screen.MousePointer = 4
Event_MouseMove = True
End If
End If
End If
If bChanged Then
If m_hasFocus Then
Screen.MousePointer = 4
End If
'Me.ReRender
'Me.RenderBackbufferDC
End If
If Button = vbLeftButton Then
If m_POS > 0 And m_form.WindowState = vbNormal Then
'Tricks to resize the window
Debug.Print "Just here pal!"
SetWindowLong m_form.hWnd, GWL_STYLE, WS_VISIBLE Or WS_MINIMIZEBOX
ReleaseCapture
Call SendMessage(ByVal m_form.hWnd, ByVal WM_NCLBUTTONDOWN, ByVal m_POS, 0&)
'Tricks to resize the window
SetWindowLong m_form.hWnd, GWL_STYLE, WS_VISIBLE Or WS_MINIMIZEBOX Or WS_SYSMENU
End If
End If
End Function
Public Property Get LayeredWindow() As LayerdWindowHandles
Set LayeredWindow = m_layeredWindow
End Property
Public Property Get Graphics() As GDIPGraphics
Set Graphics = m_graphics
End Property
Private Function DrawSlices()
Dim thisSlice As Slice
For Each thisSlice In m_slices
Select Case thisSlice.Anchor
Case AnchorPointConstants.apTopLeft
If thisSlice.StretchX And Not thisSlice.StretchY Then
m_graphics.DrawImage thisSlice.Image, thisSlice.X, thisSlice.Y, m_form.ScaleWidth - thisSlice.PixelGap, thisSlice.Height
ElseIf thisSlice.StretchY And Not thisSlice.StretchX Then
m_graphics.DrawImage thisSlice.Image, thisSlice.X, thisSlice.Y, thisSlice.Width, m_form.ScaleHeight - thisSlice.PixelGap
ElseIf thisSlice.StretchX And thisSlice.StretchY Then
m_graphics.DrawImage thisSlice.Image, thisSlice.X, thisSlice.Y, m_form.ScaleWidth - thisSlice.PixelGap, m_form.ScaleHeight - thisSlice.PixelGap2
Else
m_graphics.DrawImage thisSlice.Image, thisSlice.X, thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apTopRight
If thisSlice.StretchY Then
m_graphics.DrawImage thisSlice.Image, m_form.ScaleWidth - thisSlice.X, thisSlice.Y, thisSlice.Width, m_form.ScaleHeight - thisSlice.PixelGap
Else
m_graphics.DrawImage thisSlice.Image, m_form.ScaleWidth - thisSlice.X, thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apBottomLeft
If thisSlice.StretchX Then
m_graphics.DrawImage thisSlice.Image, thisSlice.X, m_form.ScaleHeight - thisSlice.Y, m_form.ScaleWidth - thisSlice.PixelGap, thisSlice.Height
Else
m_graphics.DrawImage thisSlice.Image, thisSlice.X, m_form.ScaleHeight - thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apBottomRight
m_graphics.DrawImage thisSlice.Image, m_form.ScaleWidth - thisSlice.X, m_form.ScaleHeight - thisSlice.Y, thisSlice.Width, thisSlice.Height
End Select
Next
End Function
Private Function CreateSlices()
Dim slicesXMlDocument As New DOMDocument
Dim thisXMLSlice As IXMLDOMElement
Dim thisSlice As Slice
Dim sliceWidth As Long
Dim sliceHeight As Long
If slicesXMlDocument.Load(App.Path & "\resources\glass_index.xml") = False Then
Exit Function
End If
Set backgroundImage = New GDIPImage
backgroundImage.FromFile App.Path & "Resources\glass.png"
For Each thisXMLSlice In slicesXMlDocument.firstChild.childNodes
If thisXMLSlice.tagName = "slice" Then
Set thisSlice = New Slice
thisSlice.Anchor = AnchorPointTextToLong(thisXMLSlice.getAttribute("anchor"))
thisSlice.X = CLng(thisXMLSlice.getAttribute("x"))
thisSlice.Y = CLng(thisXMLSlice.getAttribute("y"))
sliceWidth = CLng(thisXMLSlice.getAttribute("width"))
sliceHeight = CLng(thisXMLSlice.getAttribute("height"))
If thisSlice.Anchor = apTopRight Then
Set thisSlice.Image = _
CreateNewImageFromSection(backgroundImage, _
CreateRectL(sliceHeight, _
sliceWidth, _
backgroundImage.Width - thisSlice.X, _
thisSlice.Y))
ElseIf thisSlice.Anchor = apTopLeft Then
Set thisSlice.Image = _
CreateNewImageFromSection(backgroundImage, _
CreateRectL(sliceHeight, _
sliceWidth, _
thisSlice.X, _
thisSlice.Y))
ElseIf thisSlice.Anchor = apTop Then
thisSlice.Anchor = apTopLeft
Set thisSlice.Image = _
CreateNewImageFromSection(backgroundImage, _
CreateRectL(sliceHeight, _
sliceWidth, _
thisSlice.X, _
thisSlice.Y))
thisSlice.StretchX = True
thisSlice.PixelGap = backgroundImage.Width - sliceWidth
ElseIf thisSlice.Anchor = apLeft Then
thisSlice.Anchor = apTopLeft
Set thisSlice.Image = _
CreateNewImageFromSection(backgroundImage, _
CreateRectL(sliceHeight, _
sliceWidth, _
thisSlice.X, _
thisSlice.Y))
thisSlice.StretchY = True
thisSlice.PixelGap = backgroundImage.Height - sliceHeight
ElseIf thisSlice.Anchor = apBottomLeft Then
Set thisSlice.Image = _
CreateNewImageFromSection(backgroundImage, _
CreateRectL(sliceHeight, _
sliceWidth, _
0, _
backgroundImage.Height - thisSlice.Y))
ElseIf thisSlice.Anchor = apBottomRight Then
Set thisSlice.Image = _
CreateNewImageFromSection(backgroundImage, _
CreateRectL(sliceHeight, _
sliceWidth, _
backgroundImage.Width - thisSlice.X, _
backgroundImage.Height - thisSlice.Y))
ElseIf thisSlice.Anchor = apBottom Then
thisSlice.Anchor = apBottomLeft
Set thisSlice.Image = _
CreateNewImageFromSection(backgroundImage, _
CreateRectL(sliceHeight, _
sliceWidth, _
thisSlice.X, _
backgroundImage.Height - thisSlice.Y))
thisSlice.StretchX = True
thisSlice.PixelGap = backgroundImage.Width - sliceWidth
ElseIf thisSlice.Anchor = apRight Then
thisSlice.Anchor = apTopRight
Set thisSlice.Image = _
CreateNewImageFromSection(backgroundImage, _
CreateRectL(sliceHeight, _
sliceWidth, _
backgroundImage.Width - thisSlice.X, _
thisSlice.Y))
thisSlice.StretchY = True
thisSlice.PixelGap = backgroundImage.Height - sliceHeight
ElseIf thisSlice.Anchor = apMiddle Then
thisSlice.Anchor = apTopLeft
Set thisSlice.Image = _
CreateNewImageFromSection(backgroundImage, _
CreateRectL(sliceHeight, _
sliceWidth, _
thisSlice.X, _
thisSlice.Y))
thisSlice.StretchX = True
thisSlice.StretchY = True
thisSlice.PixelGap2 = backgroundImage.Height - sliceHeight
thisSlice.PixelGap = backgroundImage.Width - sliceWidth
End If
m_slices.Add thisSlice
End If
Next
End Function
Public Function UpdateWindow()
Debug.Print "GlassWindow::UpdateWindow()"
m_layeredWindow.Update m_form.hWnd, m_form.hdc
End Function
Public Function ResizeWindow()
Debug.Print "ResizeWindow::UpdateWindow()"
If m_form Is Nothing Then Exit Function
Set m_layeredWindow = Nothing
Set m_layeredWindow = MakeLayerdWindow(m_form)
'UpdateMe
End Function
Public Function DrawGlass(ByRef Graphics As GDIPGraphics)
Set m_graphics = Graphics
If m_form Is Nothing Then Exit Function
m_graphics.Clear
'm_graphics.DrawImage backgroundImage, 0, 0, backgroundImage.Width, backgroundImage.Height
DrawSlices
'm_layeredWindow.Update m_form.hWnd, m_form.hdc
'Call UpdateLayeredWindow(m_form.hWnd, m_form.hDC, ByVal 0&, m_layeredWindow.GetSize, m_layeredWindow.theDC, m_layeredWindow.GetPoint, 0, m_layeredWindow.GetBlend, ULW_ALPHA)
End Function
Public Function Update()
If m_form Is Nothing Then Exit Function
If m_registeredWidth <> m_form.ScaleWidth Or m_registeredHeight <> m_form.ScaleHeight Then
Debug.Print "Re-Creating Graphics!"
m_registeredWidth = m_form.ScaleWidth
m_registeredHeight = m_form.ScaleHeight
Set m_layeredWindow = Nothing
Set m_layeredWindow = MakeLayerdWindow(m_form)
m_graphics.FromHDC m_layeredWindow.theDC
End If
m_graphics.Clear
'm_graphics.DrawImage backgroundImage, 0, 0, backgroundImage.Width, backgroundImage.Height
DrawSlices
m_layeredWindow.Update m_form.hWnd, m_form.hdc
'Call UpdateLayeredWindow(m_form.hWnd, m_form.hDC, ByVal 0&, m_layeredWindow.GetSize, m_layeredWindow.theDC, m_layeredWindow.GetPoint, 0, m_layeredWindow.GetBlend, ULW_ALPHA)
End Function
Public Function AttachForm(ByRef frmSource As Form)
Set m_form = frmSource
Set m_layeredWindow = MakeLayerdWindow(m_form)
CreateSlices
End Function
Private Sub Class_Initialize()
m_hasFocus = True
Set m_slices = New Collection
'Set m_Graphics = New GDIPGraphics
End Sub