Toolbar.bas 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. VERSION 5.00
  2. Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} Toolbar
  3. Caption = "Toolbar"
  4. ClientHeight = 3960
  5. ClientLeft = 45
  6. ClientTop = 330
  7. ClientWidth = 6750
  8. OleObjectBlob = "Toolbar.frx":0000
  9. StartUpPosition = 1 '所有者中心
  10. End
  11. Attribute VB_Name = "Toolbar"
  12. Attribute VB_GlobalNameSpace = False
  13. Attribute VB_Creatable = False
  14. Attribute VB_PredeclaredId = True
  15. Attribute VB_Exposed = False
  16. #If VBA7 Then
  17. Private Declare PtrSafe Function DrawMenuBar Lib "user32" (ByVal hwnd As Long) As Long
  18. Private Declare PtrSafe Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long) As Long
  19. Private Declare PtrSafe Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
  20. Private Declare PtrSafe Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
  21. Private Declare PtrSafe Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long
  22. #Else
  23. Private Declare Function DrawMenuBar Lib "user32" (ByVal Hwnd As Long) As Long
  24. Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal Hwnd As Long, ByVal nIndex As Long) As Long
  25. Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal Hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
  26. Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
  27. Private Declare Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long
  28. #End If
  29. Private Const GWL_STYLE As Long = (-16)
  30. Private Const GWL_EXSTYLE = (-20)
  31. Private Const WS_CAPTION As Long = &HC00000
  32. Private Const WS_EX_DLGMODALFRAME = &H1&
  33. Private Sub CommandButton3_Click()
  34. Speak_Msg "修改UI图片更换界面 注册表关闭语音 详QQ群"
  35. MsgBox "请给我支持!" & vbNewLine & "您的支持,我才能有动力添加更多功能." & vbNewLine & "蘭雅CorelVBA中秋节版" & vbNewLine & "coreldrawvba插件交流群 8531411"
  36. End Sub
  37. Private Sub UserForm_Initialize()
  38. Dim IStyle As Long
  39. Dim hwnd As Long
  40. hwnd = FindWindow("ThunderDFrame", Me.Caption)
  41. IStyle = GetWindowLong(hwnd, GWL_STYLE)
  42. IStyle = IStyle And Not WS_CAPTION
  43. SetWindowLong hwnd, GWL_STYLE, IStyle
  44. DrawMenuBar hwnd
  45. IStyle = GetWindowLong(hwnd, GWL_EXSTYLE) And Not WS_EX_DLGMODALFRAME
  46. SetWindowLong hwnd, GWL_EXSTYLE, IStyle
  47. With Me
  48. .StartUpPosition = 0
  49. .Left = 400 ' 设置工具栏位置
  50. .Top = 55
  51. .Height = 30
  52. .Width = 336
  53. End With
  54. OutlineKey = True
  55. OptKey = True
  56. ' 读取角线设置
  57. Bleed.text = API.GetSet("Bleed")
  58. Line_len.text = API.GetSet("Line_len")
  59. Outline_Width.text = GetSetting("262235.xyz", "Settings", "Outline_Width", "0.2")
  60. UIFile = Path & "GMS\262235.xyz\ToolBar.jpg"
  61. If API.ExistsFile_UseFso(UIFile) Then
  62. UI.Picture = LoadPicture(UIFile) '换UI图
  63. End If
  64. End Sub
  65. Private Sub UserForm_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  66. If Button Then
  67. mx = X
  68. my = Y
  69. End If
  70. With Me
  71. .Height = 30
  72. End With
  73. End Sub
  74. Private Sub UserForm_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  75. If Button Then
  76. Me.Left = Me.Left - mx + X
  77. Me.Top = Me.Top - my + Y
  78. End If
  79. End Sub
  80. Private Sub LOGO_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  81. If Abs(X - 14) < 14 And Abs(Y - 14) < 14 And Button = 2 Then
  82. Me.Width = 336
  83. OPEN_UI_BIG.Left = 322
  84. UI.Visible = True
  85. LOGO.Visible = False
  86. X_EXIT.Visible = False
  87. TOP_ALIGN_BT.Visible = False
  88. LEFT_ALIGN_BT.Visible = False
  89. Exit Sub
  90. End If
  91. If Button Then
  92. mx = X
  93. my = Y
  94. End If
  95. End Sub
  96. Private Sub LOGO_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  97. If Button Then
  98. Me.Left = Me.Left - mx + X
  99. Me.Top = Me.Top - my + Y
  100. End If
  101. End Sub
  102. Private Sub UI_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  103. Dim c As New Color
  104. ' 定义图标坐标pos
  105. Dim pos_x As Variant
  106. Dim pos_y As Variant
  107. pos_y = Array(14)
  108. pos_x = Array(14, 41, 67, 94, 121, 148, 174, 201, 228, 254, 281, 308, 334, 361, 388, 415, 441, 468, 495)
  109. '//扩展键按钮优先 ①右键收缩工具栏 ②右键居中页面 ③右键尺寸取整数 ④右键单色黑中线标记 ⑤右键单色黑中线标记
  110. If Abs(X - pos_x(0)) < 14 And Abs(Y - pos_y(0)) < 14 And Button = 2 Then
  111. Me.Width = 30
  112. UI.Visible = False
  113. LOGO.Visible = True
  114. X_EXIT.Visible = True
  115. Exit Sub
  116. ElseIf Abs(X - pos_x(1)) < 14 And Abs(Y - pos_y(0)) < 14 And Button = 2 Then
  117. Tools.居中页面
  118. Exit Sub
  119. ElseIf Abs(X - pos_x(3)) < 14 And Abs(Y - pos_y(0)) < 14 And Button = 2 Then
  120. Tools.尺寸取整
  121. Exit Sub
  122. ElseIf Abs(X - pos_x(5)) < 14 And Abs(Y - pos_y(0)) < 14 And Button = 2 Then
  123. 自动中线色阶条.Auto_ColorMark_K
  124. Exit Sub
  125. '//分分合合把几个功能按键合并到一起,定义到右键上
  126. ElseIf Abs(X - pos_x(4)) < 14 And Abs(Y - pos_y(0)) < 14 And Button = 2 Then
  127. Tools.分分合合
  128. Exit Sub
  129. ElseIf Abs(X - pos_x(6)) < 14 And Abs(Y - pos_y(0)) < 14 And Button = 2 Then
  130. 智能群组和查找.智能群组 API.Create_Tolerance
  131. Exit Sub
  132. ElseIf Abs(X - pos_x(8)) < 14 And Abs(Y - pos_y(0)) < 14 And Button = 2 Then
  133. '// 右键扩展工具栏
  134. Me.Height = 30 + 45
  135. Exit Sub
  136. ElseIf Abs(X - pos_x(10)) < 14 And Abs(Y - pos_y(0)) < 14 And Button = 2 Then
  137. '// 右键排列工具
  138. TOP_ALIGN_BT.Visible = True
  139. LEFT_ALIGN_BT.Visible = True
  140. Exit Sub
  141. ElseIf Abs(X - pos_x(11)) < 14 And Abs(Y - pos_y(0)) < 14 And Button = 2 Then
  142. '// 右键扩展工具栏收缩
  143. Me.Height = 30
  144. Exit Sub
  145. End If
  146. '// 鼠标单击按钮 按工具栏上图标正常功能
  147. If Abs(X - pos_x(0)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  148. 裁切线.start
  149. ElseIf Abs(X - pos_x(1)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  150. 剪贴板尺寸建立矩形.start
  151. ElseIf Abs(X - pos_x(2)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  152. 裁切线.SelectLine_to_Cropline
  153. ElseIf Abs(X - pos_x(3)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  154. 拼版裁切线.arrange
  155. ElseIf Abs(X - pos_x(4)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  156. 拼版裁切线.Cut_lines
  157. ElseIf Abs(X - pos_x(5)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  158. 自动中线色阶条.Auto_ColorMark
  159. ElseIf Abs(X - pos_x(6)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  160. 智能群组和查找.智能群组
  161. ElseIf Abs(X - pos_x(7)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  162. CQL_FIND_UI.show 0
  163. ElseIf Abs(X - pos_x(8)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  164. Replace_UI.show 0
  165. ElseIf Abs(X - pos_x(9)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  166. Tools.TextShape_ConvertToCurves
  167. ElseIf Abs(X - pos_x(10)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  168. '// 扩展工具栏
  169. Me.Height = 30 + 45
  170. Speak_Msg "左右键有不同功能"
  171. ElseIf Abs(X - pos_x(11)) < 14 And Abs(Y - pos_y(0)) < 14 Then
  172. '// 最小化
  173. Me.Width = 30
  174. Me.Height = 30
  175. OPEN_UI_BIG.Left = 61
  176. UI.Visible = False
  177. LOGO.Visible = True
  178. X_EXIT.Visible = True
  179. Speak_Msg "左键缩小 右键收缩"
  180. End If
  181. End Sub
  182. Private Sub X_EXIT_Click()
  183. Unload Me ' 关闭
  184. End Sub
  185. Private Sub 调用多页合并工具()
  186. Dim value As Integer
  187. value = GMSManager.RunMacro("合并多页工具", "合并多页运行.run")
  188. End Sub
  189. Private Sub CDR_TO_TSP_Click()
  190. TSP.CDR_TO_TSP
  191. End Sub
  192. Private Sub START_TSP_Click()
  193. TSP.START_TSP
  194. End Sub
  195. Private Sub PATH_TO_TSP_Click()
  196. TSP.MAKE_TSP
  197. End Sub
  198. Private Sub QR2Vector_Click()
  199. Tools.QRCode_to_Vector
  200. End Sub
  201. Private Sub TSP_TO_DRAW_LINE_Click()
  202. TSP.TSP_TO_DRAW_LINE
  203. End Sub
  204. Private Sub BITMAP_MAKE_DOTS_Click()
  205. TSP.BITMAP_MAKE_DOTS
  206. End Sub
  207. Private Sub CBPY01_Click()
  208. Tools.Python脚本整理尺寸
  209. Me.Height = 30
  210. End Sub
  211. Private Sub CBPY02_Click()
  212. Tools.Python提取条码数字
  213. Me.Height = 30
  214. End Sub
  215. Private Sub CBPY03_Click()
  216. Tools.Python二维码QRCode
  217. Tools.QRCode_replace
  218. End Sub
  219. Private Sub OPEN_UI_BIG_Click()
  220. Unload Me
  221. CorelVBA.show 0
  222. End Sub
  223. Private Sub Settings_Click()
  224. If 0 < Val(Bleed.text) * Val(Line_len.text) < 100 Then
  225. SaveSetting "262235.xyz", "Settings", "Bleed", Bleed.text
  226. SaveSetting "262235.xyz", "Settings", "Line_len", Line_len.text
  227. SaveSetting "262235.xyz", "Settings", "Outline_Width", Outline_Width.text
  228. End If
  229. Me.Height = 30
  230. End Sub
  231. '''///////// 图标鼠标左右点击功能调用 /////////'''
  232. Private Sub Tools_Icon_Click()
  233. ' 调用语句
  234. i = GMSManager.RunMacro("CorelDRAW_VBA", "学习CorelVBA.start")
  235. End Sub
  236. '''//// 选择多物件,组合然后拆分线段,为角线爬虫准备 ////'''
  237. Private Sub Split_Segment_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  238. If Button = 2 Then
  239. MsgBox "鼠标右键,功能待定"
  240. Exit Sub
  241. End If
  242. If Button Then
  243. Tools.Split_Segment
  244. End If
  245. End Sub
  246. Private Sub Split_Segment_Copy_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  247. If Button = 2 Then
  248. MsgBox "鼠标右键,功能待定"
  249. Exit Sub
  250. End If
  251. If Button Then
  252. Tools.Split_Segment
  253. End If
  254. Speak_Msg "拆分线段"
  255. End Sub
  256. '''//// CorelDRAW 与 Adobe_Illustrator 剪贴板转换 ////'''
  257. Private Sub Adobe_Illustrator_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  258. Dim value As Integer
  259. If Button = 2 Then
  260. value = GMSManager.RunMacro("AIClipboard", "CopyPaste.PasteAIFormat")
  261. Exit Sub
  262. End If
  263. If Button Then
  264. value = GMSManager.RunMacro("AIClipboard", "CopyPaste.CopyAIFormat")
  265. MsgBox "CorelDRAW 与 Adobe_Illustrator 剪贴板转换" & vbNewLine & "鼠标左键复制,鼠标右键粘贴"
  266. End If
  267. End Sub
  268. '''//// 标记画框 支持容差 ////'''
  269. Private Sub Mark_CreateRectangle_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  270. If Button = 2 Then
  271. Tools.Mark_CreateRectangle True
  272. ElseIf Shift = fmCtrlMask Then
  273. Tools.Mark_CreateRectangle False
  274. Else
  275. Create_Tolerance
  276. End If
  277. Speak_Msg "标记画框 右键支持容差"
  278. End Sub
  279. '''//// 一键拆开多行组合的文字字符 ////'''
  280. Private Sub Batch_Combine_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  281. If Button = 2 Then
  282. Tools.Batch_Combine
  283. ElseIf Shift = fmCtrlMask Then
  284. Tools.Take_Apart_Character
  285. Else
  286. Create_Tolerance
  287. End If
  288. Speak_Msg "智能拆字"
  289. End Sub
  290. '''//// 简单一刀切 ////'''
  291. Private Sub Single_Line_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  292. If Button = 2 Then
  293. Me.Height = 30
  294. ElseIf Shift = fmCtrlMask Then
  295. Tools.Single_Line
  296. Else
  297. ' Ctrl + 鼠标 空
  298. End If
  299. Speak_Msg "简单一刀切"
  300. End Sub
  301. '''//// 傻瓜火车排列 ////'''
  302. Private Sub TOP_ALIGN_BT_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  303. If Button = 2 Then
  304. Tools.傻瓜火车排列 3#
  305. ElseIf Shift = fmCtrlMask Then
  306. Tools.傻瓜火车排列 0#
  307. Else
  308. Tools.傻瓜火车排列 Set_Space_Width
  309. End If
  310. End Sub
  311. '''//// 傻瓜阶梯排列 ////'''
  312. Private Sub LEFT_ALIGN_BT_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  313. If Button = 2 Then
  314. Tools.傻瓜阶梯排列 3#
  315. ElseIf Shift = fmCtrlMask Then
  316. Tools.傻瓜阶梯排列 0#
  317. Else
  318. Tools.傻瓜阶梯排列 Set_Space_Width
  319. End If
  320. End Sub
  321. '''//// 多页合并一页工具 ////'''
  322. Private Sub UniteOne_BT_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
  323. If Button = 2 Then
  324. ' 右键
  325. ElseIf Shift = fmCtrlMask Then
  326. UniteOne.show 0
  327. Speak_Msg "多页合并一页"
  328. Else
  329. ' Ctrl + 鼠标 空
  330. End If
  331. End Sub