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
5de5ae4e
Commit
5de5ae4e
authored
Nov 02, 2023
by
Fabian Maurer
Committed by
Alexandre Julliard
Jan 22, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add Windows.UI.ViewManagement.InputPane definitions.
parent
78c2b7df
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
128 additions
and
0 deletions
+128
-0
Makefile.in
include/Makefile.in
+1
-0
inputpaneinterop.idl
include/inputpaneinterop.idl
+27
-0
windows.ui.viewmanagement.idl
include/windows.ui.viewmanagement.idl
+100
-0
No files found.
include/Makefile.in
View file @
5de5ae4e
...
...
@@ -375,6 +375,7 @@ SOURCES = \
inaddr.h
\
indexsrv.idl
\
initguid.h
\
inputpaneinterop.idl
\
inputscope.idl
\
inseng.idl
\
inspectable.idl
\
...
...
include/inputpaneinterop.idl
0 → 100644
View file @
5de5ae4e
/*
*
Copyright
2023
Fabian
Maurer
*
*
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
*/
import
"inspectable.idl"
;
[
uuid
(
75
cf2c57
-
9195
-
4931
-
8332
-
f0b409e916af
)
]
interface
IInputPaneInterop
:
IInspectable
{
HRESULT
GetForWindow
(
[
in
]
HWND
window
,
[
in
]
REFIID
riid
,
[
out
,
retval
,
iid_is
(
riid
)
]
void
**
inputpane
)
;
}
include/windows.ui.viewmanagement.idl
View file @
5de5ae4e
...
...
@@ -45,10 +45,20 @@ namespace Windows.UI.ViewManagement
interface
IUISettings5
;
interface
IUISettings6
;
interface
IInputPane
;
interface
IInputPane2
;
interface
IInputPaneControl
;
interface
IInputPaneVisibilityEventArgs
;
interface
IInputPaneStatics
;
interface
IInputPaneStatics2
;
runtimeclass
UISettings
;
runtimeclass
InputPane
;
runtimeclass
InputPaneVisibilityEventArgs
;
declare
{
interface
Windows
.
Foundation.TypedEventHandler<Windows.UI.ViewManagement.UISettings
*
,
IInspectable
*
>
;
interface
Windows
.
Foundation.TypedEventHandler<Windows.UI.ViewManagement.InputPane*
,
Windows
.
UI.ViewManagement.InputPaneVisibilityEventArgs*>;
}
[
...
...
@@ -172,6 +182,74 @@ namespace Windows.UI.ViewManagement
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
UI.ViewManagement.InputPane)
,
uuid
(
640
ada70
-
06
f3
-
4
c87
-
a678
-
9829
c9127c28
)
]
interface
IInputPane
:
IInspectable
{
[
eventadd
]
HRESULT
Showing
(
[
in
]
Windows
.
Foundation.TypedEventHandler<Windows.UI.ViewManagement.InputPane*
,
Windows
.
UI.ViewManagement.InputPaneVisibilityEventArgs*>
*
handler
,
[
out
,
retval
]
EventRegistrationToken
*
token
)
;
[
eventremove
]
HRESULT
Showing
(
[
in
]
EventRegistrationToken
token
)
;
[
eventadd
]
HRESULT
Hiding
(
[
in
]
Windows
.
Foundation.TypedEventHandler<Windows.UI.ViewManagement.InputPane*
,
Windows
.
UI.ViewManagement.InputPaneVisibilityEventArgs*>
*
handler
,
[
out
,
retval
]
EventRegistrationToken
*
token
)
;
[
eventremove
]
HRESULT
Hiding
(
[
in
]
EventRegistrationToken
token
)
;
[
propget
]
HRESULT
OccludedRect
(
[
out
,
retval
]
Windows
.
Foundation.Rect
*
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
UI.ViewManagement.InputPane)
,
uuid
(
8
a6b3f26
-
7090
-
4793
-
944
c
-
c3f2cde26276
)
]
interface
IInputPane2
:
IInspectable
{
HRESULT
TryShow
(
[
out
,
retval
]
boolean
*
result
)
;
HRESULT
TryHide
(
[
out
,
retval
]
boolean
*
result
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
UI.ViewManagement.InputPane)
,
uuid
(
088b
b24f
-
962
f
-
489
d
-
aa6e
-
c6be1a0a6e52
)
]
interface
IInputPaneControl
:
IInspectable
{
[
propget
]
HRESULT
Visible
(
[
out
,
retval
]
boolean
*
value
)
;
[
propput
]
HRESULT
Visible
(
[
in
]
boolean
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
UI.ViewManagement.InputPaneVisibilityEventArgs)
,
uuid
(
d243e016
-
d907
-
4
fcc
-
bb8d
-
f77baa5028f1
)
]
interface
IInputPaneVisibilityEventArgs
:
IInspectable
{
[
propget
]
HRESULT
OccludedRect
(
[
out
,
retval
]
Windows
.
Foundation.Rect
*
value
)
;
[
propput
]
HRESULT
EnsuredFocusedElementInView
(
[
in
]
boolean
value
)
;
[
propget
]
HRESULT
EnsuredFocusedElementInView
(
[
out
,
retval
]
boolean
*
value
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
exclusiveto
(
Windows
.
UI.ViewManagement.InputPane)
,
uuid
(
95
f4af3a
-
ef47
-
424
a
-
9741
-
fd2815eba2bd
)
]
interface
IInputPaneStatics
:
IInspectable
{
HRESULT
GetForCurrentView
(
[
out
,
retval
]
Windows
.
UI.ViewManagement.InputPane
**
input_pane
)
;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
8.0
),
exclusiveto
(
Windows
.
UI.ViewManagement.InputPane)
,
uuid
(
1b63529b
-
d9ec
-
4531
-
8445
-
71b
ab9fb828e
)
]
interface
IInputPaneStatics2
:
IInspectable
{
HRESULT
GetForUIContext
(
[
in
]
Windows
.
UI.UIContext
*
context
,
[
out
,
retval
]
Windows
.
UI.ViewManagement.InputPane
**
result
)
;
}
[
activatable
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
agile
)
...
...
@@ -182,4 +260,26 @@ namespace Windows.UI.ViewManagement
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
)
]
interface
Windows
.
UI.ViewManagement.IUISettings2;
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
)
]
interface
Windows
.
UI.ViewManagement.IUISettings3;
}
[
static
(
Windows
.
UI.ViewManagement.IInputPaneStatics
,
Windows
.
Foundation.UniversalApiContract
,
1.0
),
static
(
Windows
.
UI.ViewManagement.IInputPaneStatics2
,
Windows
.
Foundation.UniversalApiContract
,
8.0
),
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
standard
)
]
runtimeclass
InputPane
{
[
default
]
interface
Windows
.
UI.ViewManagement.IInputPane;
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
)
]
interface
Windows
.
UI.ViewManagement.IInputPane2;
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
)
]
interface
Windows
.
UI.ViewManagement.IInputPaneControl;
}
[
contract
(
Windows
.
Foundation.UniversalApiContract
,
1.0
),
marshaling_behavior
(
standard
)
]
runtimeclass
InputPaneVisibilityEventArgs
{
[
default
]
interface
Windows
.
UI.ViewManagement.IInputPaneVisibilityEventArgs;
}
}
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