-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathSliceHelper.bas
More file actions
411 lines (271 loc) · 16 KB
/
SliceHelper.bas
File metadata and controls
411 lines (271 loc) · 16 KB
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
Attribute VB_Name = "SliceHelper"
'--------------------------------------------------------------------------------
' Component : SliceHelper
' Project : ViDock
'
' Description: Contains helper functions for managing slices
'
'--------------------------------------------------------------------------------
Option Explicit
Public Enum AnchorPointConstants
apTopLeft = 1
apBottomLeft = 2
apBottomRight = 3
apTopRight = 4
End Enum
Public Function FindBorderWidth(theSlices As Collection) As Long
Dim thisSlice As Slice
For Each thisSlice In theSlices
If thisSlice.Anchor = apTopLeft And thisSlice.StretchX = False And thisSlice.StretchY = True Then
FindBorderWidth = thisSlice.Width
Exit For
End If
Next
End Function
Public Function FindBorderHeight(theSlices As Collection) As Long
Dim thisSlice As Slice
For Each thisSlice In theSlices
If thisSlice.Anchor = apTopLeft And thisSlice.StretchX = True And thisSlice.StretchY = False Then
FindBorderHeight = thisSlice.Height
Exit For
End If
Next
End Function
Public Function AnchorPointTextToLong(ByVal szText As String) As AnchorPointConstants
Select Case LCase(szText)
Case "lt", "tl"
AnchorPointTextToLong = apTopLeft
Case "rt", "tr"
AnchorPointTextToLong = apTopRight
Case "bl", "lb"
AnchorPointTextToLong = apBottomLeft
Case "rb", "br"
AnchorPointTextToLong = apBottomRight
End Select
End Function
Public Function DrawSlicesToTargetF(ByRef slices As Collection, _
ByRef Graphics As GDIPGraphics, _
theTarget As gdiplus.RECTF)
Debug.Print "DrawSlicesToTargetF"
Dim thisSlice As Slice
For Each thisSlice In slices
Select Case thisSlice.Anchor
Case AnchorPointConstants.apTopLeft
If thisSlice.StretchX And Not thisSlice.StretchY Then
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, theTarget.Top + thisSlice.Y, theTarget.Width - thisSlice.StretchMarginX, thisSlice.Height
ElseIf thisSlice.StretchY And Not thisSlice.StretchX Then
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, theTarget.Top + thisSlice.Y, thisSlice.Width, theTarget.Height - thisSlice.StretchMarginY
ElseIf thisSlice.StretchX And thisSlice.StretchY Then
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, theTarget.Top + thisSlice.Y, theTarget.Width - thisSlice.StretchMarginX, theTarget.Height - thisSlice.StretchMarginY
Else
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, theTarget.Top + thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apTopRight
If thisSlice.StretchY Then
Graphics.DrawImage thisSlice.Image, (theTarget.Left + theTarget.Width) - thisSlice.X, theTarget.Top + thisSlice.Y, thisSlice.Width, theTarget.Height - thisSlice.StretchMarginY
Else
Graphics.DrawImage thisSlice.Image, (theTarget.Left + theTarget.Width) - thisSlice.X, theTarget.Top + thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apBottomLeft
If thisSlice.StretchX Then
'Graphics.DrawImage thisSlice.Image, thisSlice.X, theForm.ScaleHeight - thisSlice.y, theForm.ScaleWidth - thisSlice.StretchMarginX, thisSlice.Height
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, (theTarget.Top + theTarget.Height) - thisSlice.Y, theTarget.Width - thisSlice.StretchMarginX, thisSlice.Height
Else
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, (theTarget.Top + theTarget.Height) - thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apBottomRight
If thisSlice.StretchX Then
Else
Graphics.DrawImage thisSlice.Image, (theTarget.Left + theTarget.Width) - thisSlice.X, (theTarget.Top + theTarget.Height) - thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
End Select
Next
End Function
Public Function DrawSlicesToTarget(ByRef slices As Collection, _
ByRef Graphics As GDIPGraphics, _
theTarget As gdiplus.RECTL)
Dim thisSlice As Slice
For Each thisSlice In slices
Select Case thisSlice.Anchor
Case AnchorPointConstants.apTopLeft
If thisSlice.StretchX And Not thisSlice.StretchY Then
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, theTarget.Top + thisSlice.Y, theTarget.Width - thisSlice.StretchMarginX, thisSlice.Height
ElseIf thisSlice.StretchY And Not thisSlice.StretchX Then
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, theTarget.Top + thisSlice.Y, thisSlice.Width, theTarget.Height - thisSlice.StretchMarginY
ElseIf thisSlice.StretchX And thisSlice.StretchY Then
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, theTarget.Top + thisSlice.Y, theTarget.Width - thisSlice.StretchMarginX, theTarget.Height - thisSlice.StretchMarginY
Else
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, theTarget.Top + thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apTopRight
If thisSlice.StretchY Then
Graphics.DrawImage thisSlice.Image, (theTarget.Left + theTarget.Width) - thisSlice.X, theTarget.Top + thisSlice.Y, thisSlice.Width, theTarget.Height - thisSlice.StretchMarginY
Else
Graphics.DrawImage thisSlice.Image, (theTarget.Left + theTarget.Width) - thisSlice.X, theTarget.Top + thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apBottomLeft
If thisSlice.StretchX Then
'Graphics.DrawImage thisSlice.Image, thisSlice.X, theForm.ScaleHeight - thisSlice.y, theForm.ScaleWidth - thisSlice.StretchMarginX, thisSlice.Height
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, (theTarget.Top + theTarget.Height) - thisSlice.Y, theTarget.Width - thisSlice.StretchMarginX, thisSlice.Height
Else
Graphics.DrawImage thisSlice.Image, theTarget.Left + thisSlice.X, (theTarget.Top + theTarget.Height) - thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apBottomRight
If thisSlice.StretchX Then
Else
Graphics.DrawImage thisSlice.Image, (theTarget.Left + theTarget.Width) - thisSlice.X, (theTarget.Top + theTarget.Height) - thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
End Select
Next
End Function
Public Function DrawSlices(ByRef slices As Collection, _
ByRef Graphics As GDIPGraphics, _
ByRef theForm As Form)
Dim thisSlice As Slice
For Each thisSlice In slices
If thisSlice.Identifer = vbNullString Then
Select Case thisSlice.Anchor
Case AnchorPointConstants.apTopLeft
If thisSlice.StretchX And Not thisSlice.StretchY Then
Graphics.DrawImage thisSlice.Image, thisSlice.X, thisSlice.Y, theForm.ScaleWidth - thisSlice.StretchMarginX, thisSlice.Height
ElseIf thisSlice.StretchY And Not thisSlice.StretchX Then
Graphics.DrawImage thisSlice.Image, thisSlice.X, thisSlice.Y, thisSlice.Width, theForm.ScaleHeight - thisSlice.StretchMarginY
ElseIf thisSlice.StretchX And thisSlice.StretchY Then
Graphics.DrawImage thisSlice.Image, thisSlice.X, thisSlice.Y, theForm.ScaleWidth - thisSlice.StretchMarginX, theForm.ScaleHeight - thisSlice.StretchMarginY
Else
Graphics.DrawImage thisSlice.Image, thisSlice.X, thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apTopRight
If thisSlice.StretchY Then
Graphics.DrawImage thisSlice.Image, theForm.ScaleWidth - thisSlice.X, thisSlice.Y, thisSlice.Width, theForm.ScaleHeight - thisSlice.StretchMarginY
Else
Graphics.DrawImage thisSlice.Image, theForm.ScaleWidth - thisSlice.X, thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apBottomLeft
If thisSlice.StretchX Then
Graphics.DrawImage thisSlice.Image, thisSlice.X, theForm.ScaleHeight - thisSlice.Y, theForm.ScaleWidth - thisSlice.StretchMarginX, thisSlice.Height
Else
Graphics.DrawImage thisSlice.Image, thisSlice.X, theForm.ScaleHeight - thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
Case AnchorPointConstants.apBottomRight
If thisSlice.StretchX Then
Else
Graphics.DrawImage thisSlice.Image, theForm.ScaleWidth - thisSlice.X, theForm.ScaleHeight - thisSlice.Y, thisSlice.Width, thisSlice.Height
End If
'Graphics.DrawImage thisSlice.Image, theForm.ScaleWidth - thisSlice.X, theForm.ScaleHeight - thisSlice.Y, thisSlice.Width, thisSlice.Height
End Select
End If
Next
End Function
Public Function CreateSlicesFromXML(ByVal szXmlElementName As String, _
Optional ByRef slicesImage As GDIPImage) As Collection
Dim slicesXMLElement As IXMLDOMElement
Set slicesXMLElement = ThemeHelper.GetSliceDefinition(szXmlElementName)
If slicesXMLElement Is Nothing Then
LogError 0, "CreateSlicesFromXML", "SliceHelper", "Warning no xml definition found for: " & szXmlElementName
Exit Function
End If
Set slicesImage = New GDIPImage
slicesImage.FromFile App.Path & "\resources\" & slicesXMLElement.getAttribute("src")
Set CreateSlicesFromXML = CreateSlicesFromXMLElement(slicesXMLElement, slicesImage)
End Function
Public Function CreateSlicesFromXMLElement(ByRef slicesXML As IXMLDOMElement, _
ByRef slicesImage As GDIPImage) As Collection
Dim thisXMLSlice As IXMLDOMElement
Dim thisSlice As Slice
Dim sliceWidth As Long
Dim sliceHeight As Long
Dim slices As Collection
Dim topSliceWidth As Long
Dim stretchDimensions As String
Dim StretchMarginX As Long
Dim StretchMarginY As Long
Dim yOverflow As Long
Dim xOverflow As Long
topSliceWidth = -1
Set slices = New Collection
Set CreateSlicesFromXMLElement = slices
For Each thisXMLSlice In slicesXML.childNodes
If thisXMLSlice.tagName = "slice" Then
StretchMarginX = -1
StretchMarginY = -1
Set thisSlice = New Slice
If Not IsNull(thisXMLSlice.getAttribute("anchor")) Then
thisSlice.Anchor = AnchorPointTextToLong(thisXMLSlice.getAttribute("anchor"))
End If
If Not IsNull(thisXMLSlice.getAttribute("stretch")) Then
stretchDimensions = CStr(thisXMLSlice.getAttribute("stretch"))
If InStr(stretchDimensions, "x") > 0 Then
thisSlice.StretchX = True
End If
If InStr(stretchDimensions, "y") > 0 Then
thisSlice.StretchY = True
End If
End If
If Not IsNull(thisXMLSlice.getAttribute("x-margin")) Then
StretchMarginX = CLng(thisXMLSlice.getAttribute("x-margin"))
End If
If Not IsNull(thisXMLSlice.getAttribute("y-margin")) Then
StretchMarginY = CLng(thisXMLSlice.getAttribute("y-margin"))
End If
If Not IsNull(thisXMLSlice.getAttribute("id")) Then
thisSlice.Identifer = CStr(thisXMLSlice.getAttribute("id"))
End If
thisSlice.X = CLng(thisXMLSlice.getAttribute("x"))
thisSlice.Y = CLng(thisXMLSlice.getAttribute("y"))
sliceWidth = CLng(thisXMLSlice.getAttribute("width"))
sliceHeight = CLng(thisXMLSlice.getAttribute("height"))
If Not IsNull(thisXMLSlice.getAttribute("x-overflow")) Then
xOverflow = CLng(thisXMLSlice.getAttribute("x-overflow"))
End If
If Not IsNull(thisXMLSlice.getAttribute("y-overflow")) Then
yOverflow = CLng(thisXMLSlice.getAttribute("y-overflow"))
End If
Set thisSlice.Image = CreateNewImageFromSection(slicesImage, CreateRectL(sliceHeight, sliceWidth, thisSlice.X, thisSlice.Y))
If thisSlice.Image Is Nothing Then
MsgBox "Error!"
End If
thisSlice.Y = thisSlice.Y + yOverflow
thisSlice.X = thisSlice.X + xOverflow
If thisSlice.Anchor = apTopRight Then
thisSlice.X = slicesImage.Width - thisSlice.X
ElseIf thisSlice.Anchor = apBottomLeft Then
thisSlice.Y = slicesImage.Height - thisSlice.Y
ElseIf thisSlice.Anchor = apBottomRight Then
thisSlice.X = slicesImage.Width - thisSlice.X
thisSlice.Y = slicesImage.Height - thisSlice.Y
End If
If StretchMarginX = -1 Then
thisSlice.StretchMarginX = slicesImage.Width - sliceWidth
Else
thisSlice.StretchMarginX = StretchMarginX
End If
If StretchMarginY = -1 Then
If slicesImage.Height = 74 Then
End If
thisSlice.StretchMarginY = slicesImage.Height - sliceHeight
Else
thisSlice.StretchMarginY = StretchMarginY
End If
If thisSlice.Identifer <> vbNullString Then
slices.Add thisSlice, thisSlice.Identifer
Else
slices.Add thisSlice
End If
End If
Next
End Function
Public Function CreateNewImageFromSection(ByRef sourceImage As GDIPImage, _
sourceSection As gdiplus.RECTL) As GDIPImage
Dim returnBitmap As GDIPBitmap
Dim tempGraphics As GDIPGraphics
Set returnBitmap = New GDIPBitmap
'returnBitmap.CreateFromSize sourceSection.Width, sourceSection.Height
returnBitmap.CreateFromSizeFormat sourceSection.Width, sourceSection.Height, GDIPlusWrapper.Format32bppArgb
Set tempGraphics = New GDIPGraphics
tempGraphics.FromImage returnBitmap.Image
tempGraphics.Clear
tempGraphics.DrawImageRect sourceImage, 0, 0, sourceSection.Width, sourceSection.Height, sourceSection.Left, sourceSection.Top
Set tempGraphics = Nothing
Set CreateNewImageFromSection = returnBitmap.Image.Clone
End Function