oleaut32: Rewrite RollUdate to be easier to change and to support more conversions.
[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 "comcat.h"
22 #include "mshtml.h"
23 #include "mshtmhst.h"
24 #include "hlink.h"
25 #include "perhist.h"
26 #include "dispex.h"
27
28 #include "wine/list.h"
29 #include "wine/unicode.h"
30
31 #ifdef INIT_GUID
32 #include "initguid.h"
33 #endif
34
35 #include "nsiface.h"
36
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)
44
45 #define NS_FAILED(res) ((res) & 0x80000000)
46 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
47
48 #define NSAPI WINAPI
49
50 #define MSHTML_E_NODOC    0x800a025c
51
52 typedef struct HTMLDOMNode HTMLDOMNode;
53 typedef struct ConnectionPoint ConnectionPoint;
54 typedef struct BSCallback BSCallback;
55 typedef struct event_target_t event_target_t;
56
57 /* NOTE: make sure to keep in sync with dispex.c */
58 typedef enum {
59     NULL_tid,
60     DispCEventObj_tid,
61     DispDOMChildrenCollection_tid,
62     DispHTMLAnchorElement_tid,
63     DispHTMLBody_tid,
64     DispHTMLCommentElement_tid,
65     DispHTMLCurrentStyle_tid,
66     DispHTMLDocument_tid,
67     DispHTMLDOMTextNode_tid,
68     DispHTMLElementCollection_tid,
69     DispHTMLFormElement_tid,
70     DispHTMLGenericElement_tid,
71     DispHTMLFrameElement_tid,
72     DispHTMLIFrame_tid,
73     DispHTMLImg_tid,
74     DispHTMLInputElement_tid,
75     DispHTMLLocation_tid,
76     DispHTMLNavigator_tid,
77     DispHTMLOptionElement_tid,
78     DispHTMLScreen_tid,
79     DispHTMLScriptElement_tid,
80     DispHTMLSelectElement_tid,
81     DispHTMLStyle_tid,
82     DispHTMLTable_tid,
83     DispHTMLTableRow_tid,
84     DispHTMLTextAreaElement_tid,
85     DispHTMLUnknownElement_tid,
86     DispHTMLWindow2_tid,
87     HTMLDocumentEvents_tid,
88     IHTMLAnchorElement_tid,
89     IHTMLBodyElement_tid,
90     IHTMLBodyElement2_tid,
91     IHTMLCommentElement_tid,
92     IHTMLCurrentStyle_tid,
93     IHTMLCurrentStyle2_tid,
94     IHTMLCurrentStyle3_tid,
95     IHTMLCurrentStyle4_tid,
96     IHTMLDocument2_tid,
97     IHTMLDocument3_tid,
98     IHTMLDocument4_tid,
99     IHTMLDocument5_tid,
100     IHTMLDOMChildrenCollection_tid,
101     IHTMLDOMNode_tid,
102     IHTMLDOMNode2_tid,
103     IHTMLDOMTextNode_tid,
104     IHTMLElement_tid,
105     IHTMLElement2_tid,
106     IHTMLElement3_tid,
107     IHTMLElement4_tid,
108     IHTMLElementCollection_tid,
109     IHTMLEventObj_tid,
110     IHTMLFiltersCollection_tid,
111     IHTMLFormElement_tid,
112     IHTMLFrameBase_tid,
113     IHTMLFrameBase2_tid,
114     IHTMLFrameElement3_tid,
115     IHTMLGenericElement_tid,
116     IHTMLIFrameElement_tid,
117     IHTMLImageElementFactory_tid,
118     IHTMLImgElement_tid,
119     IHTMLInputElement_tid,
120     IHTMLLocation_tid,
121     IHTMLOptionElement_tid,
122     IHTMLScreen_tid,
123     IHTMLScriptElement_tid,
124     IHTMLSelectElement_tid,
125     IHTMLStyle_tid,
126     IHTMLStyle2_tid,
127     IHTMLStyle3_tid,
128     IHTMLStyle4_tid,
129     IHTMLTable_tid,
130     IHTMLTableRow_tid,
131     IHTMLTextAreaElement_tid,
132     IHTMLTextContainer_tid,
133     IHTMLUniqueName_tid,
134     IHTMLWindow2_tid,
135     IHTMLWindow3_tid,
136     IHTMLWindow4_tid,
137     IOmNavigator_tid,
138     LAST_tid
139 } tid_t;
140
141 typedef struct dispex_data_t dispex_data_t;
142 typedef struct dispex_dynamic_data_t dispex_dynamic_data_t;
143
144 #define MSHTML_DISPID_CUSTOM_MIN 0x60000000
145 #define MSHTML_DISPID_CUSTOM_MAX 0x6fffffff
146
147 typedef struct {
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;
152
153 typedef struct {
154     const dispex_static_data_vtbl_t *vtbl;
155     const tid_t disp_tid;
156     dispex_data_t *data;
157     const tid_t* const iface_tids;
158 } dispex_static_data_t;
159
160 typedef struct {
161     const IDispatchExVtbl  *lpIDispatchExVtbl;
162
163     IUnknown *outer;
164
165     dispex_static_data_t *data;
166     dispex_dynamic_data_t *dynamic_data;
167 } DispatchEx;
168
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**);
174
175 typedef struct HTMLDocumentNode HTMLDocumentNode;
176 typedef struct HTMLDocumentObj HTMLDocumentObj;
177 typedef struct HTMLFrameBase HTMLFrameBase;
178
179 typedef enum {
180     SCRIPTMODE_GECKO,
181     SCRIPTMODE_ACTIVESCRIPT
182 } SCRIPTMODE;
183
184 typedef struct ScriptHost ScriptHost;
185
186 typedef enum {
187     GLOBAL_SCRIPTVAR,
188     GLOBAL_ELEMENTVAR
189 } global_prop_type_t;
190
191 typedef struct {
192     global_prop_type_t type;
193     WCHAR *name;
194     ScriptHost *script_host;
195     DISPID id;
196 } global_prop_t;
197
198 typedef struct {
199     const IHTMLOptionElementFactoryVtbl *lpHTMLOptionElementFactoryVtbl;
200
201     LONG ref;
202
203     HTMLWindow *window;
204 } HTMLOptionElementFactory;
205
206 typedef struct {
207     DispatchEx dispex;
208     const IHTMLImageElementFactoryVtbl *lpHTMLImageElementFactoryVtbl;
209
210     LONG ref;
211
212     HTMLWindow *window;
213 } HTMLImageElementFactory;
214
215 struct HTMLLocation {
216     DispatchEx dispex;
217     const IHTMLLocationVtbl *lpHTMLLocationVtbl;
218
219     LONG ref;
220
221     HTMLWindow *window;
222 };
223
224 typedef struct {
225     HTMLWindow *window;
226     LONG ref;
227 }  windowref_t;
228
229 struct HTMLWindow {
230     DispatchEx dispex;
231     const IHTMLWindow2Vtbl *lpHTMLWindow2Vtbl;
232     const IHTMLWindow3Vtbl *lpHTMLWindow3Vtbl;
233     const IHTMLWindow4Vtbl *lpHTMLWindow4Vtbl;
234     const IDispatchExVtbl  *lpIDispatchExVtbl;
235
236     LONG ref;
237
238     windowref_t *window_ref;
239     LONG task_magic;
240
241     HTMLDocumentNode *doc;
242     HTMLDocumentObj *doc_obj;
243     nsIDOMWindow *nswindow;
244     HTMLWindow *parent;
245     HTMLFrameBase *frame_element;
246     READYSTATE readystate;
247
248     nsChannelBSC *bscallback;
249     IMoniker *mon;
250     LPOLESTR url;
251
252     IHTMLEventObj *event;
253
254     SCRIPTMODE scriptmode;
255     struct list script_hosts;
256
257     HTMLOptionElementFactory *option_factory;
258     HTMLImageElementFactory *image_factory;
259     HTMLLocation *location;
260     IHTMLScreen *screen;
261
262     global_prop_t *global_props;
263     DWORD global_prop_cnt;
264     DWORD global_prop_size;
265
266     struct list children;
267     struct list sibling_entry;
268     struct list entry;
269 };
270
271 typedef enum {
272     UNKNOWN_USERMODE,
273     BROWSEMODE,
274     EDITMODE        
275 } USERMODE;
276
277 typedef struct _cp_static_data_t {
278     tid_t tid;
279     void (*on_advise)(IUnknown*,struct _cp_static_data_t*);
280     DWORD id_cnt;
281     DISPID *ids;
282 } cp_static_data_t;
283
284 typedef struct ConnectionPointContainer {
285     const IConnectionPointContainerVtbl  *lpConnectionPointContainerVtbl;
286
287     ConnectionPoint *cp_list;
288     IUnknown *outer;
289     struct ConnectionPointContainer *forward_container;
290 } ConnectionPointContainer;
291
292 struct ConnectionPoint {
293     const IConnectionPointVtbl *lpConnectionPointVtbl;
294
295     ConnectionPointContainer *container;
296
297     union {
298         IUnknown *unk;
299         IDispatch *disp;
300         IPropertyNotifySink *propnotif;
301     } *sinks;
302     DWORD sinks_size;
303
304     const IID *iid;
305     cp_static_data_t *data;
306
307     ConnectionPoint *next;
308 };
309
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;
334
335     IUnknown *unk_impl;
336     IDispatchEx *dispex;
337
338     HTMLDocumentObj *doc_obj;
339     HTMLDocumentNode *doc_node;
340
341     HTMLWindow *window;
342
343     LONG task_magic;
344
345     ConnectionPointContainer cp_container;
346     ConnectionPoint cp_htmldocevents;
347     ConnectionPoint cp_htmldocevents2;
348     ConnectionPoint cp_propnotif;
349     ConnectionPoint cp_dispatch;
350
351     IOleAdviseHolder *advise_holder;
352 };
353
354 static inline HRESULT htmldoc_query_interface(HTMLDocument *This, REFIID riid, void **ppv)
355 {
356     return IUnknown_QueryInterface(This->unk_impl, riid, ppv);
357 }
358
359 static inline ULONG htmldoc_addref(HTMLDocument *This)
360 {
361     return IUnknown_AddRef(This->unk_impl);
362 }
363
364 static inline ULONG htmldoc_release(HTMLDocument *This)
365 {
366     return IUnknown_Release(This->unk_impl);
367 }
368
369 struct HTMLDocumentObj {
370     HTMLDocument basedoc;
371     DispatchEx dispex;
372     const ICustomDocVtbl  *lpCustomDocVtbl;
373
374     LONG ref;
375
376     NSContainer *nscontainer;
377
378     IOleClientSite *client;
379     IDocHostUIHandler *hostui;
380     IOleInPlaceSite *ipsite;
381     IOleInPlaceFrame *frame;
382     IOleInPlaceUIWindow *ip_window;
383
384     DOCHOSTUIINFO hostinfo;
385
386     IOleUndoManager *undomgr;
387
388     HWND hwnd;
389     HWND tooltips_hwnd;
390
391     BOOL request_uiactivate;
392     BOOL in_place_active;
393     BOOL ui_active;
394     BOOL window_active;
395     BOOL has_key_path;
396     BOOL container_locked;
397     BOOL focus;
398     INT download_state;
399
400     USERMODE usermode;
401     LPWSTR mime;
402
403     DWORD update;
404 };
405
406 struct NSContainer {
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;
415
416     nsIWebBrowser *webbrowser;
417     nsIWebNavigation *navigation;
418     nsIBaseWindow *window;
419     nsIWebBrowserFocus *focus;
420
421     nsIEditor *editor;
422     nsIController *editor_controller;
423
424     LONG ref;
425
426     NSContainer *parent;
427     HTMLDocumentObj *doc;
428
429     nsIURIContentListener *content_listener;
430
431     HWND hwnd;
432
433     HWND reset_focus; /* hack */
434 };
435
436 typedef struct {
437     const nsIHttpChannelVtbl *lpHttpChannelVtbl;
438     const nsIUploadChannelVtbl *lpUploadChannelVtbl;
439     const nsIHttpChannelInternalVtbl *lpIHttpChannelInternalVtbl;
440
441     LONG ref;
442
443     nsIWineURI *uri;
444     nsIInputStream *post_data_stream;
445     nsILoadGroup *load_group;
446     nsIInterfaceRequestor *notif_callback;
447     nsISupports *owner;
448     nsLoadFlags load_flags;
449     nsIURI *original_uri;
450     char *content_type;
451     char *charset;
452     PRUint32 response_status;
453     UINT url_scheme;
454 } nsChannel;
455
456 typedef struct {
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*);
468 } NodeImplVtbl;
469
470 struct HTMLDOMNode {
471     DispatchEx dispex;
472     const IHTMLDOMNodeVtbl   *lpHTMLDOMNodeVtbl;
473     const IHTMLDOMNode2Vtbl  *lpHTMLDOMNode2Vtbl;
474     const NodeImplVtbl *vtbl;
475
476     LONG ref;
477
478     nsIDOMNode *nsnode;
479     HTMLDocumentNode *doc;
480     event_target_t *event_target;
481     ConnectionPointContainer *cp_container;
482
483     HTMLDOMNode *next;
484 };
485
486 typedef struct {
487     HTMLDOMNode node;
488     ConnectionPointContainer cp_container;
489
490     const IHTMLElementVtbl   *lpHTMLElementVtbl;
491     const IHTMLElement2Vtbl  *lpHTMLElement2Vtbl;
492     const IHTMLElement3Vtbl  *lpHTMLElement3Vtbl;
493
494     nsIDOMHTMLElement *nselem;
495 } HTMLElement;
496
497 #define HTMLELEMENT_TIDS    \
498     IHTMLDOMNode_tid,       \
499     IHTMLDOMNode2_tid,      \
500     IHTMLElement_tid,       \
501     IHTMLElement2_tid,      \
502     IHTMLElement3_tid,      \
503     IHTMLElement4_tid
504
505 typedef struct {
506     HTMLElement element;
507
508     const IHTMLTextContainerVtbl *lpHTMLTextContainerVtbl;
509
510     ConnectionPoint cp;
511 } HTMLTextContainer;
512
513 struct HTMLFrameBase {
514     HTMLElement element;
515
516     const IHTMLFrameBaseVtbl   *lpIHTMLFrameBaseVtbl;
517     const IHTMLFrameBase2Vtbl  *lpIHTMLFrameBase2Vtbl;
518
519     HTMLWindow *content_window;
520
521     nsIDOMHTMLFrameElement *nsframe;
522     nsIDOMHTMLIFrameElement *nsiframe;
523 };
524
525 typedef struct _mutation_queue_t {
526     DWORD type;
527     nsISupports *nsiface;
528
529     struct _mutation_queue_t *next;
530 } mutation_queue_t;
531
532 typedef struct nsDocumentEventListener nsDocumentEventListener;
533
534 struct HTMLDocumentNode {
535     HTMLDOMNode node;
536     HTMLDocument basedoc;
537
538     const IInternetHostSecurityManagerVtbl *lpIInternetHostSecurityManagerVtbl;
539
540     const nsIDocumentObserverVtbl  *lpIDocumentObserverVtbl;
541     const nsIRunnableVtbl  *lpIRunnableVtbl;
542
543     LONG ref;
544
545     nsIDOMHTMLDocument *nsdoc;
546     HTMLDOMNode *nodes;
547     BOOL content_ready;
548     event_target_t *body_event_target;
549
550     IInternetSecurityManager *secmgr;
551     ICatInformation *catmgr;
552     nsDocumentEventListener *nsevent_listener;
553     BOOL *event_vector;
554
555     mutation_queue_t *mutation_queue;
556     mutation_queue_t *mutation_queue_tail;
557
558     struct list bindings;
559     struct list selection_list;
560     struct list range_list;
561 };
562
563 #define HTMLWINDOW2(x)   ((IHTMLWindow2*)                 &(x)->lpHTMLWindow2Vtbl)
564 #define HTMLWINDOW3(x)   ((IHTMLWindow3*)                 &(x)->lpHTMLWindow3Vtbl)
565 #define HTMLWINDOW4(x)   ((IHTMLWindow4*)                 &(x)->lpHTMLWindow4Vtbl)
566
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)
595
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)
605
606 #define NSDOCOBS(x)      ((nsIDocumentObserver*)          &(x)->lpIDocumentObserverVtbl)
607
608 #define NSRUNNABLE(x)    ((nsIRunnable*)  &(x)->lpIRunnableVtbl)
609
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)
614
615 #define HTTPNEG(x)       ((IHttpNegotiate2*)              &(x)->lpHttpNegotiate2Vtbl)
616 #define STATUSCLB(x)     ((IBindStatusCallback*)          &(x)->lpBindStatusCallbackVtbl)
617 #define BINDINFO(x)      ((IInternetBindInfo*)            &(x)->lpInternetBindInfoVtbl);
618
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)
624
625 #define HTMLTEXTCONT(x)  ((IHTMLTextContainer*)           &(x)->lpHTMLTextContainerVtbl)
626 #define HTMLFRAMEBASE(x) ((IHTMLFrameBase*)               &(x)->lpIHTMLFrameBaseVtbl)
627 #define HTMLFRAMEBASE2(x) ((IHTMLFrameBase2*)             &(x)->lpIHTMLFrameBase2Vtbl)
628
629 #define HTMLOPTFACTORY(x)  ((IHTMLOptionElementFactory*)  &(x)->lpHTMLOptionElementFactoryVtbl)
630 #define HTMLIMGFACTORY(x)  ((IHTMLImageElementFactory*)   &(x)->lpHTMLImageElementFactoryVtbl)
631 #define HTMLLOCATION(x)    ((IHTMLLocation*)              &(x)->lpHTMLLocationVtbl)
632
633 #define DISPATCHEX(x)    ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
634
635 #define SUPPERRINFO(x)   ((ISupportErrorInfo*) &(x)->lpSupportErrorInfoVtbl)
636
637 #define HOSTSECMGR(x)    ((IInternetHostSecurityManager*)  &(x)->lpIInternetHostSecurityManagerVtbl)
638
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)
641
642 HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**);
643 HRESULT HTMLLoadOptions_Create(IUnknown*,REFIID,void**);
644 HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument*,HTMLDocumentObj*,HTMLWindow*,HTMLDocumentNode**);
645
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**);
655
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*);
665
666 void HTMLDocumentNode_SecMgr_Init(HTMLDocumentNode*);
667
668 HRESULT HTMLCurrentStyle_Create(HTMLElement*,IHTMLCurrentStyle**);
669
670 void ConnectionPoint_Init(ConnectionPoint*,ConnectionPointContainer*,REFIID,cp_static_data_t*);
671 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*);
672 void ConnectionPointContainer_Destroy(ConnectionPointContainer*);
673
674 NSContainer *NSContainer_Create(HTMLDocumentObj*,NSContainer*);
675 void NSContainer_Release(NSContainer*);
676
677 void init_mutation(HTMLDocumentNode*);
678 void release_mutation(HTMLDocumentNode*);
679
680 void HTMLDocument_LockContainer(HTMLDocumentObj*,BOOL);
681 void show_context_menu(HTMLDocumentObj*,DWORD,POINT*,IDispatch*);
682 void notif_focus(HTMLDocumentObj*);
683
684 void show_tooltip(HTMLDocumentObj*,DWORD,DWORD,LPCWSTR);
685 void hide_tooltip(HTMLDocumentObj*);
686 HRESULT get_client_disp_property(IOleClientSite*,DISPID,VARIANT*);
687
688 HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**);
689
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);
696
697 HRESULT nsuri_to_url(LPCWSTR,BOOL,BSTR*);
698 HRESULT create_doc_uri(HTMLWindow*,WCHAR*,nsIWineURI**);
699
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);
704
705 void call_property_onchanged(ConnectionPoint*,DISPID);
706 HRESULT call_set_active_object(IOleInPlaceUIWindow*,IOleInPlaceActiveObject*);
707
708 void *nsalloc(size_t) __WINE_ALLOC_SIZE(1);
709 void nsfree(void*);
710
711 void nsACString_SetData(nsACString*,const char*);
712 PRUint32 nsACString_GetData(const nsACString*,const char**);
713
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*);
719
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**);
724
725 void init_nsevents(HTMLDocumentNode*);
726 void release_nsevents(HTMLDocumentNode*);
727 void add_nsevent_listener(HTMLDocumentNode*,LPCWSTR);
728
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*);
733
734 HRESULT bind_mon_to_buffer(HTMLDocumentNode*,IMoniker*,void**,DWORD*);
735
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*);
740
741 void set_ready_state(HTMLWindow*,READYSTATE);
742
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*);
748
749 void detach_selection(HTMLDocumentNode*);
750 void detach_ranges(HTMLDocumentNode*);
751 HRESULT get_node_text(HTMLDOMNode*,BSTR*);
752
753 HRESULT create_nselem(HTMLDocumentNode*,const WCHAR*,nsIDOMHTMLElement**);
754
755 HTMLDOMNode *HTMLDOMTextNode_Create(HTMLDocumentNode*,nsIDOMNode*);
756
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*);
773
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*);
780
781 HRESULT HTMLDOMNode_QI(HTMLDOMNode*,REFIID,void**);
782 void HTMLDOMNode_destructor(HTMLDOMNode*);
783
784 HRESULT HTMLElement_QI(HTMLDOMNode*,REFIID,void**);
785 void HTMLElement_destructor(HTMLDOMNode*);
786
787 HRESULT HTMLFrameBase_QI(HTMLFrameBase*,REFIID,void**);
788 void HTMLFrameBase_destructor(HTMLFrameBase*);
789
790 HTMLDOMNode *get_node(HTMLDocumentNode*,nsIDOMNode*,BOOL);
791 void release_nodes(HTMLDocumentNode*);
792
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*);
801
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*);
805
806 /* commands */
807 typedef struct {
808     DWORD id;
809     HRESULT (*query)(HTMLDocument*,OLECMD*);
810     HRESULT (*exec)(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
811 } cmdtable_t;
812
813 extern const cmdtable_t editmode_cmds[];
814
815 void do_ns_command(HTMLDocument*,const char*,nsICommandParams*);
816
817 /* timer */
818 #define UPDATE_UI       0x0001
819 #define UPDATE_TITLE    0x0002
820
821 void update_doc(HTMLDocument*,DWORD);
822 void update_title(HTMLDocumentObj*);
823
824 /* editor */
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);
834
835 extern DWORD mshtml_tls;
836
837 typedef struct task_t task_t;
838 typedef void (*task_proc_t)(task_t*);
839
840 struct task_t {
841     LONG target_magic;
842     task_proc_t proc;
843     struct task_t *next;
844 };
845
846 typedef struct {
847     task_t header;
848     HTMLDocumentObj *doc;
849 } docobj_task_t;
850
851 typedef struct {
852     HWND thread_hwnd;
853     task_t *task_queue_head;
854     task_t *task_queue_tail;
855     struct list timer_list;
856 } thread_data_t;
857
858 thread_data_t *get_thread_data(BOOL);
859 HWND get_thread_hwnd(void);
860
861 LONG get_task_target_magic(void);
862 void push_task(task_t*,task_proc_t,LONG);
863 void remove_target_tasks(LONG);
864
865 DWORD set_task_timer(HTMLDocument*,DWORD,BOOL,IDispatch*);
866 HRESULT clear_task_timer(HTMLDocument*,BOOL,DWORD);
867
868 void release_typelib(void);
869 HRESULT call_disp_func(IDispatch*,DISPPARAMS*);
870
871 const char *debugstr_variant(const VARIANT*);
872
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);
878
879 DEFINE_GUID(CLSID_CMarkup,0x3050f4fb,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
880
881 /* memory allocation functions */
882
883 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
884 {
885     return HeapAlloc(GetProcessHeap(), 0, len);
886 }
887
888 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
889 {
890     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
891 }
892
893 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
894 {
895     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
896 }
897
898 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
899 {
900     return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
901 }
902
903 static inline BOOL heap_free(void *mem)
904 {
905     return HeapFree(GetProcessHeap(), 0, mem);
906 }
907
908 static inline LPWSTR heap_strdupW(LPCWSTR str)
909 {
910     LPWSTR ret = NULL;
911
912     if(str) {
913         DWORD size;
914
915         size = (strlenW(str)+1)*sizeof(WCHAR);
916         ret = heap_alloc(size);
917         memcpy(ret, str, size);
918     }
919
920     return ret;
921 }
922
923 static inline char *heap_strdupA(const char *str)
924 {
925     char *ret = NULL;
926
927     if(str) {
928         DWORD size;
929
930         size = strlen(str)+1;
931         ret = heap_alloc(size);
932         memcpy(ret, str, size);
933     }
934
935     return ret;
936 }
937
938 static inline WCHAR *heap_strdupAtoW(const char *str)
939 {
940     LPWSTR ret = NULL;
941
942     if(str) {
943         DWORD len;
944
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);
948     }
949
950     return ret;
951 }
952
953 static inline char *heap_strdupWtoA(LPCWSTR str)
954 {
955     char *ret = NULL;
956
957     if(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);
961     }
962
963     return ret;
964 }
965
966 static inline void windowref_addref(windowref_t *ref)
967 {
968     InterlockedIncrement(&ref->ref);
969 }
970
971 static inline void windowref_release(windowref_t *ref)
972 {
973     if(!InterlockedDecrement(&ref->ref))
974         heap_free(ref);
975 }
976
977 HDC get_display_dc(void);
978 HINSTANCE get_shdoclc(void);
979
980 extern HINSTANCE hInst;