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
0e3bf9b2
Commit
0e3bf9b2
authored
Feb 24, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLElement4::getAttributeNode implementation.
parent
79971018
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
229 additions
and
3 deletions
+229
-3
Makefile.in
dlls/mshtml/Makefile.in
+1
-0
htmlattr.c
dlls/mshtml/htmlattr.c
+177
-0
htmlelem3.c
dlls/mshtml/htmlelem3.c
+27
-2
mshtml_private.h
dlls/mshtml/mshtml_private.h
+9
-0
nsiface.idl
dlls/mshtml/nsiface.idl
+15
-1
No files found.
dlls/mshtml/Makefile.in
View file @
0e3bf9b2
...
...
@@ -10,6 +10,7 @@ C_SRCS = \
editor.c
\
hlink.c
\
htmlanchor.c
\
htmlattr.c
\
htmlbody.c
\
htmlcomment.c
\
htmlcurstyle.c
\
...
...
dlls/mshtml/htmlattr.c
0 → 100644
View file @
0e3bf9b2
/*
* Copyright 2011 Jacek 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
*/
#include <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "mshtml_private.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
static
inline
HTMLDOMAttribute
*
impl_from_IHTMLDOMAttribute
(
IHTMLDOMAttribute
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
HTMLDOMAttribute
,
IHTMLDOMAttribute_iface
);
}
static
HRESULT
WINAPI
HTMLDOMAttribute_QueryInterface
(
IHTMLDOMAttribute
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
))
{
TRACE
(
"(%p)->(IID_IUnknown %p)
\n
"
,
This
,
ppv
);
*
ppv
=
&
This
->
IHTMLDOMAttribute_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLDOMAttribute
,
riid
))
{
TRACE
(
"(%p)->(IID_IHTMLDOMAttribute %p)
\n
"
,
This
,
ppv
);
*
ppv
=
&
This
->
IHTMLDOMAttribute_iface
;
}
else
{
WARN
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppv
);
*
ppv
=
NULL
;
return
E_NOINTERFACE
;
}
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
}
static
ULONG
WINAPI
HTMLDOMAttribute_AddRef
(
IHTMLDOMAttribute
*
iface
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
LONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
return
ref
;
}
static
ULONG
WINAPI
HTMLDOMAttribute_Release
(
IHTMLDOMAttribute
*
iface
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
LONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
if
(
!
ref
)
{
nsIDOMAttr_Release
(
This
->
nsattr
);
heap_free
(
This
);
}
return
ref
;
}
static
HRESULT
WINAPI
HTMLDOMAttribute_GetTypeInfoCount
(
IHTMLDOMAttribute
*
iface
,
UINT
*
pctinfo
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
FIXME
(
"%p
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
HTMLDOMAttribute_GetTypeInfo
(
IHTMLDOMAttribute
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
FIXME
(
"%p
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
HTMLDOMAttribute_GetIDsOfNames
(
IHTMLDOMAttribute
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispId
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
FIXME
(
"%p
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
HTMLDOMAttribute_Invoke
(
IHTMLDOMAttribute
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
FIXME
(
"%p
\n
"
,
This
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
HTMLDOMAttribute_get_nodeName
(
IHTMLDOMAttribute
*
iface
,
BSTR
*
p
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
HTMLDOMAttribute_put_nodeName
(
IHTMLDOMAttribute
*
iface
,
VARIANT
v
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
HTMLDOMAttribute_get_nodeValue
(
IHTMLDOMAttribute
*
iface
,
VARIANT
*
p
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
HTMLDOMAttribute_get_specified
(
IHTMLDOMAttribute
*
iface
,
VARIANT_BOOL
*
p
)
{
HTMLDOMAttribute
*
This
=
impl_from_IHTMLDOMAttribute
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
}
static
const
IHTMLDOMAttributeVtbl
HTMLDOMAttributeVtbl
=
{
HTMLDOMAttribute_QueryInterface
,
HTMLDOMAttribute_AddRef
,
HTMLDOMAttribute_Release
,
HTMLDOMAttribute_GetTypeInfoCount
,
HTMLDOMAttribute_GetTypeInfo
,
HTMLDOMAttribute_GetIDsOfNames
,
HTMLDOMAttribute_Invoke
,
HTMLDOMAttribute_get_nodeName
,
HTMLDOMAttribute_put_nodeName
,
HTMLDOMAttribute_get_nodeValue
,
HTMLDOMAttribute_get_specified
};
HRESULT
HTMLDOMAttribute_Create
(
HTMLDocumentNode
*
doc
,
nsIDOMAttr
*
nsattr
,
HTMLDOMAttribute
**
attr
)
{
HTMLDOMAttribute
*
ret
;
ret
=
heap_alloc_zero
(
sizeof
(
*
ret
));
if
(
!
ret
)
return
E_OUTOFMEMORY
;
ret
->
IHTMLDOMAttribute_iface
.
lpVtbl
=
&
HTMLDOMAttributeVtbl
;
ret
->
ref
=
1
;
nsIDOMAttr_AddRef
(
nsattr
);
ret
->
nsattr
=
nsattr
;
*
attr
=
ret
;
return
S_OK
;
}
dlls/mshtml/htmlelem3.c
View file @
0e3bf9b2
...
...
@@ -560,8 +560,33 @@ static HRESULT WINAPI HTMLElement4_normalize(IHTMLElement4 *iface)
static
HRESULT
WINAPI
HTMLElement4_getAttributeNode
(
IHTMLElement4
*
iface
,
BSTR
bstrname
,
IHTMLDOMAttribute
**
ppAttribute
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement4
(
iface
);
FIXME
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_w
(
bstrname
),
ppAttribute
);
return
E_NOTIMPL
;
HTMLDOMAttribute
*
attr
;
nsAString
name_str
;
nsIDOMAttr
*
nsattr
;
nsresult
nsres
;
HRESULT
hres
;
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_w
(
bstrname
),
ppAttribute
);
nsAString_InitDepend
(
&
name_str
,
bstrname
);
nsres
=
nsIDOMHTMLElement_GetAttributeNode
(
This
->
nselem
,
&
name_str
,
&
nsattr
);
nsAString_Finish
(
&
name_str
);
if
(
NS_FAILED
(
nsres
))
{
ERR
(
"GetAttributeNode failed: %08x
\n
"
,
nsres
);
return
E_FAIL
;
}
if
(
nsattr
)
{
hres
=
HTMLDOMAttribute_Create
(
This
->
node
.
doc
,
nsattr
,
&
attr
);
nsIDOMAttr_Release
(
nsattr
);
if
(
FAILED
(
hres
))
return
hres
;
*
ppAttribute
=
&
attr
->
IHTMLDOMAttribute_iface
;
}
else
{
*
ppAttribute
=
NULL
;
}
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLElement4_setAttributeNode
(
IHTMLElement4
*
iface
,
IHTMLDOMAttribute
*
pattr
,
...
...
dlls/mshtml/mshtml_private.h
View file @
0e3bf9b2
...
...
@@ -739,6 +739,15 @@ HRESULT create_nselem(HTMLDocumentNode*,const WCHAR*,nsIDOMHTMLElement**);
HRESULT
HTMLDOMTextNode_Create
(
HTMLDocumentNode
*
,
nsIDOMNode
*
,
HTMLDOMNode
**
);
typedef
struct
{
IHTMLDOMAttribute
IHTMLDOMAttribute_iface
;
LONG
ref
;
nsIDOMAttr
*
nsattr
;
}
HTMLDOMAttribute
;
HRESULT
HTMLDOMAttribute_Create
(
HTMLDocumentNode
*
,
nsIDOMAttr
*
,
HTMLDOMAttribute
**
);
HRESULT
HTMLElement_Create
(
HTMLDocumentNode
*
,
nsIDOMNode
*
,
BOOL
,
HTMLElement
**
);
HRESULT
HTMLCommentElement_Create
(
HTMLDocumentNode
*
,
nsIDOMNode
*
,
HTMLElement
**
);
HRESULT
HTMLAnchorElement_Create
(
HTMLDocumentNode
*
,
nsIDOMHTMLElement
*
,
HTMLElement
**
);
...
...
dlls/mshtml/nsiface.idl
View file @
0e3bf9b2
...
...
@@ -89,6 +89,7 @@ interface nsIDOMCSSStyleSheet;
interface
nsIDOMDocumentView
;
interface
nsIDocumentObserver
;
interface
nsIDOMWindow
;
interface
nsIDOMElement
;
interface
IMoniker
;
...
...
@@ -111,7 +112,6 @@ typedef nsISupports nsIDOMBarProp;
typedef nsISupports nsIPrompt;
typedef nsISupports nsIAuthPrompt;
typedef nsISupports nsIDOMNamedNodeMap;
typedef nsISupports nsIDOMAttr;
typedef nsISupports nsIDOMDocumentType;
typedef nsISupports nsIDOMDOMImplementation;
typedef nsISupports nsIDOMCDATASection;
...
...
@@ -675,6 +675,20 @@ interface nsIDOMNode : nsISupports
[
object,
uuid(a6cf9070-15b3-11d2-932e-00805f8add32),
local
]
interface nsIDOMAttr : nsIDOMNode
{
nsresult GetName(nsAString *aName);
nsresult GetSpecified(PRBool *aSpecified);
nsresult GetValue(nsAString *aValue);
nsresult SetValue(const nsAString *aValue);
nsresult GetOwnerElement(nsIDOMElement **aOwnerElement);
}
[
object,
uuid(a6cf9078-15b3-11d2-932e-00805f8add32),
local
]
...
...
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