I'm trying to create a custom control pattern to use for my app. I have successfully created the implementation for the pattern and I am able to register it with the UI Automation core.
At this point, I am trying to implement the client/server side providers and the proxy factory. This all seems a bit vague and I am not sure how the provider gets created from the com object and passes the pointer of the new pattern or provider back to my app.
My main sources are here: Client-side, Server-side. Any help is much appreciated.
Here is my client side provider:
RotateClientSideCustomProvider::RotateClientSideCustomProvider()
{
refCount = 1;
}
RotateClientSideCustomProvider::RotateClientSideCustomProvider(HWND owner)
{
controlHWnd = owner;
refCount = 1;
}
RotateClientSideCustomProvider::~RotateClientSideCustomProvider()
{
}
int RotateClientSideCustomProvider::CustomUiaIdLookup(AutomationIdentifierType type, GUID* pGuid)
{
if(type == AutomationIdentifierType_Property)
{
if(*pGuid == valuePropertyGuid)
return Rotate_Value_PropertyID;
else if(*pGuid == isReadOnlyPropertyGuid)
return Rotate_IsReadOnly_PropertyID;
}
else if(type == AutomationIdentifierType_Pattern)
{
if(*pGuid == patternGuid)
return Rotate_PatternID;
}
else if(AutomationIdentifierType_Event)
{
if(*pGuid == eventGuid)
return Rotate_Reset_EventID;
}
else
return 0;
}
STDMETHODIMP RotateClientSideCustomProvider::GetPropertyValue(PROPERTYID propertyId, VARIANT *pRetVal)
{
if (propertyId == CustomIds.ValueProperty)
{
pRetVal->vt = VT_BSTR;
pRetVal->bstrVal = SysAllocString(L"RotateClientSideCustomProvider Control");
}
/*else if (propertyId == CustomIds.ControlTypeProperty)
{
pRetVal->vt = VT_I4;
pRetVal->lVal = CustomIds.ButtonControlType;
}*/
else
{
pRetVal->vt = VT_EMPTY;
// UI Automation will attempt to get the property from the host window provider.
}
return S_OK;
}
STDMETHODIMP RotateClientSideCustomProvider::GetPatternProvider(PATTERNID patternId, IUnknown** pRetVal)
{
if(patternId == CustomIds.RotatePattern)
{
AddRef();
*pRetVal = this;
}
else
*pRetVal = NULL;
return S_OK;
}
STDMETHODIMP RotateClientSideCustomProvider::get_HostRawElementProvider(IRawElementProviderSimple** pRetVal)
{
return UiaHostProviderFromHwnd(controlHWnd, pRetVal);
}
STDMETHODIMP RotateClientSideCustomProvider::get_ProviderOptions(ProviderOptions* pRetVal)
{
*pRetVal = ProviderOptions_ClientSideProvider;
return S_OK;
}
//IUnknown implementation here...
Here is my server side provider:
ServerSideCustomProvider::ServerSideCustomProvider()
{
InitializeIDs();
}
ServerSideCustomProvider::ServerSideCustomProvider(HWND handle)
{
controlHWnd = handle;
InitializeIDs();
}
ServerSideCustomProvider::~ServerSideCustomProvider()
{
}
HRESULT __stdcall ServerSideCustomProvider::GetPatternProvider(PATTERNID patternId, IUnknown** pRetVal)
{
if (patternId == CustomIds.RotatePattern)
{
AddRef();
*pRetVal =(IUnknown*)(IRawElementProviderSimple*)this;
}
else
{
*pRetVal = NULL;
}
return S_OK;
}
HRESULT __stdcall ServerSideCustomProvider::GetPropertyValue(PROPERTYID propertyId, VARIANT* pRetVal)
{
if (propertyId == CustomIds.ValueProperty)
{
pRetVal->vt = VT_BSTR;
pRetVal->bstrVal = SysAllocString(L"ColorButton");
}
/*else if (propertyId == CustomIds.ControlTypeProperty)
{
pRetVal->vt = VT_I4;
pRetVal->lVal = CustomIds.ButtonControlType;
}*/
else
{
pRetVal->vt = VT_EMPTY;
// UI Automation will attempt to get the property from the host window provider.
}
return S_OK;
}
HRESULT __stdcall ServerSideCustomProvider::get_HostRawElementProvider(IRawElementProviderSimple** pRetVal)
{
return UiaHostProviderFromHwnd(controlHWnd, pRetVal);
}
HRESULT __stdcall ServerSideCustomProvider::get_ProviderOptions(ProviderOptions* pRetVal)
{
*pRetVal = ProviderOptions_ServerSideProvider | ProviderOptions_UseComThreading;
return S_OK;
}
//IUnknown implementation here...
Also, my proxy factory:
CustomProxyFactory::CustomProxyFactory()
{
}
CustomProxyFactory::~CustomProxyFactory()
{
}
STDMETHODIMP CustomProxyFactory::CreateProvider(UIA_HWND hwnd, LONG idObject, LONG idChild, IRawElementProviderSimple **ppRetVal)
{
*ppRetVal = new RotateClientSideCustomProvider((HWND)hwnd);
return S_OK;
}
STDMETHODIMP CustomProxyFactory::get_ProxyFactoryId(BSTR *pRetVal)
{
*pRetVal = SysAllocString(L"Custom Proxy Factory");
return S_OK;
}