forked from gaojunxin/TSPlug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TSWindowsAPI.cpp~RF14b6222.TMP
321 lines (314 loc) · 8.92 KB
/
TSWindowsAPI.cpp~RF14b6222.TMP
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
#include "StdAfx.h"
#include "TSWindowsAPI.h"
#include "TSMyUser32DllFuntion.h"
#include "TSMyKernel32DllFuntion.h"
#include "TSRuntime.h"
TSWindowsAPI::TSWindowsAPI(void)
{
if(TSRuntime::InitialWindowsVersion()!=4)//不是win7系统
{
TSRuntime::IsInitialmyUser32module=InitialMyUser32Dll();
TSRuntime::IsInitialmykernel32module=InitialMykernel32Dll();
//if(TSRuntime::IsInitialmyUser32module==false||TSRuntime::IsInitialmykernel32module==false)
// ::MessageBox(0,L"InitialMyUser32Dll失败",L"TS",0);
//else
// ::MessageBox(0,L"InitialMyUser32Dll成功",L"TS",0);
}
}
TSWindowsAPI::~TSWindowsAPI(void)
{
}
//TSEnumWindow:filter整形数: 取值定义如下
//
//1 : 匹配窗口标题,参数title有效
//
//2 : 匹配窗口类名,参数class_name有效.
//
//4 : 只匹配指定父窗口的第一层孩子窗口
//
//8 : 匹配所有者窗口为0的窗口,即顶级窗口
//
//16 : 匹配可见的窗口
//
//32 : 匹配出的窗口按照窗口打开顺序依次排列
bool TSWindowsAPI::TSEnumWindow(HWND parent,wchar_t *title,wchar_t *class_name,LONG filter,wchar_t *retstring)
{
bool bret=false;
bool bZwindow=false;//匹配出的窗口按照窗口打开顺序依次排列
if(parent==0)
{
parent=GetDesktopWindow();
}
if(filter>32)
{
bZwindow=true;//说明要排序窗口句柄
filter=filter-32;
}
switch(filter)
{
case 1://1 : 匹配窗口标题,参数title有效
{
if(wcslen(title)<1)
return false;
HWND p=::GetWindow(parent,GW_CHILD); //获取桌面窗口的子窗口
if(p==NULL)
return false;
p=::GetWindow(p,GW_HWNDFIRST);
while(p!=NULL)
{
wchar_t WindowTitle[MAX_PATH] = {0};
::GetWindowText(p, WindowTitle, MAX_PATH);
if(wcslen(WindowTitle)>1)
{
wchar_t *strfind=wcsstr(WindowTitle,title); //模糊匹配
if(strfind)
{
int len=wcslen(retstring);
if(len>1)
swprintf(retstring,L",%x" ,p);
else
swprintf(retstring,L"%x",p);
}
}
p=::GetWindow(p,GW_HWNDNEXT); //获取下一个窗口
}
break;
}
case 2://2 : 匹配窗口类名,参数class_name有效.
{
if(wcslen(class_name)<1)
return false;
HWND p=::GetWindow(parent,GW_CHILD); //获取桌面窗口的子窗口
if(p==NULL)
return false;
p=::GetWindow(p,GW_HWNDFIRST);
while(p!=NULL)
{
wchar_t WindowClassName[MAX_PATH] = {0};
::GetClassName(p, WindowClassName, MAX_PATH);
if(wcslen(WindowClassName)>1)
{
wchar_t *strfind=wcsstr(WindowClassName,class_name); //模糊匹配
if(strfind)
{
int len=wcslen(retstring);
if(len>1)
swprintf(retstring,L",%x" ,p);
else
swprintf(retstring,L"%x",p);
}
}
p=::GetWindow(p,GW_HWNDNEXT); //获取下一个窗口
}
break;
}
case 3: //1.窗口标题+2.窗口类名
{
if(wcslen(class_name)<1&&wcslen(title)<1)
return false;
HWND p=::GetWindow(parent,GW_CHILD); //获取桌面窗口的子窗口
if(p==NULL)
return false;
p=::GetWindow(p,GW_HWNDFIRST);
while(p!=NULL)
{
wchar_t WindowClassName[MAX_PATH] = {0};
::GetClassName(p, WindowClassName, MAX_PATH);
wchar_t WindowTitle[MAX_PATH] = {0};
::GetWindowText(p, WindowTitle, MAX_PATH);
if(wcslen(WindowClassName)>1&&wcslen(WindowTitle)>1)
{
wchar_t *strfindclass=wcsstr(WindowClassName,class_name); //模糊匹配
wchar_t *strfindtitle=wcsstr(WindowTitle,title); //模糊匹配
if(strfindclass&&strfindtitle)
{
int len=wcslen(retstring);
if(len>1)
swprintf(retstring,L",%x" ,p);
else
swprintf(retstring,L"%x",p);
}
}
p=::GetWindow(p,GW_HWNDNEXT); //获取下一个窗口
}
break;
}
case 4: //4 : 只匹配指定父窗口的第一层孩子窗口
{
HWND hchild=::GetWindow(parent,GW_CHILD); //获取桌面窗口的子窗口
if(hchild!=NULL)
swprintf(retstring,L"%x",hchild);
break;
}
case 5: //1.匹配窗口标题+//4 : 只匹配指定父窗口的第一层孩子窗口
{
if(wcslen(title)<1)
return false;
HWND hchild=::GetWindow(parent,GW_CHILD); //获取桌面窗口的子窗口
if(hchild==NULL)
return false;
wchar_t WindowTitle[MAX_PATH] = {0};
::GetWindowText(hchild, WindowTitle, MAX_PATH);
if(wcslen(WindowTitle)>1)
{
if(wcsstr(WindowTitle,title))
swprintf(retstring,L"%x",hchild);
}
else
return false;
break;
}
case 6: //2 : 匹配窗口类名+4 : 只匹配指定父窗口的第一层孩子窗口
{
if(wcslen(class_name)<1)
return false;
HWND hchild=::GetWindow(parent,GW_CHILD); //获取桌面窗口的子窗口
if(hchild==NULL)
return false;
wchar_t WindowClassName[MAX_PATH] = {0};
::GetClassName(hchild, WindowClassName, MAX_PATH);
if(wcslen(WindowClassName)>1)
{
if(wcsstr(WindowClassName,class_name))
swprintf(retstring,L"%x",hchild);
}
break;
}
case 7: //1.窗口标题+2.窗口类名+4 : 只匹配指定父窗口的第一层孩子窗口
{
if(wcslen(class_name)<1&&wcslen(title)<1)
return false;
HWND hchild=::GetWindow(parent,GW_CHILD); //获取桌面窗口的子窗口
if(hchild==NULL)
return false;
wchar_t WindowClassName[MAX_PATH] = {0};
::GetClassName(hchild, WindowClassName, MAX_PATH);
wchar_t WindowTitle[MAX_PATH] = {0};
::GetWindowText(hchild, WindowTitle, MAX_PATH);
if(wcslen(WindowClassName)>1&&wcslen(WindowTitle)>1)
{
wchar_t *strfindclass=wcsstr(WindowClassName,class_name); //模糊匹配
wchar_t *strfindtitle=wcsstr(WindowTitle,title); //模糊匹配
if(strfindclass&&strfindtitle)
{
swprintf(retstring,L"%x",hchild);
}
}
break;
}
case 8: //8 : 匹配所有者窗口为0的窗口,即顶级窗口
{
parent=GetDesktopWindow();
HWND p=::GetWindow(parent,GW_CHILD); //获取桌面窗口的子窗口
p=::GetWindow(p,GW_HWNDFIRST);
while(p!=NULL)
{
if(::GetWindow( p, GW_OWNER ) == 0 )
{
int len=wcslen(retstring);
if(len>1)
swprintf(retstring,L",%x" ,p);
else
swprintf(retstring,L"%x",p);
}
p=::GetWindow(p,GW_HWNDNEXT); //获取下一个窗口
}
break;
}
case 9: //1.窗口标题+8 : 匹配所有者窗口为0的窗口,即顶级窗口
{
break;
}
case 10: //2.窗口类名+8 : 匹配所有者窗口为0的窗口,即顶级窗口
{
break;
}
case 11: ////1.窗口标题+2.窗口类名+8 : 匹配所有者窗口为0的窗口,即顶级窗口
{
break;
}
case 12: // //4 : 只匹配指定父窗口的第一层孩子窗口+8 : 匹配所有者窗口为0的窗口,即顶级窗口
{
break;
}
case 13: //1.窗口标题+4 : 只匹配指定父窗口的第一层孩子窗口+8 : 匹配所有者窗口为0的窗口,即顶级窗口
{
break;
}
case 14: //2.窗口类名+4 : 只匹配指定父窗口的第一层孩子窗口+8 : 匹配所有者窗口为0的窗口,即顶级窗口
{
break;
}
case 15: ////1.窗口标题+2.窗口类名+4 : 只匹配指定父窗口的第一层孩子窗口+8 : 匹配所有者窗口为0的窗口,即顶级窗口
{
break;
}
case 16://匹配可见的窗口
{
break;
}
case 17: //1.窗口标题+//匹配可见的窗口
{
break;
}
case 18: //2.窗口类名+//匹配可见的窗口
{
break;
}
case 19: ////1.窗口标题+2.窗口类名+匹配可见的窗口
{
break;
}
case 20: //4 : 只匹配指定父窗口的第一层孩子窗口+匹配可见的窗口
{
break;
}
case 21: //1.窗口标题+4 : 只匹配指定父窗口的第一层孩子窗口+匹配可见的窗口
{
break;
}
case 22://2.窗口类名+4 : 只匹配指定父窗口的第一层孩子窗口+匹配可见的窗口
{
break;
}
case 23://1.窗口标题+2.窗口类名+4 : 只匹配指定父窗口的第一层孩子窗口+匹配可见的窗口
{
break;
}
case 24://8 : 匹配所有者窗口为0的窗口,即顶级窗口+16.匹配可见的窗口
{
break;
}
case 25: //1.窗口标题+ 8:匹配所有者窗口为0的窗口,即顶级窗口+16.匹配可见的窗口
{
break;
}
case 26://2.窗口类名+ 8:匹配所有者窗口为0的窗口,即顶级窗口+16.匹配可见的窗口
{
break;
}
case 27://1.窗口标题+2.窗口类名+8:匹配所有者窗口为0的窗口,即顶级窗口+16.匹配可见的窗口
{
break;
}
case 28: //4 : 只匹配指定父窗口的第一层孩子窗口+8:匹配所有者窗口为0的窗口,即顶级窗口+16.匹配可见的窗口
{
break;
}
case 29: ////1.窗口标题+4 : 只匹配指定父窗口的第一层孩子窗口+8:匹配所有者窗口为0的窗口,即顶级窗口+16.匹配可见的窗口
{
break;
}
case 30://2.窗口类名+4 : 只匹配指定父窗口的第一层孩子窗口+8:匹配所有者窗口为0的窗口,即顶级窗口+16.匹配可见的窗口
{
break;
}
case 31: //1.窗口标题+2.窗口类名+4 : 只匹配指定父窗口的第一层孩子窗口+8:匹配所有者窗口为0的窗口,即顶级窗口+16.匹配可见的窗口
{
break;
}
default:
return bret;
}
return bret;
}