Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a077f98e
Commit
a077f98e
authored
Nov 06, 2021
by
Connor McAdams
Committed by
Alexandre Julliard
Nov 08, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Define more provider interfaces in uiautomationcore.idl.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
273d3255
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
uiautomationcore.idl
include/uiautomationcore.idl
+59
-0
No files found.
include/uiautomationcore.idl
View file @
a077f98e
...
...
@@ -20,6 +20,14 @@
import
"oaidl.idl"
;
import
"oleacc.idl"
;
enum
NavigateDirection
{
NavigateDirection_Parent
=
0
x0000
,
NavigateDirection_NextSibling
=
0
x0001
,
NavigateDirection_PreviousSibling
=
0
x0002
,
NavigateDirection_FirstChild
=
0
x0003
,
NavigateDirection_LastChild
=
0
x0004
,
}
;
enum
ProviderOptions
{
ProviderOptions_ClientSideProvider
=
0
x0001
,
ProviderOptions_ServerSideProvider
=
0
x0002
,
...
...
@@ -38,6 +46,13 @@ typedef int EVENTID;
typedef
int
TEXTATTRIBUTEID
;
typedef
int
CONTROLTYPEID
;
struct
UiaRect
{
double
left
;
double
top
;
double
width
;
double
height
;
}
;
[
version
(
1.0
),
uuid
(
930299
ce
-
9965
-
4
dec
-
b0f4
-
a54848d4b667
),
...
...
@@ -92,4 +107,48 @@ library UIA
[
in
]
IRawElementProviderSimple
*
pIn
,
[
out
]
IAccessibleEx
**
ppRetValOut
)
;
}
interface
IRawElementProviderFragmentRoot
;
[
object
,
uuid
(
f7063da8
-
8359
-
439
c
-
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
(
620
ce2a5
-
ab8f
-
40
a9
-
86
cb
-
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
)
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment