![]() |
Create Sys Tray / Capture
Hey!
I was wondering is it possible to get icons and place all of them in a panel or something.. Mad Kernel is supposed to do this but not work with Win7/Vista/X64. Also Sharp E does it too but it works in 64 bit but theres tooo much code.I only need the tray and taskbar snippet.To test.. |
Re: Create Sys Tray / Capture
The systray is essentially a Toolbar. You can just search for it and get a list of pointer that point to datastructures holding the information about each item inside the systray. You can than read those datastructures using ReadProcessMemory. The whole process is outlined here:
![]() This will work for XP and later. Getting the tray icon information for earlier Windows versions is a little bit trickier but doable. [EDIT: By the way. You can't get all icons correctly because some HICON values are simply invalid. I never found the reason why ... I haven't looked much though as I was only interested on the process IDs associated with the tray icons.] |
Re: Create Sys Tray / Capture
Yes thank you thats what i was LOOKING for!But its possible to get to make the icons interactive i mean left and right mouse button
Zitat:
|
Re: Create Sys Tray / Capture
Liste der Anhänge anzeigen (Anzahl: 1)
Ok i finally managed to do something..I can get Number of tray icons + tooltips however no icons or no mouse interactivity yet.So i hope you guys can help on that one.Ive done my part now i expect from you to do the same.
This works on WINDOWS 7264 RTM Build!
Delphi-Quellcode:
unit Unit2;
interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls,shellAPI, ComCtrls, ImgList,commctrl, ExtCtrls; type TForm2 = class(TForm) ListBox1: TListBox; Button1: TButton; Image1: TImage; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form2: TForm2; h_Tray:hwnd; function GetSysTrayWnd: HWND; begin Result := FindWindow('Shell_TrayWnd', nil); Result := FindWindowEx(Result, 0, 'TrayNotifyWnd', nil); Result := FindWindowEx(Result, 0, 'SysPager', nil); Result := FindWindowEx(Result, 0, 'ToolbarWindow32', nil); end; procedure TForm2.Button1Click(Sender: TObject); var h_ico: HICON; h_icolist: TStringlist; btn_count, i,handleicon: integer; h_Process, dwProcessID:DWord; Point: Pointer; btn_ico: TTBButton; nNumberOfBytesRead: dword; buffer: array[0..255] of Char; begin h_Tray:=GetSysTrayWnd; btn_count:=sendmessage(h_Tray,TB_BUTTONCOUNT,0,0); GetWindowThreadProcessId(h_Tray,@dwProcessID); h_Process:=OpenProcess(PROCESS_VM_OPERATION or PROCESS_VM_READ or PROCESS_VM_WRITE, false, dwProcessID); point:=VirtualAllocEx(h_Process, nil, 4096, MEM_RESERVE or MEM_COMMIT, PAGE_READWRITE); for i:=0 to btn_count - 1 do begin SendMessage(h_Tray, TB_GETBUTTON, i, LPARAM(Point)); ReadProcessMemory(h_Process, (Point), @btn_ico, sizeof(btn_ico), nNumberOfBytesRead); SendMessage(h_Tray, TB_GETBUTTONTEXT , i, LPARAM(Point)); ReadProcessMemory(h_Process, (Point), @buffer, sizeof(buffer), nNumberOfBytesRead); listbox1.Items.Add(buffer); end; SHOWmessage(inttostr(btn_count)); handleicon:=SendMessage(h_Tray,TB_GETIMAGELIST,0,0); ImageList_GetIcon(handleicon,0,0); ///???? image1.Canvas.Handle:=ImageList_GetIcon(handleicon,1,0); ///???? |
Re: Create Sys Tray / Capture
Zitat:
Zitat:
May I ask what are you trying to do? Implement an alternative systray? |
Re: Create Sys Tray / Capture
Shell replacment
|
Re: Create Sys Tray / Capture
Well ... that won't work. I can tell you why:
If you want to build a shell replacement you will replace the shell. Therefore the original shell (Explorer) is not running and the original systray doesn't exist. But you currently read the data from the original systray. You will have to reverse the ![]() |
Re: Create Sys Tray / Capture
Liste der Anhänge anzeigen (Anzahl: 1)
Why not find out wich processes have tray then findout wich icons they have?
Edit:/ I have found some untis of sharpe enviroment for delphi wich is a shell replacement.It contains the procedures that you said i need.Can you have a look in shell.dproj. |
Re: Create Sys Tray / Capture
But for start i will rather make it so i can get icons while explorer is ON.Easier.Any tips?
|
Re: Create Sys Tray / Capture
24hours past still no reply?
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 19:42 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz