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
21 #include "docobjectservice.h"
30 #include "wine/list.h"
31 #include "wine/unicode.h"
39 #define NS_ERROR_GENERATE_FAILURE(module,code) \
40 ((nsresult) (((PRUint32)(1<<31)) | ((PRUint32)(module+0x45)<<16) | ((PRUint32)(code))))
42 #define NS_OK ((nsresult)0x00000000L)
43 #define NS_ERROR_FAILURE ((nsresult)0x80004005L)
44 #define NS_ERROR_OUT_OF_MEMORY ((nsresult)0x8007000EL)
45 #define NS_ERROR_NOT_IMPLEMENTED ((nsresult)0x80004001L)
46 #define NS_NOINTERFACE ((nsresult)0x80004002L)
47 #define NS_ERROR_INVALID_POINTER ((nsresult)0x80004003L)
48 #define NS_ERROR_NULL_POINTER NS_ERROR_INVALID_POINTER
49 #define NS_ERROR_NOT_AVAILABLE ((nsresult)0x80040111L)
50 #define NS_ERROR_INVALID_ARG ((nsresult)0x80070057L)
51 #define NS_ERROR_UNEXPECTED ((nsresult)0x8000ffffL)
53 #define NS_ERROR_MODULE_NETWORK 6
55 #define NS_BINDING_ABORTED NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 2)
56 #define NS_ERROR_UNKNOWN_PROTOCOL NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 18)
58 #define NS_FAILED(res) ((res) & 0x80000000)
59 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
63 #define MSHTML_E_NODOC 0x800a025c
65 typedef struct HTMLDOMNode HTMLDOMNode;
66 typedef struct ConnectionPoint ConnectionPoint;
67 typedef struct BSCallback BSCallback;
68 typedef struct event_target_t event_target_t;
72 XDIID(DispCEventObj) \
74 XDIID(DispDOMChildrenCollection) \
75 XDIID(DispHTMLAnchorElement) \
77 XDIID(DispHTMLCommentElement) \
78 XDIID(DispHTMLCurrentStyle) \
79 XDIID(DispHTMLDocument) \
80 XDIID(DispHTMLDOMAttribute) \
81 XDIID(DispHTMLDOMTextNode) \
82 XDIID(DispHTMLElementCollection) \
83 XDIID(DispHTMLEmbed) \
84 XDIID(DispHTMLFormElement) \
85 XDIID(DispHTMLGenericElement) \
86 XDIID(DispHTMLFrameElement) \
87 XDIID(DispHTMLIFrame) \
89 XDIID(DispHTMLInputElement) \
90 XDIID(DispHTMLLocation) \
91 XDIID(DispHTMLNavigator) \
92 XDIID(DispHTMLObjectElement) \
93 XDIID(DispHTMLOptionElement) \
94 XDIID(DispHTMLScreen) \
95 XDIID(DispHTMLScriptElement) \
96 XDIID(DispHTMLSelectElement) \
97 XDIID(DispHTMLStyle) \
98 XDIID(DispHTMLStyleElement) \
99 XDIID(DispHTMLStyleSheetsCollection) \
100 XDIID(DispHTMLTable) \
101 XDIID(DispHTMLTableRow) \
102 XDIID(DispHTMLTextAreaElement) \
103 XDIID(DispHTMLUnknownElement) \
104 XDIID(DispHTMLWindow2) \
105 XDIID(HTMLDocumentEvents) \
106 XIID(IHTMLAnchorElement) \
107 XIID(IHTMLBodyElement) \
108 XIID(IHTMLBodyElement2) \
109 XIID(IHTMLCommentElement) \
110 XIID(IHTMLCurrentStyle) \
111 XIID(IHTMLCurrentStyle2) \
112 XIID(IHTMLCurrentStyle3) \
113 XIID(IHTMLCurrentStyle4) \
114 XIID(IHTMLDocument2) \
115 XIID(IHTMLDocument3) \
116 XIID(IHTMLDocument4) \
117 XIID(IHTMLDocument5) \
118 XIID(IHTMLDOMAttribute) \
119 XIID(IHTMLDOMChildrenCollection) \
121 XIID(IHTMLDOMNode2) \
122 XIID(IHTMLDOMTextNode) \
124 XIID(IHTMLElement2) \
125 XIID(IHTMLElement3) \
126 XIID(IHTMLElement4) \
127 XIID(IHTMLElementCollection) \
128 XIID(IHTMLEmbedElement) \
129 XIID(IHTMLEventObj) \
130 XIID(IHTMLFiltersCollection) \
131 XIID(IHTMLFormElement) \
132 XIID(IHTMLFrameBase) \
133 XIID(IHTMLFrameBase2) \
134 XIID(IHTMLFrameElement3) \
135 XIID(IHTMLGenericElement) \
136 XIID(IHTMLIFrameElement) \
137 XIID(IHTMLImageElementFactory) \
138 XIID(IHTMLImgElement) \
139 XIID(IHTMLInputElement) \
140 XIID(IHTMLLocation) \
141 XIID(IHTMLMimeTypesCollection) \
142 XIID(IHTMLObjectElement) \
143 XIID(IHTMLOptionElement) \
144 XIID(IHTMLPluginsCollection) \
147 XIID(IHTMLScriptElement) \
148 XIID(IHTMLSelectElement) \
153 XIID(IHTMLStyleElement) \
154 XIID(IHTMLStyleSheetsCollection) \
156 XIID(IHTMLTableRow) \
157 XIID(IHTMLTextAreaElement) \
158 XIID(IHTMLTextContainer) \
159 XIID(IHTMLUniqueName) \
166 #define XIID(iface) iface ## _tid,
167 #define XDIID(iface) iface ## _tid,
174 typedef struct dispex_data_t dispex_data_t;
175 typedef struct dispex_dynamic_data_t dispex_dynamic_data_t;
177 #define MSHTML_DISPID_CUSTOM_MIN 0x60000000
178 #define MSHTML_DISPID_CUSTOM_MAX 0x6fffffff
179 #define MSHTML_CUSTOM_DISPID_CNT (MSHTML_DISPID_CUSTOM_MAX-MSHTML_DISPID_CUSTOM_MIN)
181 typedef struct DispatchEx DispatchEx;
184 HRESULT (*value)(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
185 HRESULT (*get_dispid)(DispatchEx*,BSTR,DWORD,DISPID*);
186 HRESULT (*invoke)(DispatchEx*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
187 } dispex_static_data_vtbl_t;
190 const dispex_static_data_vtbl_t *vtbl;
191 const tid_t disp_tid;
193 const tid_t* const iface_tids;
194 } dispex_static_data_t;
197 IDispatchEx IDispatchEx_iface;
201 dispex_static_data_t *data;
202 dispex_dynamic_data_t *dynamic_data;
205 void init_dispex(DispatchEx*,IUnknown*,dispex_static_data_t*) DECLSPEC_HIDDEN;
206 void release_dispex(DispatchEx*) DECLSPEC_HIDDEN;
207 BOOL dispex_query_interface(DispatchEx*,REFIID,void**) DECLSPEC_HIDDEN;
208 HRESULT dispex_get_dprop_ref(DispatchEx*,const WCHAR*,BOOL,VARIANT**) DECLSPEC_HIDDEN;
209 HRESULT get_dispids(tid_t,DWORD*,DISPID**) DECLSPEC_HIDDEN;
210 HRESULT remove_prop(DispatchEx*,BSTR,VARIANT_BOOL*) DECLSPEC_HIDDEN;
211 void release_typelib(void) DECLSPEC_HIDDEN;
213 typedef struct HTMLWindow HTMLWindow;
214 typedef struct HTMLDocumentNode HTMLDocumentNode;
215 typedef struct HTMLDocumentObj HTMLDocumentObj;
216 typedef struct HTMLFrameBase HTMLFrameBase;
217 typedef struct NSContainer NSContainer;
221 SCRIPTMODE_ACTIVESCRIPT
224 typedef struct ScriptHost ScriptHost;
229 } global_prop_type_t;
232 global_prop_type_t type;
234 ScriptHost *script_host;
239 IHTMLOptionElementFactory IHTMLOptionElementFactory_iface;
244 } HTMLOptionElementFactory;
248 IHTMLImageElementFactory IHTMLImageElementFactory_iface;
253 } HTMLImageElementFactory;
255 struct HTMLLocation {
257 IHTMLLocation IHTMLLocation_iface;
269 typedef struct nsChannelBSC nsChannelBSC;
273 IHTMLWindow2 IHTMLWindow2_iface;
274 IHTMLWindow3 IHTMLWindow3_iface;
275 IHTMLWindow4 IHTMLWindow4_iface;
276 IHTMLPrivateWindow IHTMLPrivateWindow_iface;
277 IDispatchEx IDispatchEx_iface;
278 IServiceProvider IServiceProvider_iface;
282 windowref_t *window_ref;
285 HTMLDocumentNode *doc;
286 HTMLDocumentObj *doc_obj;
287 nsIDOMWindow *nswindow;
289 HTMLFrameBase *frame_element;
290 READYSTATE readystate;
292 nsChannelBSC *bscallback;
296 IHTMLEventObj *event;
298 SCRIPTMODE scriptmode;
299 struct list script_hosts;
301 IInternetSecurityManager *secmgr;
303 HTMLOptionElementFactory *option_factory;
304 HTMLImageElementFactory *image_factory;
305 HTMLLocation *location;
308 global_prop_t *global_props;
309 DWORD global_prop_cnt;
310 DWORD global_prop_size;
312 struct list children;
313 struct list sibling_entry;
323 typedef struct _cp_static_data_t {
325 void (*on_advise)(IUnknown*,struct _cp_static_data_t*);
330 typedef struct ConnectionPointContainer {
331 IConnectionPointContainer IConnectionPointContainer_iface;
333 ConnectionPoint *cp_list;
335 struct ConnectionPointContainer *forward_container;
336 } ConnectionPointContainer;
338 struct ConnectionPoint {
339 IConnectionPoint IConnectionPoint_iface;
341 ConnectionPointContainer *container;
346 IPropertyNotifySink *propnotif;
351 cp_static_data_t *data;
353 ConnectionPoint *next;
356 struct HTMLDocument {
357 IHTMLDocument2 IHTMLDocument2_iface;
358 IHTMLDocument3 IHTMLDocument3_iface;
359 IHTMLDocument4 IHTMLDocument4_iface;
360 IHTMLDocument5 IHTMLDocument5_iface;
361 IHTMLDocument6 IHTMLDocument6_iface;
362 IPersistMoniker IPersistMoniker_iface;
363 IPersistFile IPersistFile_iface;
364 IPersistHistory IPersistHistory_iface;
365 IMonikerProp IMonikerProp_iface;
366 IOleObject IOleObject_iface;
367 IOleDocument IOleDocument_iface;
368 IOleDocumentView IOleDocumentView_iface;
369 IOleInPlaceActiveObject IOleInPlaceActiveObject_iface;
370 IViewObjectEx IViewObjectEx_iface;
371 IOleInPlaceObjectWindowless IOleInPlaceObjectWindowless_iface;
372 IServiceProvider IServiceProvider_iface;
373 IOleCommandTarget IOleCommandTarget_iface;
374 IOleControl IOleControl_iface;
375 IHlinkTarget IHlinkTarget_iface;
376 IPersistStreamInit IPersistStreamInit_iface;
377 IDispatchEx IDispatchEx_iface;
378 ISupportErrorInfo ISupportErrorInfo_iface;
379 IObjectWithSite IObjectWithSite_iface;
380 IOleContainer IOleContainer_iface;
381 IObjectSafety IObjectSafety_iface;
386 HTMLDocumentObj *doc_obj;
387 HTMLDocumentNode *doc_node;
393 ConnectionPointContainer cp_container;
394 ConnectionPoint cp_htmldocevents;
395 ConnectionPoint cp_htmldocevents2;
396 ConnectionPoint cp_propnotif;
397 ConnectionPoint cp_dispatch;
399 IOleAdviseHolder *advise_holder;
402 static inline HRESULT htmldoc_query_interface(HTMLDocument *This, REFIID riid, void **ppv)
404 return IUnknown_QueryInterface(This->unk_impl, riid, ppv);
407 static inline ULONG htmldoc_addref(HTMLDocument *This)
409 return IUnknown_AddRef(This->unk_impl);
412 static inline ULONG htmldoc_release(HTMLDocument *This)
414 return IUnknown_Release(This->unk_impl);
417 struct HTMLDocumentObj {
418 HTMLDocument basedoc;
420 ICustomDoc ICustomDoc_iface;
424 NSContainer *nscontainer;
426 IOleClientSite *client;
427 IDocHostUIHandler *hostui;
429 IOleInPlaceSite *ipsite;
430 IOleInPlaceFrame *frame;
431 IOleInPlaceUIWindow *ip_window;
432 IAdviseSink *view_sink;
433 IDocObjectService *doc_object_service;
435 DOCHOSTUIINFO hostinfo;
437 IOleUndoManager *undomgr;
442 BOOL request_uiactivate;
443 BOOL in_place_active;
447 BOOL container_locked;
457 typedef struct nsWeakReference nsWeakReference;
460 nsIWebBrowserChrome nsIWebBrowserChrome_iface;
461 nsIContextMenuListener nsIContextMenuListener_iface;
462 nsIURIContentListener nsIURIContentListener_iface;
463 nsIEmbeddingSiteWindow nsIEmbeddingSiteWindow_iface;
464 nsITooltipListener nsITooltipListener_iface;
465 nsIInterfaceRequestor nsIInterfaceRequestor_iface;
466 nsISupportsWeakReference nsISupportsWeakReference_iface;
468 nsIWebBrowser *webbrowser;
469 nsIWebNavigation *navigation;
470 nsIBaseWindow *window;
471 nsIWebBrowserFocus *focus;
474 nsIController *editor_controller;
478 nsWeakReference *weak_reference;
481 HTMLDocumentObj *doc;
483 nsIURIContentListener *content_listener;
488 typedef struct nsWineURI nsWineURI;
490 nsresult on_start_uri_open(NSContainer*,nsIURI*,PRBool*) DECLSPEC_HIDDEN;
492 /* Keep sync with request_method_strings in nsio.c */
500 nsIHttpChannel nsIHttpChannel_iface;
501 nsIUploadChannel nsIUploadChannel_iface;
502 nsIHttpChannelInternal nsIHttpChannelInternal_iface;
507 nsIInputStream *post_data_stream;
508 BOOL post_data_contains_headers;
509 nsILoadGroup *load_group;
510 nsIInterfaceRequestor *notif_callback;
512 nsLoadFlags load_flags;
513 nsIURI *original_uri;
517 PRUint32 response_status;
518 REQUEST_METHOD request_method;
519 struct list response_headers;
520 struct list request_headers;
530 HRESULT set_http_header(struct list*,const WCHAR*,int,const WCHAR*,int) DECLSPEC_HIDDEN;
531 HRESULT create_redirect_nschannel(const WCHAR*,nsChannel*,nsChannel**) DECLSPEC_HIDDEN;
534 HRESULT (*qi)(HTMLDOMNode*,REFIID,void**);
535 void (*destructor)(HTMLDOMNode*);
536 HRESULT (*clone)(HTMLDOMNode*,nsIDOMNode*,HTMLDOMNode**);
537 event_target_t **(*get_event_target)(HTMLDOMNode*);
538 HRESULT (*call_event)(HTMLDOMNode*,DWORD,BOOL*);
539 HRESULT (*put_disabled)(HTMLDOMNode*,VARIANT_BOOL);
540 HRESULT (*get_disabled)(HTMLDOMNode*,VARIANT_BOOL*);
541 HRESULT (*get_document)(HTMLDOMNode*,IDispatch**);
542 HRESULT (*get_readystate)(HTMLDOMNode*,BSTR*);
543 HRESULT (*get_dispid)(HTMLDOMNode*,BSTR,DWORD,DISPID*);
544 HRESULT (*invoke)(HTMLDOMNode*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
545 HRESULT (*bind_to_tree)(HTMLDOMNode*);
550 IHTMLDOMNode IHTMLDOMNode_iface;
551 IHTMLDOMNode2 IHTMLDOMNode2_iface;
552 const NodeImplVtbl *vtbl;
557 HTMLDocumentNode *doc;
558 event_target_t *event_target;
559 ConnectionPointContainer *cp_container;
566 ConnectionPointContainer cp_container;
568 IHTMLElement IHTMLElement_iface;
569 IHTMLElement2 IHTMLElement2_iface;
570 IHTMLElement3 IHTMLElement3_iface;
571 IHTMLElement4 IHTMLElement4_iface;
573 nsIDOMHTMLElement *nselem;
578 #define HTMLELEMENT_TIDS \
589 IHTMLTextContainer IHTMLTextContainer_iface;
594 struct HTMLFrameBase {
597 IHTMLFrameBase IHTMLFrameBase_iface;
598 IHTMLFrameBase2 IHTMLFrameBase2_iface;
600 HTMLWindow *content_window;
602 nsIDOMHTMLFrameElement *nsframe;
603 nsIDOMHTMLIFrameElement *nsiframe;
606 typedef struct nsDocumentEventListener nsDocumentEventListener;
608 struct HTMLDocumentNode {
610 HTMLDocument basedoc;
612 IInternetHostSecurityManager IInternetHostSecurityManager_iface;
614 nsIDocumentObserver nsIDocumentObserver_iface;
618 nsIDOMHTMLDocument *nsdoc;
621 event_target_t *body_event_target;
623 ICatInformation *catmgr;
624 nsDocumentEventListener *nsevent_listener;
628 unsigned elem_vars_size;
629 unsigned elem_vars_cnt;
631 BOOL skip_mutation_notif;
633 struct list bindings;
634 struct list selection_list;
635 struct list range_list;
636 struct list plugin_hosts;
639 HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
640 HRESULT HTMLLoadOptions_Create(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
641 HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument*,HTMLDocumentObj*,HTMLWindow*,HTMLDocumentNode**) DECLSPEC_HIDDEN;
642 HRESULT create_document_fragment(nsIDOMNode*,HTMLDocumentNode*,HTMLDocumentNode**) DECLSPEC_HIDDEN;
644 HRESULT HTMLWindow_Create(HTMLDocumentObj*,nsIDOMWindow*,HTMLWindow*,HTMLWindow**) DECLSPEC_HIDDEN;
645 void update_window_doc(HTMLWindow*) DECLSPEC_HIDDEN;
646 HTMLWindow *nswindow_to_window(const nsIDOMWindow*) DECLSPEC_HIDDEN;
647 nsIDOMWindow *get_nsdoc_window(nsIDOMDocument*) DECLSPEC_HIDDEN;
648 HTMLOptionElementFactory *HTMLOptionElementFactory_Create(HTMLWindow*) DECLSPEC_HIDDEN;
649 HTMLImageElementFactory *HTMLImageElementFactory_Create(HTMLWindow*) DECLSPEC_HIDDEN;
650 HRESULT HTMLLocation_Create(HTMLWindow*,HTMLLocation**) DECLSPEC_HIDDEN;
651 IOmNavigator *OmNavigator_Create(void) DECLSPEC_HIDDEN;
652 HRESULT HTMLScreen_Create(IHTMLScreen**) DECLSPEC_HIDDEN;
654 void HTMLDocument_HTMLDocument3_Init(HTMLDocument*) DECLSPEC_HIDDEN;
655 void HTMLDocument_HTMLDocument5_Init(HTMLDocument*) DECLSPEC_HIDDEN;
656 void HTMLDocument_Persist_Init(HTMLDocument*) DECLSPEC_HIDDEN;
657 void HTMLDocument_OleCmd_Init(HTMLDocument*) DECLSPEC_HIDDEN;
658 void HTMLDocument_OleObj_Init(HTMLDocument*) DECLSPEC_HIDDEN;
659 void HTMLDocument_View_Init(HTMLDocument*) DECLSPEC_HIDDEN;
660 void HTMLDocument_Window_Init(HTMLDocument*) DECLSPEC_HIDDEN;
661 void HTMLDocument_Service_Init(HTMLDocument*) DECLSPEC_HIDDEN;
662 void HTMLDocument_Hlink_Init(HTMLDocument*) DECLSPEC_HIDDEN;
664 void HTMLDocumentNode_SecMgr_Init(HTMLDocumentNode*) DECLSPEC_HIDDEN;
666 HRESULT HTMLCurrentStyle_Create(HTMLElement*,IHTMLCurrentStyle**) DECLSPEC_HIDDEN;
668 void ConnectionPoint_Init(ConnectionPoint*,ConnectionPointContainer*,REFIID,cp_static_data_t*) DECLSPEC_HIDDEN;
669 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*) DECLSPEC_HIDDEN;
670 void ConnectionPointContainer_Destroy(ConnectionPointContainer*) DECLSPEC_HIDDEN;
672 NSContainer *NSContainer_Create(HTMLDocumentObj*,NSContainer*) DECLSPEC_HIDDEN;
673 void NSContainer_Release(NSContainer*) DECLSPEC_HIDDEN;
674 nsresult create_chrome_window(nsIWebBrowserChrome*,nsIWebBrowserChrome**) DECLSPEC_HIDDEN;
676 void init_mutation(nsIComponentManager*) DECLSPEC_HIDDEN;
677 void init_document_mutation(HTMLDocumentNode*) DECLSPEC_HIDDEN;
678 void release_document_mutation(HTMLDocumentNode*) DECLSPEC_HIDDEN;
680 void HTMLDocument_LockContainer(HTMLDocumentObj*,BOOL) DECLSPEC_HIDDEN;
681 void show_context_menu(HTMLDocumentObj*,DWORD,POINT*,IDispatch*) DECLSPEC_HIDDEN;
682 void notif_focus(HTMLDocumentObj*) DECLSPEC_HIDDEN;
684 void show_tooltip(HTMLDocumentObj*,DWORD,DWORD,LPCWSTR) DECLSPEC_HIDDEN;
685 void hide_tooltip(HTMLDocumentObj*) DECLSPEC_HIDDEN;
686 HRESULT get_client_disp_property(IOleClientSite*,DISPID,VARIANT*) DECLSPEC_HIDDEN;
688 HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**) DECLSPEC_HIDDEN;
690 BOOL load_gecko(BOOL) DECLSPEC_HIDDEN;
691 void close_gecko(void) DECLSPEC_HIDDEN;
692 void register_nsservice(nsIComponentRegistrar*,nsIServiceManager*) DECLSPEC_HIDDEN;
693 void init_nsio(nsIComponentManager*,nsIComponentRegistrar*) DECLSPEC_HIDDEN;
694 void release_nsio(void) DECLSPEC_HIDDEN;
695 BOOL is_gecko_path(const char*) DECLSPEC_HIDDEN;
697 HRESULT nsuri_to_url(LPCWSTR,BOOL,BSTR*) DECLSPEC_HIDDEN;
698 HRESULT create_doc_uri(HTMLWindow*,WCHAR*,nsWineURI**) DECLSPEC_HIDDEN;
699 HRESULT load_nsuri(HTMLWindow*,nsWineURI*,nsChannelBSC*,DWORD) DECLSPEC_HIDDEN;
701 HRESULT hlink_frame_navigate(HTMLDocument*,LPCWSTR,nsChannel*,DWORD,BOOL*) DECLSPEC_HIDDEN;
702 HRESULT navigate_url(HTMLWindow*,const WCHAR*,const WCHAR*) DECLSPEC_HIDDEN;
703 HRESULT set_frame_doc(HTMLFrameBase*,nsIDOMDocument*) DECLSPEC_HIDDEN;
704 HRESULT set_moniker(HTMLDocument*,IMoniker*,IBindCtx*,nsChannelBSC*,BOOL) DECLSPEC_HIDDEN;
706 void call_property_onchanged(ConnectionPoint*,DISPID) DECLSPEC_HIDDEN;
707 HRESULT call_set_active_object(IOleInPlaceUIWindow*,IOleInPlaceActiveObject*) DECLSPEC_HIDDEN;
709 void *nsalloc(size_t) __WINE_ALLOC_SIZE(1) DECLSPEC_HIDDEN;
710 void nsfree(void*) DECLSPEC_HIDDEN;
712 void nsACString_InitDepend(nsACString*,const char*) DECLSPEC_HIDDEN;
713 void nsACString_SetData(nsACString*,const char*) DECLSPEC_HIDDEN;
714 PRUint32 nsACString_GetData(const nsACString*,const char**) DECLSPEC_HIDDEN;
715 void nsACString_Finish(nsACString*) DECLSPEC_HIDDEN;
717 BOOL nsAString_Init(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
718 void nsAString_InitDepend(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
719 void nsAString_SetData(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
720 PRUint32 nsAString_GetData(const nsAString*,const PRUnichar**) DECLSPEC_HIDDEN;
721 void nsAString_Finish(nsAString*) DECLSPEC_HIDDEN;
722 HRESULT return_nsstr(nsresult,nsAString*,BSTR*) DECLSPEC_HIDDEN;
724 nsICommandParams *create_nscommand_params(void) DECLSPEC_HIDDEN;
725 HRESULT nsnode_to_nsstring(nsIDOMNode*,nsAString*) DECLSPEC_HIDDEN;
726 void get_editor_controller(NSContainer*) DECLSPEC_HIDDEN;
727 nsresult get_nsinterface(nsISupports*,REFIID,void**) DECLSPEC_HIDDEN;
729 void init_nsevents(HTMLDocumentNode*) DECLSPEC_HIDDEN;
730 void release_nsevents(HTMLDocumentNode*) DECLSPEC_HIDDEN;
731 void add_nsevent_listener(HTMLDocumentNode*,nsIDOMNode*,LPCWSTR) DECLSPEC_HIDDEN;
733 void set_window_bscallback(HTMLWindow*,nsChannelBSC*) DECLSPEC_HIDDEN;
734 void set_current_mon(HTMLWindow*,IMoniker*) DECLSPEC_HIDDEN;
735 HRESULT start_binding(HTMLWindow*,HTMLDocumentNode*,BSCallback*,IBindCtx*) DECLSPEC_HIDDEN;
736 HRESULT async_start_doc_binding(HTMLWindow*,nsChannelBSC*) DECLSPEC_HIDDEN;
737 void abort_document_bindings(HTMLDocumentNode*) DECLSPEC_HIDDEN;
739 HRESULT bind_mon_to_buffer(HTMLDocumentNode*,IMoniker*,void**,DWORD*) DECLSPEC_HIDDEN;
741 HRESULT create_channelbsc(IMoniker*,WCHAR*,BYTE*,DWORD,nsChannelBSC**) DECLSPEC_HIDDEN;
742 HRESULT channelbsc_load_stream(nsChannelBSC*,IStream*) DECLSPEC_HIDDEN;
743 void channelbsc_set_channel(nsChannelBSC*,nsChannel*,nsIStreamListener*,nsISupports*) DECLSPEC_HIDDEN;
745 void set_ready_state(HTMLWindow*,READYSTATE) DECLSPEC_HIDDEN;
747 HRESULT HTMLSelectionObject_Create(HTMLDocumentNode*,nsISelection*,IHTMLSelectionObject**) DECLSPEC_HIDDEN;
748 HRESULT HTMLTxtRange_Create(HTMLDocumentNode*,nsIDOMRange*,IHTMLTxtRange**) DECLSPEC_HIDDEN;
749 HRESULT HTMLStyle_Create(nsIDOMCSSStyleDeclaration*,HTMLStyle**) DECLSPEC_HIDDEN;
750 IHTMLStyleSheet *HTMLStyleSheet_Create(nsIDOMStyleSheet*) DECLSPEC_HIDDEN;
751 IHTMLStyleSheetsCollection *HTMLStyleSheetsCollection_Create(nsIDOMStyleSheetList*) DECLSPEC_HIDDEN;
753 void detach_selection(HTMLDocumentNode*) DECLSPEC_HIDDEN;
754 void detach_ranges(HTMLDocumentNode*) DECLSPEC_HIDDEN;
755 HRESULT get_node_text(HTMLDOMNode*,BSTR*) DECLSPEC_HIDDEN;
757 HRESULT create_nselem(HTMLDocumentNode*,const WCHAR*,nsIDOMHTMLElement**) DECLSPEC_HIDDEN;
759 HRESULT HTMLDOMTextNode_Create(HTMLDocumentNode*,nsIDOMNode*,HTMLDOMNode**) DECLSPEC_HIDDEN;
763 IHTMLDOMAttribute IHTMLDOMAttribute_iface;
772 HRESULT HTMLDOMAttribute_Create(HTMLElement*,DISPID,HTMLDOMAttribute**) DECLSPEC_HIDDEN;
774 HRESULT HTMLElement_Create(HTMLDocumentNode*,nsIDOMNode*,BOOL,HTMLElement**) DECLSPEC_HIDDEN;
775 HRESULT HTMLCommentElement_Create(HTMLDocumentNode*,nsIDOMNode*,HTMLElement**) DECLSPEC_HIDDEN;
776 HRESULT HTMLAnchorElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
777 HRESULT HTMLBodyElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
778 HRESULT HTMLEmbedElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
779 HRESULT HTMLFormElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
780 HRESULT HTMLFrameElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
781 HRESULT HTMLIFrame_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
782 HRESULT HTMLStyleElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
783 HRESULT HTMLImgElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
784 HRESULT HTMLInputElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
785 HRESULT HTMLObjectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
786 HRESULT HTMLOptionElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
787 HRESULT HTMLScriptElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
788 HRESULT HTMLSelectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
789 HRESULT HTMLTable_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
790 HRESULT HTMLTableRow_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
791 HRESULT HTMLTextAreaElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
792 HRESULT HTMLGenericElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
794 void HTMLDOMNode_Init(HTMLDocumentNode*,HTMLDOMNode*,nsIDOMNode*) DECLSPEC_HIDDEN;
795 void HTMLElement_Init(HTMLElement*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
796 void HTMLElement2_Init(HTMLElement*) DECLSPEC_HIDDEN;
797 void HTMLElement3_Init(HTMLElement*) DECLSPEC_HIDDEN;
798 void HTMLTextContainer_Init(HTMLTextContainer*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
799 void HTMLFrameBase_Init(HTMLFrameBase*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
801 HRESULT HTMLDOMNode_QI(HTMLDOMNode*,REFIID,void**) DECLSPEC_HIDDEN;
802 void HTMLDOMNode_destructor(HTMLDOMNode*) DECLSPEC_HIDDEN;
804 HRESULT HTMLElement_QI(HTMLDOMNode*,REFIID,void**) DECLSPEC_HIDDEN;
805 void HTMLElement_destructor(HTMLDOMNode*) DECLSPEC_HIDDEN;
806 HRESULT HTMLElement_clone(HTMLDOMNode*,nsIDOMNode*,HTMLDOMNode**) DECLSPEC_HIDDEN;
808 HRESULT HTMLFrameBase_QI(HTMLFrameBase*,REFIID,void**) DECLSPEC_HIDDEN;
809 void HTMLFrameBase_destructor(HTMLFrameBase*) DECLSPEC_HIDDEN;
811 HRESULT get_node(HTMLDocumentNode*,nsIDOMNode*,BOOL,HTMLDOMNode**) DECLSPEC_HIDDEN;
812 void release_nodes(HTMLDocumentNode*) DECLSPEC_HIDDEN;
814 void release_script_hosts(HTMLWindow*) DECLSPEC_HIDDEN;
815 void connect_scripts(HTMLWindow*) DECLSPEC_HIDDEN;
816 void doc_insert_script(HTMLWindow*,nsIDOMHTMLScriptElement*) DECLSPEC_HIDDEN;
817 IDispatch *script_parse_event(HTMLWindow*,LPCWSTR) DECLSPEC_HIDDEN;
818 HRESULT exec_script(HTMLWindow*,const WCHAR*,const WCHAR*,VARIANT*) DECLSPEC_HIDDEN;
819 void set_script_mode(HTMLWindow*,SCRIPTMODE) DECLSPEC_HIDDEN;
820 BOOL find_global_prop(HTMLWindow*,BSTR,DWORD,ScriptHost**,DISPID*) DECLSPEC_HIDDEN;
821 IDispatch *get_script_disp(ScriptHost*) DECLSPEC_HIDDEN;
822 HRESULT search_window_props(HTMLWindow*,BSTR,DWORD,DISPID*) DECLSPEC_HIDDEN;
824 IHTMLElementCollection *create_all_collection(HTMLDOMNode*,BOOL) DECLSPEC_HIDDEN;
825 IHTMLElementCollection *create_collection_from_nodelist(HTMLDocumentNode*,IUnknown*,nsIDOMNodeList*) DECLSPEC_HIDDEN;
826 IHTMLElementCollection *create_collection_from_htmlcol(HTMLDocumentNode*,IUnknown*,nsIDOMHTMLCollection*) DECLSPEC_HIDDEN;
831 HRESULT (*query)(HTMLDocument*,OLECMD*);
832 HRESULT (*exec)(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
835 extern const cmdtable_t editmode_cmds[] DECLSPEC_HIDDEN;
837 void do_ns_command(HTMLDocument*,const char*,nsICommandParams*) DECLSPEC_HIDDEN;
840 #define UPDATE_UI 0x0001
841 #define UPDATE_TITLE 0x0002
843 void update_doc(HTMLDocument*,DWORD) DECLSPEC_HIDDEN;
844 void update_title(HTMLDocumentObj*) DECLSPEC_HIDDEN;
847 void init_editor(HTMLDocument*) DECLSPEC_HIDDEN;
848 void handle_edit_event(HTMLDocument*,nsIDOMEvent*) DECLSPEC_HIDDEN;
849 HRESULT editor_exec_copy(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
850 HRESULT editor_exec_cut(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
851 HRESULT editor_exec_paste(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
852 void handle_edit_load(HTMLDocument*) DECLSPEC_HIDDEN;
853 HRESULT editor_is_dirty(HTMLDocument*) DECLSPEC_HIDDEN;
854 void set_dirty(HTMLDocument*,VARIANT_BOOL) DECLSPEC_HIDDEN;
856 extern DWORD mshtml_tls DECLSPEC_HIDDEN;
858 typedef struct task_t task_t;
859 typedef void (*task_proc_t)(task_t*);
869 HTMLDocumentObj *doc;
874 task_t *task_queue_head;
875 task_t *task_queue_tail;
876 struct list timer_list;
879 thread_data_t *get_thread_data(BOOL) DECLSPEC_HIDDEN;
880 HWND get_thread_hwnd(void) DECLSPEC_HIDDEN;
882 LONG get_task_target_magic(void) DECLSPEC_HIDDEN;
883 void push_task(task_t*,task_proc_t,LONG) DECLSPEC_HIDDEN;
884 void remove_target_tasks(LONG) DECLSPEC_HIDDEN;
886 DWORD set_task_timer(HTMLDocument*,DWORD,BOOL,IDispatch*) DECLSPEC_HIDDEN;
887 HRESULT clear_task_timer(HTMLDocument*,BOOL,DWORD) DECLSPEC_HIDDEN;
889 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
891 DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
892 DEFINE_GUID(CLSID_JSProtocol, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
893 DEFINE_GUID(CLSID_MailtoProtocol, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
894 DEFINE_GUID(CLSID_ResProtocol, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
895 DEFINE_GUID(CLSID_SysimageProtocol, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
897 DEFINE_GUID(CLSID_CMarkup,0x3050f4fb,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
899 DEFINE_OLEGUID(CGID_DocHostCmdPriv, 0x000214D4L, 0, 0);
901 /* memory allocation functions */
903 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
905 return HeapAlloc(GetProcessHeap(), 0, len);
908 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
910 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
913 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
915 return HeapReAlloc(GetProcessHeap(), 0, mem, len);
918 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
920 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
923 static inline BOOL heap_free(void *mem)
925 return HeapFree(GetProcessHeap(), 0, mem);
928 static inline LPWSTR heap_strdupW(LPCWSTR str)
935 size = (strlenW(str)+1)*sizeof(WCHAR);
936 ret = heap_alloc(size);
937 memcpy(ret, str, size);
943 static inline LPWSTR heap_strndupW(LPCWSTR str, unsigned len)
948 ret = heap_alloc((len+1)*sizeof(WCHAR));
949 memcpy(ret, str, len*sizeof(WCHAR));
956 static inline char *heap_strdupA(const char *str)
963 size = strlen(str)+1;
964 ret = heap_alloc(size);
965 memcpy(ret, str, size);
971 static inline WCHAR *heap_strdupAtoW(const char *str)
978 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
979 ret = heap_alloc(len*sizeof(WCHAR));
980 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
986 static inline char *heap_strdupWtoA(LPCWSTR str)
991 DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
992 ret = heap_alloc(size);
993 WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
999 static inline void windowref_addref(windowref_t *ref)
1001 InterlockedIncrement(&ref->ref);
1004 static inline void windowref_release(windowref_t *ref)
1006 if(!InterlockedDecrement(&ref->ref))
1010 HDC get_display_dc(void) DECLSPEC_HIDDEN;
1011 HINSTANCE get_shdoclc(void) DECLSPEC_HIDDEN;
1012 void set_statustext(HTMLDocumentObj*,INT,LPCWSTR) DECLSPEC_HIDDEN;
1014 extern HINSTANCE hInst DECLSPEC_HIDDEN;