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_OK ((nsresult)0x00000000L)
38 #define NS_ERROR_FAILURE ((nsresult)0x80004005L)
39 #define NS_NOINTERFACE ((nsresult)0x80004002L)
40 #define NS_ERROR_NOT_IMPLEMENTED ((nsresult)0x80004001L)
41 #define NS_ERROR_INVALID_ARG ((nsresult)0x80070057L)
42 #define NS_ERROR_UNEXPECTED ((nsresult)0x8000ffffL)
43 #define NS_ERROR_UNKNOWN_PROTOCOL ((nsresult)0x804b0012L)
45 #define NS_FAILED(res) ((res) & 0x80000000)
46 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
50 #define MSHTML_E_NODOC 0x800a025c
52 typedef struct HTMLDOMNode HTMLDOMNode
;
53 typedef struct ConnectionPoint ConnectionPoint
;
54 typedef struct BSCallback BSCallback
;
55 typedef struct event_target_t event_target_t
;
57 /* NOTE: make sure to keep in sync with dispex.c */
61 DispDOMChildrenCollection_tid
,
62 DispHTMLAnchorElement_tid
,
64 DispHTMLCommentElement_tid
,
65 DispHTMLCurrentStyle_tid
,
67 DispHTMLDOMTextNode_tid
,
68 DispHTMLElementCollection_tid
,
69 DispHTMLFormElement_tid
,
70 DispHTMLGenericElement_tid
,
71 DispHTMLFrameElement_tid
,
74 DispHTMLInputElement_tid
,
76 DispHTMLNavigator_tid
,
77 DispHTMLOptionElement_tid
,
79 DispHTMLScriptElement_tid
,
80 DispHTMLSelectElement_tid
,
84 DispHTMLTextAreaElement_tid
,
85 DispHTMLUnknownElement_tid
,
87 HTMLDocumentEvents_tid
,
88 IHTMLAnchorElement_tid
,
90 IHTMLBodyElement2_tid
,
91 IHTMLCommentElement_tid
,
92 IHTMLCurrentStyle_tid
,
93 IHTMLCurrentStyle2_tid
,
94 IHTMLCurrentStyle3_tid
,
95 IHTMLCurrentStyle4_tid
,
100 IHTMLDOMChildrenCollection_tid
,
103 IHTMLDOMTextNode_tid
,
108 IHTMLElementCollection_tid
,
110 IHTMLFiltersCollection_tid
,
111 IHTMLFormElement_tid
,
114 IHTMLFrameElement3_tid
,
115 IHTMLGenericElement_tid
,
116 IHTMLIFrameElement_tid
,
117 IHTMLImageElementFactory_tid
,
119 IHTMLInputElement_tid
,
121 IHTMLOptionElement_tid
,
123 IHTMLScriptElement_tid
,
124 IHTMLSelectElement_tid
,
131 IHTMLTextAreaElement_tid
,
132 IHTMLTextContainer_tid
,
141 typedef struct dispex_data_t dispex_data_t
;
142 typedef struct dispex_dynamic_data_t dispex_dynamic_data_t
;
144 #define MSHTML_DISPID_CUSTOM_MIN 0x60000000
145 #define MSHTML_DISPID_CUSTOM_MAX 0x6fffffff
148 HRESULT (*value
)(IUnknown
*,LCID
,WORD
,DISPPARAMS
*,VARIANT
*,EXCEPINFO
*,IServiceProvider
*);
149 HRESULT (*get_dispid
)(IUnknown
*,BSTR
,DWORD
,DISPID
*);
150 HRESULT (*invoke
)(IUnknown
*,DISPID
,LCID
,WORD
,DISPPARAMS
*,VARIANT
*,EXCEPINFO
*,IServiceProvider
*);
151 } dispex_static_data_vtbl_t
;
154 const dispex_static_data_vtbl_t
*vtbl
;
155 const tid_t disp_tid
;
157 const tid_t
* const iface_tids
;
158 } dispex_static_data_t
;
161 const IDispatchExVtbl
*lpIDispatchExVtbl
;
165 dispex_static_data_t
*data
;
166 dispex_dynamic_data_t
*dynamic_data
;
169 void init_dispex(DispatchEx
*,IUnknown
*,dispex_static_data_t
*);
170 void release_dispex(DispatchEx
*);
171 BOOL
dispex_query_interface(DispatchEx
*,REFIID
,void**);
172 HRESULT
dispex_get_dprop_ref(DispatchEx
*,const WCHAR
*,BOOL
,VARIANT
**);
173 HRESULT
get_dispids(tid_t
,DWORD
*,DISPID
**);
175 typedef struct HTMLDocumentNode HTMLDocumentNode
;
176 typedef struct HTMLDocumentObj HTMLDocumentObj
;
177 typedef struct HTMLFrameBase HTMLFrameBase
;
181 SCRIPTMODE_ACTIVESCRIPT
184 typedef struct ScriptHost ScriptHost
;
189 } global_prop_type_t
;
192 global_prop_type_t type
;
194 ScriptHost
*script_host
;
199 const IHTMLOptionElementFactoryVtbl
*lpHTMLOptionElementFactoryVtbl
;
204 } HTMLOptionElementFactory
;
208 const IHTMLImageElementFactoryVtbl
*lpHTMLImageElementFactoryVtbl
;
213 } HTMLImageElementFactory
;
215 struct HTMLLocation
{
217 const IHTMLLocationVtbl
*lpHTMLLocationVtbl
;
231 const IHTMLWindow2Vtbl
*lpHTMLWindow2Vtbl
;
232 const IHTMLWindow3Vtbl
*lpHTMLWindow3Vtbl
;
233 const IHTMLWindow4Vtbl
*lpHTMLWindow4Vtbl
;
234 const IDispatchExVtbl
*lpIDispatchExVtbl
;
238 windowref_t
*window_ref
;
241 HTMLDocumentNode
*doc
;
242 HTMLDocumentObj
*doc_obj
;
243 nsIDOMWindow
*nswindow
;
245 HTMLFrameBase
*frame_element
;
246 READYSTATE readystate
;
248 nsChannelBSC
*bscallback
;
252 IHTMLEventObj
*event
;
254 SCRIPTMODE scriptmode
;
255 struct list script_hosts
;
257 HTMLOptionElementFactory
*option_factory
;
258 HTMLImageElementFactory
*image_factory
;
259 HTMLLocation
*location
;
262 global_prop_t
*global_props
;
263 DWORD global_prop_cnt
;
264 DWORD global_prop_size
;
266 struct list children
;
267 struct list sibling_entry
;
277 typedef struct _cp_static_data_t
{
279 void (*on_advise
)(IUnknown
*,struct _cp_static_data_t
*);
284 typedef struct ConnectionPointContainer
{
285 const IConnectionPointContainerVtbl
*lpConnectionPointContainerVtbl
;
287 ConnectionPoint
*cp_list
;
289 struct ConnectionPointContainer
*forward_container
;
290 } ConnectionPointContainer
;
292 struct ConnectionPoint
{
293 const IConnectionPointVtbl
*lpConnectionPointVtbl
;
295 ConnectionPointContainer
*container
;
300 IPropertyNotifySink
*propnotif
;
305 cp_static_data_t
*data
;
307 ConnectionPoint
*next
;
310 struct HTMLDocument
{
311 const IHTMLDocument2Vtbl
*lpHTMLDocument2Vtbl
;
312 const IHTMLDocument3Vtbl
*lpHTMLDocument3Vtbl
;
313 const IHTMLDocument4Vtbl
*lpHTMLDocument4Vtbl
;
314 const IHTMLDocument5Vtbl
*lpHTMLDocument5Vtbl
;
315 const IHTMLDocument6Vtbl
*lpHTMLDocument6Vtbl
;
316 const IPersistMonikerVtbl
*lpPersistMonikerVtbl
;
317 const IPersistFileVtbl
*lpPersistFileVtbl
;
318 const IPersistHistoryVtbl
*lpPersistHistoryVtbl
;
319 const IMonikerPropVtbl
*lpMonikerPropVtbl
;
320 const IOleObjectVtbl
*lpOleObjectVtbl
;
321 const IOleDocumentVtbl
*lpOleDocumentVtbl
;
322 const IOleDocumentViewVtbl
*lpOleDocumentViewVtbl
;
323 const IOleInPlaceActiveObjectVtbl
*lpOleInPlaceActiveObjectVtbl
;
324 const IViewObjectExVtbl
*lpViewObjectExVtbl
;
325 const IOleInPlaceObjectWindowlessVtbl
*lpOleInPlaceObjectWindowlessVtbl
;
326 const IServiceProviderVtbl
*lpServiceProviderVtbl
;
327 const IOleCommandTargetVtbl
*lpOleCommandTargetVtbl
;
328 const IOleControlVtbl
*lpOleControlVtbl
;
329 const IHlinkTargetVtbl
*lpHlinkTargetVtbl
;
330 const IPersistStreamInitVtbl
*lpPersistStreamInitVtbl
;
331 const IDispatchExVtbl
*lpIDispatchExVtbl
;
332 const ISupportErrorInfoVtbl
*lpSupportErrorInfoVtbl
;
333 const IObjectWithSiteVtbl
*lpObjectWithSiteVtbl
;
338 HTMLDocumentObj
*doc_obj
;
339 HTMLDocumentNode
*doc_node
;
345 ConnectionPointContainer cp_container
;
346 ConnectionPoint cp_htmldocevents
;
347 ConnectionPoint cp_htmldocevents2
;
348 ConnectionPoint cp_propnotif
;
349 ConnectionPoint cp_dispatch
;
351 IOleAdviseHolder
*advise_holder
;
354 static inline HRESULT
htmldoc_query_interface(HTMLDocument
*This
, REFIID riid
, void **ppv
)
356 return IUnknown_QueryInterface(This
->unk_impl
, riid
, ppv
);
359 static inline ULONG
htmldoc_addref(HTMLDocument
*This
)
361 return IUnknown_AddRef(This
->unk_impl
);
364 static inline ULONG
htmldoc_release(HTMLDocument
*This
)
366 return IUnknown_Release(This
->unk_impl
);
369 struct HTMLDocumentObj
{
370 HTMLDocument basedoc
;
372 const ICustomDocVtbl
*lpCustomDocVtbl
;
376 NSContainer
*nscontainer
;
378 IOleClientSite
*client
;
379 IDocHostUIHandler
*hostui
;
380 IOleInPlaceSite
*ipsite
;
381 IOleInPlaceFrame
*frame
;
382 IOleInPlaceUIWindow
*ip_window
;
384 DOCHOSTUIINFO hostinfo
;
386 IOleUndoManager
*undomgr
;
391 BOOL request_uiactivate
;
392 BOOL in_place_active
;
396 BOOL container_locked
;
407 const nsIWebBrowserChromeVtbl
*lpWebBrowserChromeVtbl
;
408 const nsIContextMenuListenerVtbl
*lpContextMenuListenerVtbl
;
409 const nsIURIContentListenerVtbl
*lpURIContentListenerVtbl
;
410 const nsIEmbeddingSiteWindowVtbl
*lpEmbeddingSiteWindowVtbl
;
411 const nsITooltipListenerVtbl
*lpTooltipListenerVtbl
;
412 const nsIInterfaceRequestorVtbl
*lpInterfaceRequestorVtbl
;
413 const nsIWeakReferenceVtbl
*lpWeakReferenceVtbl
;
414 const nsISupportsWeakReferenceVtbl
*lpSupportsWeakReferenceVtbl
;
416 nsIWebBrowser
*webbrowser
;
417 nsIWebNavigation
*navigation
;
418 nsIBaseWindow
*window
;
419 nsIWebBrowserFocus
*focus
;
422 nsIController
*editor_controller
;
427 HTMLDocumentObj
*doc
;
429 nsIURIContentListener
*content_listener
;
433 HWND reset_focus
; /* hack */
437 const nsIHttpChannelVtbl
*lpHttpChannelVtbl
;
438 const nsIUploadChannelVtbl
*lpUploadChannelVtbl
;
439 const nsIHttpChannelInternalVtbl
*lpIHttpChannelInternalVtbl
;
444 nsIInputStream
*post_data_stream
;
445 nsILoadGroup
*load_group
;
446 nsIInterfaceRequestor
*notif_callback
;
448 nsLoadFlags load_flags
;
449 nsIURI
*original_uri
;
452 PRUint32 response_status
;
457 HRESULT (*qi
)(HTMLDOMNode
*,REFIID
,void**);
458 void (*destructor
)(HTMLDOMNode
*);
459 event_target_t
**(*get_event_target
)(HTMLDOMNode
*);
460 HRESULT (*call_event
)(HTMLDOMNode
*,DWORD
,BOOL
*);
461 HRESULT (*put_disabled
)(HTMLDOMNode
*,VARIANT_BOOL
);
462 HRESULT (*get_disabled
)(HTMLDOMNode
*,VARIANT_BOOL
*);
463 HRESULT (*get_document
)(HTMLDOMNode
*,IDispatch
**);
464 HRESULT (*get_readystate
)(HTMLDOMNode
*,BSTR
*);
465 HRESULT (*get_dispid
)(HTMLDOMNode
*,BSTR
,DWORD
,DISPID
*);
466 HRESULT (*invoke
)(HTMLDOMNode
*,DISPID
,LCID
,WORD
,DISPPARAMS
*,VARIANT
*,EXCEPINFO
*,IServiceProvider
*);
467 HRESULT (*bind_to_tree
)(HTMLDOMNode
*);
472 const IHTMLDOMNodeVtbl
*lpHTMLDOMNodeVtbl
;
473 const IHTMLDOMNode2Vtbl
*lpHTMLDOMNode2Vtbl
;
474 const NodeImplVtbl
*vtbl
;
479 HTMLDocumentNode
*doc
;
480 event_target_t
*event_target
;
481 ConnectionPointContainer
*cp_container
;
488 ConnectionPointContainer cp_container
;
490 const IHTMLElementVtbl
*lpHTMLElementVtbl
;
491 const IHTMLElement2Vtbl
*lpHTMLElement2Vtbl
;
492 const IHTMLElement3Vtbl
*lpHTMLElement3Vtbl
;
494 nsIDOMHTMLElement
*nselem
;
497 #define HTMLELEMENT_TIDS \
508 const IHTMLTextContainerVtbl
*lpHTMLTextContainerVtbl
;
513 struct HTMLFrameBase
{
516 const IHTMLFrameBaseVtbl
*lpIHTMLFrameBaseVtbl
;
517 const IHTMLFrameBase2Vtbl
*lpIHTMLFrameBase2Vtbl
;
519 HTMLWindow
*content_window
;
521 nsIDOMHTMLFrameElement
*nsframe
;
522 nsIDOMHTMLIFrameElement
*nsiframe
;
525 typedef struct _mutation_queue_t
{
527 nsISupports
*nsiface
;
529 struct _mutation_queue_t
*next
;
532 typedef struct nsDocumentEventListener nsDocumentEventListener
;
534 struct HTMLDocumentNode
{
536 HTMLDocument basedoc
;
538 const IInternetHostSecurityManagerVtbl
*lpIInternetHostSecurityManagerVtbl
;
540 const nsIDocumentObserverVtbl
*lpIDocumentObserverVtbl
;
541 const nsIRunnableVtbl
*lpIRunnableVtbl
;
545 nsIDOMHTMLDocument
*nsdoc
;
548 event_target_t
*body_event_target
;
550 IInternetSecurityManager
*secmgr
;
551 ICatInformation
*catmgr
;
552 nsDocumentEventListener
*nsevent_listener
;
555 mutation_queue_t
*mutation_queue
;
556 mutation_queue_t
*mutation_queue_tail
;
558 struct list bindings
;
559 struct list selection_list
;
560 struct list range_list
;
563 #define HTMLWINDOW2(x) ((IHTMLWindow2*) &(x)->lpHTMLWindow2Vtbl)
564 #define HTMLWINDOW3(x) ((IHTMLWindow3*) &(x)->lpHTMLWindow3Vtbl)
565 #define HTMLWINDOW4(x) ((IHTMLWindow4*) &(x)->lpHTMLWindow4Vtbl)
567 #define HTMLDOC(x) ((IHTMLDocument2*) &(x)->lpHTMLDocument2Vtbl)
568 #define HTMLDOC3(x) ((IHTMLDocument3*) &(x)->lpHTMLDocument3Vtbl)
569 #define HTMLDOC4(x) ((IHTMLDocument4*) &(x)->lpHTMLDocument4Vtbl)
570 #define HTMLDOC5(x) ((IHTMLDocument5*) &(x)->lpHTMLDocument5Vtbl)
571 #define HTMLDOC6(x) ((IHTMLDocument6*) &(x)->lpHTMLDocument6Vtbl)
572 #define PERSIST(x) ((IPersist*) &(x)->lpPersistFileVtbl)
573 #define PERSISTMON(x) ((IPersistMoniker*) &(x)->lpPersistMonikerVtbl)
574 #define PERSISTFILE(x) ((IPersistFile*) &(x)->lpPersistFileVtbl)
575 #define MONPROP(x) ((IMonikerProp*) &(x)->lpMonikerPropVtbl)
576 #define OLEOBJ(x) ((IOleObject*) &(x)->lpOleObjectVtbl)
577 #define OLEDOC(x) ((IOleDocument*) &(x)->lpOleDocumentVtbl)
578 #define DOCVIEW(x) ((IOleDocumentView*) &(x)->lpOleDocumentViewVtbl)
579 #define OLEWIN(x) ((IOleWindow*) &(x)->lpOleInPlaceActiveObjectVtbl)
580 #define ACTOBJ(x) ((IOleInPlaceActiveObject*) &(x)->lpOleInPlaceActiveObjectVtbl)
581 #define VIEWOBJ(x) ((IViewObject*) &(x)->lpViewObjectExVtbl)
582 #define VIEWOBJ2(x) ((IViewObject2*) &(x)->lpViewObjectExVtbl)
583 #define VIEWOBJEX(x) ((IViewObjectEx*) &(x)->lpViewObjectExVtbl)
584 #define INPLACEOBJ(x) ((IOleInPlaceObject*) &(x)->lpOleInPlaceObjectWindowlessVtbl)
585 #define INPLACEWIN(x) ((IOleInPlaceObjectWindowless*) &(x)->lpOleInPlaceObjectWindowlessVtbl)
586 #define SERVPROV(x) ((IServiceProvider*) &(x)->lpServiceProviderVtbl)
587 #define CMDTARGET(x) ((IOleCommandTarget*) &(x)->lpOleCommandTargetVtbl)
588 #define CONTROL(x) ((IOleControl*) &(x)->lpOleControlVtbl)
589 #define HLNKTARGET(x) ((IHlinkTarget*) &(x)->lpHlinkTargetVtbl)
590 #define CONPTCONT(x) ((IConnectionPointContainer*) &(x)->lpConnectionPointContainerVtbl)
591 #define PERSTRINIT(x) ((IPersistStreamInit*) &(x)->lpPersistStreamInitVtbl)
592 #define PERSISTHIST(x) ((IPersistHistory*) &(x)->lpPersistHistoryVtbl)
593 #define CUSTOMDOC(x) ((ICustomDoc*) &(x)->lpCustomDocVtbl)
594 #define OBJSITE(x) ((IObjectWithSite*) &(x)->lpObjectWithSiteVtbl)
596 #define NSWBCHROME(x) ((nsIWebBrowserChrome*) &(x)->lpWebBrowserChromeVtbl)
597 #define NSCML(x) ((nsIContextMenuListener*) &(x)->lpContextMenuListenerVtbl)
598 #define NSURICL(x) ((nsIURIContentListener*) &(x)->lpURIContentListenerVtbl)
599 #define NSEMBWNDS(x) ((nsIEmbeddingSiteWindow*) &(x)->lpEmbeddingSiteWindowVtbl)
600 #define NSIFACEREQ(x) ((nsIInterfaceRequestor*) &(x)->lpInterfaceRequestorVtbl)
601 #define NSTOOLTIP(x) ((nsITooltipListener*) &(x)->lpTooltipListenerVtbl)
602 #define NSEVENTLIST(x) ((nsIDOMEventListener*) &(x)->lpDOMEventListenerVtbl)
603 #define NSWEAKREF(x) ((nsIWeakReference*) &(x)->lpWeakReferenceVtbl)
604 #define NSSUPWEAKREF(x) ((nsISupportsWeakReference*) &(x)->lpSupportsWeakReferenceVtbl)
606 #define NSDOCOBS(x) ((nsIDocumentObserver*) &(x)->lpIDocumentObserverVtbl)
608 #define NSRUNNABLE(x) ((nsIRunnable*) &(x)->lpIRunnableVtbl)
610 #define NSCHANNEL(x) ((nsIChannel*) &(x)->lpHttpChannelVtbl)
611 #define NSHTTPCHANNEL(x) ((nsIHttpChannel*) &(x)->lpHttpChannelVtbl)
612 #define NSUPCHANNEL(x) ((nsIUploadChannel*) &(x)->lpUploadChannelVtbl)
613 #define NSHTTPINTERNAL(x) ((nsIHttpChannelInternal*) &(x)->lpIHttpChannelInternalVtbl)
615 #define HTTPNEG(x) ((IHttpNegotiate2*) &(x)->lpHttpNegotiate2Vtbl)
616 #define STATUSCLB(x) ((IBindStatusCallback*) &(x)->lpBindStatusCallbackVtbl)
617 #define BINDINFO(x) ((IInternetBindInfo*) &(x)->lpInternetBindInfoVtbl);
619 #define HTMLELEM(x) ((IHTMLElement*) &(x)->lpHTMLElementVtbl)
620 #define HTMLELEM2(x) ((IHTMLElement2*) &(x)->lpHTMLElement2Vtbl)
621 #define HTMLELEM3(x) ((IHTMLElement3*) &(x)->lpHTMLElement3Vtbl)
622 #define HTMLDOMNODE(x) ((IHTMLDOMNode*) &(x)->lpHTMLDOMNodeVtbl)
623 #define HTMLDOMNODE2(x) ((IHTMLDOMNode2*) &(x)->lpHTMLDOMNode2Vtbl)
625 #define HTMLTEXTCONT(x) ((IHTMLTextContainer*) &(x)->lpHTMLTextContainerVtbl)
626 #define HTMLFRAMEBASE(x) ((IHTMLFrameBase*) &(x)->lpIHTMLFrameBaseVtbl)
627 #define HTMLFRAMEBASE2(x) ((IHTMLFrameBase2*) &(x)->lpIHTMLFrameBase2Vtbl)
629 #define HTMLOPTFACTORY(x) ((IHTMLOptionElementFactory*) &(x)->lpHTMLOptionElementFactoryVtbl)
630 #define HTMLIMGFACTORY(x) ((IHTMLImageElementFactory*) &(x)->lpHTMLImageElementFactoryVtbl)
631 #define HTMLLOCATION(x) ((IHTMLLocation*) &(x)->lpHTMLLocationVtbl)
633 #define DISPATCHEX(x) ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
635 #define SUPPERRINFO(x) ((ISupportErrorInfo*) &(x)->lpSupportErrorInfoVtbl)
637 #define HOSTSECMGR(x) ((IInternetHostSecurityManager*) &(x)->lpIInternetHostSecurityManagerVtbl)
639 #define DEFINE_THIS2(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,ifc)))
640 #define DEFINE_THIS(cls,ifc,iface) DEFINE_THIS2(cls,lp ## ifc ## Vtbl,iface)
642 HRESULT
HTMLDocument_Create(IUnknown
*,REFIID
,void**);
643 HRESULT
HTMLLoadOptions_Create(IUnknown
*,REFIID
,void**);
644 HRESULT
create_doc_from_nsdoc(nsIDOMHTMLDocument
*,HTMLDocumentObj
*,HTMLWindow
*,HTMLDocumentNode
**);
646 HRESULT
HTMLWindow_Create(HTMLDocumentObj
*,nsIDOMWindow
*,HTMLWindow
*,HTMLWindow
**);
647 void update_window_doc(HTMLWindow
*);
648 HTMLWindow
*nswindow_to_window(const nsIDOMWindow
*);
649 nsIDOMWindow
*get_nsdoc_window(nsIDOMDocument
*);
650 HTMLOptionElementFactory
*HTMLOptionElementFactory_Create(HTMLWindow
*);
651 HTMLImageElementFactory
*HTMLImageElementFactory_Create(HTMLWindow
*);
652 HRESULT
HTMLLocation_Create(HTMLWindow
*,HTMLLocation
**);
653 IOmNavigator
*OmNavigator_Create(void);
654 HRESULT
HTMLScreen_Create(IHTMLScreen
**);
656 void HTMLDocument_HTMLDocument3_Init(HTMLDocument
*);
657 void HTMLDocument_HTMLDocument5_Init(HTMLDocument
*);
658 void HTMLDocument_Persist_Init(HTMLDocument
*);
659 void HTMLDocument_OleCmd_Init(HTMLDocument
*);
660 void HTMLDocument_OleObj_Init(HTMLDocument
*);
661 void HTMLDocument_View_Init(HTMLDocument
*);
662 void HTMLDocument_Window_Init(HTMLDocument
*);
663 void HTMLDocument_Service_Init(HTMLDocument
*);
664 void HTMLDocument_Hlink_Init(HTMLDocument
*);
666 void HTMLDocumentNode_SecMgr_Init(HTMLDocumentNode
*);
668 HRESULT
HTMLCurrentStyle_Create(HTMLElement
*,IHTMLCurrentStyle
**);
670 void ConnectionPoint_Init(ConnectionPoint
*,ConnectionPointContainer
*,REFIID
,cp_static_data_t
*);
671 void ConnectionPointContainer_Init(ConnectionPointContainer
*,IUnknown
*);
672 void ConnectionPointContainer_Destroy(ConnectionPointContainer
*);
674 NSContainer
*NSContainer_Create(HTMLDocumentObj
*,NSContainer
*);
675 void NSContainer_Release(NSContainer
*);
677 void init_mutation(HTMLDocumentNode
*);
678 void release_mutation(HTMLDocumentNode
*);
680 void HTMLDocument_LockContainer(HTMLDocumentObj
*,BOOL
);
681 void show_context_menu(HTMLDocumentObj
*,DWORD
,POINT
*,IDispatch
*);
682 void notif_focus(HTMLDocumentObj
*);
684 void show_tooltip(HTMLDocumentObj
*,DWORD
,DWORD
,LPCWSTR
);
685 void hide_tooltip(HTMLDocumentObj
*);
686 HRESULT
get_client_disp_property(IOleClientSite
*,DISPID
,VARIANT
*);
688 HRESULT
ProtocolFactory_Create(REFCLSID
,REFIID
,void**);
690 BOOL
load_gecko(BOOL
);
691 void close_gecko(void);
692 void register_nsservice(nsIComponentRegistrar
*,nsIServiceManager
*);
693 void init_nsio(nsIComponentManager
*,nsIComponentRegistrar
*);
694 void release_nsio(void);
695 BOOL
install_wine_gecko(BOOL
);
697 HRESULT
nsuri_to_url(LPCWSTR
,BOOL
,BSTR
*);
698 HRESULT
create_doc_uri(HTMLWindow
*,WCHAR
*,nsIWineURI
**);
700 HRESULT
hlink_frame_navigate(HTMLDocument
*,LPCWSTR
,nsIInputStream
*,DWORD
);
701 HRESULT
navigate_url(HTMLWindow
*,const WCHAR
*,const WCHAR
*);
702 HRESULT
set_frame_doc(HTMLFrameBase
*,nsIDOMDocument
*);
703 HRESULT
load_nsuri(HTMLWindow
*,nsIWineURI
*,DWORD
);
705 void call_property_onchanged(ConnectionPoint
*,DISPID
);
706 HRESULT
call_set_active_object(IOleInPlaceUIWindow
*,IOleInPlaceActiveObject
*);
708 void *nsalloc(size_t) __WINE_ALLOC_SIZE(1);
711 void nsACString_SetData(nsACString
*,const char*);
712 PRUint32
nsACString_GetData(const nsACString
*,const char**);
714 BOOL
nsAString_Init(nsAString
*,const PRUnichar
*);
715 void nsAString_InitDepend(nsAString
*,const PRUnichar
*);
716 void nsAString_SetData(nsAString
*,const PRUnichar
*);
717 PRUint32
nsAString_GetData(const nsAString
*,const PRUnichar
**);
718 void nsAString_Finish(nsAString
*);
720 nsICommandParams
*create_nscommand_params(void);
721 HRESULT
nsnode_to_nsstring(nsIDOMNode
*,nsAString
*);
722 void get_editor_controller(NSContainer
*);
723 nsresult
get_nsinterface(nsISupports
*,REFIID
,void**);
725 void init_nsevents(HTMLDocumentNode
*);
726 void release_nsevents(HTMLDocumentNode
*);
727 void add_nsevent_listener(HTMLDocumentNode
*,LPCWSTR
);
729 void set_window_bscallback(HTMLWindow
*,nsChannelBSC
*);
730 void set_current_mon(HTMLWindow
*,IMoniker
*);
731 HRESULT
start_binding(HTMLWindow
*,HTMLDocumentNode
*,BSCallback
*,IBindCtx
*);
732 void abort_document_bindings(HTMLDocumentNode
*);
734 HRESULT
bind_mon_to_buffer(HTMLDocumentNode
*,IMoniker
*,void**,DWORD
*);
736 nsChannelBSC
*create_channelbsc(IMoniker
*);
737 HRESULT
channelbsc_load_stream(nsChannelBSC
*,IStream
*);
738 void channelbsc_set_channel(nsChannelBSC
*,nsChannel
*,nsIStreamListener
*,nsISupports
*);
739 IMoniker
*get_channelbsc_mon(nsChannelBSC
*);
741 void set_ready_state(HTMLWindow
*,READYSTATE
);
743 HRESULT
HTMLSelectionObject_Create(HTMLDocumentNode
*,nsISelection
*,IHTMLSelectionObject
**);
744 HRESULT
HTMLTxtRange_Create(HTMLDocumentNode
*,nsIDOMRange
*,IHTMLTxtRange
**);
745 IHTMLStyle
*HTMLStyle_Create(nsIDOMCSSStyleDeclaration
*);
746 IHTMLStyleSheet
*HTMLStyleSheet_Create(nsIDOMStyleSheet
*);
747 IHTMLStyleSheetsCollection
*HTMLStyleSheetsCollection_Create(nsIDOMStyleSheetList
*);
749 void detach_selection(HTMLDocumentNode
*);
750 void detach_ranges(HTMLDocumentNode
*);
751 HRESULT
get_node_text(HTMLDOMNode
*,BSTR
*);
753 HRESULT
create_nselem(HTMLDocumentNode
*,const WCHAR
*,nsIDOMHTMLElement
**);
755 HTMLDOMNode
*HTMLDOMTextNode_Create(HTMLDocumentNode
*,nsIDOMNode
*);
757 HTMLElement
*HTMLElement_Create(HTMLDocumentNode
*,nsIDOMNode
*,BOOL
);
758 HTMLElement
*HTMLCommentElement_Create(HTMLDocumentNode
*,nsIDOMNode
*);
759 HTMLElement
*HTMLAnchorElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
760 HTMLElement
*HTMLBodyElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
761 HTMLElement
*HTMLFormElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
762 HTMLElement
*HTMLFrameElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
763 HTMLElement
*HTMLIFrame_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
764 HTMLElement
*HTMLImgElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
765 HTMLElement
*HTMLInputElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
766 HTMLElement
*HTMLOptionElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
767 HTMLElement
*HTMLScriptElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
768 HTMLElement
*HTMLSelectElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
769 HTMLElement
*HTMLTable_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
770 HTMLElement
*HTMLTableRow_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
771 HTMLElement
*HTMLTextAreaElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
772 HTMLElement
*HTMLGenericElement_Create(HTMLDocumentNode
*,nsIDOMHTMLElement
*);
774 void HTMLDOMNode_Init(HTMLDocumentNode
*,HTMLDOMNode
*,nsIDOMNode
*);
775 void HTMLElement_Init(HTMLElement
*,HTMLDocumentNode
*,nsIDOMHTMLElement
*,dispex_static_data_t
*);
776 void HTMLElement2_Init(HTMLElement
*);
777 void HTMLElement3_Init(HTMLElement
*);
778 void HTMLTextContainer_Init(HTMLTextContainer
*,HTMLDocumentNode
*,nsIDOMHTMLElement
*,dispex_static_data_t
*);
779 void HTMLFrameBase_Init(HTMLFrameBase
*,HTMLDocumentNode
*,nsIDOMHTMLElement
*,dispex_static_data_t
*);
781 HRESULT
HTMLDOMNode_QI(HTMLDOMNode
*,REFIID
,void**);
782 void HTMLDOMNode_destructor(HTMLDOMNode
*);
784 HRESULT
HTMLElement_QI(HTMLDOMNode
*,REFIID
,void**);
785 void HTMLElement_destructor(HTMLDOMNode
*);
787 HRESULT
HTMLFrameBase_QI(HTMLFrameBase
*,REFIID
,void**);
788 void HTMLFrameBase_destructor(HTMLFrameBase
*);
790 HTMLDOMNode
*get_node(HTMLDocumentNode
*,nsIDOMNode
*,BOOL
);
791 void release_nodes(HTMLDocumentNode
*);
793 void release_script_hosts(HTMLWindow
*);
794 void connect_scripts(HTMLWindow
*);
795 void doc_insert_script(HTMLWindow
*,nsIDOMHTMLScriptElement
*);
796 IDispatch
*script_parse_event(HTMLWindow
*,LPCWSTR
);
797 void set_script_mode(HTMLWindow
*,SCRIPTMODE
);
798 BOOL
find_global_prop(HTMLWindow
*,BSTR
,DWORD
,ScriptHost
**,DISPID
*);
799 IDispatch
*get_script_disp(ScriptHost
*);
800 HRESULT
search_window_props(HTMLWindow
*,BSTR
,DWORD
,DISPID
*);
802 IHTMLElementCollection
*create_all_collection(HTMLDOMNode
*,BOOL
);
803 IHTMLElementCollection
*create_collection_from_nodelist(HTMLDocumentNode
*,IUnknown
*,nsIDOMNodeList
*);
804 IHTMLElementCollection
*create_collection_from_htmlcol(HTMLDocumentNode
*,IUnknown
*,nsIDOMHTMLCollection
*);
809 HRESULT (*query
)(HTMLDocument
*,OLECMD
*);
810 HRESULT (*exec
)(HTMLDocument
*,DWORD
,VARIANT
*,VARIANT
*);
813 extern const cmdtable_t editmode_cmds
[];
815 void do_ns_command(HTMLDocument
*,const char*,nsICommandParams
*);
818 #define UPDATE_UI 0x0001
819 #define UPDATE_TITLE 0x0002
821 void update_doc(HTMLDocument
*,DWORD
);
822 void update_title(HTMLDocumentObj
*);
825 void init_editor(HTMLDocument
*);
826 void set_ns_editmode(NSContainer
*);
827 void handle_edit_event(HTMLDocument
*,nsIDOMEvent
*);
828 HRESULT
editor_exec_copy(HTMLDocument
*,DWORD
,VARIANT
*,VARIANT
*);
829 HRESULT
editor_exec_cut(HTMLDocument
*,DWORD
,VARIANT
*,VARIANT
*);
830 HRESULT
editor_exec_paste(HTMLDocument
*,DWORD
,VARIANT
*,VARIANT
*);
831 void handle_edit_load(HTMLDocument
*);
832 HRESULT
editor_is_dirty(HTMLDocument
*);
833 void set_dirty(HTMLDocument
*,VARIANT_BOOL
);
835 extern DWORD mshtml_tls
;
837 typedef struct task_t task_t
;
838 typedef void (*task_proc_t
)(task_t
*);
848 HTMLDocumentObj
*doc
;
853 task_t
*task_queue_head
;
854 task_t
*task_queue_tail
;
855 struct list timer_list
;
858 thread_data_t
*get_thread_data(BOOL
);
859 HWND
get_thread_hwnd(void);
861 LONG
get_task_target_magic(void);
862 void push_task(task_t
*,task_proc_t
,LONG
);
863 void remove_target_tasks(LONG
);
865 DWORD
set_task_timer(HTMLDocument
*,DWORD
,BOOL
,IDispatch
*);
866 HRESULT
clear_task_timer(HTMLDocument
*,BOOL
,DWORD
);
868 void release_typelib(void);
869 HRESULT
call_disp_func(IDispatch
*,DISPPARAMS
*);
871 const char *debugstr_variant(const VARIANT
*);
873 DEFINE_GUID(CLSID_AboutProtocol
, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
874 DEFINE_GUID(CLSID_JSProtocol
, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
875 DEFINE_GUID(CLSID_MailtoProtocol
, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
876 DEFINE_GUID(CLSID_ResProtocol
, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
877 DEFINE_GUID(CLSID_SysimageProtocol
, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
879 DEFINE_GUID(CLSID_CMarkup
,0x3050f4fb,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
881 /* memory allocation functions */
883 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len
)
885 return HeapAlloc(GetProcessHeap(), 0, len
);
888 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len
)
890 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, len
);
893 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem
, size_t len
)
895 return HeapReAlloc(GetProcessHeap(), 0, mem
, len
);
898 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem
, size_t len
)
900 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, mem
, len
);
903 static inline BOOL
heap_free(void *mem
)
905 return HeapFree(GetProcessHeap(), 0, mem
);
908 static inline LPWSTR
heap_strdupW(LPCWSTR str
)
915 size
= (strlenW(str
)+1)*sizeof(WCHAR
);
916 ret
= heap_alloc(size
);
917 memcpy(ret
, str
, size
);
923 static inline char *heap_strdupA(const char *str
)
930 size
= strlen(str
)+1;
931 ret
= heap_alloc(size
);
932 memcpy(ret
, str
, size
);
938 static inline WCHAR
*heap_strdupAtoW(const char *str
)
945 len
= MultiByteToWideChar(CP_ACP
, 0, str
, -1, NULL
, 0);
946 ret
= heap_alloc(len
*sizeof(WCHAR
));
947 MultiByteToWideChar(CP_ACP
, 0, str
, -1, ret
, len
);
953 static inline char *heap_strdupWtoA(LPCWSTR str
)
958 DWORD size
= WideCharToMultiByte(CP_ACP
, 0, str
, -1, NULL
, 0, NULL
, NULL
);
959 ret
= heap_alloc(size
);
960 WideCharToMultiByte(CP_ACP
, 0, str
, -1, ret
, size
, NULL
, NULL
);
966 static inline void windowref_addref(windowref_t
*ref
)
968 InterlockedIncrement(&ref
->ref
);
971 static inline void windowref_release(windowref_t
*ref
)
973 if(!InterlockedDecrement(&ref
->ref
))
977 HDC
get_display_dc(void);
978 HINSTANCE
get_shdoclc(void);
980 extern HINSTANCE hInst
;