Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3079c6be
Commit
3079c6be
authored
Aug 01, 2022
by
Connor McAdams
Committed by
Alexandre Julliard
Aug 03, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add UI Automation COM client interface definitions.
Signed-off-by:
Connor McAdams
<
cmcadams@codeweavers.com
>
parent
c97933fe
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
0 deletions
+52
-0
uiautomationclient.idl
include/uiautomationclient.idl
+0
-0
uiautomationcore.idl
include/uiautomationcore.idl
+52
-0
No files found.
include/uiautomationclient.idl
View file @
3079c6be
This diff is collapsed.
Click to expand it.
include/uiautomationcore.idl
View file @
3079c6be
...
...
@@ -40,11 +40,57 @@ enum ProviderOptions {
ProviderOptions_UseClientCoordinates
=
0
x0100
,
}
;
enum
StructureChangeType
{
StructureChangeType_ChildAdded
=
0
x0000
,
StructureChangeType_ChildRemoved
=
0
x0001
,
StructureChangeType_ChildrenInvalidated
=
0
x0002
,
StructureChangeType_ChildrenBulkAdded
=
0
x0003
,
StructureChangeType_ChildrenBulkRemoved
=
0
x0004
,
StructureChangeType_ChildrenReordered
=
0
x0005
,
}
;
enum
TextEditChangeType
{
TextEditChangeType_None
=
0
x0000
,
TextEditChangeType_AutoCorrect
=
0
x0001
,
TextEditChangeType_Composition
=
0
x0002
,
TextEditChangeType_CompositionFinalized
=
0
x0003
,
TextEditChangeType_AutoComplete
=
0
x0004
,
}
;
enum
OrientationType
{
OrientationType_None
=
0
x0000
,
OrientationType_Horizontal
=
0
x0001
,
OrientationType_Vertical
=
0
x0002
,
}
;
enum
WindowVisualState
{
WindowVisualState_Normal
=
0
x0000
,
WindowVisualState_Maximized
=
0
x0001
,
WindowVisualState_Minimized
=
0
x0002
,
}
;
enum
WindowInteractionState
{
WindowInteractionState_Running
=
0
x0000
,
WindowInteractionState_Closing
=
0
x0001
,
WindowInteractionState_ReadyForUserInteraction
=
0
x0002
,
WindowInteractionState_BlockedByModalWindow
=
0
x0003
,
WindowInteractionState_NotResponding
=
0
x0004
,
}
;
enum
LiveSetting
{
Off
=
0
x0000
,
Polite
=
0
x0001
,
Assertive
=
0
x0002
,
}
;
typedef
int
PROPERTYID
;
typedef
int
PATTERNID
;
typedef
int
EVENTID
;
typedef
int
TEXTATTRIBUTEID
;
typedef
int
CONTROLTYPEID
;
typedef
int
LANDMARKTYPEID
;
typedef
int
METADATAID
;
typedef
int
HEADINGLEVELID
;
struct
UiaRect
{
double
left
;
...
...
@@ -53,6 +99,12 @@ struct UiaRect {
double
height
;
}
;
struct
UiaChangeInfo
{
int
uiaId
;
VARIANT
payload
;
VARIANT
extraInfo
;
}
;
[
version
(
1.0
),
uuid
(
930299
ce
-
9965
-
4
dec
-
b0f4
-
a54848d4b667
),
...
...
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