2 * Copyright 2005-2009 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #include "wine/list.h"
29 #include "wine/unicode.h"
37 #define NS_ERROR_GENERATE_FAILURE(module,code) \
38 ((nsresult) (((PRUint32)(1<<31)) | ((PRUint32)(module+0x45)<<16) | ((PRUint32)(code))))
40 #define NS_OK ((nsresult)0x00000000L)
41 #define NS_ERROR_FAILURE ((nsresult)0x80004005L)
42 #define NS_ERROR_OUT_OF_MEMORY ((nsresult)0x8007000EL)
43 #define NS_NOINTERFACE ((nsresult)0x80004002L)
44 #define NS_ERROR_NOT_IMPLEMENTED ((nsresult)0x80004001L)
45 #define NS_ERROR_NOT_AVAILABLE ((nsresult)0x80040111L)
46 #define NS_ERROR_INVALID_ARG ((nsresult)0x80070057L)
47 #define NS_ERROR_UNEXPECTED ((nsresult)0x8000ffffL)
49 #define NS_ERROR_MODULE_NETWORK 6
51 #define NS_BINDING_ABORTED NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 2)
52 #define NS_ERROR_UNKNOWN_PROTOCOL NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 18)
54 #define NS_FAILED(res) ((res) & 0x80000000)
55 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
59 #define MSHTML_E_NODOC 0x800a025c
61 typedef struct HTMLDOMNode HTMLDOMNode
;
62 typedef struct ConnectionPoint ConnectionPoint
;
63 typedef struct BSCallback BSCallback
;
64 typedef struct event_target_t event_target_t
;
68 XDIID(DispCEventObj) \
70 XDIID(DispDOMChildrenCollection) \
71 XDIID(DispHTMLAnchorElement) \
73 XDIID(DispHTMLCommentElement) \
74 XDIID(DispHTMLCurrentStyle) \
75 XDIID(DispHTMLDocument) \
76 XDIID(DispHTMLDOMTextNode) \
77 XDIID(DispHTMLElementCollection) \
78 XDIID(DispHTMLEmbed) \
79 XDIID(DispHTMLFormElement) \
80 XDIID(DispHTMLGenericElement) \
81 XDIID(DispHTMLFrameElement) \
82 XDIID(DispHTMLIFrame) \
84 XDIID(DispHTMLInputElement) \
85 XDIID(DispHTMLLocation) \
86 XDIID(DispHTMLNavigator) \
87 XDIID(DispHTMLObjectElement) \
88 XDIID(DispHTMLOptionElement) \
89 XDIID(DispHTMLScreen) \
90 XDIID(DispHTMLScriptElement) \
91 XDIID(DispHTMLSelectElement) \
92 XDIID(DispHTMLStyle) \
93 XDIID(DispHTMLStyleElement) \
94 XDIID(DispHTMLStyleSheetsCollection) \
95 XDIID(DispHTMLTable) \
96 XDIID(DispHTMLTableRow) \
97 XDIID(DispHTMLTextAreaElement) \
98 XDIID(DispHTMLUnknownElement) \
99 XDIID(DispHTMLWindow2) \
100 XDIID(HTMLDocumentEvents) \
101 XIID(IHTMLAnchorElement) \
102 XIID(IHTMLBodyElement) \
103 XIID(IHTMLBodyElement2) \
104 XIID(IHTMLCommentElement) \
105 XIID(IHTMLCurrentStyle) \
106 XIID(IHTMLCurrentStyle2) \
107 XIID(IHTMLCurrentStyle3) \
108 XIID(IHTMLCurrentStyle4) \
109 XIID(IHTMLDocument2) \
110 XIID(IHTMLDocument3) \
111 XIID(IHTMLDocument4) \
112 XIID(IHTMLDocument5) \
113 XIID(IHTMLDOMChildrenCollection) \
115 XIID(IHTMLDOMNode2) \
116 XIID(IHTMLDOMTextNode) \
118 XIID(IHTMLElement2) \
119 XIID(IHTMLElement3) \
120 XIID(IHTMLElement4) \
121 XIID(IHTMLElementCollection) \
122 XIID(IHTMLEmbedElement) \
123 XIID(IHTMLEventObj) \
124 XIID(IHTMLFiltersCollection) \
125 XIID(IHTMLFormElement) \
126 XIID(IHTMLFrameBase) \
127 XIID(IHTMLFrameBase2) \
128 XIID(IHTMLFrameElement3) \
129 XIID(IHTMLGenericElement) \
130 XIID(IHTMLIFrameElement) \
131 XIID(IHTMLImageElementFactory) \
132 XIID(IHTMLImgElement) \
133 XIID(IHTMLInputElement) \
134 XIID(IHTMLLocation) \
135 XIID(IHTMLObjectElement) \
136 XIID(IHTMLOptionElement) \
137 XIID(IHTMLPluginsCollection) \
140 XIID(IHTMLScriptElement) \
141 XIID(IHTMLSelectElement) \
146 XIID(IHTMLStyleElement) \
147 XIID(IHTMLStyleSheetsCollection) \
149 XIID(IHTMLTableRow) \
150 XIID(IHTMLTextAreaElement) \
151 XIID(IHTMLTextContainer) \
152 XIID(IHTMLUniqueName) \
159 #define XIID(iface) iface ## _tid,
160 #define XDIID(iface) iface ## _tid,
167 typedef struct dispex_data_t dispex_data_t
;
168 typedef struct dispex_dynamic_data_t dispex_dynamic_data_t
;
170 #define MSHTML_DISPID_CUSTOM_MIN 0x60000000
171 #define MSHTML_DISPID_CUSTOM_MAX 0x6fffffff
172 #define MSHTML_CUSTOM_DISPID_CNT (MSHTML_DISPID_CUSTOM_MAX-MSHTML_DISPID_CUSTOM_MIN)
175 HRESULT (*value
)(IUnknown
*,LCID
,WORD
,DISPPARAMS
*,VARIANT
*,EXCEPINFO
*,IServiceProvider
*);
176 HRESULT (*get_dispid
)(IUnknown
*,BSTR
,DWORD
,DISPID
*);
177 HRESULT (*invoke
)(IUnknown
*,DISPID
,LCID
,WORD
,DISPPARAMS
*,VARIANT
*,EXCEPINFO
*,IServiceProvider
*);
178 } dispex_static_data_vtbl_t
;
181 const dispex_static_data_vtbl_t
*vtbl
;
182 const tid_t disp_tid
;
184 const tid_t
* const iface_tids
;
185 } dispex_static_data_t
;
188 const IDispatchExVtbl
*lpIDispatchExVtbl
;
192 dispex_static_data_t
*data
;
193 dispex_dynamic_data_t
*dynamic_data
;
196 void init_dispex(DispatchEx
*,IUnknown
*,dispex_static_data_t
*);
197 void release_dispex(DispatchEx
*);
198 BOOL
dispex_query_interface(DispatchEx
*,REFIID
,void**);
199 HRESULT
dispex_get_dprop_ref(DispatchEx
*,const WCHAR
*,BOOL
,VARIANT
**);
200 HRESULT
get_dispids(tid_t
,DWORD
*,DISPID
**);
201 HRESULT
remove_prop(DispatchEx
*,BSTR
,VARIANT_BOOL
*);
203 typedef struct HTMLWindow HTMLWindow
;
204 typedef struct HTMLDocumentNode HTMLDocumentNode
;
205 typedef struct HTMLDocumentObj HTMLDocumentObj
;
206 typedef struct HTMLFrameBase HTMLFrameBase
;
207 typedef struct NSContainer NSContainer
;
211 SCRIPTMODE_ACTIVESCRIPT
214 typedef struct ScriptHost ScriptHost
;
219 } global_prop_type_t
;
222 global_prop_type_t type
;
224 ScriptHost
*script_host
;
229 const IHTMLOptionElementFactoryVtbl
*lpHTMLOptionElementFactoryVtbl
;
234 } HTMLOptionElementFactory
;
238 const IHTMLImageElementFactoryVtbl
*lpHTMLImageElementFactoryVtbl
;
243 } HTMLImageElementFactory
;
245 struct HTMLLocation
{
247 const IHTMLLocationVtbl
*lpHTMLLocationVtbl
;
259 typedef struct nsChannelBSC nsChannelBSC
;
263 const IHTMLWindow2Vtbl
*lpHTMLWindow2Vtbl
;
264 const IHTMLWindow3Vtbl
*lpHTMLWindow3Vtbl
;
265 const IHTMLWindow4Vtbl
*lpHTMLWindow4Vtbl
;
266 const IHTMLPrivateWindowVtbl
*lpIHTMLPrivateWindowVtbl
;
267 const IDispatchExVtbl
*lpIDispatchExVtbl
;
268 const IServiceProviderVtbl
*lpServiceProviderVtbl
;
272 windowref_t
*window_ref
;
275 HTMLDocumentNode
*doc
;
276 HTMLDocumentObj
*doc_obj
;
277 nsIDOMWindow
*nswindow
;
279 HTMLFrameBase
*frame_element
;
280 READYSTATE readystate
;
282 nsChannelBSC
*bscallback
;
286 IHTMLEventObj
*event
;
288 SCRIPTMODE scriptmode
;
289 struct list script_hosts
;
291 HTMLOptionElementFactory
*option_factory
;
292 HTMLImageElementFactory
*image_factory
;
293 HTMLLocation
*location
;
296 global_prop_t
*global_props
;
297 DWORD global_prop_cnt
;
298 DWORD global_prop_size
;
300 struct list children
;
301 struct list sibling_entry
;
311 typedef struct _cp_static_data_t
{
313 void (*on_advise
)(IUnknown
*,struct _cp_static_data_t
*);
318 typedef struct ConnectionPointContainer
{
319 const IConnectionPointContainerVtbl
*lpConnectionPointContainerVtbl
;
321 ConnectionPoint
*cp_list
;
323 struct ConnectionPointContainer
*forward_container
;
324 } ConnectionPointContainer
;
326 struct ConnectionPoint
{
327 const IConnectionPointVtbl
*lpConnectionPointVtbl
;
329 ConnectionPointContainer
*container
;
334 IPropertyNotifySink
*propnotif
;
339 cp_static_data_t
*data
;
341 ConnectionPoint
*next
;
344 struct HTMLDocument
{
345 const IHTMLDocument2Vtbl
*lpHTMLDocument2Vtbl
;
346 const IHTMLDocument3Vtbl
*lpHTMLDocument3Vtbl
;
347 const IHTMLDocument4Vtbl
*lpHTMLDocument4Vtbl
;
348 const IHTMLDocument5Vtbl
*lpHTMLDocument5Vtbl
;
349 const IHTMLDocument6Vtbl
*lpHTMLDocument6Vtbl
;
350 const IPersistMonikerVtbl
*lpPersistMonikerVtbl
;
351 const IPersistFileVtbl
*lpPersistFileVtbl
;
352 const IPersistHistoryVtbl
*lpPersistHistoryVtbl
;
353 const IMonikerPropVtbl
*lpMonikerPropVtbl
;
354 const IOleObjectVtbl
*lpOleObjectVtbl
;
355 const IOleDocumentVtbl
*lpOleDocumentVtbl
;
356 const IOleDocumentViewVtbl
*lpOleDocumentViewVtbl
;
357 const IOleInPlaceActiveObjectVtbl
*lpOleInPlaceActiveObjectVtbl
;
358 const IViewObjectExVtbl
*lpViewObjectExVtbl
;
359 const IOleInPlaceObjectWindowlessVtbl
*lpOleInPlaceObjectWindowlessVtbl
;
360 const IServiceProviderVtbl
*lpServiceProviderVtbl
;
361 const IOleCommandTargetVtbl
*lpOleCommandTargetVtbl
;
362 const IOleControlVtbl
*lpOleControlVtbl
;
363 const IHlinkTargetVtbl
*lpHlinkTargetVtbl
;
364 const IPersistStreamInitVtbl
*lpPersistStreamInitVtbl
;
365 const IDispatchExVtbl
*lpIDispatchExVtbl
;
366 const ISupportErrorInfoVtbl
*lpSupportErrorInfoVtbl
;
367 const IObjectWithSiteVtbl
*lpObjectWithSiteVtbl
;
368 IOleContainer IOleContainer_iface
;
373 HTMLDocumentObj
*doc_obj
;
374 HTMLDocumentNode
*doc_node
;
380 ConnectionPointContainer cp_container
;
381 ConnectionPoint cp_htmldocevents
;
382 ConnectionPoint cp_htmldocevents2
;
383 ConnectionPoint cp_propnotif
;
384 ConnectionPoint cp_dispatch
;
386 IOleAdviseHolder
*advise_holder
;
389 static inline HRESULT
htmldoc_query_interface(HTMLDocument
*This
, REFIID riid
, void **ppv
)
391 return IUnknown_QueryInterface(This
->unk_impl
, riid
, ppv
);
394 static inline ULONG
htmldoc_addref(HTMLDocument
*This
)
396 return IUnknown_AddRef(This
->unk_impl
);
399 static inline ULONG
htmldoc_release(HTMLDocument
*This
)
401 return IUnknown_Release(This
->unk_impl
);
404 struct HTMLDocumentObj
{
405 HTMLDocument basedoc
;
407 const ICustomDocVtbl
*lpCustomDocVtbl
;
411 NSContainer
*nscontainer
;
413 IOleClientSite
*client
;
414 IDocHostUIHandler
*hostui
;
416 IOleInPlaceSite
*ipsite
;
417 IOleInPlaceFrame
*frame
;
418 IOleInPlaceUIWindow
*ip_window
;
419 IAdviseSink
*view_sink
;
421 DOCHOSTUIINFO hostinfo
;
423 IOleUndoManager
*undomgr
;
428 BOOL request_uiactivate
;
429 BOOL in_place_active
;
433 BOOL container_locked
;
444 const nsIWebBrowserChromeVtbl
*lpWebBrowserChromeVtbl
;
445 const nsIContextMenuListenerVtbl
*lpContextMenuListenerVtbl
;
446 const nsIURIContentListenerVtbl
*lpURIContentListenerVtbl
;
447 const nsIEmbeddingSiteWindowVtbl
*lpEmbeddingSiteWindowVtbl
;
448 const nsITooltipListenerVtbl
*lpTooltipListenerVtbl
;
449 const nsIInterfaceRequestorVtbl
*lpInterfaceRequestorVtbl
;
450 const nsIWeakReferenceVtbl
*lpWeakReferenceVtbl
;
451 const nsISupportsWeakReferenceVtbl
*lpSupportsWeakReferenceVtbl
;
453 nsIWebBrowser
*webbrowser
;
454 nsIWebNavigation
*navigation
;
455 nsIBaseWindow
*window
;
456 nsIWebBrowserFocus
*focus
;
459 nsIController
*editor_controller
;
464 HTMLDocumentObj
*doc
;
466 nsIURIContentListener
*content_listener
;
471 typedef struct nsWineURI nsWineURI
;
473 HRESULT
set_wine_url(nsWineURI
*,LPCWSTR
);
474 nsresult
on_start_uri_open(NSContainer
*,nsIURI
*,PRBool
*);
476 /* Keep sync with request_method_strings in nsio.c */
484 const nsIHttpChannelVtbl
*lpHttpChannelVtbl
;
485 const nsIUploadChannelVtbl
*lpUploadChannelVtbl
;
486 const nsIHttpChannelInternalVtbl
*lpIHttpChannelInternalVtbl
;
491 nsIInputStream
*post_data_stream
;
492 nsILoadGroup
*load_group
;
493 nsIInterfaceRequestor
*notif_callback
;
495 nsLoadFlags load_flags
;
496 nsIURI
*original_uri
;
500 PRUint32 response_status
;
501 REQUEST_METHOD request_method
;
502 struct list response_headers
;
503 struct list request_headers
;
513 HRESULT
set_http_header(struct list
*,const WCHAR
*,int,const WCHAR
*,int);
516 HRESULT (*qi
)(HTMLDOMNode
*,REFIID
,void**);
517 void (*destructor
)(HTMLDOMNode
*);
518 HRESULT (*clone
)(HTMLDOMNode
*,nsIDOMNode
*,HTMLDOMNode
**);
519 event_target_t
**(*get_event_target
)(HTMLDOMNode
*);
520 HRESULT (*call_event
)(HTMLDOMNode
*,DWORD
,BOOL
*);
521 HRESULT (*put_disabled
)(HTMLDOMNode
*,VARIANT_BOOL
);
522 HRESULT (*get_disabled
)(HTMLDOMNode
*,VARIANT_BOOL
*);
523 HRESULT (*get_document
)(HTMLDOMNode
*,IDispatch
**);
524 HRESULT (*get_readystate
)(HTMLDOMNode
*,BSTR
*);
525 HRESULT (*get_dispid
)(HTMLDOMNode
*,BSTR
,DWORD
,DISPID
*);
526 HRESULT (*invoke
)(HTMLDOMNode
*,DISPID
,LCID
,WORD
,DISPPARAMS
*,VARIANT
*,EXCEPINFO
*,IServiceProvider
*);
527 HRESULT (*bind_to_tree
)(HTMLDOMNode
*);
532 const IHTMLDOMNodeVtbl
*lpHTMLDOMNodeVtbl
;
533 const IHTMLDOMNode2Vtbl
*lpHTMLDOMNode2Vtbl
;
534 const NodeImplVtbl
*vtbl
;
539 HTMLDocumentNode
*doc
;
540 event_target_t
*event_target
;
541 ConnectionPointContainer
*cp_container
;
548 ConnectionPointContainer cp_container
;
550 const IHTMLElementVtbl
*lpHTMLElementVtbl
;
551 const IHTMLElement2Vtbl
*lpHTMLElement2Vtbl
;
552 const IHTMLElement3Vtbl
*lpHTMLElement3Vtbl
;
554 nsIDOMHTMLElement
*nselem
;
557 #define HTMLELEMENT_TIDS \
568 const IHTMLTextContainerVtbl
*lpHTMLTextContainerVtbl
;
573 struct HTMLFrameBase
{
576 const IHTMLFrameBaseVtbl
*lpIHTMLFrameBaseVtbl
;
577 const IHTMLFrameBase2Vtbl
*lpIHTMLFrameBase2Vtbl
;
579 HTMLWindow
*content_window
;
581 nsIDOMHTMLFrameElement
*nsframe
;
582 nsIDOMHTMLIFrameElement
*nsiframe
;
585 typedef struct _mutation_queue_t
{
587 nsISupports
*nsiface
;
589 struct _mutation_queue_t
*next
;
592 typedef struct nsDocumentEventListener nsDocumentEventListener
;
594 struct HTMLDocumentNode
{
596 HTMLDocument basedoc
;
598 const IInternetHostSecurityManagerVtbl
*lpIInternetHostSecurityManagerVtbl
;
600 const nsIDocumentObserverVtbl
*lpIDocumentObserverVtbl
;
601 const nsIRunnableVtbl
*lpIRunnableVtbl
;
605 nsIDOMHTMLDocument
*nsdoc
;
608 event_target_t
*body_event_target
;
610 IInternetSecurityManager
*secmgr
;
611 ICatInformation
*catmgr
;
612 nsDocumentEventListener
*nsevent_listener
;
615 BOOL skip_mutation_notif
;
616 mutation_queue_t
*mutation_queue
;
617 mutation_queue_t
*mutation_queue_tail
;
619 struct list bindings
;
620 struct list selection_list
;
621 struct list range_list
;
622 struct list plugin_hosts
;
625 #define HTMLWINDOW2(x) ((IHTMLWindow2*) &(x)->lpHTMLWindow2Vtbl)
626 #define HTMLWINDOW3(x) ((IHTMLWindow3*) &(x)->lpHTMLWindow3Vtbl)
627 #define HTMLWINDOW4(x) ((IHTMLWindow4*) &(x)->lpHTMLWindow4Vtbl)
629 #define HTMLDOC(x) ((IHTMLDocument2*) &(x)->lpHTMLDocument2Vtbl)
630 #define HTMLDOC3(x) ((IHTMLDocument3*) &(x)->lpHTMLDocument3Vtbl)
631 #define HTMLDOC4(x) ((IHTMLDocument4*) &(x)->lpHTMLDocument4Vtbl)
632 #define HTMLDOC5(x) ((IHTMLDocument5*) &(x)->lpHTMLDocument5Vtbl)
633 #define HTMLDOC6(x) ((IHTMLDocument6*) &(x)->lpHTMLDocument6Vtbl)
634 #define PERSIST(x) ((IPersist*) &(x)->lpPersistFileVtbl)
635 #define PERSISTMON(x) ((IPersistMoniker*) &(x)->lpPersistMonikerVtbl)
636 #define PERSISTFILE(x) ((IPersistFile*) &(x)->lpPersistFileVtbl)
637 #define MONPROP(x) ((IMonikerProp*) &(x)->lpMonikerPropVtbl)
638 #define OLEOBJ(x) ((IOleObject*) &(x)->lpOleObjectVtbl)
639 #define OLEDOC(x) ((IOleDocument*) &(x)->lpOleDocumentVtbl)
640 #define DOCVIEW(x) ((IOleDocumentView*) &(x)->lpOleDocumentViewVtbl)
641 #define OLEWIN(x) ((IOleWindow*) &(x)->lpOleInPlaceActiveObjectVtbl)
642 #define ACTOBJ(x) ((IOleInPlaceActiveObject*) &(x)->lpOleInPlaceActiveObjectVtbl)
643 #define VIEWOBJ(x) ((IViewObject*) &(x)->lpViewObjectExVtbl)
644 #define VIEWOBJ2(x) ((IViewObject2*) &(x)->lpViewObjectExVtbl)
645 #define VIEWOBJEX(x) ((IViewObjectEx*) &(x)->lpViewObjectExVtbl)
646 #define INPLACEOBJ(x) ((IOleInPlaceObject*) &(x)->lpOleInPlaceObjectWindowlessVtbl)
647 #define INPLACEWIN(x) ((IOleInPlaceObjectWindowless*) &(x)->lpOleInPlaceObjectWindowlessVtbl)
648 #define SERVPROV(x) ((IServiceProvider*) &(x)->lpServiceProviderVtbl)
649 #define CMDTARGET(x) ((IOleCommandTarget*) &(x)->lpOleCommandTargetVtbl)
650 #define CONTROL(x) ((IOleControl*) &(x)->lpOleControlVtbl)
651 #define HLNKTARGET(x) ((IHlinkTarget*) &(x)->lpHlinkTargetVtbl)
652 #define CONPTCONT(x) ((IConnectionPointContainer*) &(x)->lpConnectionPointContainerVtbl)
653 #define PERSTRINIT(x) ((IPersistStreamInit*) &(x)->lpPersistStreamInitVtbl)
654 #define PERSISTHIST(x) ((IPersistHistory*) &(x)->lpPersistHistoryVtbl)
655 #define CUSTOMDOC(x) ((ICustomDoc*) &(x)->lpCustomDocVtbl)
656 #define OBJSITE(x) ((IObjectWithSite*) &(x)->lpObjectWithSiteVtbl)
658 #define NSWBCHROME(x) ((nsIWebBrowserChrome*) &(x)->lpWebBrowserChromeVtbl)
659 #define NSCML(x) ((nsIContextMenuListener*) &(x)->lpContextMenuListenerVtbl)
660 #define NSURICL(x) ((nsIURIContentListener*) &(x)->lpURIContentListenerVtbl)
661 #define NSEMBWNDS(x) ((nsIEmbeddingSiteWindow*) &(x)->lpEmbeddingSiteWindowVtbl)
662 #define NSIFACEREQ(x) ((nsIInterfaceRequestor*) &(x)->lpInterfaceRequestorVtbl)
663 #define NSTOOLTIP(x) ((nsITooltipListener*) &(x)->lpTooltipListenerVtbl)
664 #define NSEVENTLIST(x) ((nsIDOMEventListener*) &(x)->lpDOMEventListenerVtbl)
665 #define NSWEAKREF(x) ((nsIWeakReference*) &(x)->lpWeakReferenceVtbl)
666 #define NSSUPWEAKREF(x) ((nsISupportsWeakReference*) &(x)->lpSupportsWeakReferenceVtbl)
668 #define NSDOCOBS(x) ((nsIDocumentObserver*) &(x)->lpIDocumentObserverVtbl)
670 #define NSRUNNABLE(x) ((nsIRunnable*) &(x)->lpIRunnableVtbl)
672 #define NSCHANNEL(x) ((nsIChannel*) &(x)->lpHttpChannelVtbl)
673 #define NSHTTPCHANNEL(x) ((nsIHttpChannel*) &(x)->lpHttpChannelVtbl)
674 #define NSUPCHANNEL(x) ((nsIUploadChannel*) &(x)->lpUploadChannelVtbl)
675 #define NSHTTPINTERNAL(x) ((nsIHttpChannelInternal*) &(x)->lpIHttpChannelInternalVtbl)
677 #define HTTPNEG(x) ((IHttpNegotiate2*) &(x)->lpHttpNegotiate2Vtbl)
678 #define STATUSCLB(x) ((IBindStatusCallback*) &(x)->lpBindStatusCallbackVtbl)
679 #define BINDINFO(x) ((IInternetBindInfo*) &(x)->lpInternetBindInfoVtbl);
681 #define HTMLELEM(x) ((IHTMLElement*) &(x)->lpHTMLElementVtbl)
682 #define HTMLELEM2(x) ((IHTMLElement2*) &(x)->lpHTMLElement2Vtbl)
683 #define HTMLELEM3(x) ((IHTMLElement3*) &(x)->lpHTMLElement3Vtbl)
684 #define HTMLDOMNODE(x) ((IHTMLDOMNode*) &(x)->lpHTMLDOMNodeVtbl)
685 #define HTMLDOMNODE2(x) ((IHTMLDOMNode2*) &(x)->lpHTMLDOMNode2Vtbl)
687 #define HTMLTEXTCONT(x) ((IHTMLTextContainer*) &(x)->lpHTMLTextContainerVtbl)
688 #define HTMLFRAMEBASE(x) ((IHTMLFrameBase*) &(x)->lpIHTMLFrameBaseVtbl)
689 #define HTMLFRAMEBASE2(x) ((IHTMLFrameBase2*) &(x)->lpIHTMLFrameBase2Vtbl)
691 #define HTMLOPTFACTORY(x) ((IHTMLOptionElementFactory*) &(x)->lpHTMLOptionElementFactoryVtbl)
692 #define HTMLIMGFACTORY(x) ((IHTMLImageElementFactory*) &(x)->lpHTMLImageElementFactoryVtbl)
693 #define HTMLLOCATION(x) ((IHTMLLocation*) &(x)->lpHTMLLocationVtbl)
695 #define DISPATCHEX(x) ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
697 #define SUPPERRINFO(x) ((ISupportErrorInfo*) &(x)->lpSupportErrorInfoVtbl)
699 #define HOSTSECMGR(x) ((IInternetHostSecurityManager*) &(x)->lpIInternetHostSecurityManagerVtbl)
701 #define DEFINE_THIS2(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,ifc)))
702 #define DEFINE_THIS(cls,ifc,iface) DEFINE_THIS2(cls,lp ## ifc ## Vtbl,iface)
704 HRESULT
HTMLDocument_Create(IUnknown
*,REFIID
,void**);
705 HRESULT
HTMLLoadOptions_Create(IUnknown
*,REFIID
,void**);
706 HRESULT
create_doc_from_nsdoc(nsIDOMHTMLDocument
*,HTMLDocumentObj
*,HTMLWindow
*,HTMLDocumentNode
**);
707 HRESULT
create_document_fragment(nsIDOMNode
*,HTMLDocumentNode
*,HTMLDocumentNode
**);
709 HRESULT
HTMLWindow_Create(HTMLDocumentObj
*,nsIDOMWindow
*,HTMLWindow
*,HTMLWindow
**);
710 void update_window_doc(HTMLWindow
*);
711 HTMLWindow
*nswindow_to_window(const nsIDOMWindow
*);
712 nsIDOMWindow
*get_nsdoc_window(nsIDOMDocument
*);
713 HTMLOptionElementFactory
*HTMLOptionElementFactory_Create(HTMLWindow
*);
714 HTMLImageElementFactory
*HTMLImageElementFactory_Create(HTMLWindow
*);
715 HRESULT
HTMLLocation_Create(HTMLWindow
*,HTMLLocation
**);
716 IOmNavigator
*OmNavigator_Create(void);
717 HRESULT
HTMLScreen_Create(IHTMLScreen
**);
719 void HTMLDocument_HTMLDocument3_Init(HTMLDocument
*);
720 void HTMLDocument_HTMLDocument5_Init(HTMLDocument
*);
721 void HTMLDocument_Persist_Init(HTMLDocument
*);
722 void HTMLDocument_OleCmd_Init(HTMLDocument
*);
723 void HTMLDocument_OleObj_Init(HTMLDocument
*);
724 void HTMLDocument_View_Init(HTMLDocument
*);
725 void HTMLDocument_Window_Init(HTMLDocument
*);
726 void HTMLDocument_Service_Init(HTMLDocument
*);
727 void HTMLDocument_Hlink_Init(HTMLDocument
*);
729 void HTMLDocumentNode_SecMgr_Init(HTMLDocumentNode
*);
731 HRESULT
HTMLCurrentStyle_Create(HTMLElement
*,IHTMLCurrentStyle
**);
733 void ConnectionPoint_Init(ConnectionPoint
*,ConnectionPointContainer
*,REFIID
,cp_static_data_t
*);
734 void ConnectionPointContainer_Init(ConnectionPointContainer
*,IUnknown
*);
735 void ConnectionPointContainer_Destroy(ConnectionPointContainer
*);
737 NSContainer
*NSContainer_Create(HTMLDocumentObj
*,NSContainer
*);
738 void NSContainer_Release(NSContainer
*);
740 void init_mutation(HTMLDocumentNode
*);
741 void release_mutation(HTMLDocumentNode
*);
743 void HTMLDocument_LockContainer(HTMLDocumentObj
*,BOOL
);
744 void show_context_menu(HTMLDocumentObj
*,DWORD
,POINT
*,IDispatch
*);
745 void notif_focus(HTMLDocumentObj
*);
747 void show_tooltip(HTMLDocumentObj
*,DWORD
,DWORD
,LPCWSTR
);
748 void hide_tooltip(HTMLDocumentObj
*);
749 HRESULT
get_client_disp_property(IOleClientSite
*,DISPID
,VARIANT
*);
751 HRESULT
ProtocolFactory_Create(REFCLSID
,REFIID
,void**);
753 BOOL
load_gecko(BOOL
);
754 void close_gecko(void);
755 void register_nsservice(nsIComponentRegistrar
*,nsIServiceManager
*);
756 void init_nsio(nsIComponentManager
*,nsIComponentRegistrar
*);
757 void release_nsio(void);
758 BOOL
is_gecko_path(const char*);
760 HRESULT
nsuri_to_url(LPCWSTR
,BOOL
,BSTR
*);
761 HRESULT
create_doc_uri(HTMLWindow
*,WCHAR
*,nsWineURI
**);
762 HRESULT
load_nsuri(HTMLWindow
*,nsWineURI
*,nsChannelBSC
*,DWORD
);
764 HRESULT
hlink_frame_navigate(HTMLDocument
*,LPCWSTR
,nsIInputStream
*,DWORD
,BOOL
*);
765 HRESULT
navigate_url(HTMLWindow
*,const WCHAR
*,const WCHAR
*);
766 HRESULT
set_frame_doc(HTMLFrameBase
*,nsIDOMDocument
*);
767 HRESULT
set_moniker(HTMLDocument
*,IMoniker
*,IBindCtx
*,nsChannelBSC
*,BOOL
);
769 void call_property_onchanged(ConnectionPoint
*,DISPID
);
770 HRESULT
call_set_active_object(IOleInPlaceUIWindow
*,IOleInPlaceActiveObject
*);
772 void *nsalloc(size_t) __WINE_ALLOC_SIZE(1);
775 void nsACString_InitDepend(nsACString
*,const char*);
776 void nsACString_SetData(nsACString
*,const char*);
777 PRUint32
nsACString_GetData(const nsACString
*,const char**);
778 void nsACString_Finish(nsACString
*);
780 BOOL
nsAString_Init(nsAString
*,const PRUnichar
*);
781 void nsAString_InitDepend(nsAString
*,const PRUnichar
*);
782 void nsAString_SetData(nsAString
*,const PRUnichar
*);
783 PRUint32
nsAString_GetData(const nsAString
*,const PRUnichar
**);
784 void nsAString_Finish(nsAString
*);
786 nsICommandParams
*create_nscommand_params(void);
787 HRESULT
nsnode_to_nsstring(nsIDOMNode
*,nsAString
*);
788 void get_editor_controller(NSContainer
*);
789 nsresult
get_nsinterface(nsISupports
*,REFIID
,void**);
791 void init_nsevents(HTMLDocumentNode
*);
792 void release_nsevents(HTMLDocumentNode
*);
793 void add_nsevent_listener(HTMLDocumentNode
*,nsIDOMNode
*,LPCWSTR
);
795 void set_window_bscallback(HTMLWindow
*,nsChannelBSC
*);
796 void set_current_mon(HTMLWindow
*,IMoniker
*);
797 HRESULT
start_binding(HTMLWindow
*,HTMLDocumentNode
*,BSCallback
*,IBindCtx
*);
798 HRESULT
async_start_doc_binding(HTMLWindow
*,nsChannelBSC
*);
799 void abort_document_bindings(HTMLDocumentNode
*);
801 HRESULT
bind_mon_to_buffer(HTMLDocumentNode
*,IMoniker
*,void**,DWORD
*);
803 HRESULT
create_channelbsc(IMoniker
*,WCHAR
*,BYTE
*,DWORD
,nsChannelBSC
**);
804 HRESULT
channelbsc_load_stream(nsChannelBSC
*,IStream
*);
805 void channelbsc_set_channel(nsChannelBSC
*,nsChannel
*,nsIStreamListener
*,nsISupports
*);
806 IMoniker
*get_channelbsc_mon(nsChannelBSC
*);
808 void set_ready_state(HTMLWindow
*,READYSTATE
);
810 HRESULT
HTMLSelectionObject_Create(HTMLDocumentNode
*,nsISelection
*,IHTMLSelectionObject
**);
811 HRESULT
HTMLTxtRange_Create(HTMLDocumentNode
*,nsIDOMRange
*,IHTMLTxtRange
**);
812 IHTMLStyle
*HTMLStyle_Create(nsIDOMCSSStyleDeclaration
*);
813 IHTMLStyleSheet
*HTMLStyleSheet_Create(nsIDOMStyleSheet
*);
814 IHTMLStyleSheetsCollection
*HTMLStyleSheetsCollection_Create(nsIDOMStyleSheetList
*);
816 void detach_selection(HTMLDocumentNode
*);
817 void detach_ranges(HTMLDocumentNode
*);
818 HRESULT
get_node_text(HTMLDOMNode
*,BSTR
*);
820 HRESULT
create_nselem(HTMLDocumentNode
*,const WCHAR
*,nsIDOMHTMLElement
**);
822 HRESULT
HTMLDOMTextNode_Create(HTMLDocumentNode
*,nsIDOMNode
*,HTMLDOMNode
**);
824 HRESULT
HTMLElement_Create(HTMLDocumentNode
*,nsIDOMNode
*,BOOL
,HTMLElement
**);
825 HRESULT
HTMLCommentElement_Create(HTMLDocumentNode
*,nsIDOMNode
*,HTMLElement
**);
826 HRESULT
HTMLAnchorElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
827 HRESULT
HTMLBodyElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
828 HRESULT
HTMLEmbedElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
829 HRESULT
HTMLFormElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
830 HRESULT
HTMLFrameElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
831 HRESULT
HTMLIFrame_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
832 HRESULT
HTMLStyleElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
833 HRESULT
HTMLImgElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
834 HRESULT
HTMLInputElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
835 HRESULT
HTMLObjectElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
836 HRESULT
HTMLOptionElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
837 HRESULT
HTMLScriptElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
838 HRESULT
HTMLSelectElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
839 HRESULT
HTMLTable_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
840 HRESULT
HTMLTableRow_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
841 HRESULT
HTMLTextAreaElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
842 HRESULT
HTMLGenericElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*,HTMLElement
**);
844 void HTMLDOMNode_Init(HTMLDocumentNode
*,HTMLDOMNode
*,nsIDOMNode
*);
845 void HTMLElement_Init(HTMLElement
*,HTMLDocumentNode
*,nsIDOMHTMLElement
*,dispex_static_data_t
*);
846 void HTMLElement2_Init(HTMLElement
*);
847 void HTMLElement3_Init(HTMLElement
*);
848 void HTMLTextContainer_Init(HTMLTextContainer
*,HTMLDocumentNode
*,nsIDOMHTMLElement
*,dispex_static_data_t
*);
849 void HTMLFrameBase_Init(HTMLFrameBase
*,HTMLDocumentNode
*,nsIDOMHTMLElement
*,dispex_static_data_t
*);
851 HRESULT
HTMLDOMNode_QI(HTMLDOMNode
*,REFIID
,void**);
852 void HTMLDOMNode_destructor(HTMLDOMNode
*);
854 HRESULT
HTMLElement_QI(HTMLDOMNode
*,REFIID
,void**);
855 void HTMLElement_destructor(HTMLDOMNode
*);
856 HRESULT
HTMLElement_clone(HTMLDOMNode
*,nsIDOMNode
*,HTMLDOMNode
**);
858 HRESULT
HTMLFrameBase_QI(HTMLFrameBase
*,REFIID
,void**);
859 void HTMLFrameBase_destructor(HTMLFrameBase
*);
861 HRESULT
get_node(HTMLDocumentNode
*,nsIDOMNode
*,BOOL
,HTMLDOMNode
**);
862 void release_nodes(HTMLDocumentNode
*);
864 void release_script_hosts(HTMLWindow
*);
865 void connect_scripts(HTMLWindow
*);
866 void doc_insert_script(HTMLWindow
*,nsIDOMHTMLScriptElement
*);
867 IDispatch
*script_parse_event(HTMLWindow
*,LPCWSTR
);
868 HRESULT
exec_script(HTMLWindow
*,const WCHAR
*,const WCHAR
*,VARIANT
*);
869 void set_script_mode(HTMLWindow
*,SCRIPTMODE
);
870 BOOL
find_global_prop(HTMLWindow
*,BSTR
,DWORD
,ScriptHost
**,DISPID
*);
871 IDispatch
*get_script_disp(ScriptHost
*);
872 HRESULT
search_window_props(HTMLWindow
*,BSTR
,DWORD
,DISPID
*);
874 IHTMLElementCollection
*create_all_collection(HTMLDOMNode
*,BOOL
);
875 IHTMLElementCollection
*create_collection_from_nodelist(HTMLDocumentNode
*,IUnknown
*,nsIDOMNodeList
*);
876 IHTMLElementCollection
*create_collection_from_htmlcol(HTMLDocumentNode
*,IUnknown
*,nsIDOMHTMLCollection
*);
881 HRESULT (*query
)(HTMLDocument
*,OLECMD
*);
882 HRESULT (*exec
)(HTMLDocument
*,DWORD
,VARIANT
*,VARIANT
*);
885 extern const cmdtable_t editmode_cmds
[];
887 void do_ns_command(HTMLDocument
*,const char*,nsICommandParams
*);
890 #define UPDATE_UI 0x0001
891 #define UPDATE_TITLE 0x0002
893 void update_doc(HTMLDocument
*,DWORD
);
894 void update_title(HTMLDocumentObj
*);
897 void init_editor(HTMLDocument
*);
898 void handle_edit_event(HTMLDocument
*,nsIDOMEvent
*);
899 HRESULT
editor_exec_copy(HTMLDocument
*,DWORD
,VARIANT
*,VARIANT
*);
900 HRESULT
editor_exec_cut(HTMLDocument
*,DWORD
,VARIANT
*,VARIANT
*);
901 HRESULT
editor_exec_paste(HTMLDocument
*,DWORD
,VARIANT
*,VARIANT
*);
902 void handle_edit_load(HTMLDocument
*);
903 HRESULT
editor_is_dirty(HTMLDocument
*);
904 void set_dirty(HTMLDocument
*,VARIANT_BOOL
);
906 extern DWORD mshtml_tls
;
908 typedef struct task_t task_t
;
909 typedef void (*task_proc_t
)(task_t
*);
919 HTMLDocumentObj
*doc
;
924 task_t
*task_queue_head
;
925 task_t
*task_queue_tail
;
926 struct list timer_list
;
929 thread_data_t
*get_thread_data(BOOL
);
930 HWND
get_thread_hwnd(void);
932 LONG
get_task_target_magic(void);
933 void push_task(task_t
*,task_proc_t
,LONG
);
934 void remove_target_tasks(LONG
);
936 DWORD
set_task_timer(HTMLDocument
*,DWORD
,BOOL
,IDispatch
*);
937 HRESULT
clear_task_timer(HTMLDocument
*,BOOL
,DWORD
);
939 void release_typelib(void);
940 HRESULT
call_disp_func(IDispatch
*,DISPPARAMS
*);
942 const char *debugstr_variant(const VARIANT
*);
944 DEFINE_GUID(CLSID_AboutProtocol
, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
945 DEFINE_GUID(CLSID_JSProtocol
, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
946 DEFINE_GUID(CLSID_MailtoProtocol
, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
947 DEFINE_GUID(CLSID_ResProtocol
, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
948 DEFINE_GUID(CLSID_SysimageProtocol
, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
950 DEFINE_GUID(CLSID_CMarkup
,0x3050f4fb,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
952 /* memory allocation functions */
954 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len
)
956 return HeapAlloc(GetProcessHeap(), 0, len
);
959 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len
)
961 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, len
);
964 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem
, size_t len
)
966 return HeapReAlloc(GetProcessHeap(), 0, mem
, len
);
969 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem
, size_t len
)
971 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, mem
, len
);
974 static inline BOOL
heap_free(void *mem
)
976 return HeapFree(GetProcessHeap(), 0, mem
);
979 static inline LPWSTR
heap_strdupW(LPCWSTR str
)
986 size
= (strlenW(str
)+1)*sizeof(WCHAR
);
987 ret
= heap_alloc(size
);
988 memcpy(ret
, str
, size
);
994 static inline LPWSTR
heap_strndupW(LPCWSTR str
, unsigned len
)
999 ret
= heap_alloc((len
+1)*sizeof(WCHAR
));
1000 memcpy(ret
, str
, len
*sizeof(WCHAR
));
1007 static inline char *heap_strdupA(const char *str
)
1014 size
= strlen(str
)+1;
1015 ret
= heap_alloc(size
);
1016 memcpy(ret
, str
, size
);
1022 static inline WCHAR
*heap_strdupAtoW(const char *str
)
1029 len
= MultiByteToWideChar(CP_ACP
, 0, str
, -1, NULL
, 0);
1030 ret
= heap_alloc(len
*sizeof(WCHAR
));
1031 MultiByteToWideChar(CP_ACP
, 0, str
, -1, ret
, len
);
1037 static inline char *heap_strdupWtoA(LPCWSTR str
)
1042 DWORD size
= WideCharToMultiByte(CP_ACP
, 0, str
, -1, NULL
, 0, NULL
, NULL
);
1043 ret
= heap_alloc(size
);
1044 WideCharToMultiByte(CP_ACP
, 0, str
, -1, ret
, size
, NULL
, NULL
);
1050 static inline void windowref_addref(windowref_t
*ref
)
1052 InterlockedIncrement(&ref
->ref
);
1055 static inline void windowref_release(windowref_t
*ref
)
1057 if(!InterlockedDecrement(&ref
->ref
))
1061 HDC
get_display_dc(void);
1062 HINSTANCE
get_shdoclc(void);
1063 void set_statustext(HTMLDocumentObj
*,INT
,LPCWSTR
);
1065 extern HINSTANCE hInst
;