mshtml: Added noscript tag handling tests.
[wine] / dlls / mshtml / mshtml_private.h
1 /*
2  * Copyright 2005-2009 Jacek Caban for CodeWeavers
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #include "wingdi.h"
20 #include "docobj.h"
21 #include "docobjectservice.h"
22 #include "comcat.h"
23 #include "mshtml.h"
24 #include "mshtmhst.h"
25 #include "hlink.h"
26 #include "perhist.h"
27 #include "dispex.h"
28 #include "objsafe.h"
29 #include "htiframe.h"
30 #include "tlogstg.h"
31
32 #include "wine/list.h"
33 #include "wine/unicode.h"
34
35 #ifdef INIT_GUID
36 #include "initguid.h"
37 #endif
38
39 #include "nsiface.h"
40
41 #define NS_ERROR_GENERATE_FAILURE(module,code) \
42     ((nsresult) (((PRUint32)(1<<31)) | ((PRUint32)(module+0x45)<<16) | ((PRUint32)(code))))
43
44 #define NS_OK                     ((nsresult)0x00000000L)
45 #define NS_ERROR_FAILURE          ((nsresult)0x80004005L)
46 #define NS_ERROR_OUT_OF_MEMORY    ((nsresult)0x8007000EL)
47 #define NS_ERROR_NOT_IMPLEMENTED  ((nsresult)0x80004001L)
48 #define NS_NOINTERFACE            ((nsresult)0x80004002L)
49 #define NS_ERROR_INVALID_POINTER  ((nsresult)0x80004003L)
50 #define NS_ERROR_NULL_POINTER     NS_ERROR_INVALID_POINTER
51 #define NS_ERROR_NOT_AVAILABLE    ((nsresult)0x80040111L)
52 #define NS_ERROR_INVALID_ARG      ((nsresult)0x80070057L) 
53 #define NS_ERROR_UNEXPECTED       ((nsresult)0x8000ffffL)
54
55 #define NS_ERROR_MODULE_NETWORK    6
56
57 #define NS_BINDING_ABORTED         NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 2)
58 #define NS_ERROR_UNKNOWN_PROTOCOL  NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_NETWORK, 18)
59
60 #define NS_FAILED(res) ((res) & 0x80000000)
61 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
62
63 #define NSAPI WINAPI
64
65 #define MSHTML_E_NODOC    0x800a025c
66
67 typedef struct HTMLDOMNode HTMLDOMNode;
68 typedef struct ConnectionPoint ConnectionPoint;
69 typedef struct BSCallback BSCallback;
70 typedef struct event_target_t event_target_t;
71
72 #define TID_LIST \
73     XIID(NULL) \
74     XDIID(DispCEventObj) \
75     XDIID(DispCPlugins) \
76     XDIID(DispDOMChildrenCollection) \
77     XDIID(DispHTMLAnchorElement) \
78     XDIID(DispHTMLAttributeCollection) \
79     XDIID(DispHTMLBody) \
80     XDIID(DispHTMLCommentElement) \
81     XDIID(DispHTMLCurrentStyle) \
82     XDIID(DispHTMLDocument) \
83     XDIID(DispHTMLDOMAttribute) \
84     XDIID(DispHTMLDOMTextNode) \
85     XDIID(DispHTMLElementCollection) \
86     XDIID(DispHTMLEmbed) \
87     XDIID(DispHTMLFormElement) \
88     XDIID(DispHTMLGenericElement) \
89     XDIID(DispHTMLFrameElement) \
90     XDIID(DispHTMLHeadElement) \
91     XDIID(DispHTMLHistory) \
92     XDIID(DispHTMLIFrame) \
93     XDIID(DispHTMLImg) \
94     XDIID(DispHTMLInputElement) \
95     XDIID(DispHTMLLocation) \
96     XDIID(DispHTMLMetaElement) \
97     XDIID(DispHTMLNavigator) \
98     XDIID(DispHTMLObjectElement) \
99     XDIID(DispHTMLOptionElement) \
100     XDIID(DispHTMLScreen) \
101     XDIID(DispHTMLScriptElement) \
102     XDIID(DispHTMLSelectElement) \
103     XDIID(DispHTMLStyle) \
104     XDIID(DispHTMLStyleElement) \
105     XDIID(DispHTMLStyleSheetsCollection) \
106     XDIID(DispHTMLTable) \
107     XDIID(DispHTMLTableCell) \
108     XDIID(DispHTMLTableRow) \
109     XDIID(DispHTMLTextAreaElement) \
110     XDIID(DispHTMLTitleElement) \
111     XDIID(DispHTMLUnknownElement) \
112     XDIID(DispHTMLWindow2) \
113     XDIID(HTMLDocumentEvents) \
114     XIID(IHTMLAnchorElement) \
115     XIID(IHTMLAttributeCollection) \
116     XIID(IHTMLAttributeCollection2) \
117     XIID(IHTMLAttributeCollection3) \
118     XIID(IHTMLBodyElement) \
119     XIID(IHTMLBodyElement2) \
120     XIID(IHTMLCommentElement) \
121     XIID(IHTMLCurrentStyle) \
122     XIID(IHTMLCurrentStyle2) \
123     XIID(IHTMLCurrentStyle3) \
124     XIID(IHTMLCurrentStyle4) \
125     XIID(IHTMLDocument2) \
126     XIID(IHTMLDocument3) \
127     XIID(IHTMLDocument4) \
128     XIID(IHTMLDocument5) \
129     XIID(IHTMLDOMAttribute) \
130     XIID(IHTMLDOMChildrenCollection) \
131     XIID(IHTMLDOMNode) \
132     XIID(IHTMLDOMNode2) \
133     XIID(IHTMLDOMTextNode) \
134     XIID(IHTMLElement) \
135     XIID(IHTMLElement2) \
136     XIID(IHTMLElement3) \
137     XIID(IHTMLElement4) \
138     XIID(IHTMLElementCollection) \
139     XIID(IHTMLEmbedElement) \
140     XIID(IHTMLEventObj) \
141     XIID(IHTMLFiltersCollection) \
142     XIID(IHTMLFormElement) \
143     XIID(IHTMLFrameBase) \
144     XIID(IHTMLFrameBase2) \
145     XIID(IHTMLFrameElement3) \
146     XIID(IHTMLGenericElement) \
147     XIID(IHTMLHeadElement) \
148     XIID(IHTMLIFrameElement) \
149     XIID(IHTMLIFrameElement2) \
150     XIID(IHTMLIFrameElement3) \
151     XIID(IHTMLImageElementFactory) \
152     XIID(IHTMLImgElement) \
153     XIID(IHTMLInputElement) \
154     XIID(IHTMLLocation) \
155     XIID(IHTMLMetaElement) \
156     XIID(IHTMLMimeTypesCollection) \
157     XIID(IHTMLObjectElement) \
158     XIID(IHTMLObjectElement2) \
159     XIID(IHTMLOptionElement) \
160     XIID(IHTMLPluginsCollection) \
161     XIID(IHTMLRect) \
162     XIID(IHTMLScreen) \
163     XIID(IHTMLScriptElement) \
164     XIID(IHTMLSelectElement) \
165     XIID(IHTMLStorage) \
166     XIID(IHTMLStyle) \
167     XIID(IHTMLStyle2) \
168     XIID(IHTMLStyle3) \
169     XIID(IHTMLStyle4) \
170     XIID(IHTMLStyle5) \
171     XIID(IHTMLStyle6) \
172     XIID(IHTMLStyleElement) \
173     XIID(IHTMLStyleSheetsCollection) \
174     XIID(IHTMLTable) \
175     XIID(IHTMLTable2) \
176     XIID(IHTMLTable3) \
177     XIID(IHTMLTableCell) \
178     XIID(IHTMLTableRow) \
179     XIID(IHTMLTextAreaElement) \
180     XIID(IHTMLTextContainer) \
181     XIID(IHTMLTitleElement) \
182     XIID(IHTMLUniqueName) \
183     XIID(IHTMLWindow2) \
184     XIID(IHTMLWindow3) \
185     XIID(IHTMLWindow4) \
186     XIID(IHTMLWindow5) \
187     XIID(IHTMLWindow6) \
188     XIID(IOmHistory) \
189     XIID(IOmNavigator)
190
191 typedef enum {
192 #define XIID(iface) iface ## _tid,
193 #define XDIID(iface) iface ## _tid,
194 TID_LIST
195 #undef XIID
196 #undef XDIID
197     LAST_tid
198 } tid_t;
199
200 typedef struct dispex_data_t dispex_data_t;
201 typedef struct dispex_dynamic_data_t dispex_dynamic_data_t;
202
203 #define MSHTML_DISPID_CUSTOM_MIN 0x60000000
204 #define MSHTML_DISPID_CUSTOM_MAX 0x6fffffff
205 #define MSHTML_CUSTOM_DISPID_CNT (MSHTML_DISPID_CUSTOM_MAX-MSHTML_DISPID_CUSTOM_MIN)
206
207 typedef struct DispatchEx DispatchEx;
208
209 typedef struct {
210     HRESULT (*value)(DispatchEx*,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
211     HRESULT (*get_dispid)(DispatchEx*,BSTR,DWORD,DISPID*);
212     HRESULT (*invoke)(DispatchEx*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
213     HRESULT (*populate_props)(DispatchEx*);
214 } dispex_static_data_vtbl_t;
215
216 typedef struct {
217     const dispex_static_data_vtbl_t *vtbl;
218     const tid_t disp_tid;
219     dispex_data_t *data;
220     const tid_t* const iface_tids;
221 } dispex_static_data_t;
222
223 struct DispatchEx {
224     IDispatchEx IDispatchEx_iface;
225
226     IUnknown *outer;
227
228     dispex_static_data_t *data;
229     dispex_dynamic_data_t *dynamic_data;
230 };
231
232 typedef struct {
233     void *x;
234 } nsCycleCollectingAutoRefCnt;
235
236 typedef struct {
237     void *x[9];
238 } nsXPCOMCycleCollectionParticipant;
239
240 typedef struct nsCycleCollectionTraversalCallback nsCycleCollectionTraversalCallback;
241
242 typedef struct {
243     void (NSAPI *unmark_if_purple)(void*);
244     nsresult (NSAPI *traverse)(void*,void*,nsCycleCollectionTraversalCallback*);
245     nsresult (NSAPI *unlink)(void*);
246 } CCObjCallback;
247
248 DEFINE_GUID(IID_nsXPCOMCycleCollectionParticipant, 0x9674489b,0x1f6f,0x4550,0xa7,0x30, 0xcc,0xae,0xdd,0x10,0x4c,0xf9);
249
250 nsrefcnt (__cdecl *ccref_incr)(nsCycleCollectingAutoRefCnt*,nsISupports*);
251 nsrefcnt (__cdecl *ccref_decr)(nsCycleCollectingAutoRefCnt*,nsISupports*);
252 void (__cdecl *ccref_init)(nsCycleCollectingAutoRefCnt*,nsrefcnt);
253 void (__cdecl *ccref_unmark_if_purple)(nsCycleCollectingAutoRefCnt*);
254 void (__cdecl *ccp_init)(nsXPCOMCycleCollectionParticipant*,const CCObjCallback*);
255 void (__cdecl *describe_cc_node)(nsCycleCollectingAutoRefCnt*,size_t,const char*,nsCycleCollectionTraversalCallback*);
256 void (__cdecl *note_cc_edge)(nsISupports*,const char*,nsCycleCollectionTraversalCallback*);
257
258 void init_dispex(DispatchEx*,IUnknown*,dispex_static_data_t*) DECLSPEC_HIDDEN;
259 void release_dispex(DispatchEx*) DECLSPEC_HIDDEN;
260 BOOL dispex_query_interface(DispatchEx*,REFIID,void**) DECLSPEC_HIDDEN;
261 HRESULT dispex_get_dprop_ref(DispatchEx*,const WCHAR*,BOOL,VARIANT**) DECLSPEC_HIDDEN;
262 HRESULT get_dispids(tid_t,DWORD*,DISPID**) DECLSPEC_HIDDEN;
263 HRESULT remove_prop(DispatchEx*,BSTR,VARIANT_BOOL*) DECLSPEC_HIDDEN;
264 HRESULT dispex_get_dynid(DispatchEx*,const WCHAR*,DISPID*) DECLSPEC_HIDDEN;
265 void dispex_traverse(DispatchEx*,nsCycleCollectionTraversalCallback*) DECLSPEC_HIDDEN;
266 void dispex_unlink(DispatchEx*) DECLSPEC_HIDDEN;
267 void release_typelib(void) DECLSPEC_HIDDEN;
268 HRESULT get_htmldoc_classinfo(ITypeInfo **typeinfo) DECLSPEC_HIDDEN;
269
270 typedef enum {
271     DISPEXPROP_CUSTOM,
272     DISPEXPROP_DYNAMIC,
273     DISPEXPROP_BUILTIN
274 } dispex_prop_type_t;
275
276 dispex_prop_type_t get_dispid_type(DISPID) DECLSPEC_HIDDEN;
277
278 typedef struct HTMLWindow HTMLWindow;
279 typedef struct HTMLInnerWindow HTMLInnerWindow;
280 typedef struct HTMLOuterWindow HTMLOuterWindow;
281 typedef struct HTMLDocumentNode HTMLDocumentNode;
282 typedef struct HTMLDocumentObj HTMLDocumentObj;
283 typedef struct HTMLFrameBase HTMLFrameBase;
284 typedef struct NSContainer NSContainer;
285 typedef struct HTMLAttributeCollection HTMLAttributeCollection;
286
287 typedef enum {
288     SCRIPTMODE_GECKO,
289     SCRIPTMODE_ACTIVESCRIPT
290 } SCRIPTMODE;
291
292 typedef struct ScriptHost ScriptHost;
293
294 typedef enum {
295     GLOBAL_SCRIPTVAR,
296     GLOBAL_ELEMENTVAR,
297     GLOBAL_DISPEXVAR,
298     GLOBAL_FRAMEVAR
299 } global_prop_type_t;
300
301 typedef struct {
302     global_prop_type_t type;
303     WCHAR *name;
304     ScriptHost *script_host;
305     DISPID id;
306 } global_prop_t;
307
308 typedef struct {
309     IHTMLOptionElementFactory IHTMLOptionElementFactory_iface;
310
311     LONG ref;
312
313     HTMLInnerWindow *window;
314 } HTMLOptionElementFactory;
315
316 typedef struct {
317     DispatchEx dispex;
318     IHTMLImageElementFactory IHTMLImageElementFactory_iface;
319
320     LONG ref;
321
322     HTMLInnerWindow *window;
323 } HTMLImageElementFactory;
324
325 struct HTMLLocation {
326     DispatchEx dispex;
327     IHTMLLocation IHTMLLocation_iface;
328
329     LONG ref;
330
331     HTMLInnerWindow *window;
332 };
333
334 typedef struct {
335     HTMLOuterWindow *window;
336     LONG ref;
337 }  windowref_t;
338
339 typedef struct nsChannelBSC nsChannelBSC;
340
341 struct HTMLWindow {
342     IHTMLWindow2       IHTMLWindow2_iface;
343     IHTMLWindow3       IHTMLWindow3_iface;
344     IHTMLWindow4       IHTMLWindow4_iface;
345     IHTMLWindow5       IHTMLWindow5_iface;
346     IHTMLWindow6       IHTMLWindow6_iface;
347     IHTMLPrivateWindow IHTMLPrivateWindow_iface;
348     IDispatchEx        IDispatchEx_iface;
349     IServiceProvider   IServiceProvider_iface;
350     ITravelLogClient   ITravelLogClient_iface;
351
352     LONG ref;
353
354     HTMLInnerWindow *inner_window;
355     HTMLOuterWindow *outer_window;
356 };
357
358 struct HTMLOuterWindow {
359     HTMLWindow base;
360
361     windowref_t *window_ref;
362     LONG task_magic;
363
364     HTMLDocumentObj *doc_obj;
365     nsIDOMWindow *nswindow;
366     HTMLOuterWindow *parent;
367     HTMLFrameBase *frame_element;
368     READYSTATE readystate;
369
370     HTMLInnerWindow *pending_window;
371     IMoniker *mon;
372     IUri *uri;
373     BSTR url;
374
375     SCRIPTMODE scriptmode;
376
377     IInternetSecurityManager *secmgr;
378
379     struct list children;
380     struct list sibling_entry;
381     struct list entry;
382 };
383
384 struct HTMLInnerWindow {
385     HTMLWindow base;
386     DispatchEx dispex;
387
388     HTMLDocumentNode *doc;
389
390     struct list script_hosts;
391
392     IHTMLEventObj *event;
393
394     HTMLImageElementFactory *image_factory;
395     HTMLOptionElementFactory *option_factory;
396     IHTMLScreen *screen;
397     IOmHistory *history;
398     IHTMLStorage *session_storage;
399
400     global_prop_t *global_props;
401     DWORD global_prop_cnt;
402     DWORD global_prop_size;
403
404     LONG task_magic;
405
406     HTMLLocation *location;
407
408     IMoniker *mon;
409     nsChannelBSC *bscallback;
410     struct list bindings;
411 };
412
413 typedef enum {
414     UNKNOWN_USERMODE,
415     BROWSEMODE,
416     EDITMODE        
417 } USERMODE;
418
419 typedef struct _cp_static_data_t {
420     tid_t tid;
421     void (*on_advise)(IUnknown*,struct _cp_static_data_t*);
422     DWORD id_cnt;
423     DISPID *ids;
424 } cp_static_data_t;
425
426 typedef struct ConnectionPointContainer {
427     IConnectionPointContainer IConnectionPointContainer_iface;
428
429     ConnectionPoint *cp_list;
430     IUnknown *outer;
431     struct ConnectionPointContainer *forward_container;
432 } ConnectionPointContainer;
433
434 struct ConnectionPoint {
435     IConnectionPoint IConnectionPoint_iface;
436
437     ConnectionPointContainer *container;
438
439     union {
440         IUnknown *unk;
441         IDispatch *disp;
442         IPropertyNotifySink *propnotif;
443     } *sinks;
444     DWORD sinks_size;
445
446     const IID *iid;
447     cp_static_data_t *data;
448
449     ConnectionPoint *next;
450 };
451
452 struct HTMLDocument {
453     IHTMLDocument2              IHTMLDocument2_iface;
454     IHTMLDocument3              IHTMLDocument3_iface;
455     IHTMLDocument4              IHTMLDocument4_iface;
456     IHTMLDocument5              IHTMLDocument5_iface;
457     IHTMLDocument6              IHTMLDocument6_iface;
458     IPersistMoniker             IPersistMoniker_iface;
459     IPersistFile                IPersistFile_iface;
460     IPersistHistory             IPersistHistory_iface;
461     IMonikerProp                IMonikerProp_iface;
462     IOleObject                  IOleObject_iface;
463     IOleDocument                IOleDocument_iface;
464     IOleDocumentView            IOleDocumentView_iface;
465     IOleInPlaceActiveObject     IOleInPlaceActiveObject_iface;
466     IViewObjectEx               IViewObjectEx_iface;
467     IOleInPlaceObjectWindowless IOleInPlaceObjectWindowless_iface;
468     IServiceProvider            IServiceProvider_iface;
469     IOleCommandTarget           IOleCommandTarget_iface;
470     IOleControl                 IOleControl_iface;
471     IHlinkTarget                IHlinkTarget_iface;
472     IPersistStreamInit          IPersistStreamInit_iface;
473     IDispatchEx                 IDispatchEx_iface;
474     ISupportErrorInfo           ISupportErrorInfo_iface;
475     IObjectWithSite             IObjectWithSite_iface;
476     IOleContainer               IOleContainer_iface;
477     IObjectSafety               IObjectSafety_iface;
478     IProvideClassInfo           IProvideClassInfo_iface;
479
480     IUnknown *unk_impl;
481     IDispatchEx *dispex;
482
483     HTMLDocumentObj *doc_obj;
484     HTMLDocumentNode *doc_node;
485
486     HTMLOuterWindow *window;
487
488     LONG task_magic;
489
490     ConnectionPointContainer cp_container;
491     ConnectionPoint cp_htmldocevents;
492     ConnectionPoint cp_htmldocevents2;
493     ConnectionPoint cp_propnotif;
494     ConnectionPoint cp_dispatch;
495
496     IOleAdviseHolder *advise_holder;
497 };
498
499 static inline HRESULT htmldoc_query_interface(HTMLDocument *This, REFIID riid, void **ppv)
500 {
501     return IUnknown_QueryInterface(This->unk_impl, riid, ppv);
502 }
503
504 static inline ULONG htmldoc_addref(HTMLDocument *This)
505 {
506     return IUnknown_AddRef(This->unk_impl);
507 }
508
509 static inline ULONG htmldoc_release(HTMLDocument *This)
510 {
511     return IUnknown_Release(This->unk_impl);
512 }
513
514 struct HTMLDocumentObj {
515     HTMLDocument basedoc;
516     DispatchEx dispex;
517     ICustomDoc ICustomDoc_iface;
518     ITargetContainer ITargetContainer_iface;
519
520     IWindowForBindingUI IWindowForBindingUI_iface;
521
522     LONG ref;
523
524     NSContainer *nscontainer;
525
526     IOleClientSite *client;
527     IDocHostUIHandler *hostui;
528     BOOL custom_hostui;
529     IOleInPlaceSite *ipsite;
530     IOleInPlaceFrame *frame;
531     IOleInPlaceUIWindow *ip_window;
532     IAdviseSink *view_sink;
533     IDocObjectService *doc_object_service;
534
535     DOCHOSTUIINFO hostinfo;
536
537     IOleUndoManager *undomgr;
538
539     HWND hwnd;
540     HWND tooltips_hwnd;
541
542     BOOL request_uiactivate;
543     BOOL in_place_active;
544     BOOL ui_active;
545     BOOL window_active;
546     BOOL hostui_setup;
547     BOOL is_webbrowser;
548     BOOL container_locked;
549     BOOL focus;
550     BOOL has_popup;
551     INT download_state;
552
553     USERMODE usermode;
554     LPWSTR mime;
555
556     DWORD update;
557 };
558
559 typedef struct nsWeakReference nsWeakReference;
560
561 struct NSContainer {
562     nsIWebBrowserChrome      nsIWebBrowserChrome_iface;
563     nsIContextMenuListener   nsIContextMenuListener_iface;
564     nsIURIContentListener    nsIURIContentListener_iface;
565     nsIEmbeddingSiteWindow   nsIEmbeddingSiteWindow_iface;
566     nsITooltipListener       nsITooltipListener_iface;
567     nsIInterfaceRequestor    nsIInterfaceRequestor_iface;
568     nsISupportsWeakReference nsISupportsWeakReference_iface;
569
570     nsIWebBrowser *webbrowser;
571     nsIWebNavigation *navigation;
572     nsIBaseWindow *window;
573     nsIWebBrowserFocus *focus;
574
575     nsIEditor *editor;
576     nsIController *editor_controller;
577
578     LONG ref;
579
580     nsWeakReference *weak_reference;
581
582     NSContainer *parent;
583     HTMLDocumentObj *doc;
584
585     nsIURIContentListener *content_listener;
586
587     HWND hwnd;
588 };
589
590 typedef struct {
591     HRESULT (*qi)(HTMLDOMNode*,REFIID,void**);
592     void (*destructor)(HTMLDOMNode*);
593     HRESULT (*clone)(HTMLDOMNode*,nsIDOMNode*,HTMLDOMNode**);
594     HRESULT (*handle_event)(HTMLDOMNode*,DWORD,nsIDOMEvent*,BOOL*);
595     HRESULT (*get_attr_col)(HTMLDOMNode*,HTMLAttributeCollection**);
596     event_target_t **(*get_event_target)(HTMLDOMNode*);
597     HRESULT (*fire_event)(HTMLDOMNode*,DWORD,BOOL*);
598     HRESULT (*put_disabled)(HTMLDOMNode*,VARIANT_BOOL);
599     HRESULT (*get_disabled)(HTMLDOMNode*,VARIANT_BOOL*);
600     HRESULT (*get_document)(HTMLDOMNode*,IDispatch**);
601     HRESULT (*get_readystate)(HTMLDOMNode*,BSTR*);
602     HRESULT (*get_dispid)(HTMLDOMNode*,BSTR,DWORD,DISPID*);
603     HRESULT (*invoke)(HTMLDOMNode*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
604     HRESULT (*bind_to_tree)(HTMLDOMNode*);
605     void (*traverse)(HTMLDOMNode*,nsCycleCollectionTraversalCallback*);
606     void (*unlink)(HTMLDOMNode*);
607 } NodeImplVtbl;
608
609 struct HTMLDOMNode {
610     DispatchEx dispex;
611     IHTMLDOMNode  IHTMLDOMNode_iface;
612     IHTMLDOMNode2 IHTMLDOMNode2_iface;
613     const NodeImplVtbl *vtbl;
614
615     nsCycleCollectingAutoRefCnt ccref;
616
617     nsIDOMNode *nsnode;
618     HTMLDocumentNode *doc;
619     event_target_t *event_target;
620     ConnectionPointContainer *cp_container;
621 };
622
623 static inline void node_addref(HTMLDOMNode *node)
624 {
625     IHTMLDOMNode_AddRef(&node->IHTMLDOMNode_iface);
626 }
627
628 static inline void node_release(HTMLDOMNode *node)
629 {
630     IHTMLDOMNode_Release(&node->IHTMLDOMNode_iface);
631 }
632
633 typedef struct {
634     HTMLDOMNode node;
635     ConnectionPointContainer cp_container;
636
637     IHTMLElement  IHTMLElement_iface;
638     IHTMLElement2 IHTMLElement2_iface;
639     IHTMLElement3 IHTMLElement3_iface;
640     IHTMLElement4 IHTMLElement4_iface;
641
642     nsIDOMHTMLElement *nselem;
643     HTMLStyle *style;
644     HTMLStyle *runtime_style;
645     HTMLAttributeCollection *attrs;
646     WCHAR *filter;
647 } HTMLElement;
648
649 #define HTMLELEMENT_TIDS    \
650     IHTMLDOMNode_tid,       \
651     IHTMLDOMNode2_tid,      \
652     IHTMLElement_tid,       \
653     IHTMLElement2_tid,      \
654     IHTMLElement3_tid,      \
655     IHTMLElement4_tid
656
657 typedef struct {
658     HTMLElement element;
659
660     IHTMLTextContainer IHTMLTextContainer_iface;
661
662     ConnectionPoint cp;
663 } HTMLTextContainer;
664
665 struct HTMLFrameBase {
666     HTMLElement element;
667
668     IHTMLFrameBase  IHTMLFrameBase_iface;
669     IHTMLFrameBase2 IHTMLFrameBase2_iface;
670
671     HTMLOuterWindow *content_window;
672
673     nsIDOMHTMLFrameElement *nsframe;
674     nsIDOMHTMLIFrameElement *nsiframe;
675 };
676
677 typedef struct nsDocumentEventListener nsDocumentEventListener;
678
679 struct HTMLDocumentNode {
680     HTMLDOMNode node;
681     HTMLDocument basedoc;
682
683     IInternetHostSecurityManager IInternetHostSecurityManager_iface;
684
685     nsIDocumentObserver          nsIDocumentObserver_iface;
686
687     LONG ref;
688
689     HTMLInnerWindow *window;
690
691     nsIDOMHTMLDocument *nsdoc;
692     nsIDOMNodeSelector *nsnode_selector;
693     BOOL content_ready;
694     event_target_t *body_event_target;
695
696     ICatInformation *catmgr;
697     nsDocumentEventListener *nsevent_listener;
698     BOOL *event_vector;
699
700     WCHAR **elem_vars;
701     unsigned elem_vars_size;
702     unsigned elem_vars_cnt;
703
704     BOOL skip_mutation_notif;
705
706     struct list selection_list;
707     struct list range_list;
708     struct list plugin_hosts;
709 };
710
711 HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
712 HRESULT HTMLLoadOptions_Create(IUnknown*,REFIID,void**) DECLSPEC_HIDDEN;
713 HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument*,HTMLDocumentObj*,HTMLInnerWindow*,HTMLDocumentNode**) DECLSPEC_HIDDEN;
714 HRESULT create_document_fragment(nsIDOMNode*,HTMLDocumentNode*,HTMLDocumentNode**) DECLSPEC_HIDDEN;
715
716 HRESULT HTMLOuterWindow_Create(HTMLDocumentObj*,nsIDOMWindow*,HTMLOuterWindow*,HTMLOuterWindow**) DECLSPEC_HIDDEN;
717 HRESULT update_window_doc(HTMLInnerWindow*) DECLSPEC_HIDDEN;
718 HTMLOuterWindow *nswindow_to_window(const nsIDOMWindow*) DECLSPEC_HIDDEN;
719 void get_top_window(HTMLOuterWindow*,HTMLOuterWindow**) DECLSPEC_HIDDEN;
720 HRESULT HTMLOptionElementFactory_Create(HTMLInnerWindow*,HTMLOptionElementFactory**) DECLSPEC_HIDDEN;
721 HRESULT HTMLImageElementFactory_Create(HTMLInnerWindow*,HTMLImageElementFactory**) DECLSPEC_HIDDEN;
722 HRESULT HTMLLocation_Create(HTMLInnerWindow*,HTMLLocation**) DECLSPEC_HIDDEN;
723 IOmNavigator *OmNavigator_Create(void) DECLSPEC_HIDDEN;
724 HRESULT HTMLScreen_Create(IHTMLScreen**) DECLSPEC_HIDDEN;
725 HRESULT create_history(IOmHistory**) DECLSPEC_HIDDEN;
726
727 HRESULT create_storage(IHTMLStorage**) DECLSPEC_HIDDEN;
728
729 void HTMLDocument_HTMLDocument3_Init(HTMLDocument*) DECLSPEC_HIDDEN;
730 void HTMLDocument_HTMLDocument5_Init(HTMLDocument*) DECLSPEC_HIDDEN;
731 void HTMLDocument_Persist_Init(HTMLDocument*) DECLSPEC_HIDDEN;
732 void HTMLDocument_OleCmd_Init(HTMLDocument*) DECLSPEC_HIDDEN;
733 void HTMLDocument_OleObj_Init(HTMLDocument*) DECLSPEC_HIDDEN;
734 void HTMLDocument_View_Init(HTMLDocument*) DECLSPEC_HIDDEN;
735 void HTMLDocument_Window_Init(HTMLDocument*) DECLSPEC_HIDDEN;
736 void HTMLDocument_Service_Init(HTMLDocument*) DECLSPEC_HIDDEN;
737 void HTMLDocument_Hlink_Init(HTMLDocument*) DECLSPEC_HIDDEN;
738
739 void TargetContainer_Init(HTMLDocumentObj*) DECLSPEC_HIDDEN;
740 void init_binding_ui(HTMLDocumentObj*) DECLSPEC_HIDDEN;
741
742 void HTMLDocumentNode_SecMgr_Init(HTMLDocumentNode*) DECLSPEC_HIDDEN;
743
744 typedef struct {
745     HTMLElement element;
746
747     IHTMLScriptElement IHTMLScriptElement_iface;
748
749     nsIDOMHTMLScriptElement *nsscript;
750     BOOL parsed;
751 } HTMLScriptElement;
752
753 HRESULT script_elem_from_nsscript(HTMLDocumentNode*,nsIDOMHTMLScriptElement*,HTMLScriptElement**) DECLSPEC_HIDDEN;
754 void bind_event_scripts(HTMLDocumentNode*) DECLSPEC_HIDDEN;
755
756 HRESULT HTMLCurrentStyle_Create(HTMLElement*,IHTMLCurrentStyle**) DECLSPEC_HIDDEN;
757
758 void ConnectionPoint_Init(ConnectionPoint*,ConnectionPointContainer*,REFIID,cp_static_data_t*) DECLSPEC_HIDDEN;
759 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*) DECLSPEC_HIDDEN;
760 void ConnectionPointContainer_Destroy(ConnectionPointContainer*) DECLSPEC_HIDDEN;
761
762 HRESULT create_nscontainer(HTMLDocumentObj*,NSContainer**) DECLSPEC_HIDDEN;
763 void NSContainer_Release(NSContainer*) DECLSPEC_HIDDEN;
764
765 void init_mutation(nsIComponentManager*) DECLSPEC_HIDDEN;
766 void init_document_mutation(HTMLDocumentNode*) DECLSPEC_HIDDEN;
767 void release_document_mutation(HTMLDocumentNode*) DECLSPEC_HIDDEN;
768
769 void HTMLDocument_LockContainer(HTMLDocumentObj*,BOOL) DECLSPEC_HIDDEN;
770 void show_context_menu(HTMLDocumentObj*,DWORD,POINT*,IDispatch*) DECLSPEC_HIDDEN;
771 void notif_focus(HTMLDocumentObj*) DECLSPEC_HIDDEN;
772
773 void show_tooltip(HTMLDocumentObj*,DWORD,DWORD,LPCWSTR) DECLSPEC_HIDDEN;
774 void hide_tooltip(HTMLDocumentObj*) DECLSPEC_HIDDEN;
775 HRESULT get_client_disp_property(IOleClientSite*,DISPID,VARIANT*) DECLSPEC_HIDDEN;
776
777 HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**) DECLSPEC_HIDDEN;
778
779 BOOL load_gecko(void) DECLSPEC_HIDDEN;
780 void close_gecko(void) DECLSPEC_HIDDEN;
781 void register_nsservice(nsIComponentRegistrar*,nsIServiceManager*) DECLSPEC_HIDDEN;
782 void init_nsio(nsIComponentManager*,nsIComponentRegistrar*) DECLSPEC_HIDDEN;
783 void release_nsio(void) DECLSPEC_HIDDEN;
784 BOOL is_gecko_path(const char*) DECLSPEC_HIDDEN;
785
786 void init_node_cc(void);
787
788 HRESULT nsuri_to_url(LPCWSTR,BOOL,BSTR*) DECLSPEC_HIDDEN;
789 BOOL compare_ignoring_frag(IUri*,IUri*) DECLSPEC_HIDDEN;
790
791 HRESULT navigate_url(HTMLOuterWindow*,const WCHAR*,IUri*) DECLSPEC_HIDDEN;
792 HRESULT set_frame_doc(HTMLFrameBase*,nsIDOMDocument*) DECLSPEC_HIDDEN;
793
794 void call_property_onchanged(ConnectionPoint*,DISPID) DECLSPEC_HIDDEN;
795 HRESULT call_set_active_object(IOleInPlaceUIWindow*,IOleInPlaceActiveObject*) DECLSPEC_HIDDEN;
796
797 void *nsalloc(size_t) __WINE_ALLOC_SIZE(1) DECLSPEC_HIDDEN;
798 void nsfree(void*) DECLSPEC_HIDDEN;
799
800 void nsACString_InitDepend(nsACString*,const char*) DECLSPEC_HIDDEN;
801 void nsACString_SetData(nsACString*,const char*) DECLSPEC_HIDDEN;
802 PRUint32 nsACString_GetData(const nsACString*,const char**) DECLSPEC_HIDDEN;
803 void nsACString_Finish(nsACString*) DECLSPEC_HIDDEN;
804
805 BOOL nsAString_Init(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
806 void nsAString_InitDepend(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
807 void nsAString_SetData(nsAString*,const PRUnichar*) DECLSPEC_HIDDEN;
808 PRUint32 nsAString_GetData(const nsAString*,const PRUnichar**) DECLSPEC_HIDDEN;
809 void nsAString_Finish(nsAString*) DECLSPEC_HIDDEN;
810 HRESULT return_nsstr(nsresult,nsAString*,BSTR*) DECLSPEC_HIDDEN;
811
812 nsICommandParams *create_nscommand_params(void) DECLSPEC_HIDDEN;
813 HRESULT nsnode_to_nsstring(nsIDOMNode*,nsAString*) DECLSPEC_HIDDEN;
814 void get_editor_controller(NSContainer*) DECLSPEC_HIDDEN;
815 nsresult get_nsinterface(nsISupports*,REFIID,void**) DECLSPEC_HIDDEN;
816 nsIWritableVariant *create_nsvariant(void) DECLSPEC_HIDDEN;
817 nsresult create_nsfile(const PRUnichar*,nsIFile**) DECLSPEC_HIDDEN;
818
819 HRESULT create_pending_window(HTMLOuterWindow*,nsChannelBSC*) DECLSPEC_HIDDEN;
820 void set_current_mon(HTMLOuterWindow*,IMoniker*) DECLSPEC_HIDDEN;
821 void set_current_uri(HTMLOuterWindow*,IUri*) DECLSPEC_HIDDEN;
822 HRESULT start_binding(HTMLInnerWindow*,BSCallback*,IBindCtx*) DECLSPEC_HIDDEN;
823 HRESULT async_start_doc_binding(HTMLOuterWindow*,HTMLInnerWindow*) DECLSPEC_HIDDEN;
824 void abort_window_bindings(HTMLInnerWindow*) DECLSPEC_HIDDEN;
825 void set_download_state(HTMLDocumentObj*,int) DECLSPEC_HIDDEN;
826 void call_docview_84(HTMLDocumentObj*) DECLSPEC_HIDDEN;
827
828 void set_ready_state(HTMLOuterWindow*,READYSTATE) DECLSPEC_HIDDEN;
829
830 HRESULT HTMLSelectionObject_Create(HTMLDocumentNode*,nsISelection*,IHTMLSelectionObject**) DECLSPEC_HIDDEN;
831 HRESULT HTMLTxtRange_Create(HTMLDocumentNode*,nsIDOMRange*,IHTMLTxtRange**) DECLSPEC_HIDDEN;
832 IHTMLStyleSheet *HTMLStyleSheet_Create(nsIDOMStyleSheet*) DECLSPEC_HIDDEN;
833 IHTMLStyleSheetsCollection *HTMLStyleSheetsCollection_Create(nsIDOMStyleSheetList*) DECLSPEC_HIDDEN;
834
835 void detach_selection(HTMLDocumentNode*) DECLSPEC_HIDDEN;
836 void detach_ranges(HTMLDocumentNode*) DECLSPEC_HIDDEN;
837 HRESULT get_node_text(HTMLDOMNode*,BSTR*) DECLSPEC_HIDDEN;
838 HRESULT replace_node_by_html(nsIDOMHTMLDocument*,nsIDOMNode*,const WCHAR*) DECLSPEC_HIDDEN;
839
840 HRESULT create_nselem(HTMLDocumentNode*,const WCHAR*,nsIDOMHTMLElement**) DECLSPEC_HIDDEN;
841
842 HRESULT HTMLDOMTextNode_Create(HTMLDocumentNode*,nsIDOMNode*,HTMLDOMNode**) DECLSPEC_HIDDEN;
843
844 struct HTMLAttributeCollection {
845     DispatchEx dispex;
846     IHTMLAttributeCollection IHTMLAttributeCollection_iface;
847     IHTMLAttributeCollection2 IHTMLAttributeCollection2_iface;
848     IHTMLAttributeCollection3 IHTMLAttributeCollection3_iface;
849
850     LONG ref;
851
852     HTMLElement *elem;
853     struct list attrs;
854 };
855
856 typedef struct {
857     DispatchEx dispex;
858     IHTMLDOMAttribute IHTMLDOMAttribute_iface;
859
860     LONG ref;
861
862     DISPID dispid;
863     HTMLElement *elem;
864     struct list entry;
865 } HTMLDOMAttribute;
866
867 HRESULT HTMLDOMAttribute_Create(HTMLElement*,DISPID,HTMLDOMAttribute**) DECLSPEC_HIDDEN;
868
869 HRESULT HTMLElement_Create(HTMLDocumentNode*,nsIDOMNode*,BOOL,HTMLElement**) DECLSPEC_HIDDEN;
870 HRESULT HTMLCommentElement_Create(HTMLDocumentNode*,nsIDOMNode*,HTMLElement**) DECLSPEC_HIDDEN;
871 HRESULT HTMLAnchorElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
872 HRESULT HTMLBodyElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
873 HRESULT HTMLEmbedElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
874 HRESULT HTMLFormElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
875 HRESULT HTMLFrameElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
876 HRESULT HTMLHeadElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
877 HRESULT HTMLIFrame_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
878 HRESULT HTMLStyleElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
879 HRESULT HTMLImgElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
880 HRESULT HTMLInputElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
881 HRESULT HTMLMetaElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
882 HRESULT HTMLObjectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
883 HRESULT HTMLOptionElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
884 HRESULT HTMLScriptElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
885 HRESULT HTMLSelectElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
886 HRESULT HTMLTable_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
887 HRESULT HTMLTableCell_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
888 HRESULT HTMLTableRow_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
889 HRESULT HTMLTextAreaElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
890 HRESULT HTMLTitleElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
891 HRESULT HTMLGenericElement_Create(HTMLDocumentNode*,nsIDOMHTMLElement*,HTMLElement**) DECLSPEC_HIDDEN;
892
893 void HTMLDOMNode_Init(HTMLDocumentNode*,HTMLDOMNode*,nsIDOMNode*) DECLSPEC_HIDDEN;
894 void HTMLElement_Init(HTMLElement*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
895 void HTMLElement2_Init(HTMLElement*) DECLSPEC_HIDDEN;
896 void HTMLElement3_Init(HTMLElement*) DECLSPEC_HIDDEN;
897 void HTMLTextContainer_Init(HTMLTextContainer*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
898 void HTMLFrameBase_Init(HTMLFrameBase*,HTMLDocumentNode*,nsIDOMHTMLElement*,dispex_static_data_t*) DECLSPEC_HIDDEN;
899
900 HRESULT HTMLDOMNode_QI(HTMLDOMNode*,REFIID,void**) DECLSPEC_HIDDEN;
901 void HTMLDOMNode_destructor(HTMLDOMNode*) DECLSPEC_HIDDEN;
902
903 HRESULT HTMLElement_QI(HTMLDOMNode*,REFIID,void**) DECLSPEC_HIDDEN;
904 void HTMLElement_destructor(HTMLDOMNode*) DECLSPEC_HIDDEN;
905 HRESULT HTMLElement_clone(HTMLDOMNode*,nsIDOMNode*,HTMLDOMNode**) DECLSPEC_HIDDEN;
906 HRESULT HTMLElement_get_attr_col(HTMLDOMNode*,HTMLAttributeCollection**) DECLSPEC_HIDDEN;
907 HRESULT HTMLElement_handle_event(HTMLDOMNode*,DWORD,nsIDOMEvent*,BOOL*) DECLSPEC_HIDDEN;
908
909 HRESULT HTMLFrameBase_QI(HTMLFrameBase*,REFIID,void**) DECLSPEC_HIDDEN;
910 void HTMLFrameBase_destructor(HTMLFrameBase*) DECLSPEC_HIDDEN;
911
912 HRESULT get_node(HTMLDocumentNode*,nsIDOMNode*,BOOL,HTMLDOMNode**) DECLSPEC_HIDDEN;
913 HRESULT get_elem(HTMLDocumentNode*,nsIDOMElement*,HTMLElement**) DECLSPEC_HIDDEN;
914
915 HTMLElement *unsafe_impl_from_IHTMLElement(IHTMLElement*) DECLSPEC_HIDDEN;
916
917 void release_script_hosts(HTMLInnerWindow*) DECLSPEC_HIDDEN;
918 void connect_scripts(HTMLInnerWindow*) DECLSPEC_HIDDEN;
919 void doc_insert_script(HTMLInnerWindow*,HTMLScriptElement*) DECLSPEC_HIDDEN;
920 IDispatch *script_parse_event(HTMLInnerWindow*,LPCWSTR) DECLSPEC_HIDDEN;
921 HRESULT exec_script(HTMLInnerWindow*,const WCHAR*,const WCHAR*,VARIANT*) DECLSPEC_HIDDEN;
922 void set_script_mode(HTMLOuterWindow*,SCRIPTMODE) DECLSPEC_HIDDEN;
923 BOOL find_global_prop(HTMLInnerWindow*,BSTR,DWORD,ScriptHost**,DISPID*) DECLSPEC_HIDDEN;
924 IDispatch *get_script_disp(ScriptHost*) DECLSPEC_HIDDEN;
925 HRESULT search_window_props(HTMLInnerWindow*,BSTR,DWORD,DISPID*) DECLSPEC_HIDDEN;
926 HRESULT get_frame_by_name(HTMLOuterWindow*,const WCHAR*,BOOL,HTMLOuterWindow**) DECLSPEC_HIDDEN;
927 HRESULT get_doc_elem_by_id(HTMLDocumentNode*,const WCHAR*,HTMLElement**) DECLSPEC_HIDDEN;
928
929 HRESULT wrap_iface(IUnknown*,IUnknown*,IUnknown**) DECLSPEC_HIDDEN;
930
931 IHTMLElementCollection *create_all_collection(HTMLDOMNode*,BOOL) DECLSPEC_HIDDEN;
932 IHTMLElementCollection *create_collection_from_nodelist(HTMLDocumentNode*,nsIDOMNodeList*) DECLSPEC_HIDDEN;
933 IHTMLElementCollection *create_collection_from_htmlcol(HTMLDocumentNode*,nsIDOMHTMLCollection*) DECLSPEC_HIDDEN;
934
935 /* commands */
936 typedef struct {
937     DWORD id;
938     HRESULT (*query)(HTMLDocument*,OLECMD*);
939     HRESULT (*exec)(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
940 } cmdtable_t;
941
942 extern const cmdtable_t editmode_cmds[] DECLSPEC_HIDDEN;
943
944 void do_ns_command(HTMLDocument*,const char*,nsICommandParams*) DECLSPEC_HIDDEN;
945
946 /* timer */
947 #define UPDATE_UI       0x0001
948 #define UPDATE_TITLE    0x0002
949
950 void update_doc(HTMLDocument*,DWORD) DECLSPEC_HIDDEN;
951 void update_title(HTMLDocumentObj*) DECLSPEC_HIDDEN;
952
953 HRESULT do_query_service(IUnknown*,REFGUID,REFIID,void**) DECLSPEC_HIDDEN;
954
955 /* editor */
956 void init_editor(HTMLDocument*) DECLSPEC_HIDDEN;
957 void handle_edit_event(HTMLDocument*,nsIDOMEvent*) DECLSPEC_HIDDEN;
958 HRESULT editor_exec_copy(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
959 HRESULT editor_exec_cut(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
960 HRESULT editor_exec_paste(HTMLDocument*,DWORD,VARIANT*,VARIANT*) DECLSPEC_HIDDEN;
961 void handle_edit_load(HTMLDocument*) DECLSPEC_HIDDEN;
962 HRESULT editor_is_dirty(HTMLDocument*) DECLSPEC_HIDDEN;
963 void set_dirty(HTMLDocument*,VARIANT_BOOL) DECLSPEC_HIDDEN;
964
965 extern DWORD mshtml_tls DECLSPEC_HIDDEN;
966
967 typedef struct task_t task_t;
968 typedef void (*task_proc_t)(task_t*);
969
970 struct task_t {
971     LONG target_magic;
972     task_proc_t proc;
973     task_proc_t destr;
974     struct task_t *next;
975 };
976
977 typedef struct {
978     task_t header;
979     HTMLDocumentObj *doc;
980 } docobj_task_t;
981
982 typedef struct {
983     HWND thread_hwnd;
984     task_t *task_queue_head;
985     task_t *task_queue_tail;
986     struct list timer_list;
987 } thread_data_t;
988
989 thread_data_t *get_thread_data(BOOL) DECLSPEC_HIDDEN;
990 HWND get_thread_hwnd(void) DECLSPEC_HIDDEN;
991
992 LONG get_task_target_magic(void) DECLSPEC_HIDDEN;
993 void push_task(task_t*,task_proc_t,task_proc_t,LONG) DECLSPEC_HIDDEN;
994 void remove_target_tasks(LONG) DECLSPEC_HIDDEN;
995
996 DWORD set_task_timer(HTMLDocument*,DWORD,BOOL,IDispatch*) DECLSPEC_HIDDEN;
997 HRESULT clear_task_timer(HTMLDocument*,BOOL,DWORD) DECLSPEC_HIDDEN;
998
999 const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
1000
1001 DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
1002 DEFINE_GUID(CLSID_JSProtocol, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
1003 DEFINE_GUID(CLSID_MailtoProtocol, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
1004 DEFINE_GUID(CLSID_ResProtocol, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
1005 DEFINE_GUID(CLSID_SysimageProtocol, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
1006
1007 DEFINE_GUID(CLSID_CMarkup,0x3050f4fb,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
1008
1009 DEFINE_OLEGUID(CGID_DocHostCmdPriv, 0x000214D4L, 0, 0);
1010
1011 DEFINE_GUID(CLSID_JScript, 0xf414c260,0x6ac0,0x11cf, 0xb6,0xd1,0x00,0xaa,0x00,0xbb,0xbb,0x58);
1012 DEFINE_GUID(CLSID_VBScript, 0xb54f3741,0x5b07,0x11cf, 0xa4,0xb0,0x00,0xaa,0x00,0x4a,0x55,0xe8);
1013
1014 /* memory allocation functions */
1015
1016 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
1017 {
1018     return HeapAlloc(GetProcessHeap(), 0, len);
1019 }
1020
1021 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
1022 {
1023     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
1024 }
1025
1026 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
1027 {
1028     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
1029 }
1030
1031 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
1032 {
1033     return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
1034 }
1035
1036 static inline BOOL heap_free(void *mem)
1037 {
1038     return HeapFree(GetProcessHeap(), 0, mem);
1039 }
1040
1041 static inline LPWSTR heap_strdupW(LPCWSTR str)
1042 {
1043     LPWSTR ret = NULL;
1044
1045     if(str) {
1046         DWORD size;
1047
1048         size = (strlenW(str)+1)*sizeof(WCHAR);
1049         ret = heap_alloc(size);
1050         memcpy(ret, str, size);
1051     }
1052
1053     return ret;
1054 }
1055
1056 static inline LPWSTR heap_strndupW(LPCWSTR str, unsigned len)
1057 {
1058     LPWSTR ret = NULL;
1059
1060     if(str) {
1061         ret = heap_alloc((len+1)*sizeof(WCHAR));
1062         memcpy(ret, str, len*sizeof(WCHAR));
1063         ret[len] = 0;
1064     }
1065
1066     return ret;
1067 }
1068
1069 static inline char *heap_strdupA(const char *str)
1070 {
1071     char *ret = NULL;
1072
1073     if(str) {
1074         DWORD size;
1075
1076         size = strlen(str)+1;
1077         ret = heap_alloc(size);
1078         memcpy(ret, str, size);
1079     }
1080
1081     return ret;
1082 }
1083
1084 static inline WCHAR *heap_strdupAtoW(const char *str)
1085 {
1086     LPWSTR ret = NULL;
1087
1088     if(str) {
1089         DWORD len;
1090
1091         len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
1092         ret = heap_alloc(len*sizeof(WCHAR));
1093         MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
1094     }
1095
1096     return ret;
1097 }
1098
1099 static inline char *heap_strdupWtoA(LPCWSTR str)
1100 {
1101     char *ret = NULL;
1102
1103     if(str) {
1104         DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
1105         ret = heap_alloc(size);
1106         WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
1107     }
1108
1109     return ret;
1110 }
1111
1112 static inline void windowref_addref(windowref_t *ref)
1113 {
1114     InterlockedIncrement(&ref->ref);
1115 }
1116
1117 static inline void windowref_release(windowref_t *ref)
1118 {
1119     if(!InterlockedDecrement(&ref->ref))
1120         heap_free(ref);
1121 }
1122
1123 HDC get_display_dc(void) DECLSPEC_HIDDEN;
1124 HINSTANCE get_shdoclc(void) DECLSPEC_HIDDEN;
1125 void set_statustext(HTMLDocumentObj*,INT,LPCWSTR) DECLSPEC_HIDDEN;
1126
1127 extern HINSTANCE hInst DECLSPEC_HIDDEN;