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