forked from saniainf/CorelDraw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmCutMarks.frm
More file actions
374 lines (332 loc) · 10.9 KB
/
frmCutMarks.frm
File metadata and controls
374 lines (332 loc) · 10.9 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
VERSION 5.00
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} frmCutMarks
Caption = "Cut Marks v1.4.0"
ClientHeight = 2760
ClientLeft = 45
ClientTop = 390
ClientWidth = 6840
OleObjectBlob = "frmCutMarks.frx":0000
StartUpPosition = 1 'CenterOwner
End
Attribute VB_Name = "frmCutMarks"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub btnCancel_Click()
Unload Me
End Sub
Private Sub btnMake_Click()
ActiveDocument.BeginCommandGroup "Create Cut Marks"
Application.Optimization = True
Application.ActiveDocument.Unit = cdrMillimeter
Dim aSel As ShapeRange
Dim countX As Integer
Dim countY As Integer
Dim selX As Double
Dim selY As Double
Dim selW As Double
Dim selH As Double
Dim markH As Integer
Dim bleed As Integer
Dim oneCut As Boolean
Dim productW As Double
Dim productH As Double
countX = txtbCountX.Value
countY = txtbCountY.Value
markH = txtbMarkHeight.Value
bleed = txtbOffset.Value
oneCut = tbtnOneCut.Value
Set aSel = ActiveSelectionRange
If (aSel.Count > 0) Then
selX = aSel.PositionX
selW = aSel.SizeWidth
selY = aSel.PositionY
selH = aSel.SizeHeight
If oneCut And Not cbPlus.Value Then
productW = (selW - bleed * 2) / countX
productH = (selH - bleed * 2) / countY
Else
productW = selW / countX
productH = selH / countY
End If
If tbTop Then
MakeMarkTop selX, selY, selW, selH, productW, productH, countX, countY, markH, bleed, oneCut
End If
If tbLeft Then
MakeMarkLeft selX, selY, selW, selH, productW, productH, countX, countY, markH, bleed, oneCut
End If
If tbRight Then
MakeMarkRight selX, selY, selW, selH, productW, productH, countX, countY, markH, bleed, oneCut
End If
If tbBottom Then
MakeMarkBottom selX, selY, selW, selH, productW, productH, countX, countY, markH, bleed, oneCut
End If
End If
'Unload Me
ActiveDocument.ClearSelection
Application.Optimization = False
ActiveWindow.Refresh
Application.Refresh
ActiveDocument.EndCommandGroup
End Sub
Private Sub drawMark(startX As Double, startY As Double, endX As Double, endY As Double)
Dim mark As Shape
Dim whiteColor As New Color
whiteColor.CMYKAssign 0, 0, 0, 0
If cbWhiteSpace Then
Set mark = ActiveLayer.CreateLineSegment(startX, startY, endX, endY)
mark.Outline.SetProperties 1.5, OutlineStyles(0), whiteColor
End If
Set mark = ActiveLayer.CreateLineSegment(startX, startY, endX, endY)
mark.Outline.SetProperties 0.0762, OutlineStyles(0), CreateRegistrationColor
End Sub
Private Sub MakeMarkTop(selX As Double, selY As Double, selW As Double, selH As Double, productW As Double, productH As Double, countX As Integer, countY As Integer, markH As Integer, bleed As Integer, oneCut As Boolean)
Dim startX As Double, startY As Double, endX As Double, endY As Double
Dim markX As Double, markY As Double
Dim i As Integer
If cbPlus.Value And oneCut Then
startY = selY + bleed
endY = selY + markH + bleed
startX = selX
endX = selX
Else
startY = selY
endY = selY + markH
startX = selX + bleed
endX = selX + bleed
End If
'first mark
drawMark startX, startY, endX, endY
If cbPlus.Value And oneCut Then
startX = selX + selW
endX = selX + selW
Else
startX = selX + selW - bleed
endX = selX + selW - bleed
End If
'final mark
drawMark startX, startY, endX, endY
If countX > 1 Then
If oneCut And Not cbPlus.Value Then
startX = selX + bleed
Else
startX = selX
End If
For i = 1 To countX - 1
startX = startX + productW
If oneCut Then
markX = startX
drawMark markX, startY, markX, endY
Else
markX = startX - bleed
drawMark markX, startY, markX, endY
markX = startX + bleed
drawMark markX, startY, markX, endY
End If
Next i
End If
End Sub
Private Sub MakeMarkBottom(selX As Double, selY As Double, selW As Double, selH As Double, productW As Double, productH As Double, countX As Integer, countY As Integer, markH As Integer, bleed As Integer, oneCut As Boolean)
Dim startX As Double, startY As Double, endX As Double, endY As Double
Dim markX As Double, markY As Double
Dim i As Integer
If cbPlus.Value And oneCut Then
startY = selY - selH - bleed
endY = selY - selH - bleed - markH
startX = selX
endX = selX
Else
startY = selY - selH
endY = selY - selH - markH
startX = selX + bleed
endX = selX + bleed
End If
'first mark
drawMark startX, startY, endX, endY
If cbPlus.Value And oneCut Then
startX = selX + selW
endX = selX + selW
Else
startX = selX + selW - bleed
endX = selX + selW - bleed
End If
'final mark
drawMark startX, startY, endX, endY
If countX > 1 Then
If oneCut And Not cbPlus.Value Then
startX = selX + bleed
Else
startX = selX
End If
For i = 1 To countX - 1
startX = startX + productW
If oneCut Then
markX = startX
drawMark markX, startY, markX, endY
Else
markX = startX - bleed
drawMark markX, startY, markX, endY
markX = startX + bleed
drawMark markX, startY, markX, endY
End If
Next i
End If
End Sub
Private Sub MakeMarkLeft(selX As Double, selY As Double, selW As Double, selH As Double, productW As Double, productH As Double, countX As Integer, countY As Integer, markH As Integer, bleed As Integer, oneCut As Boolean)
Dim startX As Double, startY As Double, endX As Double, endY As Double
Dim markX As Double, markY As Double
Dim i As Integer
If cbPlus.Value And oneCut Then
startY = selY
endY = selY
startX = selX - bleed
endX = selX - bleed - markH
Else
startY = selY - bleed
endY = selY - bleed
startX = selX
endX = selX - markH
End If
'first mark
drawMark startX, startY, endX, endY
If cbPlus.Value And oneCut Then
startY = selY - selH
endY = selY - selH
Else
startY = selY - selH + bleed
endY = selY - selH + bleed
End If
'final mark
drawMark startX, startY, endX, endY
If countY > 1 Then
If oneCut And Not cbPlus.Value Then
startY = selY - bleed
Else
startY = selY
End If
For i = 1 To countY - 1
startY = startY - productH
If oneCut Then
markY = startY
drawMark startX, markY, endX, markY
Else
markY = startY + bleed
drawMark startX, markY, endX, markY
markY = startY - bleed
drawMark startX, markY, endX, markY
End If
Next i
End If
End Sub
Private Sub MakeMarkRight(selX As Double, selY As Double, selW As Double, selH As Double, productW As Double, productH As Double, countX As Integer, countY As Integer, markH As Integer, bleed As Integer, oneCut As Boolean)
Dim startX As Double, startY As Double, endX As Double, endY As Double
Dim markX As Double, markY As Double
Dim mark As Shape
Dim i As Integer
If cbPlus.Value And oneCut Then
startY = selY
endY = selY
startX = selX + selW + bleed
endX = selX + selW + bleed + markH
Else
startY = selY - bleed
endY = selY - bleed
startX = selX + selW
endX = selX + selW + markH
End If
'first mark
drawMark startX, startY, endX, endY
If cbPlus.Value And oneCut Then
startY = selY - selH
endY = selY - selH
Else
startY = selY - selH + bleed
endY = selY - selH + bleed
End If
'final mark
drawMark startX, startY, endX, endY
If countY > 1 Then
If oneCut And Not cbPlus.Value Then
startY = selY - bleed
Else
startY = selY
End If
For i = 1 To countY - 1
startY = startY - productH
If oneCut Then
markY = startY
drawMark startX, markY, endX, markY
Else
markY = startY + bleed
drawMark startX, markY, endX, markY
markY = startY - bleed
drawMark startX, markY, endX, markY
End If
Next i
End If
End Sub
Private Sub btnSwithAll_Click()
If (tbTop.Value And tbBottom.Value And tbLeft.Value And tbRight.Value) Then
tbTop.Value = False
tbBottom.Value = False
tbLeft.Value = False
tbRight.Value = False
Else
tbTop.Value = True
tbBottom.Value = True
tbLeft.Value = True
tbRight.Value = True
End If
End Sub
Private Sub btnUpdate_Click()
If ActiveSelectionRange.Count Then
Application.Optimization = True
txtbCountX.Text = Math.Round(ActiveSelectionRange.BoundingBox.Width / ActiveSelectionRange.Item(1).BoundingBox.Width)
txtbCountY.Text = Math.Round(ActiveSelectionRange.BoundingBox.Height / ActiveSelectionRange.Item(1).BoundingBox.Height)
Application.Optimization = False
End If
End Sub
Private Sub tbBottom_Click()
If tbBottom Then
tbBottom.BackColor = &H80000018
Else
tbBottom.BackColor = &H8000000F
End If
End Sub
Private Sub tbLeft_Click()
If tbLeft Then
tbLeft.BackColor = &H80000018
Else
tbLeft.BackColor = &H8000000F
End If
End Sub
Private Sub tbRight_Click()
If tbRight Then
tbRight.BackColor = &H80000018
Else
tbRight.BackColor = &H8000000F
End If
End Sub
Private Sub tbtnOneCut_Click()
If tbtnOneCut.Value Then
cbPlus.Enabled = True
Else
cbPlus.Enabled = False
End If
End Sub
Private Sub tbTop_Click()
If tbTop Then
tbTop.BackColor = &H80000018
Else
tbTop.BackColor = &H8000000F
End If
End Sub
Private Sub UserForm_Initialize()
If ActiveSelectionRange.Count Then
Application.Optimization = True
txtbCountX.Text = Math.Round(ActiveSelectionRange.BoundingBox.Width / ActiveSelectionRange.Item(1).BoundingBox.Width)
txtbCountY.Text = Math.Round(ActiveSelectionRange.BoundingBox.Height / ActiveSelectionRange.Item(1).BoundingBox.Height)
Application.Optimization = False
End If
End Sub