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
070cd2e8
Commit
070cd2e8
authored
Oct 24, 2022
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Oct 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Move the IHTMLDocument6 interface out of basedoc.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
3b14acbd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
77 additions
and
50 deletions
+77
-50
htmldoc.c
dlls/mshtml/htmldoc.c
+41
-49
mshtml_private.h
dlls/mshtml/mshtml_private.h
+2
-1
oleobj.c
dlls/mshtml/oleobj.c
+34
-0
No files found.
dlls/mshtml/htmldoc.c
View file @
070cd2e8
...
...
@@ -3306,126 +3306,118 @@ static const IHTMLDocument5Vtbl HTMLDocument5Vtbl = {
HTMLDocument5_get_compatMode
};
static
inline
HTMLDocument
*
impl_from_IHTMLDocument6
(
IHTMLDocument6
*
iface
)
static
inline
HTMLDocument
Node
*
impl_from_IHTMLDocument6
(
IHTMLDocument6
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
HTMLDocument
,
IHTMLDocument6_iface
);
return
CONTAINING_RECORD
(
iface
,
HTMLDocument
Node
,
IHTMLDocument6_iface
);
}
static
HRESULT
WINAPI
HTMLDocument6_QueryInterface
(
IHTMLDocument6
*
iface
,
REFIID
riid
,
void
**
ppv
)
static
HRESULT
WINAPI
HTMLDocument6_QueryInterface
(
IHTMLDocument6
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
htmldoc_query_interface
(
This
,
riid
,
ppv
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
htmldoc_query_interface
(
&
This
->
basedoc
,
riid
,
ppv
);
}
static
ULONG
WINAPI
HTMLDocument6_AddRef
(
IHTMLDocument6
*
iface
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
htmldoc_addref
(
This
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
htmldoc_addref
(
&
This
->
basedoc
);
}
static
ULONG
WINAPI
HTMLDocument6_Release
(
IHTMLDocument6
*
iface
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
htmldoc_release
(
This
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
htmldoc_release
(
&
This
->
basedoc
);
}
static
HRESULT
WINAPI
HTMLDocument6_GetTypeInfoCount
(
IHTMLDocument6
*
iface
,
UINT
*
pctinfo
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
IDispatchEx_GetTypeInfoCount
(
&
This
->
IDispatchEx_iface
,
pctinfo
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
IDispatchEx_GetTypeInfoCount
(
&
This
->
basedoc
.
IDispatchEx_iface
,
pctinfo
);
}
static
HRESULT
WINAPI
HTMLDocument6_GetTypeInfo
(
IHTMLDocument6
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
static
HRESULT
WINAPI
HTMLDocument6_GetTypeInfo
(
IHTMLDocument6
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
IDispatchEx_GetTypeInfo
(
&
This
->
IDispatchEx_iface
,
iTInfo
,
lcid
,
ppTInfo
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
IDispatchEx_GetTypeInfo
(
&
This
->
basedoc
.
IDispatchEx_iface
,
iTInfo
,
lcid
,
ppTInfo
);
}
static
HRESULT
WINAPI
HTMLDocument6_GetIDsOfNames
(
IHTMLDocument6
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispId
)
static
HRESULT
WINAPI
HTMLDocument6_GetIDsOfNames
(
IHTMLDocument6
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispId
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
IDispatchEx_GetIDsOfNames
(
&
This
->
IDispatchEx_iface
,
riid
,
rgszNames
,
cNames
,
lcid
,
rgDispId
);
HTMLDocumentNode
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
IDispatchEx_GetIDsOfNames
(
&
This
->
basedoc
.
IDispatchEx_iface
,
riid
,
rgszNames
,
cNames
,
lcid
,
rgDispId
);
}
static
HRESULT
WINAPI
HTMLDocument6_Invoke
(
IHTMLDocument6
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
)
static
HRESULT
WINAPI
HTMLDocument6_Invoke
(
IHTMLDocument6
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
IDispatchEx_Invoke
(
&
This
->
IDispatchEx_iface
,
dispIdMember
,
riid
,
lcid
,
wFlags
,
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
return
IDispatchEx_Invoke
(
&
This
->
basedoc
.
IDispatchEx_iface
,
dispIdMember
,
riid
,
lcid
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
}
static
HRESULT
WINAPI
HTMLDocument6_get_compatible
(
IHTMLDocument6
*
iface
,
IHTMLDocumentCompatibleInfoCollection
**
p
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
HTMLDocument6_get_documentMode
(
IHTMLDocument6
*
iface
,
VARIANT
*
p
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
if
(
!
This
->
doc_node
)
{
FIXME
(
"NULL doc_node
\n
"
);
return
E_UNEXPECTED
;
}
V_VT
(
p
)
=
VT_R4
;
V_R4
(
p
)
=
compat_mode_info
[
This
->
doc
_node
->
doc
ument_mode
].
document_mode
;
V_R4
(
p
)
=
compat_mode_info
[
This
->
document_mode
].
document_mode
;
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLDocument6_get_onstorage
(
IHTMLDocument6
*
iface
,
VARIANT
*
p
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
get_doc_event
(
This
,
EVENTID_STORAGE
,
p
);
return
get_doc_event
(
&
This
->
basedoc
,
EVENTID_STORAGE
,
p
);
}
static
HRESULT
WINAPI
HTMLDocument6_put_onstorage
(
IHTMLDocument6
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
set_doc_event
(
This
,
EVENTID_STORAGE
,
&
v
);
return
set_doc_event
(
&
This
->
basedoc
,
EVENTID_STORAGE
,
&
v
);
}
static
HRESULT
WINAPI
HTMLDocument6_get_onstoragecommit
(
IHTMLDocument6
*
iface
,
VARIANT
*
p
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
get_doc_event
(
This
,
EVENTID_STORAGECOMMIT
,
p
);
return
get_doc_event
(
&
This
->
basedoc
,
EVENTID_STORAGECOMMIT
,
p
);
}
static
HRESULT
WINAPI
HTMLDocument6_put_onstoragecommit
(
IHTMLDocument6
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
set_doc_event
(
This
,
EVENTID_STORAGECOMMIT
,
&
v
);
return
set_doc_event
(
&
This
->
basedoc
,
EVENTID_STORAGECOMMIT
,
&
v
);
}
static
HRESULT
WINAPI
HTMLDocument6_getElementById
(
IHTMLDocument6
*
iface
,
BSTR
bstrId
,
IHTMLElement2
**
p
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
nsIDOMElement
*
nselem
;
HTMLElement
*
elem
;
nsAString
nsstr
;
...
...
@@ -3439,13 +3431,13 @@ static HRESULT WINAPI HTMLDocument6_getElementById(IHTMLDocument6 *iface,
* not search for name attributes, so we may simply let Gecko do the right thing.
*/
if
(
!
This
->
doc_node
->
nsdoc
)
{
if
(
!
This
->
nsdoc
)
{
FIXME
(
"Not a document
\n
"
);
return
E_FAIL
;
}
nsAString_InitDepend
(
&
nsstr
,
bstrId
);
nsres
=
nsIDOMHTMLDocument_GetElementById
(
This
->
doc_node
->
nsdoc
,
&
nsstr
,
&
nselem
);
nsres
=
nsIDOMHTMLDocument_GetElementById
(
This
->
nsdoc
,
&
nsstr
,
&
nselem
);
nsAString_Finish
(
&
nsstr
);
if
(
NS_FAILED
(
nsres
))
{
ERR
(
"GetElementById failed: %08lx
\n
"
,
nsres
);
...
...
@@ -3468,7 +3460,7 @@ static HRESULT WINAPI HTMLDocument6_getElementById(IHTMLDocument6 *iface,
static
HRESULT
WINAPI
HTMLDocument6_updateSettings
(
IHTMLDocument6
*
iface
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument6
(
iface
);
HTMLDocument
Node
*
This
=
impl_from_IHTMLDocument6
(
iface
);
FIXME
(
"(%p)->()
\n
"
,
This
);
return
E_NOTIMPL
;
}
...
...
@@ -5557,8 +5549,6 @@ BOOL htmldoc_qi(HTMLDocument *This, REFIID riid, void **ppv)
*
ppv
=
&
This
->
IDispatchEx_iface
;
else
if
(
IsEqualGUID
(
&
IID_IDispatchEx
,
riid
))
*
ppv
=
&
This
->
IDispatchEx_iface
;
else
if
(
IsEqualGUID
(
&
IID_IHTMLDocument6
,
riid
))
*
ppv
=
&
This
->
IHTMLDocument6_iface
;
else
if
(
IsEqualGUID
(
&
IID_IHTMLDocument7
,
riid
))
*
ppv
=
&
This
->
IHTMLDocument7_iface
;
else
...
...
@@ -5582,7 +5572,6 @@ static const cpc_entry_t HTMLDocumentNode_cpc[] = {
void
init_doc
(
HTMLDocument
*
doc
,
IUnknown
*
outer
,
IDispatchEx
*
dispex
)
{
doc
->
IHTMLDocument6_iface
.
lpVtbl
=
&
HTMLDocument6Vtbl
;
doc
->
IHTMLDocument7_iface
.
lpVtbl
=
&
HTMLDocument7Vtbl
;
doc
->
IDispatchEx_iface
.
lpVtbl
=
&
DocDispatchExVtbl
;
...
...
@@ -5614,6 +5603,8 @@ static HRESULT HTMLDocumentNode_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
*
ppv
=
&
This
->
IHTMLDocument4_iface
;
else
if
(
IsEqualGUID
(
&
IID_IHTMLDocument5
,
riid
))
*
ppv
=
&
This
->
IHTMLDocument5_iface
;
else
if
(
IsEqualGUID
(
&
IID_IHTMLDocument6
,
riid
))
*
ppv
=
&
This
->
IHTMLDocument6_iface
;
else
if
(
IsEqualGUID
(
&
IID_IDocumentSelector
,
riid
))
*
ppv
=
&
This
->
IDocumentSelector_iface
;
else
if
(
IsEqualGUID
(
&
IID_IDocumentEvent
,
riid
))
...
...
@@ -6088,6 +6079,7 @@ static HTMLDocumentNode *alloc_doc_node(HTMLDocumentObj *doc_obj, HTMLInnerWindo
doc
->
IHTMLDocument3_iface
.
lpVtbl
=
&
HTMLDocument3Vtbl
;
doc
->
IHTMLDocument4_iface
.
lpVtbl
=
&
HTMLDocument4Vtbl
;
doc
->
IHTMLDocument5_iface
.
lpVtbl
=
&
HTMLDocument5Vtbl
;
doc
->
IHTMLDocument6_iface
.
lpVtbl
=
&
HTMLDocument6Vtbl
;
doc
->
IDocumentSelector_iface
.
lpVtbl
=
&
DocumentSelectorVtbl
;
doc
->
IDocumentEvent_iface
.
lpVtbl
=
&
DocumentEventVtbl
;
doc
->
ISupportErrorInfo_iface
.
lpVtbl
=
&
SupportErrorInfoVtbl
;
...
...
dlls/mshtml/mshtml_private.h
View file @
070cd2e8
...
...
@@ -640,7 +640,6 @@ struct ConnectionPoint {
};
struct
HTMLDocument
{
IHTMLDocument6
IHTMLDocument6_iface
;
IHTMLDocument7
IHTMLDocument7_iface
;
IDispatchEx
IDispatchEx_iface
;
...
...
@@ -680,6 +679,7 @@ struct HTMLDocumentObj {
IHTMLDocument3
IHTMLDocument3_iface
;
IHTMLDocument4
IHTMLDocument4_iface
;
IHTMLDocument5
IHTMLDocument5_iface
;
IHTMLDocument6
IHTMLDocument6_iface
;
IDocumentSelector
IDocumentSelector_iface
;
IDocumentEvent
IDocumentEvent_iface
;
ISupportErrorInfo
ISupportErrorInfo_iface
;
...
...
@@ -903,6 +903,7 @@ struct HTMLDocumentNode {
IHTMLDocument3
IHTMLDocument3_iface
;
IHTMLDocument4
IHTMLDocument4_iface
;
IHTMLDocument5
IHTMLDocument5_iface
;
IHTMLDocument6
IHTMLDocument6_iface
;
IDocumentSelector
IDocumentSelector_iface
;
IDocumentEvent
IDocumentEvent_iface
;
ISupportErrorInfo
ISupportErrorInfo_iface
;
...
...
dlls/mshtml/oleobj.c
View file @
070cd2e8
...
...
@@ -2721,6 +2721,37 @@ static const IHTMLDocument5Vtbl DocObjHTMLDocument5Vtbl = {
};
/**********************************************************
* IHTMLDocument6 implementation
*/
HTMLDOCUMENTOBJ_IDISPATCH_METHODS
(
HTMLDocument6
)
HTMLDOCUMENTOBJ_FWD_TO_NODE_1
(
HTMLDocument6
,
get_compatible
,
IHTMLDocumentCompatibleInfoCollection
**
)
HTMLDOCUMENTOBJ_FWD_TO_NODE_1
(
HTMLDocument6
,
get_documentMode
,
VARIANT
*
)
HTMLDOCUMENTOBJ_FWD_TO_NODE_1
(
HTMLDocument6
,
put_onstorage
,
VARIANT
)
HTMLDOCUMENTOBJ_FWD_TO_NODE_1
(
HTMLDocument6
,
get_onstorage
,
VARIANT
*
)
HTMLDOCUMENTOBJ_FWD_TO_NODE_1
(
HTMLDocument6
,
put_onstoragecommit
,
VARIANT
)
HTMLDOCUMENTOBJ_FWD_TO_NODE_1
(
HTMLDocument6
,
get_onstoragecommit
,
VARIANT
*
)
HTMLDOCUMENTOBJ_FWD_TO_NODE_2
(
HTMLDocument6
,
getElementById
,
BSTR
,
IHTMLElement2
**
)
HTMLDOCUMENTOBJ_FWD_TO_NODE_0
(
HTMLDocument6
,
updateSettings
)
static
const
IHTMLDocument6Vtbl
DocObjHTMLDocument6Vtbl
=
{
DocObjHTMLDocument6_QueryInterface
,
DocObjHTMLDocument6_AddRef
,
DocObjHTMLDocument6_Release
,
DocObjHTMLDocument6_GetTypeInfoCount
,
DocObjHTMLDocument6_GetTypeInfo
,
DocObjHTMLDocument6_GetIDsOfNames
,
DocObjHTMLDocument6_Invoke
,
DocObjHTMLDocument6_get_compatible
,
DocObjHTMLDocument6_get_documentMode
,
DocObjHTMLDocument6_put_onstorage
,
DocObjHTMLDocument6_get_onstorage
,
DocObjHTMLDocument6_put_onstoragecommit
,
DocObjHTMLDocument6_get_onstoragecommit
,
DocObjHTMLDocument6_getElementById
,
DocObjHTMLDocument6_updateSettings
};
/**********************************************************
* ISupportErrorInfo implementation
*/
HTMLDOCUMENTOBJ_IUNKNOWN_METHODS
(
SupportErrorInfo
)
...
...
@@ -2978,6 +3009,8 @@ static HRESULT WINAPI HTMLDocumentObj_QueryInterface(IUnknown *iface, REFIID rii
*
ppv
=
&
This
->
IHTMLDocument4_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLDocument5
,
riid
))
{
*
ppv
=
&
This
->
IHTMLDocument5_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLDocument6
,
riid
))
{
*
ppv
=
&
This
->
IHTMLDocument6_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_ICustomDoc
,
riid
))
{
*
ppv
=
&
This
->
ICustomDoc_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IDocumentSelector
,
riid
))
{
...
...
@@ -3298,6 +3331,7 @@ static HRESULT create_document_object(BOOL is_mhtml, IUnknown *outer, REFIID rii
doc
->
IHTMLDocument3_iface
.
lpVtbl
=
&
DocObjHTMLDocument3Vtbl
;
doc
->
IHTMLDocument4_iface
.
lpVtbl
=
&
DocObjHTMLDocument4Vtbl
;
doc
->
IHTMLDocument5_iface
.
lpVtbl
=
&
DocObjHTMLDocument5Vtbl
;
doc
->
IHTMLDocument6_iface
.
lpVtbl
=
&
DocObjHTMLDocument6Vtbl
;
doc
->
IDocumentSelector_iface
.
lpVtbl
=
&
DocObjDocumentSelectorVtbl
;
doc
->
IDocumentEvent_iface
.
lpVtbl
=
&
DocObjDocumentEventVtbl
;
doc
->
ISupportErrorInfo_iface
.
lpVtbl
=
&
DocObjSupportErrorInfoVtbl
;
...
...
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