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
361f0690
Commit
361f0690
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 InputProcessorProfiles object.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c80a9650
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
58 deletions
+11
-58
inputprocessor.c
dlls/msctf/inputprocessor.c
+10
-58
msctf_internal.h
dlls/msctf/msctf_internal.h
+1
-0
No files found.
dlls/msctf/inputprocessor.c
View file @
361f0690
...
...
@@ -51,15 +51,6 @@ static const WCHAR szwDefault[] = {'D','e','f','a','u','l','t',0};
static
const
WCHAR
szwProfile
[]
=
{
'P'
,
'r'
,
'o'
,
'f'
,
'i'
,
'l'
,
'e'
,
0
};
static
const
WCHAR
szwDefaultFmt
[]
=
{
'%'
,
's'
,
'\\'
,
'%'
,
's'
,
'\\'
,
'0'
,
'x'
,
'%'
,
'0'
,
'8'
,
'x'
,
'\\'
,
'%'
,
's'
,
0
};
typedef
struct
tagInputProcessorProfilesSink
{
struct
list
entry
;
union
{
/* InputProcessorProfile Sinks */
IUnknown
*
pIUnknown
;
ITfLanguageProfileNotifySink
*
pITfLanguageProfileNotifySink
;
}
interfaces
;
}
InputProcessorProfilesSink
;
typedef
struct
tagInputProcessorProfiles
{
ITfInputProcessorProfiles
ITfInputProcessorProfiles_iface
;
ITfSource
ITfSource_iface
;
...
...
@@ -217,25 +208,11 @@ static inline EnumTfLanguageProfiles *impl_from_IEnumTfLanguageProfiles(IEnumTfL
return
CONTAINING_RECORD
(
iface
,
EnumTfLanguageProfiles
,
IEnumTfLanguageProfiles_iface
);
}
static
void
free_sink
(
InputProcessorProfilesSink
*
sink
)
{
IUnknown_Release
(
sink
->
interfaces
.
pIUnknown
);
HeapFree
(
GetProcessHeap
(),
0
,
sink
);
}
static
void
InputProcessorProfiles_Destructor
(
InputProcessorProfiles
*
This
)
{
struct
list
*
cursor
,
*
cursor2
;
TRACE
(
"destroying %p
\n
"
,
This
);
/* free sinks */
LIST_FOR_EACH_SAFE
(
cursor
,
cursor2
,
&
This
->
LanguageProfileNotifySink
)
{
InputProcessorProfilesSink
*
sink
=
LIST_ENTRY
(
cursor
,
InputProcessorProfilesSink
,
entry
);
list_remove
(
cursor
);
free_sink
(
sink
);
}
free_sinks
(
&
This
->
LanguageProfileNotifySink
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
...
...
@@ -605,18 +582,18 @@ static HRESULT WINAPI InputProcessorProfiles_ChangeCurrentLanguage(
ITfInputProcessorProfiles
*
iface
,
LANGID
langid
)
{
InputProcessorProfiles
*
This
=
impl_from_ITfInputProcessorProfiles
(
iface
);
ITfLanguageProfileNotifySink
*
sink
;
struct
list
*
cursor
;
BOOL
accept
;
FIXME
(
"STUB:(%p)
\n
"
,
This
);
LIST_FOR_EACH
(
cursor
,
&
This
->
LanguageProfileNotifyS
ink
)
SINK_FOR_EACH
(
cursor
,
&
This
->
LanguageProfileNotifySink
,
ITfLanguageProfileNotifySink
,
s
ink
)
{
InputProcessorProfilesSink
*
sink
=
LIST_ENTRY
(
cursor
,
InputProcessorProfilesSink
,
entry
);
accept
=
TRUE
;
ITfLanguageProfileNotifySink_OnLanguageChange
(
sink
->
interfaces
.
pITfLanguageProfileNotifySink
,
langid
,
&
accept
);
ITfLanguageProfileNotifySink_OnLanguageChange
(
sink
,
langid
,
&
accept
);
if
(
!
accept
)
return
E_FAIL
;
return
E_FAIL
;
}
/* TODO: On successful language change call OnLanguageChanged sink */
...
...
@@ -928,7 +905,6 @@ static HRESULT WINAPI IPPSource_AdviseSink(ITfSource *iface,
REFIID
riid
,
IUnknown
*
punk
,
DWORD
*
pdwCookie
)
{
InputProcessorProfiles
*
This
=
impl_from_ITfSource
(
iface
);
InputProcessorProfilesSink
*
ipps
;
TRACE
(
"(%p) %s %p %p
\n
"
,
This
,
debugstr_guid
(
riid
),
punk
,
pdwCookie
);
...
...
@@ -936,47 +912,23 @@ static HRESULT WINAPI IPPSource_AdviseSink(ITfSource *iface,
return
E_INVALIDARG
;
if
(
IsEqualIID
(
riid
,
&
IID_ITfLanguageProfileNotifySink
))
{
ipps
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
InputProcessorProfilesSink
));
if
(
!
ipps
)
return
E_OUTOFMEMORY
;
if
(
FAILED
(
IUnknown_QueryInterface
(
punk
,
riid
,
(
LPVOID
*
)
&
ipps
->
interfaces
.
pITfLanguageProfileNotifySink
)))
{
HeapFree
(
GetProcessHeap
(),
0
,
ipps
);
return
CONNECT_E_CANNOTCONNECT
;
}
list_add_head
(
&
This
->
LanguageProfileNotifySink
,
&
ipps
->
entry
);
*
pdwCookie
=
generate_Cookie
(
COOKIE_MAGIC_IPPSINK
,
ipps
);
}
else
{
FIXME
(
"(%p) Unhandled Sink: %s
\n
"
,
This
,
debugstr_guid
(
riid
));
return
E_NOTIMPL
;
}
TRACE
(
"cookie %x
\n
"
,
*
pdwCookie
);
return
advise_sink
(
&
This
->
LanguageProfileNotifySink
,
&
IID_ITfLanguageProfileNotifySink
,
COOKIE_MAGIC_IPPSINK
,
punk
,
pdwCookie
);
return
S_OK
;
FIXME
(
"(%p) Unhandled Sink: %s
\n
"
,
This
,
debugstr_guid
(
riid
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IPPSource_UnadviseSink
(
ITfSource
*
iface
,
DWORD
pdwCookie
)
{
InputProcessorProfiles
*
This
=
impl_from_ITfSource
(
iface
);
InputProcessorProfilesSink
*
sink
;
TRACE
(
"(%p) %x
\n
"
,
This
,
pdwCookie
);
if
(
get_Cookie_magic
(
pdwCookie
)
!=
COOKIE_MAGIC_IPPSINK
)
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
InputProcessorProfilesSourceVtbl
=
...
...
dlls/msctf/msctf_internal.h
View file @
361f0690
...
...
@@ -74,6 +74,7 @@ typedef struct {
ITfThreadMgrEventSink
*
pITfThreadMgrEventSink
;
ITfCompartmentEventSink
*
pITfCompartmentEventSink
;
ITfTextEditSink
*
pITfTextEditSink
;
ITfLanguageProfileNotifySink
*
pITfLanguageProfileNotifySink
;
}
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