-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathAviewer.dpr
More file actions
164 lines (145 loc) · 4.13 KB
/
Aviewer.dpr
File metadata and controls
164 lines (145 loc) · 4.13 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
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'}
{$R 'about.res' 'about.rc'}
uses
Forms,
Windows,
SysUtils,
Messages,
Dialogs,
Registry,
System.IOUtils,
FocusRectWnd in 'FocusRectWnd.pas' {WndFocusRect},
frmMSAAV in 'frmMSAAV.pas' {wndMSAAV},
TipWnd in 'TipWnd.pas' {frmTipWnd},
frmSet in 'frmSet.pas' {WndSet},
Thread in 'Thread.pas';
{$R *.res}
var
wnd, AppWnd: Thandle;
const
AppUniqueName:string = 'Global\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;
procedure RegFBE;
var
Reg: TRegistry;
sFN: string;
cType: Cardinal;
lFlag: LongBool;
begin
lFlag := GetBinaryType(PChar(application.ExeName), cType);
if lFlag then
begin
if cType = SCS_64BIT_BINARY then
sFN := 'aViewer64bit.exe'
else
sFN := 'aViewer32bit.exe';
end
else
sFN := 'aViewer32bit.exe';
Reg := TRegistry.Create(KEY_ALL_ACCESS );
try
Reg.RootKey := HKEY_CURRENT_USER;
if Reg.OpenKey('SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION\', false) then
begin
if (not Reg.ValueExists(sFN)) then
Reg.WriteInteger(sFN, $00002af8);
Reg.CloseKey;
end;
{if Reg.OpenKey('SOFTWARE\WOW6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION\', False) then
begin
if (not Reg.ValueExists(sFN)) then
Reg.WriteInteger(sFN, $00002af8);
Reg.CloseKey;
end;}
finally
Reg.Free;
end;
end;
begin
RegFBE;
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.