-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathAviewer.dpr
119 lines (106 loc) · 3.14 KB
/
Aviewer.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
program Aviewer;
(*
aViewer is an accessibility API object inspection tool.
Copyright (C) 2014 The Paciello Group
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
{$R 'bmp.res' 'bmp.rc'}
uses
//ShareMem,
Forms,
Windows,
SysUtils,
Messages,
Dialogs,
AnsiStrings,
FocusRectWnd in 'FocusRectWnd.pas' {WndFocusRect},
frmMSAAV in 'frmMSAAV.pas' {wndMSAAV},
TipWnd in 'TipWnd.pas' {frmTipWnd},
frmSet in 'frmSet.pas' {WndSet};
{$R *.res}
var
wnd, AppWnd: Thandle;
const
AppUniqueName:string = 'msaav-KGZ6PhtR3P37';
function IsPrevAppExist(Name:string):Boolean;
begin
result := false;
CreateMutex(nil,true,PChar(Name));
if GetLastError = ERROR_ALREADY_EXISTS then
result := true;
end;
procedure CopyDataToOld;
var
i: Integer;
SendData: TCOPYDATASTRUCT;
strBuf: string;
begin
if ParamCount > 0 then
begin
//strBuf := '"' + IntToStr(ParamCount) + '",';
for i := 1 to ParamCount do
begin
strBuf := StrBuf + ParamStr(i);
if i <> ParamCount then
strBuf := strBuf + ',';
end;
SendData.dwData := $00000325;
SendData.cbData := length(strBuf) * SizeOf(Char);
SendData.lpData := StrAlloc(SendData.cbData);
try
StrCopy(SendData.lpData, PChar(strBuf));
SendMessage(Wnd,WM_COPYDATA,0,LPARAM(@SendData));
finally
SysUtils.StrDispose(Pchar(SendData.lpData));
end;
end;
end;
begin
if IsPrevAppExist(AppUniqueName) then
begin
Wnd := FindWindow('TwndMSAAV', 'Accessibility Viewer');
if (ParamCount = 0) then
begin
if Wnd <> 0 then
begin
AppWnd := GetWindowLong(Wnd, GWL_HWNDPARENT);
if AppWnd <> 0 then Wnd := AppWnd;
if IsIconic(Wnd) then
OpenIcon(Wnd)
else
SetForegroundWindow(Wnd);
end;
end
else
begin
if Wnd <> 0 then
begin
CopyDataToOld;
AppWnd := GetWindowLong(Wnd, GWL_HWNDPARENT);
if AppWnd <> 0 then Wnd := AppWnd;
if IsIconic(Wnd) then
OpenIcon(Wnd)
else
SetForegroundWindow(Wnd);
end;
end;
Application.Terminate;
end
else
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TwndMSAAV, wndMSAAV);
Application.Run;
end;
end.