Attribute VB_Name = "AutoColorMark"
'// This is free and unencumbered software released into the public domain.
'// For more information, please refer to  https://github.com/hongwenjun

'// Attribute VB_Name = "自动中线色阶条"   AutoColorMark  2023.6.11

'// 请先选择要印刷的物件群组,本插件完成设置页面大小,自动中线色阶条对准线功能
Function Auto_ColorMark()
  If 0 = ActiveSelectionRange.Count Then Exit Function
  On Error GoTo ErrorHandler
  API.BeginOpt

  Dim doc As Document: Set doc = ActiveDocument

  ' 物件群组,设置页面大小
  set_page_size

  '// 获得页面中心点 x,y
  px = ActiveDocument.ActivePage.CenterX
  py = ActiveDocument.ActivePage.CenterY
  '// 导入色阶条中线对准线标记文件 ColorMark.cdr 解散群组
  doc.ActiveLayer.Import Path & "GMS\ColorMark.cdr"
  ActiveDocument.ReferencePoint = cdrBottomMiddle
  ' ActiveDocument.Selection.SetPosition px, -100
  ActiveDocument.Selection.Ungroup

  Dim sh As Shape, shs As Shapes
  Set shs = ActiveSelection.Shapes
  '// 按 MarkName 名称查找放置中线对准线标记等
  For Each sh In shs
  ActiveDocument.ClearSelection
  sh.CreateSelection
  If "CenterLine" = sh.ObjectData("MarkName").value Then
      put_center_line sh
      
  ElseIf "TargetLine" = sh.ObjectData("MarkName").value Then
      put_target_line sh

  ElseIf "ColorStrip" = sh.ObjectData("MarkName").value Then
      ColorStrip = Val(GetSetting("LYVBA", "Settings", "ColorStrip", "1"))
      
      If Val(ColorStrip) = 1 Then
        put_ColorStrip sh   ' 放置彩色色阶条
      Else
        sh.Delete  ' 工厂定置不用色阶条
      End If
    
  ElseIf "ColorMark" = sh.ObjectData("MarkName").value Then
      ' CMYK四色标记放置咬口
      If (px > py) Then
      sh.SetPosition px + 25#, 0
      Else
      sh.Rotate 270#
      ActiveDocument.ReferencePoint = cdrBottomLeft
      sh.SetPosition 0, py - 42#
      End If
      sh.OrderToBack
  Else
      sh.Delete   ' 没找到标记 ColorMark 删除
  
  End If
  Next sh

  ' 标准页面大小和添加页面框
  put_page_size
  put_page_line
  
  '// 使用CQL 颜色标志查找,然后群组统一设置线宽和注册色
  ActivePage.Shapes.FindShapes(Query:="@colors.find(RGB(26, 22, 35))").CreateSelection
  ActiveSelection.Group
  ActiveSelection.Outline.SetProperties 0.1, Color:=CreateRegistrationColor

ErrorHandler:
  API.EndOpt
End Function

Private Function set_page_size()
  ' 实践应用: 选择物件群组,页面设置物件大小,物件页面居中
  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

Private Function set_line_color(line As Shape)
    '// 设置线宽和注册色
   line.Outline.SetProperties Color:=CreateRGBColor(26, 22, 35)
End Function

Private Function put_page_line()
  ' 添加页面框线
  Dim s1 As Shape
  Set s1 = ActiveLayer.CreateRectangle2(0, 0, ActivePage.SizeWidth, ActivePage.SizeHeight)
  s1.Fill.ApplyNoFill:    s1.OrderToBack
  s1.Outline.SetProperties 0.01, Color:=CreateCMYKColor(100, 0, 0, 0)
End Function

'''---------  CorelDRAW X4 和 高版本 对齐页面API不同 ------------------'''
#If VBA7 Then

