Always add gecko directory to the path before loading xpcom.
[wine] / dlls / mshtml / htmldoc.c
1 /*
2  * Copyright 2005 Jacek Caban
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #include "config.h"
20
21 #include <stdarg.h>
22 #include <stdio.h>
23
24 #define COBJMACROS
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "ole2.h"
30
31 #include "wine/debug.h"
32
33 #include "mshtml_private.h"
34
35 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
36
37 #define HTMLDOC_THIS(iface) DEFINE_THIS(HTMLDocument, HTMLDocument2, iface)
38
39 static HRESULT WINAPI HTMLDocument_QueryInterface(IHTMLDocument2 *iface, REFIID riid, void **ppvObject)
40 {
41     HTMLDocument *This = HTMLDOC_THIS(iface);
42
43     *ppvObject = NULL;
44     if(IsEqualGUID(&IID_IUnknown, riid)) {
45         TRACE("(%p)->(IID_IUnknown, %p)\n", This, ppvObject);
46         *ppvObject = HTMLDOC(This);
47     }else if(IsEqualGUID(&IID_IDispatch, riid)) {
48         TRACE("(%p)->(IID_IDispatch, %p)\n", This, ppvObject);
49         *ppvObject = HTMLDOC(This);
50     }else if(IsEqualGUID(&IID_IHTMLDocument, riid)) {
51         TRACE("(%p)->(IID_IHTMLDocument, %p)\n", This, ppvObject);
52         *ppvObject = HTMLDOC(This);
53     }else if(IsEqualGUID(&IID_IHTMLDocument2, riid)) {
54         TRACE("(%p)->(IID_IHTMLDocument2, %p)\n", This, ppvObject);
55         *ppvObject = HTMLDOC(This);
56     }else if(IsEqualGUID(&IID_IPersist, riid)) {
57         TRACE("(%p)->(IID_IPersist, %p)\n", This, ppvObject);
58         *ppvObject = PERSIST(This);
59     }else if(IsEqualGUID(&IID_IPersistMoniker, riid)) {
60         TRACE("(%p)->(IID_IPersistMoniker, %p)\n", This, ppvObject);
61         *ppvObject = PERSISTMON(This);
62     }else if(IsEqualGUID(&IID_IPersistFile, riid)) {
63         TRACE("(%p)->(IID_IPersistFile, %p)\n", This, ppvObject);
64         *ppvObject = PERSISTFILE(This);
65     }else if(IsEqualGUID(&IID_IMonikerProp, riid)) {
66         TRACE("(%p)->(IID_IMonikerProp, %p)\n", This, ppvObject);
67         *ppvObject = MONPROP(This);
68     }else if(IsEqualGUID(&IID_IOleObject, riid)) {
69         TRACE("(%p)->(IID_IOleObject, %p)\n", This, ppvObject);
70         *ppvObject = OLEOBJ(This);
71     }else if(IsEqualGUID(&IID_IOleDocument, riid)) {
72         TRACE("(%p)->(IID_IOleDocument, %p)\n", This, ppvObject);
73         *ppvObject = OLEDOC(This);
74     }else if(IsEqualGUID(&IID_IOleDocumentView, riid)) {
75         TRACE("(%p)->(IID_IOleDocumentView, %p)\n", This, ppvObject);
76         *ppvObject = DOCVIEW(This);
77     }else if(IsEqualGUID(&IID_IOleInPlaceActiveObject, riid)) {
78         TRACE("(%p)->(IID_IOleInPlaceActiveObject, %p)\n", This, ppvObject);
79         *ppvObject = ACTOBJ(This);
80     }else if(IsEqualGUID(&IID_IViewObject, riid)) {
81         TRACE("(%p)->(IID_IViewObject, %p)\n", This, ppvObject);
82         *ppvObject = VIEWOBJ(This);
83     }else if(IsEqualGUID(&IID_IViewObject2, riid)) {
84         TRACE("(%p)->(IID_IViewObject2, %p)\n", This, ppvObject);
85         *ppvObject = VIEWOBJ2(This);
86     }else if(IsEqualGUID(&IID_IOleWindow, riid)) {
87         TRACE("(%p)->(IID_IOleWindow, %p)\n", This, ppvObject);
88         *ppvObject = OLEWIN(This);
89     }else if(IsEqualGUID(&IID_IOleInPlaceObject, riid)) {
90         TRACE("(%p)->(IID_IOleInPlaceObject, %p)\n", This, ppvObject);
91         *ppvObject = INPLACEOBJ(This);
92     }else if(IsEqualGUID(&IID_IOleInPlaceObjectWindowless, riid)) {
93         TRACE("(%p)->(IID_IOleInPlaceObjectWindowless, %p)\n", This, ppvObject);
94         *ppvObject = INPLACEWIN(This);
95     }else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
96         TRACE("(%p)->(IID_IServiceProvider, %p)\n", This, ppvObject);
97         *ppvObject = SERVPROV(This);
98     }else if(IsEqualGUID(&IID_IOleCommandTarget, riid)) {
99         TRACE("(%p)->(IID_IOleCommandTarget, %p)\n", This, ppvObject);
100         *ppvObject = CMDTARGET(This);
101     }else if(IsEqualGUID(&IID_IOleControl, riid)) {
102         TRACE("(%p)->(IID_IOleControl, %p)\n", This, ppvObject);
103         *ppvObject = CONTROL(This);
104     }
105
106     if(*ppvObject) {
107         IHTMLDocument2_AddRef(iface);
108         return S_OK;
109     }
110
111     FIXME("(%p)->(%s %p) interface not supported\n", This, debugstr_guid(riid), ppvObject);
112     return E_NOINTERFACE;
113 }
114
115 static ULONG WINAPI HTMLDocument_AddRef(IHTMLDocument2 *iface)
116 {
117     HTMLDocument *This = HTMLDOC_THIS(iface);
118     ULONG ref = InterlockedIncrement(&This->ref);
119     TRACE("(%p) ref = %lu\n", This, ref);
120     return ref;
121 }
122
123 static ULONG WINAPI HTMLDocument_Release(IHTMLDocument2 *iface)
124 {
125     HTMLDocument *This = HTMLDOC_THIS(iface);
126     ULONG ref = InterlockedDecrement(&This->ref);
127
128     TRACE("(%p) ref = %lu\n", This, ref);
129
130     if(!ref) {
131         if(This->client)
132             IOleObject_SetClientSite(OLEOBJ(This), NULL);
133         if(This->in_place_active)
134             IOleInPlaceObjectWindowless_InPlaceDeactivate(INPLACEWIN(This));
135         if(This->ipsite)
136             IOleDocumentView_SetInPlaceSite(DOCVIEW(This), NULL);
137         if(This->hwnd)
138             DestroyWindow(This->hwnd);
139         if(This->nscontainer)
140             HTMLDocument_NSContainer_Destroy(This);
141         HeapFree(GetProcessHeap(), 0, This);
142
143         UNLOCK_MODULE();
144     }
145
146     return ref;
147 }
148
149 static HRESULT WINAPI HTMLDocument_GetTypeInfoCount(IHTMLDocument2 *iface, UINT *pctinfo)
150 {
151     FIXME("(%p)->(%p)\n", iface, pctinfo);
152     return E_NOTIMPL;
153 }
154
155 static HRESULT WINAPI HTMLDocument_GetTypeInfo(IHTMLDocument2 *iface, UINT iTInfo,
156                                                 LCID lcid, ITypeInfo **ppTInfo)
157 {
158     FIXME("(%p)->(%u %lu %p)\n", iface, iTInfo, lcid, ppTInfo);
159     return E_NOTIMPL;
160 }
161
162 static HRESULT WINAPI HTMLDocument_GetIDsOfNames(IHTMLDocument2 *iface, REFIID riid,
163                                                 LPOLESTR *rgszNames, UINT cNames,
164                                                 LCID lcid, DISPID *rgDispId)
165 {
166     FIXME("(%p)->(%s %p %u %lu %p)\n", iface, debugstr_guid(riid), rgszNames, cNames,
167                                         lcid, rgDispId);
168     return E_NOTIMPL;
169 }
170
171 static HRESULT WINAPI HTMLDocument_Invoke(IHTMLDocument2 *iface, DISPID dispIdMember,
172                             REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
173                             VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
174 {
175     FIXME("(%p)->(%ld %s %ld %d %p %p %p %p)\n", iface, dispIdMember, debugstr_guid(riid),
176                                   lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
177     return E_NOTIMPL;
178 }
179
180 static HRESULT WINAPI HTMLDocument_get_Script(IHTMLDocument2 *iface, IDispatch **p)
181 {
182     FIXME("(%p)->(%p)\n", iface, p);
183     return E_NOTIMPL;
184 }
185
186 static HRESULT WINAPI HTMLDocument_get_all(IHTMLDocument2 *iface, IHTMLElementCollection **p)
187 {
188     FIXME("(%p)->(%p)\n", iface, p);
189     return E_NOTIMPL;
190 }
191
192 static HRESULT WINAPI HTMLDocument_get_body(IHTMLDocument2 *iface, IHTMLElement **p)
193 {
194     FIXME("(%p)->(%p)\n", iface, p);
195     return E_NOTIMPL;
196 }
197
198 static HRESULT WINAPI HTMLDocument_get_activeElement(IHTMLDocument2 *iface, IHTMLElement **p)
199 {
200     FIXME("(%p)->(%p)\n", iface, p);
201     return E_NOTIMPL;
202 }
203
204 static HRESULT WINAPI HTMLDocument_get_images(IHTMLDocument2 *iface, IHTMLElementCollection **p)
205 {
206     FIXME("(%p)->(%p)\n", iface, p);
207     return E_NOTIMPL;
208 }
209
210 static HRESULT WINAPI HTMLDocument_get_applets(IHTMLDocument2 *iface, IHTMLElementCollection **p)
211 {
212     FIXME("(%p)->(%p)\n", iface, p);
213     return E_NOTIMPL;
214 }
215
216 static HRESULT WINAPI HTMLDocument_get_links(IHTMLDocument2 *iface, IHTMLElementCollection **p)
217 {
218     FIXME("(%p)->(%p)\n", iface, p);
219     return E_NOTIMPL;
220 }
221
222 static HRESULT WINAPI HTMLDocument_get_forms(IHTMLDocument2 *iface, IHTMLElementCollection **p)
223 {
224     FIXME("(%p)->(%p)\n", iface, p);
225     return E_NOTIMPL;
226 }
227
228 static HRESULT WINAPI HTMLDocument_get_anchors(IHTMLDocument2 *iface, IHTMLElementCollection **p)
229 {
230     FIXME("(%p)->(%p)\n", iface, p);
231     return E_NOTIMPL;
232 }
233
234 static HRESULT WINAPI HTMLDocument_put_title(IHTMLDocument2 *iface, BSTR v)
235 {
236     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
237     return E_NOTIMPL;
238 }
239
240 static HRESULT WINAPI HTMLDocument_get_title(IHTMLDocument2 *iface, BSTR *p)
241 {
242     FIXME("(%p)->(%p)\n", iface, p);
243     return E_NOTIMPL;
244 }
245
246 static HRESULT WINAPI HTMLDocument_get_scripts(IHTMLDocument2 *iface, IHTMLElementCollection **p)
247 {
248     FIXME("(%p)->(%p)\n", iface, p);
249     return E_NOTIMPL;
250 }
251
252 static HRESULT WINAPI HTMLDocument_put_designMode(IHTMLDocument2 *iface, BSTR v)
253 {
254     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
255     return E_NOTIMPL;
256 }
257
258 static HRESULT WINAPI HTMLDocument_get_designMode(IHTMLDocument2 *iface, BSTR *p)
259 {
260     FIXME("(%p)->(%p)\n", iface, p);
261     return E_NOTIMPL;
262 }
263
264 static HRESULT WINAPI HTMLDocument_get_selection(IHTMLDocument2 *iface, IHTMLSelectionObject **p)
265 {
266     FIXME("(%p)->(%p)\n", iface, p);
267     return E_NOTIMPL;
268 }
269
270 static HRESULT WINAPI HTMLDocument_get_readyState(IHTMLDocument2 *iface, BSTR *p)
271 {
272     FIXME("(%p)->(%p)\n", iface, p);
273     return E_NOTIMPL;
274 }
275
276 static HRESULT WINAPI HTMLDocument_get_frames(IHTMLDocument2 *iface, IHTMLFramesCollection2 **p)
277 {
278     FIXME("(%p)->(%p)\n", iface, p);
279     return E_NOTIMPL;
280 }
281
282 static HRESULT WINAPI HTMLDocument_get_embeds(IHTMLDocument2 *iface, IHTMLElementCollection **p)
283 {
284     FIXME("(%p)->(%p)\n", iface, p);
285     return E_NOTIMPL;
286 }
287
288 static HRESULT WINAPI HTMLDocument_get_plugins(IHTMLDocument2 *iface, IHTMLElementCollection **p)
289 {
290     FIXME("(%p)->(%p)\n", iface, p);
291     return E_NOTIMPL;
292 }
293
294 static HRESULT WINAPI HTMLDocument_put_alinkColor(IHTMLDocument2 *iface, VARIANT v)
295 {
296     FIXME("(%p)\n", iface);
297     return E_NOTIMPL;
298 }
299
300 static HRESULT WINAPI HTMLDocument_get_alinkColor(IHTMLDocument2 *iface, VARIANT *p)
301 {
302     FIXME("(%p)->(%p)\n", iface, p);
303     return E_NOTIMPL;
304 }
305
306 static HRESULT WINAPI HTMLDocument_put_bgColor(IHTMLDocument2 *iface, VARIANT v)
307 {
308     FIXME("(%p)\n", iface);
309     return E_NOTIMPL;
310 }
311
312 static HRESULT WINAPI HTMLDocument_get_bgColor(IHTMLDocument2 *iface, VARIANT *p)
313 {
314     FIXME("(%p)->(%p)\n", iface, p);
315     return E_NOTIMPL;
316 }
317
318 static HRESULT WINAPI HTMLDocument_put_fgColor(IHTMLDocument2 *iface, VARIANT v)
319 {
320     FIXME("(%p)\n", iface);
321     return E_NOTIMPL;
322 }
323
324 static HRESULT WINAPI HTMLDocument_get_fgColor(IHTMLDocument2 *iface, VARIANT *p)
325 {
326     FIXME("(%p)->(%p)\n", iface, p);
327     return E_NOTIMPL;
328 }
329
330 static HRESULT WINAPI HTMLDocument_put_linkColor(IHTMLDocument2 *iface, VARIANT v)
331 {
332     FIXME("(%p)->()\n", iface);
333     return E_NOTIMPL;
334 }
335
336 static HRESULT WINAPI HTMLDocument_get_linkColor(IHTMLDocument2 *iface, VARIANT *p)
337 {
338     FIXME("(%p)->(%p)\n", iface, p);
339     return E_NOTIMPL;
340 }
341
342 static HRESULT WINAPI HTMLDocument_put_vlinkColor(IHTMLDocument2 *iface, VARIANT v)
343 {
344     FIXME("(%p)\n", iface);
345     return E_NOTIMPL;
346 }
347
348 static HRESULT WINAPI HTMLDocument_get_vlinkColor(IHTMLDocument2 *iface, VARIANT *p)
349 {
350     FIXME("(%p)->(%p)\n", iface, p);
351     return E_NOTIMPL;
352 }
353
354 static HRESULT WINAPI HTMLDocument_get_referrer(IHTMLDocument2 *iface, BSTR *p)
355 {
356     FIXME("(%p)->(%p)\n", iface, p);
357     return E_NOTIMPL;
358 }
359
360 static HRESULT WINAPI HTMLDocument_get_location(IHTMLDocument2 *iface, IHTMLLocation **p)
361 {
362     FIXME("(%p)->(%p)\n", iface, p);
363     return E_NOTIMPL;
364 }
365
366 static HRESULT WINAPI HTMLDocument_get_lastModified(IHTMLDocument2 *iface, BSTR *p)
367 {
368     FIXME("(%p)->(%p)\n", iface, p);
369     return E_NOTIMPL;
370 }
371
372 static HRESULT WINAPI HTMLDocument_put_URL(IHTMLDocument2 *iface, BSTR v)
373 {
374     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
375     return E_NOTIMPL;
376 }
377
378 static HRESULT WINAPI HTMLDocument_get_URL(IHTMLDocument2 *iface, BSTR *p)
379 {
380     FIXME("(%p)->(%p)\n", iface, p);
381     return E_NOTIMPL;
382 }
383
384 static HRESULT WINAPI HTMLDocument_put_domain(IHTMLDocument2 *iface, BSTR v)
385 {
386     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
387     return E_NOTIMPL;
388 }
389
390 static HRESULT WINAPI HTMLDocument_get_domain(IHTMLDocument2 *iface, BSTR *p)
391 {
392     FIXME("(%p)->(%p)\n", iface, p);
393     return E_NOTIMPL;
394 }
395
396 static HRESULT WINAPI HTMLDocument_put_cookie(IHTMLDocument2 *iface, BSTR v)
397 {
398     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
399     return E_NOTIMPL;
400 }
401
402 static HRESULT WINAPI HTMLDocument_get_cookie(IHTMLDocument2 *iface, BSTR *p)
403 {
404     FIXME("(%p)->(%p)\n", iface, p);
405     return E_NOTIMPL;
406 }
407
408 static HRESULT WINAPI HTMLDocument_put_expando(IHTMLDocument2 *iface, VARIANT_BOOL v)
409 {
410     FIXME("(%p)->(%x)\n", iface, v);
411     return E_NOTIMPL;
412 }
413
414 static HRESULT WINAPI HTMLDocument_get_expando(IHTMLDocument2 *iface, VARIANT_BOOL *p)
415 {
416     FIXME("(%p)->(%p)\n", iface, p);
417     return E_NOTIMPL;
418 }
419
420 static HRESULT WINAPI HTMLDocument_put_charset(IHTMLDocument2 *iface, BSTR v)
421 {
422     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
423     return E_NOTIMPL;
424 }
425
426 static HRESULT WINAPI HTMLDocument_get_charset(IHTMLDocument2 *iface, BSTR *p)
427 {
428     FIXME("(%p)->(%p)\n", iface, p);
429     return E_NOTIMPL;
430 }
431
432 static HRESULT WINAPI HTMLDocument_put_defaultCharset(IHTMLDocument2 *iface, BSTR v)
433 {
434     FIXME("(%p)->(%s)\n", iface, debugstr_w(v));
435     return E_NOTIMPL;
436 }
437
438 static HRESULT WINAPI HTMLDocument_get_defaultCharset(IHTMLDocument2 *iface, BSTR *p)
439 {
440     FIXME("(%p)->(%p)\n", iface, p);
441     return E_NOTIMPL;
442 }
443
444 static HRESULT WINAPI HTMLDocument_get_mimeType(IHTMLDocument2 *iface, BSTR *p)
445 {
446     FIXME("(%p)->(%p)\n", iface, p);
447     return E_NOTIMPL;
448 }
449
450 static HRESULT WINAPI HTMLDocument_get_fileSize(IHTMLDocument2 *iface, BSTR *p)
451 {
452     FIXME("(%p)->(%p)\n", iface, p);
453     return E_NOTIMPL;
454 }
455
456 static HRESULT WINAPI HTMLDocument_get_fileCreatedDate(IHTMLDocument2 *iface, BSTR *p)
457 {
458     FIXME("(%p)->(%p)\n", iface, p);
459     return E_NOTIMPL;
460 }
461
462 static HRESULT WINAPI HTMLDocument_get_fileModifiedDate(IHTMLDocument2 *iface, BSTR *p)
463 {
464     FIXME("(%p)->(%p)\n", iface, p);
465     return E_NOTIMPL;
466 }
467
468 static HRESULT WINAPI HTMLDocument_get_fileUpdatedDate(IHTMLDocument2 *iface, BSTR *p)
469 {
470     FIXME("(%p)->(%p)\n", iface, p);
471     return E_NOTIMPL;
472 }
473
474 static HRESULT WINAPI HTMLDocument_get_security(IHTMLDocument2 *iface, BSTR *p)
475 {
476     FIXME("(%p)->(%p)\n", iface, p);
477     return E_NOTIMPL;
478 }
479
480 static HRESULT WINAPI HTMLDocument_get_protocol(IHTMLDocument2 *iface, BSTR *p)
481 {
482     FIXME("(%p)->(%p)\n", iface, p);
483     return E_NOTIMPL;
484 }
485
486 static HRESULT WINAPI HTMLDocument_get_nameProp(IHTMLDocument2 *iface, BSTR *p)
487 {
488     FIXME("(%p)->(%p)\n", iface, p);
489     return E_NOTIMPL;
490 }
491
492 static HRESULT WINAPI HTMLDocument_write(IHTMLDocument2 *iface, SAFEARRAY *psarray)
493 {
494     FIXME("(%p)->(%p)\n", iface, psarray);
495     return E_NOTIMPL;
496 }
497
498 static HRESULT WINAPI HTMLDocument_writeln(IHTMLDocument2 *iface, SAFEARRAY *psarray)
499 {
500     FIXME("(%p)->(%p)\n", iface, psarray);
501     return E_NOTIMPL;
502 }
503
504 static HRESULT WINAPI HTMLDocument_open(IHTMLDocument2 *iface, BSTR url, VARIANT name,
505                         VARIANT features, VARIANT replace, IDispatch **pomWindowResult)
506 {
507     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(url), pomWindowResult);
508     return E_NOTIMPL;
509 }
510
511 static HRESULT WINAPI HTMLDocument_close(IHTMLDocument2 *iface)
512 {
513     FIXME("(%p)\n", iface);
514     return E_NOTIMPL;
515 }
516
517 static HRESULT WINAPI HTMLDocument_clear(IHTMLDocument2 *iface)
518 {
519     FIXME("(%p)\n", iface);
520     return E_NOTIMPL;
521 }
522
523 static HRESULT WINAPI HTMLDocument_queryCommandSupported(IHTMLDocument2 *iface, BSTR cmdID,
524                                                         VARIANT_BOOL *pfRet)
525 {
526     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
527     return E_NOTIMPL;
528 }
529
530 static HRESULT WINAPI HTMLDocument_queryCommandEnabled(IHTMLDocument2 *iface, BSTR cmdID,
531                                                         VARIANT_BOOL *pfRet)
532 {
533     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
534     return E_NOTIMPL;
535 }
536
537 static HRESULT WINAPI HTMLDocument_queryCommandState(IHTMLDocument2 *iface, BSTR cmdID,
538                                                         VARIANT_BOOL *pfRet)
539 {
540     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
541     return E_NOTIMPL;
542 }
543
544 static HRESULT WINAPI HTMLDocument_queryCommandIndeterm(IHTMLDocument2 *iface, BSTR cmdID,
545                                                         VARIANT_BOOL *pfRet)
546 {
547     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
548     return E_NOTIMPL;
549 }
550
551 static HRESULT WINAPI HTMLDocument_queryCommandText(IHTMLDocument2 *iface, BSTR cmdID,
552                                                         BSTR *pfRet)
553 {
554     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
555     return E_NOTIMPL;
556 }
557
558 static HRESULT WINAPI HTMLDocument_queryCommandValue(IHTMLDocument2 *iface, BSTR cmdID,
559                                                         VARIANT *pfRet)
560 {
561     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
562     return E_NOTIMPL;
563 }
564
565 static HRESULT WINAPI HTMLDocument_execCommand(IHTMLDocument2 *iface, BSTR cmdID,
566                                 VARIANT_BOOL showUI, VARIANT value, VARIANT_BOOL *pfRet)
567 {
568     FIXME("(%p)->(%s %x %p)\n", iface, debugstr_w(cmdID), showUI, pfRet);
569     return E_NOTIMPL;
570 }
571
572 static HRESULT WINAPI HTMLDocument_execCommandShowHelp(IHTMLDocument2 *iface, BSTR cmdID,
573                                                         VARIANT_BOOL *pfRet)
574 {
575     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(cmdID), pfRet);
576     return E_NOTIMPL;
577 }
578
579 static HRESULT WINAPI HTMLDocument_createElement(IHTMLDocument2 *iface, BSTR eTag,
580                                                     IHTMLElement **newElem)
581 {
582     FIXME("(%p)->(%s %p)\n", iface, debugstr_w(eTag), newElem);
583     return E_NOTIMPL;
584 }
585
586 static HRESULT WINAPI HTMLDocument_put_onhelp(IHTMLDocument2 *iface, VARIANT v)
587 {
588     FIXME("(%p)\n", iface);
589     return E_NOTIMPL;
590 }
591
592 static HRESULT WINAPI HTMLDocument_get_onhelp(IHTMLDocument2 *iface, VARIANT *p)
593 {
594     FIXME("(%p)->(%p)\n", iface, p);
595     return E_NOTIMPL;
596 }
597
598 static HRESULT WINAPI HTMLDocument_put_onclick(IHTMLDocument2 *iface, VARIANT v)
599 {
600     FIXME("(%p)\n", iface);
601     return E_NOTIMPL;
602 }
603
604 static HRESULT WINAPI HTMLDocument_get_onclick(IHTMLDocument2 *iface, VARIANT *p)
605 {
606     FIXME("(%p)->(%p)\n", iface, p);
607     return E_NOTIMPL;
608 }
609
610 static HRESULT WINAPI HTMLDocument_put_ondblclick(IHTMLDocument2 *iface, VARIANT v)
611 {
612     FIXME("(%p)\n", iface);
613     return E_NOTIMPL;
614 }
615
616 static HRESULT WINAPI HTMLDocument_get_ondblclick(IHTMLDocument2 *iface, VARIANT *p)
617 {
618     FIXME("(%p)->(%p)\n", iface, p);
619     return E_NOTIMPL;
620 }
621
622 static HRESULT WINAPI HTMLDocument_put_onkeyup(IHTMLDocument2 *iface, VARIANT v)
623 {
624     FIXME("(%p)\n", iface);
625     return E_NOTIMPL;
626 }
627
628 static HRESULT WINAPI HTMLDocument_get_onkeyup(IHTMLDocument2 *iface, VARIANT *p)
629 {
630     FIXME("(%p)->(%p)\n", iface, p);
631     return E_NOTIMPL;
632 }
633
634 static HRESULT WINAPI HTMLDocument_put_onkeydown(IHTMLDocument2 *iface, VARIANT v)
635 {
636     FIXME("(%p)\n", iface);
637     return E_NOTIMPL;
638 }
639
640 static HRESULT WINAPI HTMLDocument_get_onkeydown(IHTMLDocument2 *iface, VARIANT *p)
641 {
642     FIXME("(%p)->(%p)\n", iface, p);
643     return E_NOTIMPL;
644 }
645
646 static HRESULT WINAPI HTMLDocument_put_onkeypress(IHTMLDocument2 *iface, VARIANT v)
647 {
648     FIXME("(%p)\n", iface);
649     return E_NOTIMPL;
650 }
651
652 static HRESULT WINAPI HTMLDocument_get_onkeypress(IHTMLDocument2 *iface, VARIANT *p)
653 {
654     FIXME("(%p)->(%p)\n", iface, p);
655     return E_NOTIMPL;
656 }
657
658 static HRESULT WINAPI HTMLDocument_put_onmouseup(IHTMLDocument2 *iface, VARIANT v)
659 {
660     FIXME("(%p)\n", iface);
661     return E_NOTIMPL;
662 }
663
664 static HRESULT WINAPI HTMLDocument_get_onmouseup(IHTMLDocument2 *iface, VARIANT *p)
665 {
666     FIXME("(%p)->(%p)\n", iface, p);
667     return E_NOTIMPL;
668 }
669
670 static HRESULT WINAPI HTMLDocument_put_onmousedown(IHTMLDocument2 *iface, VARIANT v)
671 {
672     FIXME("(%p)\n", iface);
673     return E_NOTIMPL;
674 }
675
676 static HRESULT WINAPI HTMLDocument_get_onmousedown(IHTMLDocument2 *iface, VARIANT *p)
677 {
678     FIXME("(%p)->(%p)\n", iface, p);
679     return E_NOTIMPL;
680 }
681
682 static HRESULT WINAPI HTMLDocument_put_onmousemove(IHTMLDocument2 *iface, VARIANT v)
683 {
684     FIXME("(%p)\n", iface);
685     return E_NOTIMPL;
686 }
687
688 static HRESULT WINAPI HTMLDocument_get_onmousemove(IHTMLDocument2 *iface, VARIANT *p)
689 {
690     FIXME("(%p)->(%p)\n", iface, p);
691     return E_NOTIMPL;
692 }
693
694 static HRESULT WINAPI HTMLDocument_put_onmouseout(IHTMLDocument2 *iface, VARIANT v)
695 {
696     FIXME("(%p)\n", iface);
697     return E_NOTIMPL;
698 }
699
700 static HRESULT WINAPI HTMLDocument_get_onmouseout(IHTMLDocument2 *iface, VARIANT *p)
701 {
702     FIXME("(%p)->(%p)\n", iface, p);
703     return E_NOTIMPL;
704 }
705
706 static HRESULT WINAPI HTMLDocument_put_onmouseover(IHTMLDocument2 *iface, VARIANT v)
707 {
708     FIXME("(%p)\n", iface);
709     return E_NOTIMPL;
710 }
711
712 static HRESULT WINAPI HTMLDocument_get_onmouseover(IHTMLDocument2 *iface, VARIANT *p)
713 {
714     FIXME("(%p)->(%p)\n", iface, p);
715     return E_NOTIMPL;
716 }
717
718 static HRESULT WINAPI HTMLDocument_put_onreadystatechange(IHTMLDocument2 *iface, VARIANT v)
719 {
720     FIXME("(%p)\n", iface);
721     return E_NOTIMPL;
722 }
723
724 static HRESULT WINAPI HTMLDocument_get_onreadystatechange(IHTMLDocument2 *iface, VARIANT *p)
725 {
726     FIXME("(%p)->(%p)\n", iface, p);
727     return E_NOTIMPL;
728 }
729
730 static HRESULT WINAPI HTMLDocument_put_onafterupdate(IHTMLDocument2 *iface, VARIANT v)
731 {
732     FIXME("(%p)\n", iface);
733     return E_NOTIMPL;
734 }
735
736 static HRESULT WINAPI HTMLDocument_get_onafterupdate(IHTMLDocument2 *iface, VARIANT *p)
737 {
738     FIXME("(%p)->(%p)\n", iface, p);
739     return E_NOTIMPL;
740 }
741
742 static HRESULT WINAPI HTMLDocument_put_onrowexit(IHTMLDocument2 *iface, VARIANT v)
743 {
744     FIXME("(%p)\n", iface);
745     return E_NOTIMPL;
746 }
747
748 static HRESULT WINAPI HTMLDocument_get_onrowexit(IHTMLDocument2 *iface, VARIANT *p)
749 {
750     FIXME("(%p)->(%p)\n", iface, p);
751     return E_NOTIMPL;
752 }
753
754 static HRESULT WINAPI HTMLDocument_put_onrowenter(IHTMLDocument2 *iface, VARIANT v)
755 {
756     FIXME("(%p)\n", iface);
757     return E_NOTIMPL;
758 }
759
760 static HRESULT WINAPI HTMLDocument_get_onrowenter(IHTMLDocument2 *iface, VARIANT *p)
761 {
762     FIXME("(%p)->(%p)\n", iface, p);
763     return E_NOTIMPL;
764 }
765
766 static HRESULT WINAPI HTMLDocument_put_ondragstart(IHTMLDocument2 *iface, VARIANT v)
767 {
768     FIXME("(%p)\n", iface);
769     return E_NOTIMPL;
770 }
771
772 static HRESULT WINAPI HTMLDocument_get_ondragstart(IHTMLDocument2 *iface, VARIANT *p)
773 {
774     FIXME("(%p)->(%p)\n", iface, p);
775     return E_NOTIMPL;
776 }
777
778 static HRESULT WINAPI HTMLDocument_put_onselectstart(IHTMLDocument2 *iface, VARIANT v)
779 {
780     FIXME("(%p)\n", iface);
781     return E_NOTIMPL;
782 }
783
784 static HRESULT WINAPI HTMLDocument_get_onselectstart(IHTMLDocument2 *iface, VARIANT *p)
785 {
786     FIXME("(%p)->(%p)\n", iface, p);
787     return E_NOTIMPL;
788 }
789
790 static HRESULT WINAPI HTMLDocument_elementFromPoint(IHTMLDocument2 *iface, long x, long y,
791                                                         IHTMLElement **elementHit)
792 {
793     FIXME("(%p)->(%ld %ld %p)\n", iface, x, y, elementHit);
794     return E_NOTIMPL;
795 }
796
797 static HRESULT WINAPI HTMLDocument_get_parentWindow(IHTMLDocument2 *iface, IHTMLWindow2 **p)
798 {
799     FIXME("(%p)->(%p)\n", iface, p);
800     return E_NOTIMPL;
801 }
802
803 static HRESULT WINAPI HTMLDocument_get_styleSheets(IHTMLDocument2 *iface,
804                                                     IHTMLStyleSheetsCollection **p)
805 {
806     FIXME("(%p)->(%p)\n", iface, p);
807     return E_NOTIMPL;
808 }
809
810 static HRESULT WINAPI HTMLDocument_put_onbeforeupdate(IHTMLDocument2 *iface, VARIANT v)
811 {
812     FIXME("(%p)\n", iface);
813     return E_NOTIMPL;
814 }
815
816 static HRESULT WINAPI HTMLDocument_get_onbeforeupdate(IHTMLDocument2 *iface, VARIANT *p)
817 {
818     FIXME("(%p)->(%p)\n", iface, p);
819     return E_NOTIMPL;
820 }
821
822 static HRESULT WINAPI HTMLDocument_put_onerrorupdate(IHTMLDocument2 *iface, VARIANT v)
823 {
824     FIXME("(%p)\n", iface);
825     return E_NOTIMPL;
826 }
827
828 static HRESULT WINAPI HTMLDocument_get_onerrorupdate(IHTMLDocument2 *iface, VARIANT *p)
829 {
830     FIXME("(%p)->(%p)\n", iface, p);
831     return E_NOTIMPL;
832 }
833
834 static HRESULT WINAPI HTMLDocument_toString(IHTMLDocument2 *iface, BSTR *String)
835 {
836     FIXME("(%p)->(%p)\n", iface, String);
837     return E_NOTIMPL;
838 }
839
840 static HRESULT WINAPI HTMLDocument_createStyleSheet(IHTMLDocument2 *iface, BSTR bstrHref,
841                                             long lIndex, IHTMLStyleSheet **ppnewStyleSheet)
842 {
843     FIXME("(%p)->(%s %ld %p)\n", iface, debugstr_w(bstrHref), lIndex, ppnewStyleSheet);
844     return E_NOTIMPL;
845 }
846
847 static const IHTMLDocument2Vtbl HTMLDocumentVtbl = {
848     HTMLDocument_QueryInterface,
849     HTMLDocument_AddRef,
850     HTMLDocument_Release,
851     HTMLDocument_GetTypeInfoCount,
852     HTMLDocument_GetTypeInfo,
853     HTMLDocument_GetIDsOfNames,
854     HTMLDocument_Invoke,
855     HTMLDocument_get_Script,
856     HTMLDocument_get_all,
857     HTMLDocument_get_body,
858     HTMLDocument_get_activeElement,
859     HTMLDocument_get_images,
860     HTMLDocument_get_applets,
861     HTMLDocument_get_links,
862     HTMLDocument_get_forms,
863     HTMLDocument_get_anchors,
864     HTMLDocument_put_title,
865     HTMLDocument_get_title,
866     HTMLDocument_get_scripts,
867     HTMLDocument_put_designMode,
868     HTMLDocument_get_designMode,
869     HTMLDocument_get_selection,
870     HTMLDocument_get_readyState,
871     HTMLDocument_get_frames,
872     HTMLDocument_get_embeds,
873     HTMLDocument_get_plugins,
874     HTMLDocument_put_alinkColor,
875     HTMLDocument_get_alinkColor,
876     HTMLDocument_put_bgColor,
877     HTMLDocument_get_bgColor,
878     HTMLDocument_put_fgColor,
879     HTMLDocument_get_fgColor,
880     HTMLDocument_put_linkColor,
881     HTMLDocument_get_linkColor,
882     HTMLDocument_put_vlinkColor,
883     HTMLDocument_get_vlinkColor,
884     HTMLDocument_get_referrer,
885     HTMLDocument_get_location,
886     HTMLDocument_get_lastModified,
887     HTMLDocument_put_URL,
888     HTMLDocument_get_URL,
889     HTMLDocument_put_domain,
890     HTMLDocument_get_domain,
891     HTMLDocument_put_cookie,
892     HTMLDocument_get_cookie,
893     HTMLDocument_put_expando,
894     HTMLDocument_get_expando,
895     HTMLDocument_put_charset,
896     HTMLDocument_get_charset,
897     HTMLDocument_put_defaultCharset,
898     HTMLDocument_get_defaultCharset,
899     HTMLDocument_get_mimeType,
900     HTMLDocument_get_fileSize,
901     HTMLDocument_get_fileCreatedDate,
902     HTMLDocument_get_fileModifiedDate,
903     HTMLDocument_get_fileUpdatedDate,
904     HTMLDocument_get_security,
905     HTMLDocument_get_protocol,
906     HTMLDocument_get_nameProp,
907     HTMLDocument_write,
908     HTMLDocument_writeln,
909     HTMLDocument_open,
910     HTMLDocument_close,
911     HTMLDocument_clear,
912     HTMLDocument_queryCommandSupported,
913     HTMLDocument_queryCommandEnabled,
914     HTMLDocument_queryCommandState,
915     HTMLDocument_queryCommandIndeterm,
916     HTMLDocument_queryCommandText,
917     HTMLDocument_queryCommandValue,
918     HTMLDocument_execCommand,
919     HTMLDocument_execCommandShowHelp,
920     HTMLDocument_createElement,
921     HTMLDocument_put_onhelp,
922     HTMLDocument_get_onhelp,
923     HTMLDocument_put_onclick,
924     HTMLDocument_get_onclick,
925     HTMLDocument_put_ondblclick,
926     HTMLDocument_get_ondblclick,
927     HTMLDocument_put_onkeyup,
928     HTMLDocument_get_onkeyup,
929     HTMLDocument_put_onkeydown,
930     HTMLDocument_get_onkeydown,
931     HTMLDocument_put_onkeypress,
932     HTMLDocument_get_onkeypress,
933     HTMLDocument_put_onmouseup,
934     HTMLDocument_get_onmouseup,
935     HTMLDocument_put_onmousedown,
936     HTMLDocument_get_onmousedown,
937     HTMLDocument_put_onmousemove,
938     HTMLDocument_get_onmousemove,
939     HTMLDocument_put_onmouseout,
940     HTMLDocument_get_onmouseout,
941     HTMLDocument_put_onmouseover,
942     HTMLDocument_get_onmouseover,
943     HTMLDocument_put_onreadystatechange,
944     HTMLDocument_get_onreadystatechange,
945     HTMLDocument_put_onafterupdate,
946     HTMLDocument_get_onafterupdate,
947     HTMLDocument_put_onrowexit,
948     HTMLDocument_get_onrowexit,
949     HTMLDocument_put_onrowenter,
950     HTMLDocument_get_onrowenter,
951     HTMLDocument_put_ondragstart,
952     HTMLDocument_get_ondragstart,
953     HTMLDocument_put_onselectstart,
954     HTMLDocument_get_onselectstart,
955     HTMLDocument_elementFromPoint,
956     HTMLDocument_get_parentWindow,
957     HTMLDocument_get_styleSheets,
958     HTMLDocument_put_onbeforeupdate,
959     HTMLDocument_get_onbeforeupdate,
960     HTMLDocument_put_onerrorupdate,
961     HTMLDocument_get_onerrorupdate,
962     HTMLDocument_toString,
963     HTMLDocument_createStyleSheet
964 };
965
966 HRESULT HTMLDocument_Create(IUnknown *pUnkOuter, REFIID riid, void** ppvObject)
967 {
968     HTMLDocument *ret;
969     HRESULT hres;
970
971     TRACE("(%p %s %p)\n", pUnkOuter, debugstr_guid(riid), ppvObject);
972
973     ret = HeapAlloc(GetProcessHeap(), 0, sizeof(HTMLDocument));
974     ret->lpHTMLDocument2Vtbl = &HTMLDocumentVtbl;
975     ret->ref = 0;
976
977     hres = IHTMLDocument_QueryInterface(HTMLDOC(ret), riid, ppvObject);
978     if(FAILED(hres)) {
979         HeapFree(GetProcessHeap(), 0, ret);
980         return hres;
981     }
982
983     LOCK_MODULE();
984
985     HTMLDocument_Persist_Init(ret);
986     HTMLDocument_OleObj_Init(ret);
987     HTMLDocument_View_Init(ret);
988     HTMLDocument_Window_Init(ret);
989     HTMLDocument_Service_Init(ret);
990     HTMLDocument_NSContainer_Init(ret);
991
992     return hres;
993 }