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
c80a9650
Commit
c80a9650
authored
May 04, 2016
by
Jacek Caban
Committed by
Alexandre Julliard
May 05, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msctf: Use generic sinks in Context object.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
40cdfd2a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
83 deletions
+14
-83
context.c
dlls/msctf/context.c
+13
-83
msctf_internal.h
dlls/msctf/msctf_internal.h
+1
-0
No files found.
dlls/msctf/context.c
View file @
c80a9650
...
...
@@ -41,19 +41,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
msctf
);
typedef
struct
tagContextSink
{
struct
list
entry
;
union
{
/* Context Sinks */
IUnknown
*
pIUnknown
;
/* ITfContextKeyEventSink *pITfContextKeyEventSink; */
/* ITfEditTransactionSink *pITfEditTransactionSink; */
/* ITfStatusSink *pITfStatusSink; */
ITfTextEditSink
*
pITfTextEditSink
;
/* ITfTextLayoutSink *pITfTextLayoutSink; */
}
interfaces
;
}
ContextSink
;
typedef
struct
tagContext
{
ITfContext
ITfContext_iface
;
ITfSource
ITfSource_iface
;
...
...
@@ -126,15 +113,8 @@ static inline Context *impl_from_ITextStoreACPServices(ITextStoreACPServices *if
return
CONTAINING_RECORD
(
iface
,
Context
,
ITextStoreACPServices_iface
);
}
static
void
free_sink
(
ContextSink
*
sink
)
{
IUnknown_Release
(
sink
->
interfaces
.
pIUnknown
);
HeapFree
(
GetProcessHeap
(),
0
,
sink
);
}
static
void
Context_Destructor
(
Context
*
This
)
{
struct
list
*
cursor
,
*
cursor2
;
EditCookie
*
cookie
;
TRACE
(
"destroying %p
\n
"
,
This
);
...
...
@@ -154,36 +134,11 @@ static void Context_Destructor(Context *This)
This
->
defaultCookie
=
0
;
}
LIST_FOR_EACH_SAFE
(
cursor
,
cursor2
,
&
This
->
pContextKeyEventSink
)
{
ContextSink
*
sink
=
LIST_ENTRY
(
cursor
,
ContextSink
,
entry
);
list_remove
(
cursor
);
free_sink
(
sink
);
}
LIST_FOR_EACH_SAFE
(
cursor
,
cursor2
,
&
This
->
pEditTransactionSink
)
{
ContextSink
*
sink
=
LIST_ENTRY
(
cursor
,
ContextSink
,
entry
);
list_remove
(
cursor
);
free_sink
(
sink
);
}
LIST_FOR_EACH_SAFE
(
cursor
,
cursor2
,
&
This
->
pStatusSink
)
{
ContextSink
*
sink
=
LIST_ENTRY
(
cursor
,
ContextSink
,
entry
);
list_remove
(
cursor
);
free_sink
(
sink
);
}
LIST_FOR_EACH_SAFE
(
cursor
,
cursor2
,
&
This
->
pTextEditSink
)
{
ContextSink
*
sink
=
LIST_ENTRY
(
cursor
,
ContextSink
,
entry
);
list_remove
(
cursor
);
free_sink
(
sink
);
}
LIST_FOR_EACH_SAFE
(
cursor
,
cursor2
,
&
This
->
pTextLayoutSink
)
{
ContextSink
*
sink
=
LIST_ENTRY
(
cursor
,
ContextSink
,
entry
);
list_remove
(
cursor
);
free_sink
(
sink
);
}
free_sinks
(
&
This
->
pContextKeyEventSink
);
free_sinks
(
&
This
->
pEditTransactionSink
);
free_sinks
(
&
This
->
pStatusSink
);
free_sinks
(
&
This
->
pTextEditSink
);
free_sinks
(
&
This
->
pTextLayoutSink
);
CompartmentMgr_Destructor
(
This
->
CompartmentMgr
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
...
...
@@ -603,53 +558,29 @@ static HRESULT WINAPI ContextSource_AdviseSink(ITfSource *iface,
REFIID
riid
,
IUnknown
*
punk
,
DWORD
*
pdwCookie
)
{
Context
*
This
=
impl_from_ITfSource
(
iface
);
ContextSink
*
es
;
TRACE
(
"(%p) %s %p %p
\n
"
,
This
,
debugstr_guid
(
riid
),
punk
,
pdwCookie
);
if
(
!
riid
||
!
punk
||
!
pdwCookie
)
return
E_INVALIDARG
;
if
(
IsEqualIID
(
riid
,
&
IID_ITfTextEditSink
))
{
es
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
ContextSink
));
if
(
!
es
)
return
E_OUTOFMEMORY
;
if
(
FAILED
(
IUnknown_QueryInterface
(
punk
,
riid
,
(
LPVOID
*
)
&
es
->
interfaces
.
pITfTextEditSink
)))
{
HeapFree
(
GetProcessHeap
(),
0
,
es
);
return
CONNECT_E_CANNOTCONNECT
;
}
list_add_head
(
&
This
->
pTextEditSink
,
&
es
->
entry
);
*
pdwCookie
=
generate_Cookie
(
COOKIE_MAGIC_CONTEXTSINK
,
es
);
}
else
{
FIXME
(
"(%p) Unhandled Sink: %s
\n
"
,
This
,
debugstr_guid
(
riid
));
return
E_NOTIMPL
;
}
return
advise_sink
(
&
This
->
pTextEditSink
,
&
IID_ITfTextEditSink
,
COOKIE_MAGIC_CONTEXTSINK
,
punk
,
pdwCookie
);
TRACE
(
"cookie %x
\n
"
,
*
pdwCookie
);
return
S_OK
;
FIXME
(
"(%p) Unhandled Sink: %s
\n
"
,
This
,
debugstr_guid
(
riid
)
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ContextSource_UnadviseSink
(
ITfSource
*
iface
,
DWORD
pdwCookie
)
{
Context
*
This
=
impl_from_ITfSource
(
iface
);
ContextSink
*
sink
;
TRACE
(
"(%p) %x
\n
"
,
This
,
pdwCookie
);
if
(
get_Cookie_magic
(
pdwCookie
)
!=
COOKIE_MAGIC_CONTEXTSINK
)
return
E_INVALIDARG
;
sink
=
remove_Cookie
(
pdwCookie
);
if
(
!
sink
)
return
CONNECT_E_NOCONNECTION
;
list_remove
(
&
sink
->
entry
);
free_sink
(
sink
);
return
S_OK
;
return
unadvise_sink
(
pdwCookie
);
}
static
const
ITfSourceVtbl
ContextSourceVtbl
=
...
...
@@ -914,6 +845,7 @@ static HRESULT WINAPI TextStoreACPSink_OnLockGranted(ITextStoreACPSink *iface,
if
((
dwLockFlags
&
TS_LF_READWRITE
)
==
TS_LF_READWRITE
)
{
ITfTextEditSink
*
sink
;
TfEditCookie
sc
;
sinkcookie
->
lockType
=
TS_LF_READ
;
...
...
@@ -921,11 +853,9 @@ static HRESULT WINAPI TextStoreACPSink_OnLockGranted(ITextStoreACPSink *iface,
sc
=
generate_Cookie
(
COOKIE_MAGIC_EDITCOOKIE
,
sinkcookie
);
/*TODO: implement ITfEditRecord */
LIST_FOR_EACH
(
cursor
,
&
This
->
pTextEditS
ink
)
SINK_FOR_EACH
(
cursor
,
&
This
->
pTextEditSink
,
ITfTextEditSink
,
s
ink
)
{
ContextSink
*
sink
=
LIST_ENTRY
(
cursor
,
ContextSink
,
entry
);
ITfTextEditSink_OnEndEdit
(
sink
->
interfaces
.
pITfTextEditSink
,
(
ITfContext
*
)
&
This
->
ITfContext_iface
,
sc
,
NULL
);
ITfTextEditSink_OnEndEdit
(
sink
,
(
ITfContext
*
)
&
This
->
ITfContext_iface
,
sc
,
NULL
);
}
sinkcookie
=
remove_Cookie
(
sc
);
}
...
...
dlls/msctf/msctf_internal.h
View file @
c80a9650
...
...
@@ -73,6 +73,7 @@ typedef struct {
IUnknown
*
pIUnknown
;
ITfThreadMgrEventSink
*
pITfThreadMgrEventSink
;
ITfCompartmentEventSink
*
pITfCompartmentEventSink
;
ITfTextEditSink
*
pITfTextEditSink
;
}
interfaces
;
}
Sink
;
...
...
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