Private Function put_center_line(sh As Shape)
  ' 在页面四边放置中线
  set_line_color sh
  sh.AlignAndDistribute 3, 1, 1, 0, False, 2
  sh.Duplicate 0, 0
  sh.Rotate 180
  sh.AlignAndDistribute 3, 2, 1, 0, False, 2
  sh.Duplicate 0, 0
  sh.Rotate 90
  sh.AlignAndDistribute 1, 3, 1, 0, False, 2
  sh.Duplicate 0, 0
  sh.Rotate 180
  sh.AlignAndDistribute 2, 3, 1, 0, False, 2
End Function

Private Function put_target_line(sh As Shape)
  ' 在页面四角放置套准标记线
  set_line_color sh
  sh.AlignAndDistribute 2, 1, 1, 0, False, 2
  sh.Duplicate 0, 0
  sh.Rotate 180
  sh.AlignAndDistribute 1, 2, 1, 0, False, 2
  sh.Duplicate 0, 0
  sh.Flip cdrFlipHorizontal   ' 物件镜像
  sh.AlignAndDistribute 2, 2, 1, 0, False, 2
  sh.Duplicate 0, 0
  sh.Rotate 180
  sh.AlignAndDistribute 1, 1, 1, 0, False, 2
End Function

Private Function put_ColorStrip(sh As Shape)
  ' 在页面四边放置色阶条
    sh.OrderToBack
  If ActivePage.SizeWidth >= ActivePage.SizeHeight Then
    sh.AlignAndDistribute 2, 1, 1, 0, False, 2
    sh.Duplicate 5, 0
    sh.AlignAndDistribute 1, 1, 1, 0, False, 2
    sh.Duplicate -25, 0
    sh.Rotate 90
    sh.AlignAndDistribute 2, 2, 1, 0, False, 2
    sh.Duplicate 0, 5
    sh.AlignAndDistribute 1, 2, 1, 0, False, 2
    sh.Move 0, 5
  Else
    sh.AlignAndDistribute 2, 1, 1, 0, False, 2
    sh.Duplicate 5, 0
    sh.AlignAndDistribute 2, 2, 1, 0, False, 2
    sh.Duplicate 5, 0
    sh.Rotate 270
    sh.AlignAndDistribute 1, 1, 1, 0, False, 2
    sh.Duplicate 0, -5
    sh.AlignAndDistribute 2, 2, 1, 0, False, 2
    sh.Move 0, 25
  End If
End Function

Private Function put_page_size()
  ' 添加文字 页面大小和文件名
  Dim st As Shape
  size = Trim(Str(Int(ActivePage.SizeWidth))) + "x" + Trim(Str(Int(ActivePage.SizeHeight))) + "mm"
  size = size & " " & ActiveDocument.FileName & " " & Date '
  Set st = ActiveLayer.CreateArtisticText(0, 0, size, , , "Arial", 7)
End Function

#Else
'''---------  CorelDRAW X4 对齐页面API ------------------'''

Private Function put_target_line(sh As Shape)
  ' 在页面四角放置套准标记线  Set sh = ActiveDocument.Selection
  set_line_color sh
  sh.AlignToPage cdrAlignLeft + cdrAlignTop
  sh.Duplicate 0, 0
  sh.Rotate 180
  sh.AlignToPage cdrAlignRight + cdrAlignBottom
  sh.Duplicate 0, 0
  sh.Flip cdrFlipHorizontal   ' 物件镜像
  sh.AlignToPage cdrAlignLeft + cdrAlignBottom
  sh.Duplicate 0, 0
  sh.Rotate 180
  sh.AlignToPage cdrAlignRight + cdrAlignTop
End Function

Private Function put_center_line(sh As Shape)
  ' 在页面四边放置中线 Set sh = ActiveDocument.Selection
  set_line_color sh
  sh.AlignToPage cdrAlignHCenter + cdrAlignTop
  sh.Duplicate 0, 0
  sh.Rotate 180
  sh.AlignToPage cdrAlignHCenter + cdrAlignBottom
  sh.Duplicate 0, 0
  sh.Rotate 90
  sh.AlignToPage cdrAlignVCenter + cdrAlignRight
  sh.Duplicate 0, 0
  sh.Rotate 180
  sh.AlignToPage cdrAlignVCenter + cdrAlignLeft
End Function

