使用AutoIT在Windows系统托盘中输出程序

fsi0uk1n  于 2023-11-21  发布在  Windows
关注(0)|答案(1)|浏览(196)

有没有办法使用AutoIT来显示哪些程序当前正在运行或显示在Windows系统托盘中?
我已经咨询了一些人工智能工具,并在AutoIt文档中查找,但只能找到在托盘中运行自己程序的可能性

polkgigr

polkgigr1#

试试这个吧https://www.autoitscript.com/forum/topic/103871-_systray-udf/
您的代码

  1. #NoTrayIcon
  2. #include <SysTrayUDF13.au3>
  3. #include <Process.au3>
  4. $count = _SysTrayIconCount()
  5. ConsoleWrite("Count visible tray: " & $count & @CRLF)
  6. For $i = $count - 1 To 0 Step -1
  7. $handle = _SysTrayIconHandle($i)
  8. $visible = _SysTrayIconVisible($i)
  9. $pid = WinGetProcess($handle)
  10. $name = _ProcessGetName($pid)
  11. $title = WinGetTitle($handle)
  12. $tooltip = _SysTrayIconTooltip($i)
  13. ConsoleWrite("index: " & $i & @TAB & "visible: " & $visible & @TAB & "handle: " & $handle & @TAB & "pid: " & _
  14. $pid & @TAB & "proc: " & $name & @TAB & @TAB & "title: " & $title & @TAB & @TAB & "tooltip: " & $tooltip & @CRLF)
  15. If $pid = -1 Then _SysTrayIconRemove($i)
  16. Next
  17. If _FindTrayToolbarWindow(2) <> -1 Then
  18. ConsoleWrite("-====================-" & @CRLF)
  19. $countwin7 = _SysTrayIconCount(2)
  20. ConsoleWrite("Count overflow area: " & $countwin7 & @CRLF)
  21. For $i = $countwin7 - 1 To 0 Step -1
  22. $handle = _SysTrayIconHandle($i, 2)
  23. $visible = _SysTrayIconVisible($i, 2)
  24. $pid = WinGetProcess($handle)
  25. $name = _ProcessGetName($pid)
  26. $title = WinGetTitle($handle)
  27. $tooltip = _SysTrayIconTooltip($i, 2)
  28. ConsoleWrite("index: " & $i & @TAB & "visible: " & $visible & @TAB & "handle: " & $handle & @TAB & "pid: " & _
  29. $pid & @TAB & "proc: " & $name & @TAB & @TAB & "title: " & $title & @TAB & @TAB & "tooltip: " & $tooltip & @CRLF)
  30. If $pid = -1 Then _SysTrayIconRemove($i, 2)
  31. Next
  32. EndIf

