mshtml: Get rid of htmldoc_vtbl_t.
[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 "mshtml.h"
22 #include "mshtmhst.h"
23 #include "hlink.h"
24 #include "perhist.h"
25 #include "dispex.h"
26
27 #include "wine/list.h"
28 #include "wine/unicode.h"
29
30 #ifdef INIT_GUID
31 #include "initguid.h"
32 #endif
33
34 #include "nsiface.h"
35
36 #define NS_OK                     ((nsresult)0x00000000L)
37 #define NS_ERROR_FAILURE          ((nsresult)0x80004005L)
38 #define NS_NOINTERFACE            ((nsresult)0x80004002L)
39 #define NS_ERROR_NOT_IMPLEMENTED  ((nsresult)0x80004001L)
40 #define NS_ERROR_INVALID_ARG      ((nsresult)0x80070057L) 
41 #define NS_ERROR_UNEXPECTED       ((nsresult)0x8000ffffL)
42 #define NS_ERROR_UNKNOWN_PROTOCOL ((nsresult)0x804b0012L)
43
44 #define NS_FAILED(res) ((res) & 0x80000000)
45 #define NS_SUCCEEDED(res) (!NS_FAILED(res))
46
47 #define NSAPI WINAPI
48
49 #define MSHTML_E_NODOC    0x800a025c
50
51 typedef struct HTMLDOMNode HTMLDOMNode;
52 typedef struct ConnectionPoint ConnectionPoint;
53 typedef struct BSCallback BSCallback;
54 typedef struct nsChannelBSC nsChannelBSC;
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     DispHTMLBody_tid,
63     DispHTMLCommentElement_tid,
64     DispHTMLCurrentStyle_tid,
65     DispHTMLDocument_tid,
66     DispHTMLDOMTextNode_tid,
67     DispHTMLElementCollection_tid,
68     DispHTMLGenericElement_tid,
69     DispHTMLIFrame_tid,
70     DispHTMLImg_tid,
71     DispHTMLInputElement_tid,
72     DispHTMLLocation_tid,
73     DispHTMLNavigator_tid,
74     DispHTMLOptionElement_tid,
75     DispHTMLSelectElement_tid,
76     DispHTMLStyle_tid,
77     DispHTMLTable_tid,
78     DispHTMLTableRow_tid,
79     DispHTMLUnknownElement_tid,
80     DispHTMLWindow2_tid,
81     IHTMLBodyElement_tid,
82     IHTMLBodyElement2_tid,
83     IHTMLCommentElement_tid,
84     IHTMLCurrentStyle_tid,
85     IHTMLCurrentStyle2_tid,
86     IHTMLCurrentStyle3_tid,
87     IHTMLCurrentStyle4_tid,
88     IHTMLDocument2_tid,
89     IHTMLDocument3_tid,
90     IHTMLDocument4_tid,
91     IHTMLDocument5_tid,
92     IHTMLDOMChildrenCollection_tid,
93     IHTMLDOMNode_tid,
94     IHTMLDOMNode2_tid,
95     IHTMLDOMTextNode_tid,
96     IHTMLElement_tid,
97     IHTMLElement2_tid,
98     IHTMLElement3_tid,
99     IHTMLElement4_tid,
100     IHTMLElementCollection_tid,
101     IHTMLEventObj_tid,
102     IHTMLFrameBase2_tid,
103     IHTMLGenericElement_tid,
104     IHTMLImgElement_tid,
105     IHTMLInputElement_tid,
106     IHTMLLocation_tid,
107     IHTMLOptionElement_tid,
108     IHTMLSelectElement_tid,
109     IHTMLStyle_tid,
110     IHTMLStyle2_tid,
111     IHTMLStyle3_tid,
112     IHTMLStyle4_tid,
113     IHTMLTable_tid,
114     IHTMLTableRow_tid,
115     IHTMLTextContainer_tid,
116     IHTMLUniqueName_tid,
117     IHTMLWindow2_tid,
118     IHTMLWindow3_tid,
119     IOmNavigator_tid,
120     LAST_tid
121 } tid_t;
122
123 typedef struct dispex_data_t dispex_data_t;
124 typedef struct dispex_dynamic_data_t dispex_dynamic_data_t;
125
126 #define MSHTML_DISPID_CUSTOM_MIN 0x60000000
127 #define MSHTML_DISPID_CUSTOM_MAX 0x6fffffff
128
129 typedef struct {
130     HRESULT (*value)(IUnknown*,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
131     HRESULT (*get_dispid)(IUnknown*,BSTR,DWORD,DISPID*);
132     HRESULT (*invoke)(IUnknown*,DISPID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,IServiceProvider*);
133 } dispex_static_data_vtbl_t;
134
135 typedef struct {
136     const dispex_static_data_vtbl_t *vtbl;
137     const tid_t disp_tid;
138     dispex_data_t *data;
139     const tid_t* const iface_tids;
140 } dispex_static_data_t;
141
142 typedef struct {
143     const IDispatchExVtbl  *lpIDispatchExVtbl;
144
145     IUnknown *outer;
146
147     dispex_static_data_t *data;
148     dispex_dynamic_data_t *dynamic_data;
149 } DispatchEx;
150
151 void init_dispex(DispatchEx*,IUnknown*,dispex_static_data_t*);
152 void release_dispex(DispatchEx*);
153 BOOL dispex_query_interface(DispatchEx*,REFIID,void**);
154 HRESULT dispex_get_dprop_ref(DispatchEx*,const WCHAR*,BOOL,VARIANT**);
155
156 typedef struct HTMLWindow HTMLWindow;
157 typedef struct HTMLDocumentNode HTMLDocumentNode;
158 typedef struct HTMLDocumentObj HTMLDocumentObj;
159
160 typedef enum {
161     SCRIPTMODE_GECKO,
162     SCRIPTMODE_ACTIVESCRIPT
163 } SCRIPTMODE;
164
165 typedef struct ScriptHost ScriptHost;
166
167 typedef struct {
168     WCHAR *name;
169     ScriptHost *script_host;
170     DISPID id;
171 } global_prop_t;
172
173 typedef struct {
174     const IHTMLOptionElementFactoryVtbl *lpHTMLOptionElementFactoryVtbl;
175
176     LONG ref;
177
178     HTMLWindow *window;
179 } HTMLOptionElementFactory;
180
181 struct HTMLLocation {
182     DispatchEx dispex;
183     const IHTMLLocationVtbl *lpHTMLLocationVtbl;
184
185     LONG ref;
186
187     HTMLWindow *window;
188 };
189
190 struct HTMLWindow {
191     DispatchEx dispex;
192     const IHTMLWindow2Vtbl *lpHTMLWindow2Vtbl;
193     const IHTMLWindow3Vtbl *lpHTMLWindow3Vtbl;
194     const IDispatchExVtbl  *lpIDispatchExVtbl;
195
196     LONG ref;
197
198     HTMLDocumentNode *doc;
199     HTMLDocumentObj *doc_obj;
200     nsIDOMWindow *nswindow;
201
202     event_target_t *event_target;
203     IHTMLEventObj *event;
204     BOOL *event_vector;
205
206     SCRIPTMODE scriptmode;
207     struct list script_hosts;
208
209     HTMLOptionElementFactory *option_factory;
210     HTMLLocation *location;
211
212     global_prop_t *global_props;
213     DWORD global_prop_cnt;
214     DWORD global_prop_size;
215
216     struct list entry;
217 };
218
219 typedef enum {
220     UNKNOWN_USERMODE,
221     BROWSEMODE,
222     EDITMODE        
223 } USERMODE;
224
225 typedef struct {
226     const IConnectionPointContainerVtbl  *lpConnectionPointContainerVtbl;
227
228     ConnectionPoint *cp_list;
229     IUnknown *outer;
230 } ConnectionPointContainer;
231
232 struct ConnectionPoint {
233     const IConnectionPointVtbl *lpConnectionPointVtbl;
234
235     IConnectionPointContainer *container;
236
237     union {
238         IUnknown *unk;
239         IDispatch *disp;
240         IPropertyNotifySink *propnotif;
241     } *sinks;
242     DWORD sinks_size;
243
244     const IID *iid;
245
246     ConnectionPoint *next;
247 };
248
249 struct HTMLDocument {
250     DispatchEx dispex;
251     const IHTMLDocument2Vtbl              *lpHTMLDocument2Vtbl;
252     const IHTMLDocument3Vtbl              *lpHTMLDocument3Vtbl;
253     const IHTMLDocument4Vtbl              *lpHTMLDocument4Vtbl;
254     const IHTMLDocument5Vtbl              *lpHTMLDocument5Vtbl;
255     const IPersistMonikerVtbl             *lpPersistMonikerVtbl;
256     const IPersistFileVtbl                *lpPersistFileVtbl;
257     const IPersistHistoryVtbl             *lpPersistHistoryVtbl;
258     const IMonikerPropVtbl                *lpMonikerPropVtbl;
259     const IOleObjectVtbl                  *lpOleObjectVtbl;
260     const IOleDocumentVtbl                *lpOleDocumentVtbl;
261     const IOleDocumentViewVtbl            *lpOleDocumentViewVtbl;
262     const IOleInPlaceActiveObjectVtbl     *lpOleInPlaceActiveObjectVtbl;
263     const IViewObject2Vtbl                *lpViewObject2Vtbl;
264     const IOleInPlaceObjectWindowlessVtbl *lpOleInPlaceObjectWindowlessVtbl;
265     const IServiceProviderVtbl            *lpServiceProviderVtbl;
266     const IOleCommandTargetVtbl           *lpOleCommandTargetVtbl;
267     const IOleControlVtbl                 *lpOleControlVtbl;
268     const IHlinkTargetVtbl                *lpHlinkTargetVtbl;
269     const IPersistStreamInitVtbl          *lpPersistStreamInitVtbl;
270     const IDispatchExVtbl                 *lpIDispatchExVtbl;
271     const ISupportErrorInfoVtbl           *lpSupportErrorInfoVtbl;
272
273     IUnknown *unk_impl;
274
275     HTMLDocumentObj *doc_obj;
276     HTMLDocumentNode *doc_node;
277
278     HTMLWindow *window;
279     nsIDOMHTMLDocument *nsdoc;
280
281     event_target_t *event_target;
282     ConnectionPointContainer cp_container;
283     ConnectionPoint cp_htmldocevents;
284     ConnectionPoint cp_htmldocevents2;
285     ConnectionPoint cp_propnotif;
286 };
287
288 static inline HRESULT htmldoc_query_interface(HTMLDocument *This, REFIID riid, void **ppv)
289 {
290     return IUnknown_QueryInterface(This->unk_impl, riid, ppv);
291 }
292
293 static inline ULONG htmldoc_addref(HTMLDocument *This)
294 {
295     return IUnknown_AddRef(This->unk_impl);
296 }
297
298 static inline ULONG htmldoc_release(HTMLDocument *This)
299 {
300     return IUnknown_Release(This->unk_impl);
301 }
302
303 struct HTMLDocumentObj {
304     HTMLDocument basedoc;
305     const ICustomDocVtbl  *lpCustomDocVtbl;
306
307     LONG ref;
308
309     NSContainer *nscontainer;
310
311     IOleClientSite *client;
312     IDocHostUIHandler *hostui;
313     IOleInPlaceSite *ipsite;
314     IOleInPlaceFrame *frame;
315     IOleInPlaceUIWindow *ip_window;
316
317     DOCHOSTUIINFO hostinfo;
318
319     IOleUndoManager *undomgr;
320
321     HWND hwnd;
322     HWND tooltips_hwnd;
323
324     BOOL in_place_active;
325     BOOL ui_active;
326     BOOL window_active;
327     BOOL has_key_path;
328     BOOL container_locked;
329     BOOL focus;
330
331     USERMODE usermode;
332     READYSTATE readystate;
333     LPWSTR mime;
334
335     DWORD update;
336
337     /* FIXME: probably should be in document node object */
338     nsChannelBSC *bscallback;
339     IMoniker *mon;
340     LPOLESTR url;
341     struct list bindings;
342 };
343
344 typedef struct {
345     const nsIDOMEventListenerVtbl      *lpDOMEventListenerVtbl;
346     NSContainer *This;
347 } nsEventListener;
348
349 typedef struct _mutation_queue_t {
350     DWORD type;
351     nsISupports *nsiface;
352
353     struct _mutation_queue_t *next;
354 } mutation_queue_t;
355
356 struct NSContainer {
357     const nsIWebBrowserChromeVtbl       *lpWebBrowserChromeVtbl;
358     const nsIContextMenuListenerVtbl    *lpContextMenuListenerVtbl;
359     const nsIURIContentListenerVtbl     *lpURIContentListenerVtbl;
360     const nsIEmbeddingSiteWindowVtbl    *lpEmbeddingSiteWindowVtbl;
361     const nsITooltipListenerVtbl        *lpTooltipListenerVtbl;
362     const nsIInterfaceRequestorVtbl     *lpInterfaceRequestorVtbl;
363     const nsIWeakReferenceVtbl          *lpWeakReferenceVtbl;
364     const nsISupportsWeakReferenceVtbl  *lpSupportsWeakReferenceVtbl;
365
366     const nsIDocumentObserverVtbl       *lpDocumentObserverVtbl;
367
368     const nsIRunnableVtbl  *lpRunnableVtbl;
369
370     nsEventListener blur_listener;
371     nsEventListener focus_listener;
372     nsEventListener keypress_listener;
373     nsEventListener load_listener;
374     nsEventListener htmlevent_listener;
375
376     nsIWebBrowser *webbrowser;
377     nsIWebNavigation *navigation;
378     nsIBaseWindow *window;
379     nsIWebBrowserFocus *focus;
380
381     nsIEditor *editor;
382     nsIController *editor_controller;
383
384     LONG ref;
385
386     NSContainer *parent;
387     HTMLDocumentObj *doc;
388
389     nsIURIContentListener *content_listener;
390
391     HWND hwnd;
392
393     mutation_queue_t *mutation_queue;
394     mutation_queue_t *mutation_queue_tail;
395
396     nsChannelBSC *bscallback; /* hack */
397     HWND reset_focus; /* hack */
398 };
399
400 typedef struct {
401     const nsIHttpChannelVtbl *lpHttpChannelVtbl;
402     const nsIUploadChannelVtbl *lpUploadChannelVtbl;
403     const nsIHttpChannelInternalVtbl *lpIHttpChannelInternalVtbl;
404
405     LONG ref;
406
407     nsIChannel *channel;
408     nsIHttpChannel *http_channel;
409     nsIHttpChannelInternal *http_channel_internal;
410     nsIWineURI *uri;
411     nsIInputStream *post_data_stream;
412     nsILoadGroup *load_group;
413     nsIInterfaceRequestor *notif_callback;
414     nsISupports *owner;
415     nsLoadFlags load_flags;
416     nsIURI *original_uri;
417     char *content_type;
418     char *charset;
419     PRUint32 response_status;
420 } nsChannel;
421
422 typedef struct {
423     HRESULT (*qi)(HTMLDOMNode*,REFIID,void**);
424     void (*destructor)(HTMLDOMNode*);
425     event_target_t **(*get_event_target)(HTMLDOMNode*);
426     HRESULT (*put_disabled)(HTMLDOMNode*,VARIANT_BOOL);
427     HRESULT (*get_disabled)(HTMLDOMNode*,VARIANT_BOOL*);
428 } NodeImplVtbl;
429
430 struct HTMLDOMNode {
431     DispatchEx dispex;
432     const IHTMLDOMNodeVtbl   *lpHTMLDOMNodeVtbl;
433     const IHTMLDOMNode2Vtbl  *lpHTMLDOMNode2Vtbl;
434     const NodeImplVtbl *vtbl;
435
436     LONG ref;
437
438     nsIDOMNode *nsnode;
439     HTMLDocumentNode *doc;
440     event_target_t *event_target;
441
442     HTMLDOMNode *next;
443 };
444
445 typedef struct {
446     HTMLDOMNode node;
447     ConnectionPointContainer cp_container;
448
449     const IHTMLElementVtbl   *lpHTMLElementVtbl;
450     const IHTMLElement2Vtbl  *lpHTMLElement2Vtbl;
451     const IHTMLElement3Vtbl  *lpHTMLElement3Vtbl;
452
453     nsIDOMHTMLElement *nselem;
454 } HTMLElement;
455
456 typedef struct {
457     HTMLElement element;
458
459     const IHTMLTextContainerVtbl *lpHTMLTextContainerVtbl;
460
461     ConnectionPoint cp;
462 } HTMLTextContainer;
463
464 struct HTMLDocumentNode {
465     HTMLDOMNode node;
466     HTMLDocument basedoc;
467
468     LONG ref;
469
470     HTMLDOMNode *nodes;
471
472     struct list selection_list;
473     struct list range_list;
474 };
475
476 #define HTMLWINDOW2(x)   ((IHTMLWindow2*)                 &(x)->lpHTMLWindow2Vtbl)
477 #define HTMLWINDOW3(x)   ((IHTMLWindow3*)                 &(x)->lpHTMLWindow3Vtbl)
478
479 #define HTMLDOC(x)       ((IHTMLDocument2*)               &(x)->lpHTMLDocument2Vtbl)
480 #define HTMLDOC3(x)      ((IHTMLDocument3*)               &(x)->lpHTMLDocument3Vtbl)
481 #define HTMLDOC4(x)      ((IHTMLDocument4*)               &(x)->lpHTMLDocument4Vtbl)
482 #define HTMLDOC5(x)      ((IHTMLDocument5*)               &(x)->lpHTMLDocument5Vtbl)
483 #define PERSIST(x)       ((IPersist*)                     &(x)->lpPersistFileVtbl)
484 #define PERSISTMON(x)    ((IPersistMoniker*)              &(x)->lpPersistMonikerVtbl)
485 #define PERSISTFILE(x)   ((IPersistFile*)                 &(x)->lpPersistFileVtbl)
486 #define MONPROP(x)       ((IMonikerProp*)                 &(x)->lpMonikerPropVtbl)
487 #define OLEOBJ(x)        ((IOleObject*)                   &(x)->lpOleObjectVtbl)
488 #define OLEDOC(x)        ((IOleDocument*)                 &(x)->lpOleDocumentVtbl)
489 #define DOCVIEW(x)       ((IOleDocumentView*)             &(x)->lpOleDocumentViewVtbl)
490 #define OLEWIN(x)        ((IOleWindow*)                   &(x)->lpOleInPlaceActiveObjectVtbl)
491 #define ACTOBJ(x)        ((IOleInPlaceActiveObject*)      &(x)->lpOleInPlaceActiveObjectVtbl)
492 #define VIEWOBJ(x)       ((IViewObject*)                  &(x)->lpViewObject2Vtbl)
493 #define VIEWOBJ2(x)      ((IViewObject2*)                 &(x)->lpViewObject2Vtbl)
494 #define INPLACEOBJ(x)    ((IOleInPlaceObject*)            &(x)->lpOleInPlaceObjectWindowlessVtbl)
495 #define INPLACEWIN(x)    ((IOleInPlaceObjectWindowless*)  &(x)->lpOleInPlaceObjectWindowlessVtbl)
496 #define SERVPROV(x)      ((IServiceProvider*)             &(x)->lpServiceProviderVtbl)
497 #define CMDTARGET(x)     ((IOleCommandTarget*)            &(x)->lpOleCommandTargetVtbl)
498 #define CONTROL(x)       ((IOleControl*)                  &(x)->lpOleControlVtbl)
499 #define HLNKTARGET(x)    ((IHlinkTarget*)                 &(x)->lpHlinkTargetVtbl)
500 #define CONPTCONT(x)     ((IConnectionPointContainer*)    &(x)->lpConnectionPointContainerVtbl)
501 #define PERSTRINIT(x)    ((IPersistStreamInit*)           &(x)->lpPersistStreamInitVtbl)
502 #define PERSISTHIST(x)   ((IPersistHistory*)              &(x)->lpPersistHistoryVtbl)
503 #define CUSTOMDOC(x)     ((ICustomDoc*)                   &(x)->lpCustomDocVtbl)
504
505 #define NSWBCHROME(x)    ((nsIWebBrowserChrome*)          &(x)->lpWebBrowserChromeVtbl)
506 #define NSCML(x)         ((nsIContextMenuListener*)       &(x)->lpContextMenuListenerVtbl)
507 #define NSURICL(x)       ((nsIURIContentListener*)        &(x)->lpURIContentListenerVtbl)
508 #define NSEMBWNDS(x)     ((nsIEmbeddingSiteWindow*)       &(x)->lpEmbeddingSiteWindowVtbl)
509 #define NSIFACEREQ(x)    ((nsIInterfaceRequestor*)        &(x)->lpInterfaceRequestorVtbl)
510 #define NSTOOLTIP(x)     ((nsITooltipListener*)           &(x)->lpTooltipListenerVtbl)
511 #define NSEVENTLIST(x)   ((nsIDOMEventListener*)          &(x)->lpDOMEventListenerVtbl)
512 #define NSWEAKREF(x)     ((nsIWeakReference*)             &(x)->lpWeakReferenceVtbl)
513 #define NSSUPWEAKREF(x)  ((nsISupportsWeakReference*)     &(x)->lpSupportsWeakReferenceVtbl)
514
515 #define NSDOCOBS(x)      ((nsIDocumentObserver*)          &(x)->lpDocumentObserverVtbl)
516
517 #define NSRUNNABLE(x)    ((nsIRunnable*)  &(x)->lpRunnableVtbl)
518
519 #define NSCHANNEL(x)     ((nsIChannel*)        &(x)->lpHttpChannelVtbl)
520 #define NSHTTPCHANNEL(x) ((nsIHttpChannel*)    &(x)->lpHttpChannelVtbl)
521 #define NSUPCHANNEL(x)   ((nsIUploadChannel*)  &(x)->lpUploadChannelVtbl)
522 #define NSHTTPINTERNAL(x) ((nsIHttpChannelInternal*)  &(x)->lpIHttpChannelInternalVtbl)
523
524 #define HTTPNEG(x)       ((IHttpNegotiate2*)              &(x)->lpHttpNegotiate2Vtbl)
525 #define STATUSCLB(x)     ((IBindStatusCallback*)          &(x)->lpBindStatusCallbackVtbl)
526 #define BINDINFO(x)      ((IInternetBindInfo*)            &(x)->lpInternetBindInfoVtbl);
527
528 #define HTMLELEM(x)      ((IHTMLElement*)                 &(x)->lpHTMLElementVtbl)
529 #define HTMLELEM2(x)     ((IHTMLElement2*)                &(x)->lpHTMLElement2Vtbl)
530 #define HTMLELEM3(x)     ((IHTMLElement3*)                &(x)->lpHTMLElement3Vtbl)
531 #define HTMLDOMNODE(x)   ((IHTMLDOMNode*)                 &(x)->lpHTMLDOMNodeVtbl)
532 #define HTMLDOMNODE2(x)  ((IHTMLDOMNode2*)                &(x)->lpHTMLDOMNode2Vtbl)
533
534 #define HTMLTEXTCONT(x)  ((IHTMLTextContainer*)           &(x)->lpHTMLTextContainerVtbl)
535
536 #define HTMLOPTFACTORY(x)  ((IHTMLOptionElementFactory*)  &(x)->lpHTMLOptionElementFactoryVtbl)
537 #define HTMLLOCATION(x)  ((IHTMLLocation*) &(x)->lpHTMLLocationVtbl)
538
539 #define DISPATCHEX(x)    ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
540
541 #define SUPPERRINFO(x)   ((ISupportErrorInfo*) &(x)->lpSupportErrorInfoVtbl)
542
543 #define DEFINE_THIS2(cls,ifc,iface) ((cls*)((BYTE*)(iface)-offsetof(cls,ifc)))
544 #define DEFINE_THIS(cls,ifc,iface) DEFINE_THIS2(cls,lp ## ifc ## Vtbl,iface)
545
546 HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**);
547 HRESULT HTMLLoadOptions_Create(IUnknown*,REFIID,void**);
548 HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument*,HTMLDocumentObj*,HTMLWindow*,HTMLDocumentNode**);
549
550 HRESULT HTMLWindow_Create(HTMLDocumentObj*,nsIDOMWindow*,HTMLWindow**);
551 void window_set_docnode(HTMLWindow*,HTMLDocumentNode*);
552 HTMLWindow *nswindow_to_window(const nsIDOMWindow*);
553 HTMLOptionElementFactory *HTMLOptionElementFactory_Create(HTMLWindow*);
554 HRESULT HTMLLocation_Create(HTMLWindow*,HTMLLocation**);
555 IOmNavigator *OmNavigator_Create(void);
556
557 void HTMLDocument_HTMLDocument3_Init(HTMLDocument*);
558 void HTMLDocument_HTMLDocument5_Init(HTMLDocument*);
559 void HTMLDocument_Persist_Init(HTMLDocument*);
560 void HTMLDocument_OleCmd_Init(HTMLDocument*);
561 void HTMLDocument_OleObj_Init(HTMLDocument*);
562 void HTMLDocument_View_Init(HTMLDocument*);
563 void HTMLDocument_Window_Init(HTMLDocument*);
564 void HTMLDocument_Service_Init(HTMLDocument*);
565 void HTMLDocument_Hlink_Init(HTMLDocument*);
566
567 HRESULT HTMLCurrentStyle_Create(HTMLElement*,IHTMLCurrentStyle**);
568
569 void ConnectionPoint_Init(ConnectionPoint*,ConnectionPointContainer*,REFIID);
570 void ConnectionPointContainer_Init(ConnectionPointContainer*,IUnknown*);
571 void ConnectionPointContainer_Destroy(ConnectionPointContainer*);
572
573 NSContainer *NSContainer_Create(HTMLDocumentObj*,NSContainer*);
574 void NSContainer_Release(NSContainer*);
575
576 void init_mutation(NSContainer*);
577 void set_mutation_observer(NSContainer*,nsIDOMHTMLDocument*);
578 void remove_mutation_observer(NSContainer*,nsIDOMHTMLDocument*);
579
580 void HTMLDocument_LockContainer(HTMLDocumentObj*,BOOL);
581 void show_context_menu(HTMLDocumentObj*,DWORD,POINT*,IDispatch*);
582 void notif_focus(HTMLDocumentObj*);
583
584 void show_tooltip(HTMLDocumentObj*,DWORD,DWORD,LPCWSTR);
585 void hide_tooltip(HTMLDocumentObj*);
586 HRESULT get_client_disp_property(IOleClientSite*,DISPID,VARIANT*);
587
588 HRESULT ProtocolFactory_Create(REFCLSID,REFIID,void**);
589
590 BOOL load_gecko(BOOL);
591 void close_gecko(void);
592 void register_nsservice(nsIComponentRegistrar*,nsIServiceManager*);
593 void init_nsio(nsIComponentManager*,nsIComponentRegistrar*);
594 void release_nsio(void);
595 BOOL install_wine_gecko(BOOL);
596
597 HRESULT nsuri_to_url(LPCWSTR,BOOL,BSTR*);
598
599 void hlink_frame_navigate(HTMLDocument*,IHlinkFrame*,LPCWSTR,nsIInputStream*,DWORD);
600
601 void call_property_onchanged(ConnectionPoint*,DISPID);
602 HRESULT call_set_active_object(IOleInPlaceUIWindow*,IOleInPlaceActiveObject*);
603
604 void *nsalloc(size_t) __WINE_ALLOC_SIZE(1);
605 void nsfree(void*);
606
607 void nsACString_Init(nsACString*,const char*);
608 void nsACString_SetData(nsACString*,const char*);
609 PRUint32 nsACString_GetData(const nsACString*,const char**);
610 void nsACString_Finish(nsACString*);
611
612 void nsAString_Init(nsAString*,const PRUnichar*);
613 void nsAString_SetData(nsAString*,const PRUnichar*);
614 PRUint32 nsAString_GetData(const nsAString*,const PRUnichar**);
615 void nsAString_Finish(nsAString*);
616
617 nsICommandParams *create_nscommand_params(void);
618 HRESULT nsnode_to_nsstring(nsIDOMNode*,nsAString*);
619 void get_editor_controller(NSContainer*);
620 void init_nsevents(NSContainer*);
621 void add_nsevent_listener(HTMLWindow*,LPCWSTR);
622 nsresult get_nsinterface(nsISupports*,REFIID,void**);
623 void update_nsdocument(HTMLDocumentObj*);
624
625 void set_document_bscallback(HTMLDocument*,nsChannelBSC*);
626 void set_current_mon(HTMLDocument*,IMoniker*);
627 HRESULT start_binding(HTMLDocument*,BSCallback*,IBindCtx*);
628
629 HRESULT bind_mon_to_buffer(HTMLDocument*,IMoniker*,void**,DWORD*);
630
631 nsChannelBSC *create_channelbsc(IMoniker*);
632 HRESULT channelbsc_load_stream(nsChannelBSC*,IStream*);
633 void channelbsc_set_channel(nsChannelBSC*,nsChannel*,nsIStreamListener*,nsISupports*);
634 IMoniker *get_channelbsc_mon(nsChannelBSC*);
635
636 HRESULT HTMLSelectionObject_Create(HTMLDocumentNode*,nsISelection*,IHTMLSelectionObject**);
637 HRESULT HTMLTxtRange_Create(HTMLDocumentNode*,nsIDOMRange*,IHTMLTxtRange**);
638 IHTMLStyle *HTMLStyle_Create(nsIDOMCSSStyleDeclaration*);
639 IHTMLStyleSheet *HTMLStyleSheet_Create(nsIDOMStyleSheet*);
640 IHTMLStyleSheetsCollection *HTMLStyleSheetsCollection_Create(nsIDOMStyleSheetList*);
641
642 void detach_selection(HTMLDocumentNode*);
643 void detach_ranges(HTMLDocumentNode*);
644 HRESULT get_node_text(HTMLDOMNode*,BSTR*);
645
646 HTMLDOMNode *HTMLDOMTextNode_Create(HTMLDocumentNode*,nsIDOMNode*);
647
648 HTMLElement *HTMLElement_Create(HTMLDocumentNode*,nsIDOMNode*,BOOL);
649 HTMLElement *HTMLCommentElement_Create(HTMLDocumentNode*,nsIDOMNode*);
650 HTMLElement *HTMLAnchorElement_Create(nsIDOMHTMLElement*);
651 HTMLElement *HTMLBodyElement_Create(nsIDOMHTMLElement*);
652 HTMLElement *HTMLIFrame_Create(nsIDOMHTMLElement*);
653 HTMLElement *HTMLImgElement_Create(nsIDOMHTMLElement*);
654 HTMLElement *HTMLInputElement_Create(nsIDOMHTMLElement*);
655 HTMLElement *HTMLOptionElement_Create(nsIDOMHTMLElement*);
656 HTMLElement *HTMLScriptElement_Create(nsIDOMHTMLElement*);
657 HTMLElement *HTMLSelectElement_Create(nsIDOMHTMLElement*);
658 HTMLElement *HTMLTable_Create(nsIDOMHTMLElement*);
659 HTMLElement *HTMLTableRow_Create(nsIDOMHTMLElement*);
660 HTMLElement *HTMLTextAreaElement_Create(nsIDOMHTMLElement*);
661 HTMLElement *HTMLGenericElement_Create(nsIDOMHTMLElement*);
662
663 void HTMLDOMNode_Init(HTMLDocumentNode*,HTMLDOMNode*,nsIDOMNode*);
664 void HTMLElement_Init(HTMLElement*);
665 void HTMLElement2_Init(HTMLElement*);
666 void HTMLElement3_Init(HTMLElement*);
667 void HTMLTextContainer_Init(HTMLTextContainer*);
668
669 HRESULT HTMLDOMNode_QI(HTMLDOMNode*,REFIID,void**);
670 void HTMLDOMNode_destructor(HTMLDOMNode*);
671
672 HRESULT HTMLElement_QI(HTMLDOMNode*,REFIID,void**);
673 void HTMLElement_destructor(HTMLDOMNode*);
674
675 HTMLDOMNode *get_node(HTMLDocumentNode*,nsIDOMNode*,BOOL);
676 void release_nodes(HTMLDocumentNode*);
677
678 void release_script_hosts(HTMLWindow*);
679 void connect_scripts(HTMLWindow*);
680 void doc_insert_script(HTMLWindow*,nsIDOMHTMLScriptElement*);
681 IDispatch *script_parse_event(HTMLWindow*,LPCWSTR);
682 void set_script_mode(HTMLWindow*,SCRIPTMODE);
683 BOOL find_global_prop(HTMLWindow*,BSTR,DWORD,ScriptHost**,DISPID*);
684 IDispatch *get_script_disp(ScriptHost*);
685
686 IHTMLElementCollection *create_all_collection(HTMLDOMNode*,BOOL);
687 IHTMLElementCollection *create_collection_from_nodelist(HTMLDocumentNode*,IUnknown*,nsIDOMNodeList*);
688 IHTMLElementCollection *create_collection_from_htmlcol(HTMLDocumentNode*,IUnknown*,nsIDOMHTMLCollection*);
689
690 /* commands */
691 typedef struct {
692     DWORD id;
693     HRESULT (*query)(HTMLDocument*,OLECMD*);
694     HRESULT (*exec)(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
695 } cmdtable_t;
696
697 extern const cmdtable_t editmode_cmds[];
698
699 void do_ns_command(HTMLDocument*,const char*,nsICommandParams*);
700
701 /* timer */
702 #define UPDATE_UI       0x0001
703 #define UPDATE_TITLE    0x0002
704
705 void update_doc(HTMLDocument*,DWORD);
706 void update_title(HTMLDocumentObj*);
707
708 /* editor */
709 void init_editor(HTMLDocument*);
710 void set_ns_editmode(NSContainer*);
711 void handle_edit_event(HTMLDocument*,nsIDOMEvent*);
712 HRESULT editor_exec_copy(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
713 HRESULT editor_exec_cut(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
714 HRESULT editor_exec_paste(HTMLDocument*,DWORD,VARIANT*,VARIANT*);
715 void handle_edit_load(HTMLDocument*);
716 HRESULT editor_is_dirty(HTMLDocument*);
717 void set_dirty(HTMLDocument*,VARIANT_BOOL);
718
719 extern DWORD mshtml_tls;
720
721 typedef struct task_t {
722     HTMLDocument *doc;
723
724     enum {
725         TASK_SETDOWNLOADSTATE,
726         TASK_PARSECOMPLETE,
727         TASK_SETPROGRESS,
728         TASK_START_BINDING
729     } task_id;
730
731     nsChannelBSC *bscallback;
732
733     struct task_t *next;
734 } task_t;
735
736 typedef struct {
737     HWND thread_hwnd;
738     task_t *task_queue_head;
739     task_t *task_queue_tail;
740     struct list timer_list;
741 } thread_data_t;
742
743 thread_data_t *get_thread_data(BOOL);
744 HWND get_thread_hwnd(void);
745 void push_task(task_t*);
746 void remove_doc_tasks(const HTMLDocument*);
747 DWORD set_task_timer(HTMLDocument*,DWORD,BOOL,IDispatch*);
748 HRESULT clear_task_timer(HTMLDocument*,BOOL,DWORD);
749
750 void release_typelib(void);
751 HRESULT call_disp_func(IDispatch*,DISPPARAMS*);
752
753 const char *debugstr_variant(const VARIANT*);
754
755 DEFINE_GUID(CLSID_AboutProtocol, 0x3050F406, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
756 DEFINE_GUID(CLSID_JSProtocol, 0x3050F3B2, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
757 DEFINE_GUID(CLSID_MailtoProtocol, 0x3050F3DA, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
758 DEFINE_GUID(CLSID_ResProtocol, 0x3050F3BC, 0x98B5, 0x11CF, 0xBB,0x82, 0x00,0xAA,0x00,0xBD,0xCE,0x0B);
759 DEFINE_GUID(CLSID_SysimageProtocol, 0x76E67A63, 0x06E9, 0x11D2, 0xA8,0x40, 0x00,0x60,0x08,0x05,0x93,0x82);
760
761 DEFINE_GUID(CLSID_CMarkup,0x3050f4fb,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
762
763 /* memory allocation functions */
764
765 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
766 {
767     return HeapAlloc(GetProcessHeap(), 0, len);
768 }
769
770 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
771 {
772     return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
773 }
774
775 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
776 {
777     return HeapReAlloc(GetProcessHeap(), 0, mem, len);
778 }
779
780 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
781 {
782     return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
783 }
784
785 static inline BOOL heap_free(void *mem)
786 {
787     return HeapFree(GetProcessHeap(), 0, mem);
788 }
789
790 static inline LPWSTR heap_strdupW(LPCWSTR str)
791 {
792     LPWSTR ret = NULL;
793
794     if(str) {
795         DWORD size;
796
797         size = (strlenW(str)+1)*sizeof(WCHAR);
798         ret = heap_alloc(size);
799         memcpy(ret, str, size);
800     }
801
802     return ret;
803 }
804
805 static inline char *heap_strdupA(const char *str)
806 {
807     char *ret = NULL;
808
809     if(str) {
810         DWORD size;
811
812         size = strlen(str)+1;
813         ret = heap_alloc(size);
814         memcpy(ret, str, size);
815     }
816
817     return ret;
818 }
819
820 static inline WCHAR *heap_strdupAtoW(const char *str)
821 {
822     LPWSTR ret = NULL;
823
824     if(str) {
825         DWORD len;
826
827         len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
828         ret = heap_alloc(len*sizeof(WCHAR));
829         MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
830     }
831
832     return ret;
833 }
834
835 static inline char *heap_strdupWtoA(LPCWSTR str)
836 {
837     char *ret = NULL;
838
839     if(str) {
840         DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
841         ret = heap_alloc(size);
842         WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
843     }
844
845     return ret;
846 }
847
848 HINSTANCE get_shdoclc(void);
849
850 extern HINSTANCE hInst;