Private Function put_ColorStrip(sh As Shape)
  ' 在页面四边放置色阶条 Set sh = ActiveDocument.Selection
    sh.OrderToBack
  If ActivePage.SizeWidth >= ActivePage.SizeHeight Then
    sh.AlignToPage cdrAlignLeft + cdrAlignTop
    sh.Duplicate 5, 0
    sh.AlignToPage cdrAlignRight + cdrAlignTop
    sh.Duplicate -25, 0
    sh.Rotate 90
    sh.AlignToPage cdrAlignLeft + cdrAlignBottom
    sh.Duplicate 0, 5
    sh.AlignToPage cdrAlignRight + cdrAlignBottom
    sh.Move 0, 5
  Else
    sh.AlignToPage cdrAlignLeft + cdrAlignTop
    sh.Duplicate 5, 0
    sh.AlignToPage cdrAlignLeft + cdrAlignBottom
    sh.Duplicate 5, 0
    sh.Rotate 270
    sh.AlignToPage cdrAlignRight + cdrAlignTop
    sh.Duplicate 0, -5
    sh.AlignToPage cdrAlignRight + cdrAlignBottom
    sh.Move 0, 25
  End If
End Function

Private Function put_page_size()
  ' 添加文字 页面大小
  Dim st As Shape
  size = Trim(Str(Int(ActivePage.SizeWidth))) + "x" + Trim(Str(Int(ActivePage.SizeHeight))) + "mm"
  Set st = ActiveLayer.CreateArtisticText(0, 0, size, , , "Arial", 7)
  st.AlignToPage cdrAlignRight + cdrAlignTop
  st.Move -3, -0.6
End Function

#End If


' 自动中线 For 黑白产品版
Function Auto_ColorMark_K()
  If 0 = ActiveSelectionRange.Count Then Exit Function
  On Error GoTo ErrorHandler
  API.BeginOpt
  
  Dim doc As Document: Set doc = ActiveDocument

  ' 物件群组,设置页面大小
  set_page_size

  '// 获得页面中心点 x,y
  px = ActiveDocument.ActivePage.CenterX
  py = ActiveDocument.ActivePage.CenterY
  '// 导入色阶条中线对准线标记文件 ColorMark.cdr 解散群组
  doc.ActiveLayer.Import Path & "GMS\ColorMark.cdr"
  ActiveDocument.ReferencePoint = cdrBottomMiddle
  ' ActiveDocument.Selection.SetPosition px, -100
  ActiveDocument.Selection.Ungroup

  Dim sh As Shape, shs As Shapes
  Set shs = ActiveSelection.Shapes
  '// 按 MarkName 名称查找放置中线对准线标记等
  For Each sh In shs
  ActiveDocument.ClearSelection
  sh.CreateSelection
  If "CenterLine" = sh.ObjectData("MarkName").value Then
    put_center_line sh
      
  ElseIf "TargetLine" = sh.ObjectData("MarkName").value Then
    put_target_line sh

  ElseIf "ColorStrip" = sh.ObjectData("MarkName").value Then
    sh.Delete  ' 工厂定置不用色阶条

  ElseIf "ColorMark_K" = sh.ObjectData("MarkName").value Then
    ' 只放置单色黑
    If (px > py) Then
      sh.SetPosition px + 25#, 0
    Else
     sh.Rotate 270#
     ActiveDocument.ReferencePoint = cdrBottomLeft
      sh.SetPosition 0, py - 42#
    End If
      sh.OrderToBack
  Else
      sh.Delete   ' 没找到标记 ColorMark 删除
  
  End If
  Next sh

  ' 标准页面大小和添加页面框
  put_page_size
  put_page_line
  
  '// 使用CQL 颜色标志查找,然后群组统一设置线宽和注册色
  ActivePage.Shapes.FindShapes(Query:="@colors.find(RGB(26, 22, 35))").CreateSelection
  ActiveSelection.Group
  ActiveSelection.Outline.SetProperties 0.1, Color:=CreateRegistrationColor

ErrorHandler:
  API.EndOpt
End Function