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