mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 11:08:45 +00:00
a077f98ee3
Signed-off-by: Connor McAdams <cmcadams@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
154 lines
4.7 KiB
Text
154 lines
4.7 KiB
Text
/*
|
|
* Copyright 2012 Jacek Caban for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#define DO_NO_IMPORTS
|
|
import "oaidl.idl";
|
|
import "oleacc.idl";
|
|
|
|
enum NavigateDirection {
|
|
NavigateDirection_Parent = 0x0000,
|
|
NavigateDirection_NextSibling = 0x0001,
|
|
NavigateDirection_PreviousSibling = 0x0002,
|
|
NavigateDirection_FirstChild = 0x0003,
|
|
NavigateDirection_LastChild = 0x0004,
|
|
};
|
|
|
|
enum ProviderOptions {
|
|
ProviderOptions_ClientSideProvider = 0x0001,
|
|
ProviderOptions_ServerSideProvider = 0x0002,
|
|
ProviderOptions_NonClientAreaProvider = 0x0004,
|
|
ProviderOptions_OverrideProvider = 0x0008,
|
|
ProviderOptions_ProviderOwnsSetFocus = 0x0010,
|
|
ProviderOptions_UseComThreading = 0x0020,
|
|
ProviderOptions_RefuseNonClientSupport = 0x0040,
|
|
ProviderOptions_HasNativeIAccessible = 0x0080,
|
|
ProviderOptions_UseClientCoordinates = 0x0100,
|
|
};
|
|
|
|
typedef int PROPERTYID;
|
|
typedef int PATTERNID;
|
|
typedef int EVENTID;
|
|
typedef int TEXTATTRIBUTEID;
|
|
typedef int CONTROLTYPEID;
|
|
|
|
struct UiaRect {
|
|
double left;
|
|
double top;
|
|
double width;
|
|
double height;
|
|
};
|
|
|
|
[
|
|
version(1.0),
|
|
uuid(930299ce-9965-4dec-b0f4-a54848d4b667),
|
|
lcid(0),
|
|
hidden
|
|
]
|
|
library UIA
|
|
{
|
|
importlib("stdole2.tlb");
|
|
|
|
[
|
|
object,
|
|
uuid(d6dd68d1-86fd-4332-8666-9abedea2d24c),
|
|
pointer_default(unique),
|
|
oleautomation
|
|
]
|
|
interface IRawElementProviderSimple : IUnknown
|
|
{
|
|
[propget] HRESULT ProviderOptions([out, retval] enum ProviderOptions *pRetVal);
|
|
|
|
HRESULT GetPatternProvider(
|
|
[in] PATTERNID patternId,
|
|
[out, retval] IUnknown **pRetVal);
|
|
|
|
HRESULT GetPropertyValue(
|
|
[in] PROPERTYID propertyId,
|
|
[out, retval] VARIANT *pRetVal);
|
|
|
|
[propget] HRESULT HostRawElementProvider([out, retval] IRawElementProviderSimple **pRetVal);
|
|
}
|
|
|
|
[
|
|
object,
|
|
uuid(f8b80ada-2c44-48d0-89be-5ff23c9cd875),
|
|
pointer_default(unique),
|
|
oleautomation
|
|
]
|
|
interface IAccessibleEx : IUnknown
|
|
{
|
|
HRESULT GetObjectForChild(
|
|
[in] long idChild,
|
|
[out, retval] IAccessibleEx **pRetVal);
|
|
|
|
HRESULT GetIAccessiblePair(
|
|
[out] IAccessible **ppAcc,
|
|
[out] long *pidChild);
|
|
|
|
HRESULT GetRuntimeId(
|
|
[out, retval] SAFEARRAY(int) *pRetVal);
|
|
|
|
HRESULT ConvertReturnedElement(
|
|
[in] IRawElementProviderSimple *pIn,
|
|
[out] IAccessibleEx **ppRetValOut);
|
|
}
|
|
|
|
interface IRawElementProviderFragmentRoot;
|
|
|
|
[
|
|
object,
|
|
uuid(f7063da8-8359-439c-9297-bbc5299a7d87),
|
|
pointer_default(unique),
|
|
oleautomation
|
|
]
|
|
interface IRawElementProviderFragment : IUnknown
|
|
{
|
|
HRESULT Navigate(
|
|
[in] enum NavigateDirection direction,
|
|
[out, retval] IRawElementProviderFragment **pRetVal);
|
|
|
|
HRESULT GetRuntimeId([out, retval] SAFEARRAY(int) *pRetVal);
|
|
HRESULT get_BoundingRectangle([out, retval] struct UiaRect *pRetVal);
|
|
/*
|
|
* FIXME: Current versions of Windows SDK use
|
|
* SAFEARRAY(IRawElementProviderFragmentRoot *) instead of
|
|
* SAFEARRAY(VARIANT). The new type is currently unsupported
|
|
* in widl, we should switch to it when it is.
|
|
*/
|
|
HRESULT GetEmbeddedFragmentRoots([out, retval] SAFEARRAY(VARIANT) *pRetVal);
|
|
HRESULT SetFocus();
|
|
|
|
[propget] HRESULT FragmentRoot([out, retval] IRawElementProviderFragmentRoot **pRetVal);
|
|
}
|
|
|
|
[
|
|
object,
|
|
uuid(620ce2a5-ab8f-40a9-86cb-de3c75599b58),
|
|
pointer_default(unique),
|
|
oleautomation
|
|
]
|
|
interface IRawElementProviderFragmentRoot : IUnknown
|
|
{
|
|
HRESULT ElementProviderFromPoint(
|
|
[in] double x,
|
|
[in] double y,
|
|
[out, retval] IRawElementProviderFragment **pRetVal);
|
|
|
|
HRESULT GetFocus([out, retval] IRawElementProviderFragment **pRetVal);
|
|
}
|
|
}
|