12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166 |
- Attribute VB_Name = "Tools"
- #If VBA7 Then
- Private Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As LongPtr)
- #Else
- Private Declare Sub Sleep Lib "kernel32" (ByValdwMilliseconds As Long)
- #End If
- Public Function wait()
- Sleep 3000
- End Function
- Public Sub 填入居中文字(str)
- Dim s As Shape
- <<<<<<< HEAD
- Dim x As Double, y As Double, Shift As Long
- Dim b As Boolean
- b = ActiveDocument.GetUserClick(x, y, Shift, 10, False, cdrCursorIntersectSingle)
-
- str = VBA.Replace(str, vbNewLine, Chr(10))
- str = VBA.Replace(str, Chr(10), vbNewLine)
- Set s = ActiveLayer.CreateArtisticText(0, 0, str)
- s.CenterX = x
- s.CenterY = y
- =======
- Set s = ActiveSelection
- X = s.CenterX
- Y = s.CenterY
-
- Set s = ActiveLayer.CreateArtisticText(0, 0, Str)
- s.CenterX = X
- s.CenterY = Y
- >>>>>>> 556e97d494ce938408287776a3528f332486766c
- End Sub
- Public Sub 尺寸标注()
- ActiveDocument.Unit = cdrMillimeter
- Set s = ActiveSelection
- <<<<<<< HEAD
- x = s.CenterX: y = s.TopY
- sw = s.SizeWidth: sh = s.SizeHeight
-
- text = Int(sw) & "x" & Int(sh) & "mm"
- Set s = ActiveLayer.CreateArtisticText(0, 0, text)
- s.CenterX = x: s.BottomY = y + 5
- =======
- X = s.CenterX: Y = s.TopY
- sw = s.SizeWidth: sh = s.SizeHeight
-
- Text = Int(sw) & "x" & Int(sh) & "mm"
- Set s = ActiveLayer.CreateArtisticText(0, 0, Text)
- s.CenterX = X: s.BottomY = Y + 5
- >>>>>>> 556e97d494ce938408287776a3528f332486766c
- End Sub
- Public Sub 批量居中文字(str)
- Dim s As Shape, sr As ShapeRange
- Set sr = ActiveSelectionRange
-
- For Each s In sr.Shapes
- <<<<<<< HEAD
- x = s.CenterX: y = s.CenterY
-
- Set s = ActiveLayer.CreateArtisticText(0, 0, str)
- s.CenterX = x: s.CenterY = y
- =======
- X = s.CenterX: Y = s.CenterY
-
- Set s = ActiveLayer.CreateArtisticText(0, 0, Str)
- s.CenterX = X: s.CenterY = Y
- >>>>>>> 556e97d494ce938408287776a3528f332486766c
- Next
- End Sub
- Public Sub 批量标注()
- ActiveDocument.Unit = cdrMillimeter
- Set sr = ActiveSelectionRange
-
- For Each s In sr.Shapes
- <<<<<<< HEAD
- x = s.CenterX: y = s.TopY
- sw = s.SizeWidth: sh = s.SizeHeight
-
- text = Int(sw + 0.5) & "x" & Int(sh + 0.5) & "mm"
- Set s = ActiveLayer.CreateArtisticText(0, 0, text)
- s.CenterX = x: s.BottomY = y + 5
- =======
- X = s.CenterX: Y = s.TopY
- sw = s.SizeWidth: sh = s.SizeHeight
-
- Text = Int(sw + 0.5) & "x" & Int(sh + 0.5) & "mm"
- Set s = ActiveLayer.CreateArtisticText(0, 0, Text)
- s.CenterX = X: s.BottomY = Y + 5
- >>>>>>> 556e97d494ce938408287776a3528f332486766c
- Next
- End Sub
- Public Sub 智能群组()
- Set s1 = ActiveSelectionRange.CustomCommand("Boundary", "CreateBoundary")
- Set brk1 = s1.BreakApartEx
- For Each s In brk1
- Set sh = ActivePage.SelectShapesFromRectangle(s.LeftX, s.TopY, s.RightX, s.BottomY, True)
- sh.Shapes.All.group
- s.Delete
- Next
- End Sub
- ' 实践应用: 选择物件群组,页面设置物件大小,物件页面居中
- Public Function 群组居中页面()
- ActiveDocument.Unit = cdrMillimeter
- Dim OrigSelection As ShapeRange, sh As Shape
- Set OrigSelection = ActiveSelectionRange
- Set sh = OrigSelection.group
-
- ' MsgBox "选择物件尺寸: " & sh.SizeWidth & "x" & sh.SizeHeight
- ActivePage.SetSize Int(sh.SizeWidth + 0.9), Int(sh.SizeHeight + 0.9)
-
- #If VBA7 Then
- ActiveDocument.ClearSelection
- sh.AddToSelection
- ActiveSelection.AlignAndDistribute 3, 3, 2, 0, False, 2
- #Else
- sh.AlignToPageCenter cdrAlignHCenter + cdrAlignVCenter
- #End If
- End Function
- Public Function 批量多页居中()
- If 0 = ActiveSelectionRange.Count Then Exit Function
- On Error GoTo ErrorHandler
- ActiveDocument.BeginCommandGroup: Application.Optimization = True
- ActiveDocument.Unit = cdrMillimeter
- Set sr = ActiveSelectionRange
- total = sr.Count
- '// 建立多页面
- Set doc = ActiveDocument
- doc.AddPages (total - 1)
- Dim sh As Shape
-
- '// 遍历批量物件,放置物件到页面
- For i = 1 To sr.Count
- doc.Pages(i).Activate
- Set sh = sr.Shapes(i)
- ActivePage.SetSize Int(sh.SizeWidth + 0.9), Int(sh.SizeHeight + 0.9)
-
- '// 物件居中页面
- #If VBA7 Then
- ActiveDocument.ClearSelection
- sh.AddToSelection
- ActiveSelection.AlignAndDistribute 3, 3, 2, 0, False, 2
- #Else
- sh.AlignToPageCenter cdrAlignHCenter + cdrAlignVCenter
- #End If
- Next i
- ActiveDocument.EndCommandGroup: Application.Optimization = False
- ActiveWindow.Refresh: Application.Refresh
- Exit Function
- ErrorHandler:
- Application.Optimization = False
- MsgBox "请先选择一些物件"
- On Error Resume Next
- End Function
- '// 安全线: 点击一次建立辅助线,再调用清除参考线
- Public Function guideangle(actnumber As ShapeRange, cardblood As Integer)
- Dim sr As ShapeRange
- Set sr = ActiveDocument.MasterPage.GuidesLayer.FindShapes(Type:=cdrGuidelineShape)
- If sr.Count <> 0 Then
- sr.Delete
- Exit Function
- End If
-
- If 0 = ActiveSelectionRange.Count Then Exit Function
- ActiveDocument.Unit = cdrMillimeter
- With actnumber
- Set s1 = ActiveDocument.MasterPage.GuidesLayer.CreateGuideAngle(0, .TopY - cardblood, 0#)
- Set s1 = ActiveDocument.MasterPage.GuidesLayer.CreateGuideAngle(0, .BottomY + cardblood, 0#)
- Set s1 = ActiveDocument.MasterPage.GuidesLayer.CreateGuideAngle(.LeftX + cardblood, 0, 90#)
- Set s1 = ActiveDocument.MasterPage.GuidesLayer.CreateGuideAngle(.RightX - cardblood, 0, 90#)
- End With
-
- End Function
- Public Function splash_cnt()
- splash.show 0
- splash.text1 = splash.text1 & ">"
- Sleep 100
- End Function
- Public Function vba_cnt()
- VBA_FORM.text1 = VBA_FORM.text1 & ">"
- Sleep 100
- End Function
- Public Function 按面积排列(space_width As Double)
- If 0 = ActiveSelectionRange.Count Then Exit Function
- ActiveDocument.Unit = cdrMillimeter
- ActiveDocument.ReferencePoint = cdrCenter
-
- Set ssr = ActiveSelectionRange
- cnt = 1
- #If VBA7 Then
- ssr.Sort "@shape1.width * @shape1.height < @shape2.width * @shape2.height"
- #Else
- ' X4 不支持 ShapeRange.sort
- #End If
- Dim str As String, size As String
- For Each sh In ssr
- size = Int(sh.SizeWidth + 0.5) & "x" & Int(sh.SizeHeight + 0.5) & "mm"
- sh.SetSize Int(sh.SizeWidth + 0.5), Int(sh.SizeHeight + 0.5)
- str = str & size & vbNewLine
- Next sh
- ActiveDocument.ReferencePoint = cdrTopLeft
-
- For Each s In ssr
- If cnt > 1 Then s.SetPosition ssr(cnt - 1).LeftX, ssr(cnt - 1).BottomY - space_width
- cnt = cnt + 1
-
- vba_cnt
- Next s
- ' 写文件,可以EXCEL里统计
- ' Set fs = CreateObject("Scripting.FileSystemObject")
- ' Set f = fs.CreateTextFile("D:\size.txt", True)
- ' f.WriteLine str: f.Close
- str = 分类汇总(str)
- Debug.Print str
- Dim s1 As Shape
- ' Set s1 = ActiveLayer.CreateParagraphText(0, 0, 100, 150, Str, Font:="华文中宋")
- <<<<<<< HEAD
- x = ssr.FirstShape.LeftX - 100
- y = ssr.FirstShape.TopY
- Set s1 = ActiveLayer.CreateParagraphText(x, y, x + 90, y - 150, str, Font:="华文中宋")
- =======
- X = ssr.FirstShape.LeftX - 100
- Y = ssr.FirstShape.TopY
- Set s1 = ActiveLayer.CreateParagraphText(X, Y, X + 90, Y - 150, Str, Font:="华文中宋")
- >>>>>>> 556e97d494ce938408287776a3528f332486766c
- End Function
-
- '// 实现Excel里分类汇总功能
- Private Function 分类汇总(str As String) As String
- Dim a, b, d, arr
- str = VBA.Replace(str, vbNewLine, " ")
- Do While InStr(str, " ")
- str = VBA.Replace(str, " ", " ")
- Loop
- arr = Split(str)
- Set d = CreateObject("Scripting.dictionary")
- For i = 0 To UBound(arr) - 1
- If d.Exists(arr(i)) = True Then
- d.Item(arr(i)) = d.Item(arr(i)) + 1
- Else
- d.Add arr(i), 1
- End If
- Next
- str = " 规 格" & vbTab & vbTab & vbTab & "数量" & vbNewLine
- a = d.keys: b = d.items
- For i = 0 To d.Count - 1
- ' Debug.Print a(i), b(i)
- str = str & a(i) & vbTab & vbTab & b(i) & "条" & vbNewLine
- Next
- 分类汇总 = str & "合计总量:" & vbTab & vbTab & vbTab & UBound(arr) & "条" & vbNewLine
- End Function
- ' 两个端点的坐标,为(x1,y1)和(x2,y2) 那么其角度a的tan值: tana=(y2-y1)/(x2-x1)
- ' 所以计算arctan(y2-y1)/(x2-x1), 得到其角度值a
- ' VB中用atn(), 返回值是弧度,需要 乘以 PI /180
- Private Function lineangle(x1, y1, x2, y2) As Double
- pi = 4 * VBA.Atn(1) ' 计算圆周率
- If x2 = x1 Then
- lineangle = 90: Exit Function
- End If
- lineangle = VBA.Atn((y2 - y1) / (x2 - x1)) / pi * 180
- End Function
- Public Function 角度转平()
- On Error GoTo ErrorHandler
- ' ActiveDocument.ReferencePoint = cdrCenter
- Set sr = ActiveSelectionRange
- Set nr = sr.LastShape.DisplayCurve.Nodes.All
- If nr.Count = 2 Then
- x1 = nr.FirstNode.PositionX: y1 = nr.FirstNode.PositionY
- x2 = nr.LastNode.PositionX: y2 = nr.LastNode.PositionY
- a = lineangle(x1, y1, x2, y2): sr.Rotate -a
- ' sr.LastShape.Delete '// 删除参考线
- End If
- ErrorHandler:
- End Function
- Public Function 自动旋转角度()
- On Error GoTo ErrorHandler
- ' ActiveDocument.ReferencePoint = cdrCenter
- Set sr = ActiveSelectionRange
- Set nr = sr.LastShape.DisplayCurve.Nodes.All
- If nr.Count = 2 Then
- x1 = nr.FirstNode.PositionX: y1 = nr.FirstNode.PositionY
- x2 = nr.LastNode.PositionX: y2 = nr.LastNode.PositionY
- a = lineangle(x1, y1, x2, y2): sr.Rotate 90 + a
- sr.LastShape.Delete '// 删除参考线
- End If
- ErrorHandler:
- End Function
- Public Function 交换对象()
- Set sr = ActiveSelectionRange
- If sr.Count = 2 Then
- x = sr.LastShape.CenterX: y = sr.LastShape.CenterY
- sr.LastShape.CenterX = sr.FirstShape.CenterX: sr.LastShape.CenterY = sr.FirstShape.CenterY
- sr.FirstShape.CenterX = x: sr.FirstShape.CenterY = y
- End If
- End Function
- Public Function 参考线镜像()
- On Error GoTo ErrorHandler
- Set sr = ActiveSelectionRange
- Set nr = sr.LastShape.DisplayCurve.Nodes.All
- If nr.Count = 2 Then
- ActiveDocument.BeginCommandGroup "Mirror"
- byshape = False
- x1 = nr.FirstNode.PositionX: y1 = nr.FirstNode.PositionY
- x2 = nr.LastNode.PositionX: y2 = nr.LastNode.PositionY
- a = lineangle(x1, y1, x2, y2) '// 参考线和水平的夹角 a
- sr.Remove sr.Count
-
- ang = 90 - a ' 镜像的旋转角度
- For Each s In sr
- With s
- .Duplicate ' // 复制物件保留,然后按 x1,y1 点 旋转
- .RotationCenterX = x1
- .RotationCenterY = y1
- .Rotate ang
- If Not byshape Then
- lx = .LeftX
- .Stretch -1#, 1# ' // 通过拉伸完成镜像
- .LeftX = lx
- .Move (x1 - .LeftX) * 2 - .SizeWidth, 0
- .RotationCenterX = x1 '// 之前因为镜像,旋转中心点反了,重置回来
- .RotationCenterY = y1
- .Rotate -ang
- End If
- .RotationCenterX = .CenterX '// 重置回旋转中心点为物件中心
- .RotationCenterY = .CenterY
- End With
- Next s
- ActiveDocument.EndCommandGroup
- End If
- ErrorHandler:
- End Function
- Public Function autogroup(Optional group As String = "group", Optional shft = 0, Optional sss As Shapes = Nothing, Optional undogroup = True) As ShapeRange
- Dim sr As ShapeRange, sr_all As ShapeRange, os As ShapeRange
- Dim sp As SubPaths
- Dim arr()
- Dim s As Shape
- If sss Is Nothing Then Set os = ActiveSelectionRange Else Set os = sss.All
- On Error GoTo errn
- ActiveDocument.BeginCommandGroup: Application.Optimization = True
-
- If ActiveSelection.Shapes.Count > 0 Then
- gcnt = os.Shapes.Count
- ReDim arr(1 To gcnt, 1 To gcnt)
- Set sr_all = ActiveSelectionRange
- sr_all.RemoveAll
- ReDim arr(1 To gcnt, 1 To gcnt)
- ActiveDocument.Unit = cdrTenthMicron
- sgap = 10
- If shft = 2 Or shft = 3 Or shft = 6 Or shft = 7 Then
- os.RemoveAll
- For Each s In ActiveSelectionRange.Shapes
- os.Add ActivePage.SelectShapesFromRectangle(s.LeftX - sgap, s.BottomY - sgap, s.RightX + sgap, s.TopY + sgap, True)
- Next s
- End If
-
- For i = 1 To os.Shapes.Count
- Set s1 = os.Shapes(i)
- arr(i, i) = i
- For j = 1 To os.Shapes.Count
- Set s2 = os.Shapes(j)
- If s2.LeftX < s1.RightX + sgap And s2.RightX > s1.LeftX - sgap And s2.BottomY < s1.TopY + sgap And s2.TopY > s1.BottomY - sgap Then
- If shft = 1 Or shft = 3 Or shft = 5 Or shft = 7 Then
- Set isec = s1.Intersect(s2)
- If Not isec Is Nothing Then
- arr(i, j) = j
- isec.CreateSelection
- isec.Delete
- End If
- Else
- arr(i, j) = j
- End If
- End If
- Next j
- Next i
-
- For i = 1 To gcnt
- arr = collect_arr(arr, i, i)
- Next i
-
- Set sr = ActiveSelectionRange
- For i = 1 To gcnt
- sr.RemoveAll
- inar = 0
- For j = 1 To gcnt
- If arr(i, j) > 0 Then
- sr.Add os.Shapes(j)
- inar = inar + 1
- End If
- Next j
- If inar > 1 Then
- If group = "group" Then
- If shft < 4 Then sr_all.Add sr.group
- End If
- Else
- If sr.Shapes.Count > 0 Then sr_all.AddRange sr
- End If
- Next i
- Set autogroup = sr_all
- End If
- ActiveDocument.EndCommandGroup
- Application.Optimization = False
- ActiveWindow.Refresh: Application.Refresh
- Exit Function
- errn:
- Application.Optimization = False
- End Function
- Public Function collect_arr(arr, ci, ki)
- lim = UBound(arr)
- For k = 1 To lim
- If arr(ki, k) > 0 Then
- arr(ci, k) = k
- If ki <> ci Then arr(ki, k) = Empty
- If ci <> k And ki <> k Then arr = collect_arr(arr, ci, k)
- End If
- Next k
- 'If ki <> ci Then arr(ki, ki) = Empty
- collect_arr = arr
- End Function
- ' 两个端点的坐标,为(x1,y1)和(x2,y2) 那么其角度a的tan值: tana=(y2-y1)/(x2-x1)
- ' 所以计算arctan(y2-y1)/(x2-x1), 得到其角度值a
- ' VB中用atn(), 返回值是弧度,需要 乘以 PI /180
- Private Function lineangle(x1, y1, x2, y2) As Double
- pi = 4 * VBA.Atn(1) ' 计算圆周率
- If x2 = x1 Then
- lineangle = 90: Exit Function
- End If
- lineangle = VBA.Atn((y2 - y1) / (x2 - x1)) / pi * 180
- End Function
- <<<<<<< HEAD
- Sub Make_Sizes()
- ActiveDocument.Unit = cdrMillimeter
- Set os = ActiveSelectionRange
- If os.Count > 0 Then
- For Each s In os.Shapes
- Set pts = os.FirstShape.SnapPoints.BBox(cdrTopLeft)
- Set pte = os.LastShape.SnapPoints.BBox(cdrTopRight)
- ActiveLayer.CreateLinearDimension cdrDimensionHorizontal, pts, pte, True, os.LeftX + os.SizeWidth / 10, os.TopY + os.SizeHeight / 10, cdrDimensionStyleEngineering
-
- Set pte = os.LastShape.SnapPoints.BBox(cdrBottomLeft)
- ActiveLayer.CreateLinearDimension cdrDimensionVertical, pts, pte, True, os.LeftX - os.SizeWidth / 10, os.BottomY + os.SizeHeight / 10, cdrDimensionStyleEngineering
-
- Next s
- End If
- End Sub
- '''//// 选择多物件,组合然后拆分线段,为角线爬虫准备 ////'''
- Public Function Split_Segment()
- On Error GoTo ErrorHandler
- ActiveDocument.BeginCommandGroup: Application.Optimization = True
-
- Dim ssr As ShapeRange
- Set ssr = ActiveSelectionRange
- Dim s As Shape
- Dim nr As NodeRange
- Dim nd As Node
-
- Set s = ssr.UngroupAllEx.Combine
- Set nr = s.Curve.Nodes.All
-
- nr.BreakApart
- s.BreakApartEx
- ' For Each nd In nr
- ' nd.BreakApart
- ' Next nd
-
- ActiveDocument.EndCommandGroup
- Application.Optimization = False
- ActiveWindow.Refresh: Application.Refresh
- Exit Function
- ErrorHandler:
- Application.Optimization = False
- On Error Resume Next
- End Function
- '// 修复圆角缺角到直角
- Public Sub corner_off()
- Dim os As ShapeRange
- Dim s As Shape, fir As Shape, ci As Shape
- Dim nd As Node, nds As Node, nde As Node
- Set os = ActiveSelectionRange
- ud = ActiveDocument.Unit
- ActiveDocument.Unit = cdrMillimeter
- On Error GoTo errn
- ActiveDocument.BeginCommandGroup "corners off"
- 'Application.Optimization = True
- selec = False
- If os.Shapes.Count = 1 Then
- Set s = os.FirstShape
- If Not s.Curve Is Nothing Then
- For Each nd In s.Curve.Nodes
- If nd.Selected Then
- selec = True
- Exit For
- End If
- Next nd
- End If
- End If
-
- If os.Shapes.Count > 1 Or Not selec Then
- os.ConvertToCurves
- For Each s In os.Shapes
- Set nds = Nothing
- Set nde = Nothing
- For k = 1 To 3
- For i = 1 To s.Curve.Nodes.Count
- If i <= s.Curve.Nodes.Count Then
- Set nd = s.Curve.Nodes(i)
- If Not nd.NextSegment Is Nothing And Not nd.PrevSegment Is Nothing Then
- If Abs(nd.PrevSegment.Length - nd.NextSegment.Length) < (nd.PrevSegment.Length + nd.NextSegment.Length) / 30 And nd.PrevSegment.Type = cdrCurveSegment And nd.NextSegment.Type = cdrCurveSegment Then
- corner_off_make s, nd.Previous, nd.Next
- ElseIf Not nd.Next.NextSegment Is Nothing Then
- If (nd.PrevSegment.Type = cdrLineSegment Or Abs(Abs(nd.PrevSegment.StartingControlPointAngle - nd.PrevSegment.EndingControlPointAngle) - 180) < 1) _
- And (nd.Next.NextSegment.Type = cdrLineSegment Or Abs(Abs(nd.Next.NextSegment.StartingControlPointAngle - nd.Next.NextSegment.EndingControlPointAngle) - 180) < 1) _
- And nd.NextSegment.Type = cdrCurveSegment Then
- corner_off_make s, nd, nd.Next
- End If
- End If
- End If
- End If
- Next i
- Next k
-
-
- Next s
- ElseIf os.Shapes.Count = 1 And selec Then
- Set nds = Nothing
- Set nde = Nothing
- For Each nd In s.Curve.Nodes
- If Not nd.Selected And Not nd.Next.Selected Then Exit For
- Next nd
- If Not nd Is s.Curve.Nodes.Last Then
- For i = 1 To s.Curve.Nodes.Count
- Set nd = nd.Next
- If Not nde Is Nothing And Not nds Is Nothing And Not nd.Selected Then Exit For
- If Not nds Is Nothing And nd.Selected Then Set nde = nd
- If nde Is Nothing And nds Is Nothing And nd.Selected Then Set nds = nd
- Next i
-
- If Not nds Is Nothing And Not nde Is Nothing Then
- 'ActiveLayer.CreateEllipse2 nds.PositionX, nds.PositionY, nde.PrevSegment.Length / 4
- 'ActiveLayer.CreateEllipse2 nde.PositionX, nde.PositionY, nde.PrevSegment.Length / 4
- corner_off_make s, nds, nde
- End If
- End If
- End If
- errn:
- Application.Optimization = False
- ActiveDocument.EndCommandGroup
- Application.Refresh
- ActiveDocument.Unit = ud
- End Sub
- Private Sub corner_off_make(s As Shape, nds As Node, nde As Node)
- Dim l1 As Shape, l2 As Shape
- Dim os As ShapeRange
- Dim ss As Shape
- ud = ActiveDocument.Unit
- ActiveDocument.Unit = cdrMillimeter
- Set l1 = ActiveLayer.CreateLineSegment(nds.PositionX, nds.PositionY, nds.PositionX + s.SizeWidth * 3, nds.PositionY)
- l1.RotationCenterX = nds.PositionX
- l1.RotationAngle = nds.PrevSegment.EndingControlPointAngle + 180
-
- Set l2 = ActiveLayer.CreateLineSegment(nde.PositionX, nde.PositionY, nde.PositionX + s.SizeWidth * 3, nde.PositionY)
- l2.RotationCenterX = nde.PositionX
- l2.RotationAngle = nde.NextSegment.StartingControlPointAngle + 180
-
- Set lcross = l2.Curve.Segments.First.GetIntersections(l1.Curve.Segments.First)
- If lcross.Count > 0 Then
- cx = lcross(1).PositionX
- cy = lcross(1).PositionY
- sx = nds.PositionX
- sy = nds.PositionY
- ex = nde.PositionX
- ey = nde.PositionY
-
- l1.Curve.Nodes.Last.PositionX = cx
- l1.Curve.Nodes.Last.PositionY = cy
- l2.Curve.Nodes.Last.PositionX = cx
- l2.Curve.Nodes.Last.PositionY = cy
-
- s.Curve.Nodes.Range(Array(nds.AbsoluteIndex, nde.AbsoluteIndex)).BreakApart
- Set os = s.BreakApartEx
- oscnt = os.Shapes.Count
- For Each ss In os.Shapes
- If ss.Curve.Nodes.First.PositionX = ex And ss.Curve.Nodes.First.PositionY = ey Then Set s2 = ss
- If ss.Curve.Nodes.Last.PositionX = sx And ss.Curve.Nodes.Last.PositionY = sy Then Set s1 = ss
- If ss.Curve.Nodes.First.PositionX = sx And ss.Curve.Nodes.First.PositionY = sy Then ss.Delete
- Next ss
-
- If s1.Curve.Segments.Last.Type = cdrLineSegment Or Abs(Abs(s1.Curve.Segments.Last.StartingControlPointAngle - s1.Curve.Segments.Last.EndingControlPointAngle) - 180) < 1 Then
- s1.Curve.Nodes.Last.PositionX = lcross(1).PositionX
- s1.Curve.Nodes.Last.PositionY = lcross(1).PositionY
- l1.Delete
- Else
- Set s1 = l1.Weld(s1)
- End If
- If oscnt = 2 Then Set s2 = s1
- If s2.Curve.Segments.First.Type = cdrLineSegment Or Abs(Abs(s2.Curve.Segments.First.StartingControlPointAngle - s2.Curve.Segments.First.EndingControlPointAngle) - 180) < 1 Then
- s2.Curve.Nodes.First.PositionX = lcross(1).PositionX
- s2.Curve.Nodes.First.PositionY = lcross(1).PositionY
- l2.Delete
- Else
- Set s2 = l2.Weld(s2)
- End If
- If oscnt > 2 Then Set s2 = s1.Weld(s2)
- s2.CustomCommand "ConvertTo", "JoinCurves", 0.1
- Set s = s2
- Else
- l1.Delete
- l2.Delete
- End If
- ActiveDocument.Unit = ud
- End Sub
- Sub ExportNodePositions()
- Dim s As Shape, n As Node
- Dim srActiveLayer As ShapeRange
- Dim x As Double, y As Double
- Dim strNodePositions As String
-
- ActiveDocument.Unit = cdrMillimeter
-
- 'Get all the curve shapes on the Active Layer
- '获取Active Layer上的所有曲线形状
- Set srActiveLayer = ActiveLayer.Shapes.FindShapes(Query:="@type='curve'")
- 'This is another way you can get only the curve shapes
- '这是另一种你只能得到曲线形状的方法
- 'Set srActiveLayer = ActiveLayer.Shapes.FindShapes.FindAnyOfType(cdrCurveShape)
-
- 'Loop through each curve
- '遍历每条曲线
- For Each s In srActiveLayer.Shapes
- 'Loop though each node in the curve and get the position
- '遍历曲线中的每个节点并获取位置
- For Each n In s.Curve.Nodes
- n.GetPosition x, y
- strNodePositions = strNodePositions & "x: " & x & " y: " & y & vbCrLf
- Next n
- Next s
-
- 'Save the node positions to a file
- '将节点位置保存到文件
- Open "C:\Temp\NodePositions.txt" For Output As #1
- Print #1, strNodePositions
- Close #1
- End Sub
- Sub 服务器T()
- Dim mark As Shape
- Dim sr As ShapeRange
-
- Set sr = ActiveSelectionRange
- If (Shift And 1) <> 0 Then ActivePage.Shapes.FindShapes(Query:="@type ='rectangle'or @type ='curve'or @type ='Ellipse'or @type ='Polygon'").CreateSelection
- sr.Shapes.FindShapes(Query:="@type ='rectangle'or @type ='curve'or @type ='Ellipse'or @type ='Polygon'").ConvertToCurves
- If sr.Count = 0 Then Exit Sub
-
- ' CorelDRAW设置原点标记导出DXF使用
-
- ' 更新原点标记,现在能设置任意坐标点
- Dim MarkPos_Array() As Double
- MarkPos_Array = Get_MarkPosition
- AtOrigin MarkPos_Array(0), MarkPos_Array(1)
-
- sr.Add ActiveDocument.ActiveShape
- Set mark = ActiveDocument.ActiveShape
- ActiveDocument.ClearSelection
- sr.CreateSelection
- ' Set mark = ActiveDocument.ActiveShape
- ' If FileExists("d:\mytempdxf.dxf") Then
- ' DeleteFile "d:\mytempdxf.dxf"
- ' End If
-
- SaveDXF "d:\mytempdxf.dxf"
-
- ' Do While FileExists("d:\mytempdxf.dxf") = False
- ' DoEvents
- ' Delay 1
- ' Loop
- Shell Application.GMSManager.GMSPath & "tuznr.exe d:/mytempdxf.dxf", 1
-
- mark.Delete
- End Sub
- Sub SaveDXF(FileName As String)
- Dim expopt As StructExportOptions
- Set expopt = CreateStructExportOptions
- expopt.UseColorProfile = False
- Dim expflt As ExportFilter
- Set expflt = ActiveDocument.ExportEx(FileName, cdrDXF, cdrSelection, expopt)
- With expflt
- .BitmapType = 0 ' FilterDXFLib.dxfBitmapJPEG
- .TextAsCurves = True
- .Version = 3 ' FilterDXFLib.dxfVersion13
- .Units = 3 ' FilterDXFLib.dxfMillimeters
- .FillUnmapped = True
- .Finish
- End With
- End Sub
- ' 更新原点标记函数,现在能设置任意坐标点
- Sub AtOrigin(Optional px As Double = 0#, Optional py As Double = 0#)
- Dim doc As Document: Set doc = ActiveDocument
- doc.Unit = cdrMillimeter
- '// 导入原点标记标记文件 OriginMark.cdr 解散群组
- doc.ActiveLayer.Import path & "GMS\OriginMark.cdr"
- doc.ReferencePoint = cdrCenter
- doc.Selection.Ungroup
- Dim sh As Shape, shs As Shapes
- Set shs = ActiveSelection.Shapes
- '// 按 MarkName 名称查找 标记物件
- For Each sh In shs
- If "AtOrigin" = sh.ObjectData("MarkName").Value Then
- sh.SetPosition px, py
- Else
- sh.Delete ' 不需要的标记删除
- End If
- Next sh
- End Sub
- ' 使用 GlobalUserData 对象保存 Mark标记坐标文本,调用函数能设置文本
- Public Function Mark_SetPosition() As String
- Dim text As String
- If GlobalUserData.Exists("MarkPosition", 1) Then
- text = GlobalUserData("MarkPosition", 1)
- End If
- text = InputBox("请输入Mark标记坐标(x,y),空格或逗号间隔", "设置Mark标记坐标(x,y),单位(mm)", text)
- If text = "" Then Exit Function
- GlobalUserData("MarkPosition", 1) = text
- Mark_SetPosition = text
- End Function
- ' 调用设置Mark标记坐标功能,返回 数组(x,y)
- Public Function Get_MarkPosition() As Double()
- Dim MarkPos_Array(0 To 1) As Double
- Dim str, arr
-
- str = Mark_SetPosition
- ' 替换 逗号 为空格
- str = VBA.Replace(str, ",", " ")
- Do While InStr(str, " ") '多个空格换成一个空格
- str = VBA.Replace(str, " ", " ")
- Loop
- arr = Split(str)
-
- MarkPos_Array(0) = Val(arr(0))
- MarkPos_Array(1) = Val(arr(1))
-
- Debug.Print MarkPos_Array(0), MarkPos_Array(1) ' 视图->立即窗口,调试显示
-
- Get_MarkPosition = MarkPos_Array
-
- End Function
- Public Function SetNames()
- Dim ssr As ShapeRange
- Set ssr = ActiveSelectionRange
- #If VBA7 Then
- ssr.Sort " @shape1.left<@shape2.left"
- #Else
- ' X4 不支持 ShapeRange.sort
- #End If
- Dim text As String
- Dim lines() As String
- ' 提取文本信息,切割文本
- If ssr(1).Type = cdrTextShape Then
- If ssr(1).text.Type = cdrArtistic Then
- text = ssr(1).text.Story.text
- lines = Split(text, vbCr)
- ssr.Remove 1
- #If VBA7 Then
- ssr.Sort " @shape1.top>@shape2.top"
- #Else
- ' X4 不支持 ShapeRange.sort
- #End If
- End If
- Else
- MsgBox "请把多行文本放最左边"
- Exit Function
- End If
-
- ' Debug.Print ssr.Count, UBound(lines), LBound(lines)
- ' 给物件设置名称,用处:批量导出可以有一个名称
- i = 0
- If ssr.Count <= UBound(lines) + 1 Then
- For Each s In ssr
- s.Name = lines(i)
- i = i + 1
- Next s
- End If
-
- If ssr.Count <> UBound(lines) + 1 Then MsgBox "文本行:" & (UBound(lines) + 1) & vbNewLine & "右边物件:" & ssr.Count
-
- End Function
- Sub Nodes_TO_TSP()
- Set fs = CreateObject("Scripting.FileSystemObject")
- Set f = fs.CreateTextFile("C:\TSP\CDR_TO_TSP", True)
- ActiveDocument.Unit = cdrMillimeter
- Dim s As Shape, ssr As ShapeRange
- Set ssr = ActiveSelectionRange
- Dim TSP As String
- TSP = (ssr.Count * 4) & " " & 0 & vbNewLine
- For Each s In ssr
- lx = s.LeftX: rx = s.RightX
- By = s.BottomY: ty = s.TopY
- TSP = TSP & lx & " " & By & vbNewLine
- TSP = TSP & lx & " " & ty & vbNewLine
- TSP = TSP & rx & " " & By & vbNewLine
- TSP = TSP & rx & " " & ty & vbNewLine
- Next s
- f.WriteLine TSP
- f.Close
- End Sub
- '// 获得剪贴板文本字符
- Public Function GetClipBoardString() As String
- On Error Resume Next
- Dim MyData As New DataObject
- GetClipBoardString = ""
- MyData.GetFromClipboard
- GetClipBoardString = MyData.GetText
- Set MyData = Nothing
- End Function
- =======
- Public Function 角度转平()
- On Error GoTo ErrorHandler
- ' ActiveDocument.ReferencePoint = cdrCenter
- Set sr = ActiveSelectionRange
- Set nr = sr.LastShape.DisplayCurve.Nodes.All
- If nr.Count = 2 Then
- x1 = nr.FirstNode.PositionX: y1 = nr.FirstNode.PositionY
- x2 = nr.LastNode.PositionX: y2 = nr.LastNode.PositionY
- a = lineangle(x1, y1, x2, y2): sr.Rotate -a
- ' sr.LastShape.Delete '// 删除参考线
- End If
- ErrorHandler:
- End Function
- Public Function 自动旋转角度()
- On Error GoTo ErrorHandler
- ' ActiveDocument.ReferencePoint = cdrCenter
- Set sr = ActiveSelectionRange
- Set nr = sr.LastShape.DisplayCurve.Nodes.All
- If nr.Count = 2 Then
- x1 = nr.FirstNode.PositionX: y1 = nr.FirstNode.PositionY
- x2 = nr.LastNode.PositionX: y2 = nr.LastNode.PositionY
- a = lineangle(x1, y1, x2, y2): sr.Rotate 90 + a
- sr.LastShape.Delete '// 删除参考线
- End If
- ErrorHandler:
- End Function
- Public Function 交换对象()
- Set sr = ActiveSelectionRange
- If sr.Count = 2 Then
- X = sr.LastShape.CenterX: Y = sr.LastShape.CenterY
- sr.LastShape.CenterX = sr.FirstShape.CenterX: sr.LastShape.CenterY = sr.FirstShape.CenterY
- sr.FirstShape.CenterX = X: sr.FirstShape.CenterY = Y
- End If
- End Function
- '// ===================================================
- Private Sub btn_autoalign_byrow_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
- If get_events("btn_autoalign_byrow", Shift, Button) = "exit" Then Exit Sub
- autogroup("group_lines", 16 + Shift).CreateSelection
- End Sub
- Private Sub btn_autoalign_bycolumn_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
- If get_events("btn_autoalign_bycolumn", Shift, Button) = "exit" Then Exit Sub
- autogroup("group_lines", 13 + Shift).CreateSelection
- End Sub
- Private Sub btn_autogroup_byrow_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
- If get_events("btn_autogroup_byrow", Shift, Button) = "exit" Then Exit Sub
- autogroup("group_lines", 6).CreateSelection
- End Sub
- Private Sub btn_autogroup_bycolumn_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
- If get_events("btn_autogroup_bycolumn", Shift, Button) = "exit" Then Exit Sub
- autogroup("group_lines", 3).CreateSelection
- End Sub
- Private Sub btn_autogroup_bysquare_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
- If get_events("btn_autogroup_bysquare", Shift, Button) = "exit" Then Exit Sub
- autogroup("group").CreateSelection
- End Sub
- Private Sub btn_autogroup_byshape_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
- If get_events("btn_autogroup_byshape", Shift, Button) = "exit" Then Exit Sub
- autogroup("group", 1).CreateSelection
- End Sub
- Public Sub begin_func(Optional undoname = "nul", Optional units = cdrMillimeter, Optional undogroup = True, Optional optimize = True, Optional sett = "before")
- ActiveDocument.SaveSettings sett
- ActiveDocument.Unit = units
- If undogroup Then ActiveDocument.BeginCommandGroup undoname
- Application.Optimization = optimize
- EventsEnabled = Not optimize
- End Sub
- Public Sub end_func(Optional undogroup = True, Optional sett = "before")
- cure_app undogroup
- ActiveDocument.RestoreSettings sett
- End Sub
- Sub cure_app(Optional undogroup = True)
- EventsEnabled = True
- Application.Optimization = False
- Application.Refresh
- DoEvents
- If undogroup Then ActiveDocument.EndCommandGroup
- End Sub
- Public Function collect_arr(arr, ci, ki)
- lim = UBound(arr)
- For k = 1 To lim
- If arr(ki, k) > 0 Then
- arr(ci, k) = k
- If ki <> ci Then arr(ki, k) = Empty
- If ci <> k And ki <> k Then arr = collect_arr(arr, ci, k)
- End If
- Next k
- 'If ki <> ci Then arr(ki, ki) = Empty
- collect_arr = arr
- End Function
- Public Function autogroup(Optional group As String = "group", Optional shft = 0, Optional sss As Shapes = Nothing, Optional undogroup = True) As ShapeRange
- Dim sr As ShapeRange, sr_all As ShapeRange, os As ShapeRange
- Dim sp As SubPaths
- Dim arr()
- Dim s As Shape
- If sss Is Nothing Then Set os = ActiveSelectionRange Else Set os = sss.All
- 'On Error GoTo errn
- If ActiveSelection.Shapes.Count > 0 Then
- begin_func "autogroup" & group, cdrMillimeter, undogroup
- gcnt = os.Shapes.Count
- ReDim arr(1 To gcnt, 1 To gcnt)
- Set sr_all = ActiveSelectionRange
- sr_all.RemoveAll
- If group = "group_lines" Then
- For i = 1 To gcnt
- If shft = 3 Or shft = 13 Or shft = 14 Then
- coord = Int(os.Shapes(i).CenterX)
- Else
- coord = Int(os.Shapes(i).CenterY)
- End If
- fnd = False
- For k = 1 To gcnt
- If arr(k, 1) > 0 Then
- If arr(k, 2) = coord Then
- arr(k, 1) = arr(k, 1) + 1
- arr(k, 2 + arr(k, 1)) = i
- fnd = True
- Exit For
- End If
- Else
- Exit For
- End If
- Next k
- If Not fnd Then
- arr(k, 1) = 1
- arr(k, 2) = coord
- arr(k, 3) = i
- End If
- Next i
- Set sr = ActiveSelectionRange
- For i = 1 To gcnt
- If arr(i, 1) > 0 Then
- sr.RemoveAll
- For k = 3 To gcnt
- If arr(i, k) > 0 Then sr.Add os.Shapes(arr(i, k))
- Next k
- If sr.Shapes.Count > 0 Then
- sr.CreateSelection
- If shft = 13 Then
- sr.AlignAndDistribute cdrAlignDistributeHNone, cdrAlignDistributeVDistributeSpacing
- ElseIf shft = 14 Then
- sr.AlignAndDistribute cdrAlignDistributeHNone, cdrAlignDistributeVDistributeCenter
- ElseIf shft = 16 Then
- sr.AlignAndDistribute cdrAlignDistributeHDistributeSpacing, cdrAlignDistributeVNone
- ElseIf shft = 17 Then
- sr.AlignAndDistribute cdrAlignDistributeHDistributeCenter, cdrAlignDistributeVNone
- Else
- sr.group
- End If
- sr_all.AddRange sr
- End If
- End If
- Next i
- Else
- ReDim arr(1 To gcnt, 1 To gcnt)
- ActiveDocument.Unit = cdrTenthMicron
- sgap = 10
- If shft = 2 Or shft = 3 Or shft = 6 Or shft = 7 Then
- os.RemoveAll
- For Each s In ActiveSelectionRange.Shapes
- os.Add ActivePage.SelectShapesFromRectangle(s.LeftX - sgap, s.BottomY - sgap, s.RightX + sgap, s.TopY + sgap, True)
- Next s
- End If
-
- For i = 1 To os.Shapes.Count
- Set s1 = os.Shapes(i)
- arr(i, i) = i
- For j = 1 To os.Shapes.Count
- Set s2 = os.Shapes(j)
- If s2.LeftX < s1.RightX + sgap And s2.RightX > s1.LeftX - sgap And s2.BottomY < s1.TopY + sgap And s2.TopY > s1.BottomY - sgap Then
- If shft = 1 Or shft = 3 Or shft = 5 Or shft = 7 Then
- Set isec = s1.Intersect(s2)
- If Not isec Is Nothing Then
- arr(i, j) = j
- isec.CreateSelection
- isec.Delete
- End If
- Else
- arr(i, j) = j
- End If
- End If
- Next j
- Next i
-
- For i = 1 To gcnt
- arr = collect_arr(arr, i, i)
- Next i
-
- Set sr = ActiveSelectionRange
- For i = 1 To gcnt
- sr.RemoveAll
- inar = 0
- For j = 1 To gcnt
- If arr(i, j) > 0 Then
- sr.Add os.Shapes(j)
- inar = inar + 1
- End If
- Next j
- If inar > 1 Then
- If group = "group" Then
- If shft < 4 Then sr_all.Add sr.group
- Else
- If group = "front" Then
- sr.Sort "@shape1.com.zOrder > @shape2.com.zOrder"
- ElseIf group = "back" Then
- sr.Sort "@shape1.com.zOrder < @shape2.com.zOrder"
- Else
- sr.Sort "@shape1.width*@shape1.height < @shape2.width*@shape2.height"
- End If
- Set fs = sr.FirstShape
- Set ls = sr.LastShape
- For Each s In sr.Shapes
- If Not s Is ls And Not s Is fs Then
- If group = "autocut" Then
- Set isec = ls.Intersect(s)
- If Not isec Is Nothing Then
- If isec.Curve.Area = s.Curve.Area Then
- Set ls = fs.Trim(ls, False)
- Else
- Set ls = fs.Weld(ls, False)
- End If
- isec.Delete
- End If
- Else
- Set fs = s.Weld(fs, False, False)
- End If
- End If
- Next s
- If group = "weld" Then
- Set ls = fs.Weld(ls, False)
- Else
- Set ls = fs.Trim(ls, False)
- End If
- sr_all.Add ls
- End If
- Else
- If sr.Shapes.Count > 0 Then sr_all.AddRange sr
- End If
- Next i
- End If
- Set autogroup = sr_all
- End If
- errn:
- end_func undogroup
- End Function
- Sub auto_cut()
- autogroup("autocut").CreateSelection
- End Sub
- Sub auto_big_small()
- autogroup("big").CreateSelection
- End Sub
- Sub auto_group()
- autogroup.CreateSelection
- End Sub
- Sub auto_weld()
- autogroup("weld").CreateSelection
- End Sub
- Sub auto_group_lines()
- autogroup("group_lines", 6).CreateSelection
- End Sub
- Sub auto_group_columns()
- autogroup("group_lines", 3).CreateSelection
- End Sub
- >>>>>>> 556e97d494ce938408287776a3528f332486766c
|