当前位置:   article > 正文

C++ IUIAutomation获取微信消息_c++使用uiautomation

c++使用uiautomation

C++ IUIAutomation获取微信消息

前言

直接上代码

代码如下(示例):

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <tchar.h>
#include <windows.h>
#include <atlbase.h>
#include <comutil.h>  
#include <UIAutomation.h>
#pragma comment(lib, "comsuppw.lib")
using namespace std;


HWND g_hwd=NULL;
int _tmain(int argc, _TCHAR* argv[])
{
	CoInitialize(NULL);
	while(1)
	{
		g_hwd = FindWindow(_T("WeChatMainWndForPC"),_T("微信"));		//获取微信窗口的句柄
		if (g_hwd == NULL)
		{
			return 0;
		}
		else
		{
			WeChatInfo::UIAWeChat();
		}
		Sleep(1000);
	}
	CoUninitialize();

	return 0;
}

WeChatInfo::WeChatInfo()
{


}

WeChatInfo::~WeChatInfo()
{

}

SAFEARRAY* WeChatInfo::runtimeId = NULL;

void WeChatInfo::UIAWeChat()
{
	IUIAutomation *_automation;
	HRESULT hr = S_OK;
	if (FAILED(hr))
	{
		cout << "11" << endl;
		return;
	}
	else
	{
		hr = CoCreateInstance(CLSID_CUIAutomation, NULL, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&_automation));
		if (FAILED(hr))
		{
			cout << "22" << endl;
			return;
		}
		else
		{
			IUIAutomationElement *element = NULL;

			hr = _automation->ElementFromHandle(g_hwd, &element);
			if (FAILED(hr))
			{
				cout << "44" << endl;
				return;
			}

			if (SUCCEEDED(hr) && element != NULL)
			{
				IUIAutomationCondition* textPatternCondition;

				WCHAR wcPaneName[]=L"列表项目";  
				VARIANT trueVar;
				trueVar.vt=VT_BSTR;
				trueVar.bstrVal=SysAllocString(wcPaneName);

				//hr = _automation->CreateTrueCondition(&textPatternCondition);
				hr = _automation->CreatePropertyCondition(UIA_LocalizedControlTypePropertyId, trueVar, &textPatternCondition);  //设置条件接口
				if (FAILED(hr))
				{
					cout << "55" << endl;
					return;
				}
				else
				{
					IUIAutomationElementArray *textElement;
					hr = element->FindAll(TreeScope_Descendants, textPatternCondition, &textElement);
					if (FAILED(hr))
					{
						cout << "66" << endl;
						return;
					}
					else if (textElement == NULL)
					{
						cout << "77" << endl;
						return;
					}
					else
					{ 
						//获取控件内的文本
						int i_length;
						BSTR name;
						string plpszText;
						hr = textElement->get_Length(&i_length);
						if (FAILED(hr))
						{ 
							return;
						}
						
						IUIAutomationElement* pElement;
						hr = textElement->GetElement(i_length-1, &pElement);  //微信消息列表最上面一条消息
						if (FAILED(hr))
						{ 
							return;
						}

						WCHAR PaneName[]=L"按钮";  //消息对象名称
						VARIANT Var;
						Var.vt=VT_BSTR;
						Var.bstrVal=SysAllocString(PaneName);

						hr = _automation->CreatePropertyCondition(UIA_LocalizedControlTypePropertyId, Var, &textPatternCondition);
						if (FAILED(hr))
						{ 
							return;
						}
						IUIAutomationElementArray *ptextElement;
						pElement->FindAll(TreeScope_Subtree,textPatternCondition,&ptextElement);

						hr = ptextElement->get_Length(&i_length);
						if (FAILED(hr))
						{ 
							return;
						}

						IUIAutomationElement* p_Element;
						hr = ptextElement->GetElement(i_length-1, &p_Element);
						if (FAILED(hr))
						{ 
							return;
						}

						
						hr = p_Element->get_CurrentName(&name);
						if (FAILED(hr))
						{
							cout << "99" << endl;
							return;
						}

						plpszText = _com_util::ConvertBSTRToString(name);  
						SysFreeString(name); 

						if (FAILED(hr))
						{
							cout << "88" << endl;
							return;
						}
						

						
						hr = pElement->get_CurrentName(&name);
						if (FAILED(hr))
						{
							cout << "99" << endl;
							return;
						}

						plpszText += ":";
						plpszText +=  _com_util::ConvertBSTRToString(name);  
						SysFreeString(name); 

						SAFEARRAY *pruntimeId;
						BOOL trv;
						hr= pElement->GetRuntimeId(&pruntimeId);

						_automation->CompareRuntimeIds(pruntimeId,runtimeId,&trv);
						if(trv == TRUE)
						{
							return;
						}
						else
						{
							runtimeId = pruntimeId;
							printf("%s\n",plpszText.c_str());
						}
					}
					textPatternCondition->Release();
				}
			}
			_automation->Release();
		}
	}
	
	cout << "okok" << endl;
	return ;
}
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/104239
推荐阅读
相关标签
  

闽ICP备14008679号