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
6474f8c1
Commit
6474f8c1
authored
May 09, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
May 09, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleacc: Add default window accessible object stub.
parent
60989ea3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
321 additions
and
1 deletion
+321
-1
Makefile.in
dlls/oleacc/Makefile.in
+2
-1
main.c
dlls/oleacc/main.c
+2
-0
oleacc_private.h
dlls/oleacc/oleacc_private.h
+1
-0
window.c
dlls/oleacc/window.c
+316
-0
No files found.
dlls/oleacc/Makefile.in
View file @
6474f8c1
...
...
@@ -4,7 +4,8 @@ IMPORTS = uuid oleaut32 ole32 user32
C_SRCS
=
\
client.c
\
main.c
main.c
\
window.c
IDL_SRCS
=
oleacc_classes.idl
...
...
dlls/oleacc/main.c
View file @
6474f8c1
...
...
@@ -94,6 +94,8 @@ HRESULT WINAPI CreateStdAccessibleObject( HWND hwnd, LONG idObject,
switch
(
idObject
)
{
case
OBJID_CLIENT
:
return
create_client_object
(
hwnd
,
riidInterface
,
ppvObject
);
case
OBJID_WINDOW
:
return
create_window_object
(
hwnd
,
riidInterface
,
ppvObject
);
default:
FIXME
(
"unhandled object id: %d
\n
"
,
idObject
);
return
E_NOTIMPL
;
...
...
dlls/oleacc/oleacc_private.h
View file @
6474f8c1
...
...
@@ -19,6 +19,7 @@
#include <oleacc.h>
HRESULT
create_client_object
(
HWND
,
const
IID
*
,
void
**
)
DECLSPEC_HIDDEN
;
HRESULT
create_window_object
(
HWND
,
const
IID
*
,
void
**
)
DECLSPEC_HIDDEN
;
const
char
*
debugstr_variant
(
const
VARIANT
*
)
DECLSPEC_HIDDEN
;
int
convert_child_id
(
VARIANT
*
v
)
DECLSPEC_HIDDEN
;
...
...
dlls/oleacc/window.c
0 → 100644
View file @
6474f8c1
/*
* Copyright 2014 Piotr Caban for CodeWeavers
*
* 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
*/
#define COBJMACROS
#include "oleacc_private.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
oleacc
);
typedef
struct
{
IAccessible
IAccessible_iface
;
LONG
ref
;
}
Window
;
static
inline
Window
*
impl_from_Window
(
IAccessible
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
Window
,
IAccessible_iface
);
}
static
HRESULT
WINAPI
Window_QueryInterface
(
IAccessible
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
Window
*
This
=
impl_from_Window
(
iface
);
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppv
);
if
(
IsEqualIID
(
riid
,
&
IID_IAccessible
)
||
IsEqualIID
(
riid
,
&
IID_IDispatch
)
||
IsEqualIID
(
riid
,
&
IID_IUnknown
))
{
*
ppv
=
iface
;
IAccessible_AddRef
(
iface
);
return
S_OK
;
}
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
Window_AddRef
(
IAccessible
*
iface
)
{
Window
*
This
=
impl_from_Window
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref = %u
\n
"
,
This
,
ref
);
return
ref
;
}
static
ULONG
WINAPI
Window_Release
(
IAccessible
*
iface
)
{
Window
*
This
=
impl_from_Window
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref = %u
\n
"
,
This
,
ref
);
if
(
!
ref
)
heap_free
(
This
);
return
ref
;
}
static
HRESULT
WINAPI
Window_GetTypeInfoCount
(
IAccessible
*
iface
,
UINT
*
pctinfo
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pctinfo
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_GetTypeInfo
(
IAccessible
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%u %x %p)
\n
"
,
This
,
iTInfo
,
lcid
,
ppTInfo
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_GetIDsOfNames
(
IAccessible
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispId
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %p %u %x %p)
\n
"
,
This
,
debugstr_guid
(
riid
),
rgszNames
,
cNames
,
lcid
,
rgDispId
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_Invoke
(
IAccessible
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%x %s %x %x %p %p %p %p)
\n
"
,
This
,
dispIdMember
,
debugstr_guid
(
riid
),
lcid
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accParent
(
IAccessible
*
iface
,
IDispatch
**
ppdispParent
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
ppdispParent
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accChildCount
(
IAccessible
*
iface
,
LONG
*
pcountChildren
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pcountChildren
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accChild
(
IAccessible
*
iface
,
VARIANT
varChildID
,
IDispatch
**
ppdispChild
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_variant
(
&
varChildID
),
ppdispChild
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accName
(
IAccessible
*
iface
,
VARIANT
varID
,
BSTR
*
pszName
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
pszName
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accValue
(
IAccessible
*
iface
,
VARIANT
varID
,
BSTR
*
pszValue
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
pszValue
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accDescription
(
IAccessible
*
iface
,
VARIANT
varID
,
BSTR
*
pszDescription
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
pszDescription
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accRole
(
IAccessible
*
iface
,
VARIANT
varID
,
VARIANT
*
pvarRole
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
pvarRole
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accState
(
IAccessible
*
iface
,
VARIANT
varID
,
VARIANT
*
pvarState
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
pvarState
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accHelp
(
IAccessible
*
iface
,
VARIANT
varID
,
BSTR
*
pszHelp
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
pszHelp
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accHelpTopic
(
IAccessible
*
iface
,
BSTR
*
pszHelpFile
,
VARIANT
varID
,
LONG
*
pidTopic
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%p %s %p)
\n
"
,
This
,
pszHelpFile
,
debugstr_variant
(
&
varID
),
pidTopic
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accKeyboardShortcut
(
IAccessible
*
iface
,
VARIANT
varID
,
BSTR
*
pszKeyboardShortcut
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
pszKeyboardShortcut
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accFocus
(
IAccessible
*
iface
,
VARIANT
*
pvarID
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pvarID
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accSelection
(
IAccessible
*
iface
,
VARIANT
*
pvarID
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pvarID
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_get_accDefaultAction
(
IAccessible
*
iface
,
VARIANT
varID
,
BSTR
*
pszDefaultAction
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
pszDefaultAction
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_accSelect
(
IAccessible
*
iface
,
LONG
flagsSelect
,
VARIANT
varID
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%x %s)
\n
"
,
This
,
flagsSelect
,
debugstr_variant
(
&
varID
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_accLocation
(
IAccessible
*
iface
,
LONG
*
pxLeft
,
LONG
*
pyTop
,
LONG
*
pcxWidth
,
LONG
*
pcyHeight
,
VARIANT
varID
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%p %p %p %p %s)
\n
"
,
This
,
pxLeft
,
pyTop
,
pcxWidth
,
pcyHeight
,
debugstr_variant
(
&
varID
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_accNavigate
(
IAccessible
*
iface
,
LONG
navDir
,
VARIANT
varStart
,
VARIANT
*
pvarEnd
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%d %s %p)
\n
"
,
This
,
navDir
,
debugstr_variant
(
&
varStart
),
pvarEnd
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_accHitTest
(
IAccessible
*
iface
,
LONG
xLeft
,
LONG
yTop
,
VARIANT
*
pvarID
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%d %d %p)
\n
"
,
This
,
xLeft
,
yTop
,
pvarID
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_accDoDefaultAction
(
IAccessible
*
iface
,
VARIANT
varID
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
varID
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_put_accName
(
IAccessible
*
iface
,
VARIANT
varID
,
BSTR
pszName
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %s)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
debugstr_w
(
pszName
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Window_put_accValue
(
IAccessible
*
iface
,
VARIANT
varID
,
BSTR
pszValue
)
{
Window
*
This
=
impl_from_Window
(
iface
);
FIXME
(
"(%p)->(%s %s)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
debugstr_w
(
pszValue
));
return
E_NOTIMPL
;
}
static
const
IAccessibleVtbl
WindowVtbl
=
{
Window_QueryInterface
,
Window_AddRef
,
Window_Release
,
Window_GetTypeInfoCount
,
Window_GetTypeInfo
,
Window_GetIDsOfNames
,
Window_Invoke
,
Window_get_accParent
,
Window_get_accChildCount
,
Window_get_accChild
,
Window_get_accName
,
Window_get_accValue
,
Window_get_accDescription
,
Window_get_accRole
,
Window_get_accState
,
Window_get_accHelp
,
Window_get_accHelpTopic
,
Window_get_accKeyboardShortcut
,
Window_get_accFocus
,
Window_get_accSelection
,
Window_get_accDefaultAction
,
Window_accSelect
,
Window_accLocation
,
Window_accNavigate
,
Window_accHitTest
,
Window_accDoDefaultAction
,
Window_put_accName
,
Window_put_accValue
};
HRESULT
create_window_object
(
HWND
hwnd
,
const
IID
*
iid
,
void
**
obj
)
{
Window
*
window
;
HRESULT
hres
;
if
(
!
IsWindow
(
hwnd
))
return
E_FAIL
;
window
=
heap_alloc_zero
(
sizeof
(
Window
));
if
(
!
window
)
return
E_OUTOFMEMORY
;
window
->
IAccessible_iface
.
lpVtbl
=
&
WindowVtbl
;
window
->
ref
=
1
;
hres
=
IAccessible_QueryInterface
(
&
window
->
IAccessible_iface
,
iid
,
obj
);
IAccessible_Release
(
&
window
->
IAccessible_iface
);
return
hres
;
}
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