字符串
UDF

  1. #include-once
  2. ; ----------------------------------------------------------------------------
  3. ;
  4. ; Author: Tuape
  5. ; Modified: Erik Pilsits
  6. ;
  7. ; Script Function:
  8. ; Systray UDF - Functions for reading icon info from system tray / removing
  9. ; any icon.
  10. ;
  11. ; Last Update: 5/13/2013
  12. ;
  13. ; ----------------------------------------------------------------------------
  14. ;===============================================================================
  15. ;
  16. ; Function Name: _SysTrayIconCount($iWin = 1)
  17. ; Description: Returns number of icons on systray
  18. ; Note: Hidden icons are also reported
  19. ; Parameter(s): $iWin
  20. ; | 1 - ToolbarWindow32, Win2000+
  21. ; | 2 - NotifyIconOverflowWindow, Win7+
  22. ;
  23. ; Requirement(s):
  24. ; Return Value(s): On Success - Returns number of icons found
  25. ; On Failure - Returns -1
  26. ;
  27. ; Author(s): Tuape, Erik Pilsits
  28. ;
  29. ;===============================================================================
  30. Func _SysTrayIconCount($iWin = 1)
  31. Local Const $TB_BUTTONCOUNT = 1048
  32. Local $hWnd = _FindTrayToolbarWindow($iWin)
  33. If $hWnd = -1 Then Return -1
  34. Local $count = DllCall("user32.dll", "lresult", "SendMessageW", "hwnd", $hWnd, "uint", $TB_BUTTONCOUNT, "wparam", 0, "lparam", 0)
  35. If @error Then Return -1
  36. Return $count[0]
  37. EndFunc ;==>_SysTrayIconCount
  38. ;===============================================================================
  39. ;
  40. ; Function Name: _SysTrayIconTitles($iWin = 1)
  41. ; Description: Get list of all window titles that have systray icon
  42. ; Parameter(s): $iWin
  43. ; | 1 - ToolbarWindow32, Win2000+
  44. ; | 2 - NotifyIconOverflowWindow, Win7+
  45. ; Requirement(s):
  46. ; Return Value(s): On Success - Returns an array with all window titles
  47. ; On Failure - Returns -1
  48. ;
  49. ; Author(s): Tuape, Erik Pilsits
  50. ;
  51. ;===============================================================================
  52. Func _SysTrayIconTitles($iWin = 1)
  53. Local $count = _SysTrayIconCount($iWin)
  54. If $count <= 0 Then Return -1
  55. Local $titles[$count]
  56. ; Get icon owner window"s title
  57. For $i = 0 To $count - 1
  58. $titles[$i] = WinGetTitle(_SysTrayIconHandle($i, $iWin))
  59. Next
  60. Return $titles
  61. EndFunc ;==>_SysTrayIconTitles
  62. ;===============================================================================
  63. ;
  64. ; Function Name: _SysTrayIconPids($iWin = 1)
  65. ; Description: Get list of all processes id's that have systray icon
  66. ; Parameter(s): $iWin
  67. ; | 1 - ToolbarWindow32, Win2000+
  68. ; | 2 - NotifyIconOverflowWindow, Win7+
  69. ; Requirement(s):
  70. ; Return Value(s): On Success - Returns an array with all process id's
  71. ; On Failure - Returns -1
  72. ;
  73. ; Author(s): Tuape, Erik Pilsits
  74. ;
  75. ;===============================================================================
  76. Func _SysTrayIconPids($iWin = 1)
  77. Local $count = _SysTrayIconCount($iWin)
  78. If $count <= 0 Then Return -1
  79. Local $processes[$count]
  80. For $i = 0 To $count - 1
  81. $processes[$i] = WinGetProcess(_SysTrayIconHandle($i, $iWin))
  82. Next
  83. Return $processes
  84. EndFunc ;==>_SysTrayIconPids
  85. ;===============================================================================
  86. ;
  87. ; Function Name: _SysTrayIconProcesses($iWin = 1)
  88. ; Description: Get list of all processes that have systray icon
  89. ; Parameter(s): $iWin
  90. ; | 1 - ToolbarWindow32, Win2000+
  91. ; | 2 - NotifyIconOverflowWindow, Win7+
  92. ; Requirement(s):
  93. ; Return Value(s): On Success - Returns an array with all process names
  94. ; On Failure - Returns -1
  95. ;
  96. ; Author(s): Tuape, Erik Pilsits
  97. ;
  98. ;===============================================================================
  99. Func _SysTrayIconProcesses($iWin = 1)
  100. Local $pids = _SysTrayIconPids($iWin)
  101. If Not IsArray($pids) Then Return -1
  102. Local $processes[UBound($pids)]
  103. ; List all processes
  104. Local $list = ProcessList()
  105. For $i = 0 To UBound($pids) - 1
  106. For $j = 1 To $list[0][0]
  107. If $pids[$i] = $list[$j][1] Then
  108. $processes[$i] = $list[$j][0]
  109. ExitLoop
  110. EndIf
  111. Next
  112. Next
  113. Return $processes
  114. EndFunc ;==>_SysTrayIconProcesses
  115. ;===============================================================================
  116. ;
  117. ; Function Name: _SysTrayIconIndex($test, $mode = 0, $iWin = 1)
  118. ; Description: Get list of all processes id"s that have systray icon
  119. ; Parameter(s): $test - process name / window title text / process PID
  120. ; $mode
  121. ; | 0 - get index by process name (default)
  122. ; | 1 - get index by window title
  123. ; | 2 - get index by process PID
  124. ; $iWin
  125. ; | 1 - ToolbarWindow32, Win2000+
  126. ; | 2 - NotifyIconOverflowWindow, Win7+
  127. ; Requirement(s):
  128. ; Return Value(s): On Success - Returns index of found icon
  129. ; On Failure - Returns -1
  130. ;
  131. ; Author(s): Tuape, Erik Pilsits
  132. ;
  133. ;===============================================================================
  134. Func _SysTrayIconIndex($test, $mode = 0, $iWin = 1)
  135. Local $ret = -1, $compare = -1
  136. If $mode < 0 Or $mode > 2 Or Not IsInt($mode) Then Return -1
  137. Switch $mode
  138. Case 0
  139. $compare = _SysTrayIconProcesses($iWin)
  140. Case 1
  141. $compare = _SysTrayIconTitles($iWin)
  142. Case 2
  143. $compare = _SysTrayIconPids($iWin)
  144. EndSwitch
  145. If Not IsArray($compare) Then Return -1
  146. For $i = 0 To UBound($compare) - 1
  147. If $compare[$i] = $test Then
  148. $ret = $i
  149. ExitLoop
  150. EndIf
  151. Next
  152. Return $ret
  153. EndFunc ;==>_SysTrayIconIndex
  154. ; INTERNAL =====================================================================
  155. ;
  156. ; Function Name: _SysTrayGetButtonInfo($iIndex, $iWin = 1, $iInfo = 0)
  157. ; Description: Gets Tray Button Info
  158. ; Parameter(s): $iIndex - icon index (Note: starting from 0)
  159. ; $iWin
  160. ; | 1 - ToolbarWindow32, Win2000+
  161. ; | 2 - NotifyIconOverflowWindow, Win7+
  162. ; $iInfo - Info to return
  163. ; | 1 - TBBUTTON structure
  164. ; | 2 - TRAYDATA structure
  165. ; | 3 - tooltip
  166. ; | 4 - icon position
  167. ; Requirement(s):
  168. ; Return Value(s): On Success - Returns requested info
  169. ; On Failure - Sets @error and returns -1
  170. ; | 1 - Failed to find tray window
  171. ; | 2 - Failed to get tray window PID
  172. ; | 3 - Failed to open process
  173. ; | 4 - Failed to allocate memory
  174. ; | 5 - Failed to get TBBUTTON info
  175. ;
  176. ; Author(s): Erik Pilsits, Tuape
  177. ;
  178. ;===============================================================================
  179. Func _SysTrayGetButtonInfo($iIndex, $iWin = 1, $iInfo = 1)
  180. Local Const $TB_GETBUTTON = 1047
  181. ;~ Local Const $TB_GETBUTTONTEXT = 1099
  182. ;~ Local Const $TB_GETBUTTONINFO = 1089
  183. Local Const $TB_GETITEMRECT = 1053
  184. Local Const $ACCESS = BitOR(0x0008, 0x0010, 0x0400) ; VM_OPERATION, VM_READ, QUERY_INFORMATION
  185. Local $TBBUTTON
  186. If @OSArch = "X86" Then
  187. $TBBUTTON = DllStructCreate("int iBitmap;int idCommand;byte fsState;byte fsStyle;byte bReserved[2];dword dwData;int iString")
  188. Else ; X64
  189. $TBBUTTON = DllStructCreate("int iBitmap;int idCommand;byte fsState;byte fsStyle;byte bReserved[6];uint64 dwData;int64 iString")
  190. EndIf
  191. Local $TRAYDATA
  192. If @OSArch = "X86" Then
  193. $TRAYDATA = DllStructCreate("hwnd hwnd;uint uID;uint uCallbackMessage;dword Reserved[2];handle hIcon")
  194. Else
  195. $TRAYDATA = DllStructCreate("uint64 hwnd;uint uID;uint uCallbackMessage;dword Reserved[2];uint64 hIcon")
  196. EndIf
  197. Local $trayHwnd = _FindTrayToolbarWindow($iWin)
  198. If $trayHwnd = -1 Then Return SetError(1, 0, -1)
  199. Local $return, $err = 0
  200. Local $ret = DllCall("user32.dll", "dword", "GetWindowThreadProcessId", "hwnd", $trayHwnd, "dword*", 0)
  201. If @error Or Not $ret[2] Then SetError(2, 0, -1)
  202. Local $pId = $ret[2]
  203. Local $procHandle = DllCall("kernel32.dll", "handle", "OpenProcess", "dword", $ACCESS, "bool", False, "dword", $pId)
  204. If @error Or Not $procHandle[0] Then Return SetError(3, 0, -1)
  205. Local $lpData = DllCall("kernel32.dll", "ptr", "VirtualAllocEx", "handle", $procHandle[0], "ptr", 0, "ulong", DllStructGetSize($TBBUTTON), "dword", 0x1000, "dword", 0x04)
  206. If Not @error And $lpData[0] Then
  207. $ret = DllCall("user32.dll", "lresult", "SendMessageW", "hwnd", $trayHwnd, "uint", $TB_GETBUTTON, "wparam", $iIndex, "lparam", $lpData[0])
  208. If Not @error And $ret[0] Then
  209. DllCall("kernel32.dll", "bool", "ReadProcessMemory", "handle", $procHandle[0], "ptr", $lpData[0], "struct*", $TBBUTTON, "ulong", DllStructGetSize($TBBUTTON), "ulong*", 0)
  210. Switch $iInfo
  211. Case 2
  212. ; TRAYDATA structure
  213. DllCall("kernel32.dll", "bool", "ReadProcessMemory", "handle", $procHandle[0], "ptr", DllStructGetData($TBBUTTON, 6), "struct*", $TRAYDATA, "ulong", DllStructGetSize($TRAYDATA), "ulong*", 0)
  214. $return = $TRAYDATA
  215. Case 3
  216. ; tooltip
  217. $return = ""
  218. If BitShift(DllStructGetData($TBBUTTON, 7), 16) <> 0 Then
  219. Local $intTip = DllStructCreate("wchar[1024]")
  220. ; we have a pointer to a string, otherwise it is an internal resource identifier
  221. DllCall("kernel32.dll", "bool", "ReadProcessMemory", "handle", $procHandle[0], "ptr", DllStructGetData($TBBUTTON, 7), "struct*", $intTip, "ulong", DllStructGetSize($intTip), "ulong*", 0)
  222. $return = DllStructGetData($intTip, 1)
  223. ;else internal resource
  224. EndIf
  225. Case 4
  226. ; icon position
  227. If Not BitAND(DllStructGetData($TBBUTTON, 3), 8) Then ; 8 = TBSTATE_HIDDEN
  228. Local $pos[2], $RECT = DllStructCreate("int;int;int;int")
  229. DllCall("user32.dll", "lresult", "SendMessageW", "hwnd", $trayHwnd, "uint", $TB_GETITEMRECT, "wparam", $iIndex, "lparam", $lpData[0])
  230. DllCall("kernel32.dll", "bool", "ReadProcessMemory", "handle", $procHandle[0], "ptr", $lpData[0], "struct*", $RECT, "ulong", DllStructGetSize($RECT), "ulong*", 0)
  231. $ret = DllCall("user32.dll", "int", "MapWindowPoints", "hwnd", $trayHwnd, "ptr", 0, "struct*", $RECT, "uint", 2)
  232. $pos[0] = DllStructGetData($RECT, 1)
  233. $pos[1] = DllStructGetData($RECT, 2)
  234. $return = $pos
  235. Else
  236. $return = -1
  237. EndIf
  238. Case Else
  239. ; TBBUTTON
  240. $return = $TBBUTTON
  241. EndSwitch
  242. Else
  243. $err = 5
  244. EndIf
  245. DllCall("kernel32.dll", "bool", "VirtualFreeEx", "handle", $procHandle[0], "ptr", $lpData[0], "ulong", 0, "dword", 0x8000)
  246. Else
  247. $err = 4
  248. EndIf
  249. DllCall("kernel32.dll", "bool", "CloseHandle", "handle", $procHandle[0])
  250. If $err Then
  251. Return SetError($err, 0, -1)
  252. Else
  253. Return $return
  254. EndIf
  255. EndFunc ;==>_SysTrayGetButtonInfo
  256. ;===============================================================================
  257. ;
  258. ; Function Name: _SysTrayIconHandle($iIndex, $iWin = 1)
  259. ; Description: Gets hwnd of window associated with systray icon of given index
  260. ; Parameter(s): $iIndex - icon index (Note: starting from 0)
  261. ; $iWin
  262. ; | 1 - ToolbarWindow32, Win2000+
  263. ; | 2 - NotifyIconOverflowWindow, Win7+
  264. ;
  265. ; Requirement(s):
  266. ; Return Value(s): On Success - Returns hwnd of found icon
  267. ; On Failure - Sets @error and returns -1
  268. ; | See _SysTrayGetButtonInfo for @error returns
  269. ;
  270. ; Author(s): Tuape, Erik Pilsits
  271. ;
  272. ;===============================================================================
  273. Func _SysTrayIconHandle($iIndex, $iWin = 1)
  274. Local $TRAYDATA = _SysTrayGetButtonInfo($iIndex, $iWin, 2)
  275. If @error Then
  276. Return SetError(@error, 0, -1)
  277. Else
  278. Return Ptr(DllStructGetData($TRAYDATA, 1))
  279. EndIf
  280. EndFunc ;==>_SysTrayIconHandle
  281. ;===============================================================================
  282. ;
  283. ; Function Name: _SysTrayIconTooltip($iIndex, $iWin = 1)
  284. ; Description: Gets the tooltip text of systray icon of given index
  285. ; Parameter(s): $iIndex - icon index (Note: starting from 0)
  286. ; $iWin
  287. ; | 1 - ToolbarWindow32, Win2000+
  288. ; | 2 - NotifyIconOverflowWindow, Win7+
  289. ;
  290. ; Requirement(s):
  291. ; Return Value(s): On Success - Returns tooltip text of icon
  292. ; On Failure - Sets @error and returns -1
  293. ; | See _SysTrayGetButtonInfo for @error returns
  294. ;
  295. ; Author(s): Tuape, Erik Pilsits
  296. ;
  297. ;===============================================================================
  298. Func _SysTrayIconTooltip($iIndex, $iWin = 1)
  299. Local $ret = _SysTrayGetButtonInfo($iIndex, $iWin, 3)
  300. If @error Then
  301. Return SetError(@error, 0, -1)
  302. Else
  303. Return $ret
  304. EndIf
  305. EndFunc ;==>_SysTrayIconTooltip
  306. ;===============================================================================
  307. ;
  308. ; Function Name: _SysTrayIconPos($iIndex, $iWin = 1)
  309. ; Description: Gets x & y position of systray icon
  310. ; Parameter(s): $iIndex - icon index (Note: starting from 0)
  311. ; $iWin
  312. ; | 1 - ToolbarWindow32, Win2000+
  313. ; | 2 - NotifyIconOverflowWindow, Win7+
  314. ;
  315. ; Requirement(s):
  316. ; Return Value(s): On Success - Returns array, x [0] and y [1] position of icon
  317. ; On Failure - Sets @error and returns -1
  318. ; | -1 - Icon is hidden (Autohide on XP, etc)
  319. ; | See _SysTrayGetButtonInfo for additional @error returns
  320. ;
  321. ; Author(s): Tuape, Erik Pilsits
  322. ;
  323. ;===============================================================================
  324. Func _SysTrayIconPos($iIndex, $iWin = 1)
  325. Local $ret = _SysTrayGetButtonInfo($iIndex, $iWin, 4)
  326. If @error Then
  327. Return SetError(@error, 0, -1)
  328. Else
  329. If $ret = -1 Then
  330. Return SetError(-1, 0, -1)
  331. Else
  332. Return $ret
  333. EndIf
  334. EndIf
  335. EndFunc ;==>_SysTrayIconPos
  336. ;===============================================================================
  337. ;
  338. ; Function Name: _SysTrayIconVisible($iIndex, $iWin = 1)
  339. ; Description: Gets the visibility of a systray icon
  340. ; Parameter(s): $iIndex - icon index (Note: starting from 0)
  341. ; $iWin
  342. ; | 1 - ToolbarWindow32, Win2000+
  343. ; | 2 - NotifyIconOverflowWindow, Win7+
  344. ;
  345. ; Requirement(s):
  346. ; Return Value(s): On Success - Returns True (visible) or False (hidden)
  347. ; On Failure - Sets @error and returns -1
  348. ; | See _SysTrayGetButtonInfo for @error returns
  349. ;
  350. ; Author(s): Tuape, Erik Pilsits
  351. ;
  352. ;===============================================================================
  353. Func _SysTrayIconVisible($iIndex, $iWin = 1)
  354. Local $TBBUTTON = _SysTrayGetButtonInfo($iIndex, $iWin, 1)
  355. If @error Then
  356. Return SetError(@error, 0, -1)
  357. Else
  358. Return Not BitAND(DllStructGetData($TBBUTTON, 3), 8) ;TBSTATE_HIDDEN
  359. EndIf
  360. EndFunc ;==>_SysTrayIconVisible
  361. ;===============================================================================
  362. ;
  363. ; Function Name: _SysTrayIconHide($index, $iFlag, $iWin = 1)
  364. ; Description: Hides / unhides any icon on systray
  365. ;
  366. ; Parameter(s): $index - icon index. Can be queried with _SysTrayIconIndex()
  367. ; $iFlag - hide (1) or show (0) icon
  368. ; $iWin
  369. ; | 1 - ToolbarWindow32, Win2000+
  370. ; | 2 - NotifyIconOverflowWindow, Win7+
  371. ;
  372. ; Requirement(s):
  373. ; Return Value(s): On Success - Returns 1 if operation was successfull or 0 if
  374. ; icon was already hidden/unhidden
  375. ; On Failure - Sets @error and returns -1
  376. ; | See _SysTrayGetButtonInfo for @error returns
  377. ;
  378. ; Author(s): Tuape, Erik Pilsits
  379. ;
  380. ;===============================================================================
  381. Func _SysTrayIconHide($index, $iFlag, $iWin = 1)
  382. ;~ Local Const $TB_HIDEBUTTON = 0x0404 ; WM_USER + 4
  383. Local $TBBUTTON = _SysTrayGetButtonInfo($index, $iWin, 1)
  384. If @error Then Return SetError(@error, 0, -1)
  385. Local $visible = Not BitAND(DllStructGetData($TBBUTTON, 3), 8) ;TBSTATE_HIDDEN
  386. If ($iFlag And Not $visible) Or (Not $iFlag And $visible) Then
  387. Return 0
  388. Else
  389. Local $TRAYDATA = _SysTrayGetButtonInfo($index, $iWin, 2)
  390. If @error Then Return SetError(@error, 0, -1)
  391. Local $NOTIFYICONDATA = DllStructCreate("dword cbSize;hwnd hWnd;uint uID;uint uFlags;uint uCallbackMessage;handle hIcon;wchar szTip[128];" _
  392. & "dword dwState;dword dwStateMask;wchar szInfo[256];uint uVersion;wchar szInfoTitle[64];dword dwInfoFlags;" _
  393. & "STRUCT;ulong;ushort;ushort;byte[8];ENDSTRUCT;handle hBalloonIcon")
  394. DllStructSetData($NOTIFYICONDATA, 1, DllStructGetSize($NOTIFYICONDATA))
  395. DllStructSetData($NOTIFYICONDATA, 2, Ptr(DllStructGetData($TRAYDATA, 1)))
  396. DllStructSetData($NOTIFYICONDATA, 3, DllStructGetData($TRAYDATA, 2))
  397. DllStructSetData($NOTIFYICONDATA, 4, 8) ; NIF_STATE
  398. DllStructSetData($NOTIFYICONDATA, 8, $iFlag) ; dw_State, 0 or 1 = NIS_HIDDEN
  399. DllStructSetData($NOTIFYICONDATA, 9, 1) ; dwStateMask
  400. Local $ret = DllCall("shell32.dll", "bool", "Shell_NotifyIconW", "dword", 0x1, "struct*", $NOTIFYICONDATA) ; NIM_MODIFY
  401. DllCall("user32.dll", "lresult", "SendMessageW", "hwnd", WinGetHandle("[CLASS:Shell_TrayWnd]"), "uint", 0x001A, "wparam", 0, "lparam", 0) ; WM_SETTINGCHANGE
  402. If IsArray($ret) And $ret[0] Then
  403. Return 1
  404. Else
  405. Return 0
  406. EndIf
  407. ;~ $ret = DllCall("user32.dll", "lresult", "SendMessageW", "hwnd", $trayHwnd, "uint", $TB_HIDEBUTTON, "wparam", DllStructGetData($TBBUTTON, 2), "lparam", $iHide)
  408. ;~ If @error Or Not $ret[0] Then
  409. ;~ $return = -1
  410. ;~ Else
  411. ;~ $return = $ret[0]
  412. ;~ EndIf
  413. EndIf
  414. EndFunc ;==>_SysTrayIconHide
  415. ;===============================================================================
  416. ;
  417. ; Function Name: _SysTrayIconMove($curPos, $newPos, $iWin = 1)
  418. ; Description: Moves systray icon
  419. ;
  420. ; Parameter(s): $curPos - icon's current index (0 based)
  421. ; $newPos - icon's new position
  422. ; ($curPos+1 = one step to right, $curPos-1 = one step to left)
  423. ; $iWin
  424. ; | 1 - ToolbarWindow32, Win2000+
  425. ; | 2 - NotifyIconOverflowWindow, Win7+
  426. ;
  427. ; Requirement(s): AutoIt3 Beta
  428. ; Return Value(s): On Success - Returns 1 if operation was successfull, 0 if not
  429. ; On Failure - Sets @error and returns -1
  430. ; | 1 - Bad parameters
  431. ; | 2 - Failed to find tray window
  432. ;
  433. ; Author(s): Tuape, Erik Pilsits
  434. ;
  435. ;===============================================================================
  436. Func _SysTrayIconMove($curPos, $newPos, $iWin = 1)
  437. Local Const $TB_MOVEBUTTON = 0x0452 ; WM_USER + 82
  438. Local $iconCount = _SysTrayIconCount($iWin)
  439. If $curPos < 0 Or $newPos < 0 Or $curPos > $iconCount - 1 Or $newPos > $iconCount - 1 Or Not IsInt($curPos) Or Not IsInt($newPos) Then Return SetError(1, 0, -1)
  440. Local $hWnd = _FindTrayToolbarWindow($iWin)
  441. If $hWnd = -1 Then Return SetError(2, 0, -1)
  442. Local $ret = DllCall("user32.dll", "lresult", "SendMessageW", "hwnd", $hWnd, "uint", $TB_MOVEBUTTON, "wparam", $curPos, "lparam", $newPos)
  443. If @error Or Not $ret[0] Then
  444. Return 0
  445. Else
  446. Return 1
  447. EndIf
  448. EndFunc ;==>_SysTrayIconMove
  449. ;===============================================================================
  450. ;
  451. ; Function Name: _SysTrayIconRemove($index, $iWin = 1)
  452. ; Description: Removes systray icon completely.
  453. ;
  454. ; Parameter(s): $index - Icon index (first icon is 0)
  455. ; $iWin
  456. ; | 1 - ToolbarWindow32, Win2000+
  457. ; | 2 - NotifyIconOverflowWindow, Win7+
  458. ;
  459. ; Return Value(s): On Success - Returns 1 if icon successfully removed, 0 if not
  460. ; On Failure - Sets @error and returns -1
  461. ; | See _SysTrayGetButtonInfo for @error returns
  462. ;
  463. ; Author(s): Tuape, Erik Pilsits
  464. ;
  465. ;===============================================================================
  466. Func _SysTrayIconRemove($index, $iWin = 1)
  467. Local Const $TB_DELETEBUTTON = 1046
  468. Local $TRAYDATA = _SysTrayGetButtonInfo($index, $iWin, 2)
  469. If @error Then Return SetError(@error, 0, -1)
  470. Local $NOTIFYICONDATA = DllStructCreate("dword cbSize;hwnd hWnd;uint uID;uint uFlags;uint uCallbackMessage;handle hIcon;wchar szTip[128];" _
  471. & "dword dwState;dword dwStateMask;wchar szInfo[256];uint uVersion;wchar szInfoTitle[64];dword dwInfoFlags;" _
  472. & "STRUCT;ulong;ushort;ushort;byte[8];ENDSTRUCT;handle hBalloonIcon")
  473. DllStructSetData($NOTIFYICONDATA, 1, DllStructGetSize($NOTIFYICONDATA))
  474. DllStructSetData($NOTIFYICONDATA, 2, Ptr(DllStructGetData($TRAYDATA, 1)))
  475. DllStructSetData($NOTIFYICONDATA, 3, DllStructGetData($TRAYDATA, 2))
  476. Local $ret = DllCall("shell32.dll", "bool", "Shell_NotifyIconW", "dword", 0x2, "struct*", $NOTIFYICONDATA) ; NIM_DELETE
  477. DllCall("user32.dll", "lresult", "SendMessageW", "hwnd", WinGetHandle("[CLASS:Shell_TrayWnd]"), "uint", 0x001A, "wparam", 0, "lparam", 0) ; WM_SETTINGCHANGE
  478. If IsArray($ret) And $ret[0] Then
  479. Return 1
  480. Else
  481. Return 0
  482. EndIf
  483. ;~ Local $hWnd = _FindTrayToolbarWindow($iWin)
  484. ;~ If $hwnd = -1 Then Return -1
  485. ;~ Local $ret = DllCall("user32.dll", "lresult", "SendMessageW", "hwnd", $hWnd, "uint", $TB_DELETEBUTTON, "wparam", $index, "lparam", 0)
  486. ;~ If @error Or Not $ret[0] Then Return -1
  487. ;~ Return $ret[0]
  488. EndFunc ;==>_SysTrayIconRemove
  489. ;===============================================================================
  490. ;
  491. ; Function Name: _FindTrayToolbarWindow($iWin = 1)
  492. ; Description: Utility function for finding Toolbar window hwnd
  493. ; Parameter(s): $iWin
  494. ; | 1 - ToolbarWindow32, Win2000+
  495. ; | 2 - NotifyIconOverflowWindow, Win7+
  496. ;
  497. ; Requirement(s):
  498. ; Return Value(s): On Success - Returns Toolbar window hwnd
  499. ; On Failure - returns -1
  500. ;
  501. ; Author(s): Tuape, Erik Pilsits
  502. ;
  503. ;===============================================================================
  504. Func _FindTrayToolbarWindow($iWin = 1)
  505. Local $hwnd, $ret = -1
  506. If $iWin = 1 Then
  507. $hWnd = DllCall("user32.dll", "hwnd", "FindWindow", "str", "Shell_TrayWnd", "ptr", 0)
  508. If @error Then Return -1
  509. $hWnd = DllCall("user32.dll", "hwnd", "FindWindowEx", "hwnd", $hWnd[0], "hwnd", 0, "str", "TrayNotifyWnd", "ptr", 0)
  510. If @error Then Return -1
  511. If @OSVersion <> "WIN_2000" Then
  512. $hWnd = DllCall("user32.dll", "hwnd", "FindWindowEx", "hwnd", $hWnd[0], "hwnd", 0, "str", "SysPager", "ptr", 0)
  513. If @error Then Return -1
  514. EndIf
  515. $hWnd = DllCall("user32.dll", "hwnd", "FindWindowEx", "hwnd", $hWnd[0], "hwnd", 0, "str", "ToolbarWindow32", "ptr", 0)
  516. If @error Then Return -1
  517. $ret = $hwnd[0]
  518. ElseIf $iWin = 2 Then
  519. ; NotifyIconOverflowWindow for Windows 7
  520. $hWnd = DllCall("user32.dll", "hwnd", "FindWindow", "str", "NotifyIconOverflowWindow", "ptr", 0)
  521. If @error Then Return -1
  522. $hWnd = DllCall("user32.dll", "hwnd", "FindWindowEx", "hwnd", $hWnd[0], "hwnd", 0, "str", "ToolbarWindow32", "ptr", 0)
  523. If @error Then Return -1
  524. $ret = $hwnd[0]
  525. EndIf
  526. Return $ret
  527. EndFunc ;==>_FindTrayToolbarWindow

展开查看全部

相关问题