1
1

CQL_FIND_UI.bas 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. #If VBA7 Then
  2. Private Declare PtrSafe Function DrawMenuBar Lib "user32" (ByVal Hwnd As Long) As Long
  3. Private Declare PtrSafe Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal Hwnd As Long, ByVal nIndex As Long) As Long
  4. Private Declare PtrSafe Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal Hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
  5. Private Declare PtrSafe Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
  6. Private Declare PtrSafe Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long
  7. #Else
  8. Private Declare Function DrawMenuBar Lib "user32" (ByVal Hwnd As Long) As Long
  9. Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal Hwnd As Long, ByVal nIndex As Long) As Long
  10. Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal Hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
  11. Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
  12. Private Declare Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long
  13. #End If
  14. Private Const GWL_STYLE As Long = (-16)
  15. Private Const GWL_EXSTYLE = (-20)
  16. Private Const WS_CAPTION As Long = &HC00000
  17. Private Const WS_EX_DLGMODALFRAME = &H1&
  18. Private Sub Close_Icon_Click()
  19. Unload Me ' 关闭
  20. End Sub
  21. Private Sub UserForm_Initialize()
  22. Dim IStyle As Long
  23. Dim Hwnd As Long
  24. Hwnd = FindWindow("ThunderDFrame", Me.Caption)
  25. IStyle = GetWindowLong(Hwnd, GWL_STYLE)
  26. IStyle = IStyle And Not WS_CAPTION
  27. SetWindowLong Hwnd, GWL_STYLE, IStyle
  28. DrawMenuBar Hwnd
  29. IStyle = GetWindowLong(Hwnd, GWL_EXSTYLE) And Not WS_EX_DLGMODALFRAME
  30. SetWindowLong Hwnd, GWL_EXSTYLE, IStyle
  31. With Me
  32. ' .StartUpPosition = 0
  33. ' .Left = 500
  34. ' .Top = 200
  35. .Width = 378
  36. .Height = 228
  37. End With
  38. End Sub
  39. Private Sub LOGO_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Single, ByVal y As Single)
  40. If Button Then
  41. mX = x
  42. mY = y
  43. End If
  44. End Sub
  45. Private Sub LOGO_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Single, ByVal y As Single)
  46. If Button Then
  47. Me.Move Me.Left - mX + x, Me.TOP - mY + y
  48. End If
  49. End Sub
  50. Private Sub Image1_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Single, ByVal y As Single)
  51. Dim pos_x As Variant
  52. Dim pos_y As Variant
  53. pos_x = Array(307, 27)
  54. pos_y = Array(64, 126, 188, 200)
  55. If Abs(x - pos_x(0)) < 30 And Abs(y - pos_y(0)) < 30 Then
  56. Call CQLSameUniformColor
  57. ElseIf Abs(x - pos_x(0)) < 30 And Abs(y - pos_y(1)) < 30 Then
  58. Call CQLSameOutlineColor
  59. ElseIf Abs(x - pos_x(0)) < 30 And Abs(y - pos_y(2)) < 30 Then
  60. Call CQLSameSize
  61. ElseIf Abs(x - pos_x(1)) < 30 And Abs(y - pos_y(3)) < 30 Then
  62. CorelVBA.WebHelp "https://262235.xyz/index.php/tag/vba/"
  63. End If
  64. '// 预置颜色轮廓选择
  65. If Abs(x - 178) < 30 And Abs(y - 118) < 30 Then
  66. Debug.Print "选择图标: " & x & " , " & y
  67. CQL查找相同.CQLline_CM100
  68. End If
  69. CQL_FIND_UI.Hide
  70. End Sub
  71. Private Sub CQLSameSize()
  72. ActiveDocument.Unit = cdrMillimeter
  73. Dim s As Shape
  74. Set s = ActiveShape
  75. If s Is Nothing Then Exit Sub
  76. If OptBt.value = True Then
  77. ActiveDocument.ClearSelection
  78. OptBt.value = 0
  79. CQL_FIND_UI.Hide
  80. Dim x1 As Double, y1 As Double, x2 As Double, y2 As Double
  81. Dim Shift As Long
  82. Dim box As Boolean
  83. box = ActiveDocument.GetUserArea(x1, y1, x2, y2, Shift, 10, False, cdrCursorWeldSingle)
  84. If Not b Then
  85. ' MsgBox "选区范围: " & x1 & y1 & x2 & y2
  86. Set sh = ActivePage.SelectShapesFromRectangle(x1, y1, x2, y2, False)
  87. sh.Shapes.FindShapes(Query:="@width = {" & s.SizeWidth & " mm} and @height ={" & s.SizeHeight & "mm}").CreateSelection
  88. End If
  89. Else
  90. ActivePage.Shapes.FindShapes(Query:="@width = {" & s.SizeWidth & " mm} and @height ={" & s.SizeHeight & "mm}").CreateSelection
  91. End If
  92. End Sub
  93. Private Sub CQLSameOutlineColor()
  94. On Error GoTo err
  95. Dim colr As New Color, s As Shape
  96. Set s = ActiveShape
  97. If s Is Nothing Then Exit Sub
  98. colr.CopyAssign s.Outline.Color
  99. colr.ConvertToRGB
  100. ' 查找对象
  101. r = colr.RGBRed
  102. G = colr.RGBGreen
  103. b = colr.RGBBlue
  104. If OptBt.value = True Then
  105. ActiveDocument.ClearSelection
  106. OptBt.value = 0
  107. CQL_FIND_UI.Hide
  108. Dim x1 As Double, y1 As Double, x2 As Double, y2 As Double
  109. Dim Shift As Long
  110. Dim box As Boolean
  111. box = ActiveDocument.GetUserArea(x1, y1, x2, y2, Shift, 10, False, cdrCursorWeldSingle)
  112. If Not b Then
  113. ' MsgBox "选区范围: " & x1 & y1 & x2 & y2
  114. Set sh = ActivePage.SelectShapesFromRectangle(x1, y1, x2, y2, False)
  115. sh.Shapes.FindShapes(Query:="@Outline.Color.rgb[.r='" & r & "' And .g='" & G & "' And .b='" & b & "']").CreateSelection
  116. End If
  117. Else
  118. ActivePage.Shapes.FindShapes(Query:="@Outline.Color.rgb[.r='" & r & "' And .g='" & G & "' And .b='" & b & "']").CreateSelection
  119. End If
  120. Exit Sub
  121. err:
  122. MsgBox "对象轮廓为空。"
  123. End Sub
  124. Private Sub CQLSameUniformColor()
  125. On Error GoTo err
  126. Dim colr As New Color, s As Shape
  127. Set s = ActiveShape
  128. If s Is Nothing Then Exit Sub
  129. If s.Fill.Type = cdrFountainFill Then MsgBox "不支持渐变色。": Exit Sub
  130. colr.CopyAssign s.Fill.UniformColor
  131. colr.ConvertToRGB
  132. ' 查找对象
  133. r = colr.RGBRed
  134. G = colr.RGBGreen
  135. b = colr.RGBBlue
  136. If OptBt.value = True Then
  137. ActiveDocument.ClearSelection
  138. OptBt.value = 0
  139. CQL_FIND_UI.Hide
  140. Dim x1 As Double, y1 As Double, x2 As Double, y2 As Double
  141. Dim Shift As Long
  142. Dim box As Boolean
  143. box = ActiveDocument.GetUserArea(x1, y1, x2, y2, Shift, 10, False, cdrCursorWeldSingle)
  144. If Not b Then
  145. ' MsgBox "选区范围: " & x1 & y1 & x2 & y2
  146. Set sh = ActivePage.SelectShapesFromRectangle(x1, y1, x2, y2, False)
  147. sh.Shapes.FindShapes(Query:="@fill.color.rgb[.r='" & r & "' And .g='" & G & "' And .b='" & b & "']").CreateSelection
  148. End If
  149. Else
  150. ActivePage.Shapes.FindShapes(Query:="@fill.color.rgb[.r='" & r & "' And .g='" & G & "' And .b='" & b & "']").CreateSelection
  151. End If
  152. Exit Sub
  153. err:
  154. MsgBox "对象填充为空。"
  155. End Sub