2 * Copyright 2005 Jacek Caban
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.
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.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #define NONAMELESSUNION
26 #define NONAMELESSSTRUCT
35 #include "wine/debug.h"
36 #include "wine/unicode.h"
38 #include "mshtml_private.h"
39 #include "htmlevent.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
47 } download_proc_task_t
;
49 static BOOL
use_gecko_script(LPCWSTR url
)
51 static const WCHAR fileW
[] = {'f','i','l','e',':'};
52 static const WCHAR aboutW
[] = {'a','b','o','u','t',':'};
53 static const WCHAR resW
[] = {'r','e','s',':'};
55 return strncmpiW(fileW
, url
, sizeof(fileW
)/sizeof(WCHAR
))
56 && strncmpiW(aboutW
, url
, sizeof(aboutW
)/sizeof(WCHAR
))
57 && strncmpiW(resW
, url
, sizeof(resW
)/sizeof(WCHAR
));
60 void set_current_mon(HTMLWindow
*This
, IMoniker
*mon
)
65 IMoniker_Release(This
->mon
);
70 CoTaskMemFree(This
->url
);
80 hres
= IMoniker_GetDisplayName(mon
, NULL
, NULL
, &This
->url
);
82 WARN("GetDisplayName failed: %08x\n", hres
);
84 set_script_mode(This
, use_gecko_script(This
->url
) ? SCRIPTMODE_GECKO
: SCRIPTMODE_ACTIVESCRIPT
);
87 static void set_progress_proc(task_t
*_task
)
89 docobj_task_t
*task
= (docobj_task_t
*)_task
;
90 IOleCommandTarget
*olecmd
= NULL
;
91 HTMLDocumentObj
*doc
= task
->doc
;
97 IOleClientSite_QueryInterface(doc
->client
, &IID_IOleCommandTarget
, (void**)&olecmd
);
100 VARIANT progress_max
, progress
;
102 V_VT(&progress_max
) = VT_I4
;
103 V_I4(&progress_max
) = 0; /* FIXME */
104 IOleCommandTarget_Exec(olecmd
, NULL
, OLECMDID_SETPROGRESSMAX
, OLECMDEXECOPT_DONTPROMPTUSER
,
105 &progress_max
, NULL
);
107 V_VT(&progress
) = VT_I4
;
108 V_I4(&progress
) = 0; /* FIXME */
109 IOleCommandTarget_Exec(olecmd
, NULL
, OLECMDID_SETPROGRESSPOS
, OLECMDEXECOPT_DONTPROMPTUSER
,
113 if(doc
->usermode
== EDITMODE
&& doc
->hostui
) {
114 DOCHOSTUIINFO hostinfo
;
116 memset(&hostinfo
, 0, sizeof(DOCHOSTUIINFO
));
117 hostinfo
.cbSize
= sizeof(DOCHOSTUIINFO
);
118 hres
= IDocHostUIHandler_GetHostInfo(doc
->hostui
, &hostinfo
);
120 /* FIXME: use hostinfo */
121 TRACE("hostinfo = {%u %08x %08x %s %s}\n",
122 hostinfo
.cbSize
, hostinfo
.dwFlags
, hostinfo
.dwDoubleClick
,
123 debugstr_w(hostinfo
.pchHostCss
), debugstr_w(hostinfo
.pchHostNS
));
127 static void set_downloading_proc(task_t
*_task
)
129 download_proc_task_t
*task
= (download_proc_task_t
*)_task
;
130 HTMLDocumentObj
*doc
= task
->doc
;
131 IOleCommandTarget
*olecmd
;
134 TRACE("(%p)\n", doc
);
137 IOleInPlaceFrame_SetStatusText(doc
->frame
, NULL
/* FIXME */);
142 if(task
->set_download
) {
143 hres
= IOleClientSite_QueryInterface(doc
->client
, &IID_IOleCommandTarget
, (void**)&olecmd
);
144 if(SUCCEEDED(hres
)) {
150 IOleCommandTarget_Exec(olecmd
, NULL
, OLECMDID_SETDOWNLOADSTATE
,
151 OLECMDEXECOPT_DONTPROMPTUSER
, &var
, NULL
);
152 IOleCommandTarget_Release(olecmd
);
155 doc
->download_state
= 1;
159 IDropTarget
*drop_target
= NULL
;
161 hres
= IDocHostUIHandler_GetDropTarget(doc
->hostui
, NULL
/* FIXME */, &drop_target
);
163 FIXME("Use IDropTarget\n");
164 IDropTarget_Release(drop_target
);
169 static HRESULT
set_moniker(HTMLDocument
*This
, IMoniker
*mon
, IBindCtx
*pibc
, BOOL set_download
)
171 nsChannelBSC
*bscallback
;
174 download_proc_task_t
*download_task
;
179 IUnknown
*unk
= NULL
;
183 * "__PrecreatedObject"
184 * "BIND_CONTEXT_PARAM"
185 * "__HTMLLOADOPTIONS"
189 * "_ITransData_Object_"
193 IBindCtx_GetObjectParam(pibc
, (LPOLESTR
)SZ_HTML_CLIENTSITE_OBJECTPARAM
, &unk
);
195 IOleClientSite
*client
= NULL
;
197 hres
= IUnknown_QueryInterface(unk
, &IID_IOleClientSite
, (void**)&client
);
198 if(SUCCEEDED(hres
)) {
199 TRACE("Got client site %p\n", client
);
200 IOleObject_SetClientSite(OLEOBJ(This
), client
);
201 IOleClientSite_Release(client
);
204 IUnknown_Release(unk
);
208 set_ready_state(This
->window
, READYSTATE_LOADING
);
209 update_doc(This
, UPDATE_TITLE
);
211 HTMLDocument_LockContainer(This
->doc_obj
, TRUE
);
213 hres
= IMoniker_GetDisplayName(mon
, pibc
, NULL
, &url
);
215 WARN("GetDiaplayName failed: %08x\n", hres
);
219 TRACE("got url: %s\n", debugstr_w(url
));
221 set_current_mon(This
->window
, mon
);
223 if(This
->doc_obj
->client
) {
224 VARIANT silent
, offline
;
225 IOleCommandTarget
*cmdtrg
= NULL
;
227 hres
= get_client_disp_property(This
->doc_obj
->client
, DISPID_AMBIENT_SILENT
, &silent
);
228 if(SUCCEEDED(hres
)) {
229 if(V_VT(&silent
) != VT_BOOL
)
230 WARN("V_VT(silent) = %d\n", V_VT(&silent
));
231 else if(V_BOOL(&silent
))
232 FIXME("silent == true\n");
235 hres
= get_client_disp_property(This
->doc_obj
->client
,
236 DISPID_AMBIENT_OFFLINEIFNOTCONNECTED
, &offline
);
237 if(SUCCEEDED(hres
)) {
238 if(V_VT(&silent
) != VT_BOOL
)
239 WARN("V_VT(offline) = %d\n", V_VT(&silent
));
240 else if(V_BOOL(&silent
))
241 FIXME("offline == true\n");
244 hres
= IOleClientSite_QueryInterface(This
->doc_obj
->client
, &IID_IOleCommandTarget
,
246 if(SUCCEEDED(hres
)) {
251 IOleCommandTarget_Exec(cmdtrg
, &CGID_ShellDocView
, 37, 0, &var
, NULL
);
253 IOleCommandTarget_Release(cmdtrg
);
257 hres
= create_doc_uri(This
->window
, url
, &nsuri
);
262 bscallback
= create_channelbsc(mon
);
264 hres
= load_nsuri(This
->window
, nsuri
, bscallback
, LOAD_INITIAL_DOCUMENT_URI
);
265 nsISupports_Release((nsISupports
*)nsuri
); /* FIXME */
267 set_window_bscallback(This
->window
, bscallback
);
268 IUnknown_Release((IUnknown
*)bscallback
);
272 if(This
->doc_obj
->frame
) {
273 task
= heap_alloc(sizeof(docobj_task_t
));
274 task
->doc
= This
->doc_obj
;
275 push_task(&task
->header
, set_progress_proc
, This
->doc_obj
->basedoc
.task_magic
);
278 download_task
= heap_alloc(sizeof(download_proc_task_t
));
279 download_task
->doc
= This
->doc_obj
;
280 download_task
->set_download
= set_download
;
281 push_task(&download_task
->header
, set_downloading_proc
, This
->doc_obj
->basedoc
.task_magic
);
286 void set_ready_state(HTMLWindow
*window
, READYSTATE readystate
)
288 window
->readystate
= readystate
;
289 if(window
->doc_obj
&& window
->doc_obj
->basedoc
.window
== window
)
290 call_property_onchanged(&window
->doc_obj
->basedoc
.cp_propnotif
, DISPID_READYSTATE
);
291 if(window
->frame_element
)
292 fire_event(window
->frame_element
->element
.node
.doc
, EVENTID_READYSTATECHANGE
,
293 window
->frame_element
->element
.node
.nsnode
, NULL
);
296 static HRESULT
get_doc_string(HTMLDocumentNode
*This
, char **str
)
304 WARN("NULL nsdoc\n");
308 nsres
= nsIDOMHTMLDocument_QueryInterface(This
->nsdoc
, &IID_nsIDOMNode
, (void**)&nsnode
);
309 if(NS_FAILED(nsres
)) {
310 ERR("Could not get nsIDOMNode failed: %08x\n", nsres
);
314 nsAString_Init(&nsstr
, NULL
);
315 nsnode_to_nsstring(nsnode
, &nsstr
);
316 nsIDOMNode_Release(nsnode
);
318 nsAString_GetData(&nsstr
, &strw
);
319 TRACE("%s\n", debugstr_w(strw
));
321 *str
= heap_strdupWtoA(strw
);
323 nsAString_Finish(&nsstr
);
329 /**********************************************************
330 * IPersistMoniker implementation
333 #define PERSISTMON_THIS(iface) DEFINE_THIS(HTMLDocument, PersistMoniker, iface)
335 static HRESULT WINAPI
PersistMoniker_QueryInterface(IPersistMoniker
*iface
, REFIID riid
,
338 HTMLDocument
*This
= PERSISTMON_THIS(iface
);
339 return IHTMLDocument2_QueryInterface(HTMLDOC(This
), riid
, ppvObject
);
342 static ULONG WINAPI
PersistMoniker_AddRef(IPersistMoniker
*iface
)
344 HTMLDocument
*This
= PERSISTMON_THIS(iface
);
345 return IHTMLDocument2_AddRef(HTMLDOC(This
));
348 static ULONG WINAPI
PersistMoniker_Release(IPersistMoniker
*iface
)
350 HTMLDocument
*This
= PERSISTMON_THIS(iface
);
351 return IHTMLDocument2_Release(HTMLDOC(This
));
354 static HRESULT WINAPI
PersistMoniker_GetClassID(IPersistMoniker
*iface
, CLSID
*pClassID
)
356 HTMLDocument
*This
= PERSISTMON_THIS(iface
);
357 return IPersist_GetClassID(PERSIST(This
), pClassID
);
360 static HRESULT WINAPI
PersistMoniker_IsDirty(IPersistMoniker
*iface
)
362 HTMLDocument
*This
= PERSISTMON_THIS(iface
);
364 TRACE("(%p)\n", This
);
366 return IPersistStreamInit_IsDirty(PERSTRINIT(This
));
369 static HRESULT WINAPI
PersistMoniker_Load(IPersistMoniker
*iface
, BOOL fFullyAvailable
,
370 IMoniker
*pimkName
, LPBC pibc
, DWORD grfMode
)
372 HTMLDocument
*This
= PERSISTMON_THIS(iface
);
375 TRACE("(%p)->(%x %p %p %08x)\n", This
, fFullyAvailable
, pimkName
, pibc
, grfMode
);
377 hres
= set_moniker(This
, pimkName
, pibc
, TRUE
);
381 return start_binding(This
->window
, NULL
, (BSCallback
*)This
->window
->bscallback
, pibc
);
384 static HRESULT WINAPI
PersistMoniker_Save(IPersistMoniker
*iface
, IMoniker
*pimkName
,
385 LPBC pbc
, BOOL fRemember
)
387 HTMLDocument
*This
= PERSISTMON_THIS(iface
);
388 FIXME("(%p)->(%p %p %x)\n", This
, pimkName
, pbc
, fRemember
);
392 static HRESULT WINAPI
PersistMoniker_SaveCompleted(IPersistMoniker
*iface
, IMoniker
*pimkName
, LPBC pibc
)
394 HTMLDocument
*This
= PERSISTMON_THIS(iface
);
395 FIXME("(%p)->(%p %p)\n", This
, pimkName
, pibc
);
399 static HRESULT WINAPI
PersistMoniker_GetCurMoniker(IPersistMoniker
*iface
, IMoniker
**ppimkName
)
401 HTMLDocument
*This
= PERSISTMON_THIS(iface
);
403 TRACE("(%p)->(%p)\n", This
, ppimkName
);
405 if(!This
->window
|| !This
->window
->mon
)
408 IMoniker_AddRef(This
->window
->mon
);
409 *ppimkName
= This
->window
->mon
;
413 static const IPersistMonikerVtbl PersistMonikerVtbl
= {
414 PersistMoniker_QueryInterface
,
415 PersistMoniker_AddRef
,
416 PersistMoniker_Release
,
417 PersistMoniker_GetClassID
,
418 PersistMoniker_IsDirty
,
421 PersistMoniker_SaveCompleted
,
422 PersistMoniker_GetCurMoniker
425 /**********************************************************
426 * IMonikerProp implementation
429 #define MONPROP_THIS(iface) DEFINE_THIS(HTMLDocument, MonikerProp, iface)
431 static HRESULT WINAPI
MonikerProp_QueryInterface(IMonikerProp
*iface
, REFIID riid
, void **ppvObject
)
433 HTMLDocument
*This
= MONPROP_THIS(iface
);
434 return IHTMLDocument2_QueryInterface(HTMLDOC(This
), riid
, ppvObject
);
437 static ULONG WINAPI
MonikerProp_AddRef(IMonikerProp
*iface
)
439 HTMLDocument
*This
= MONPROP_THIS(iface
);
440 return IHTMLDocument2_AddRef(HTMLDOC(This
));
443 static ULONG WINAPI
MonikerProp_Release(IMonikerProp
*iface
)
445 HTMLDocument
*This
= MONPROP_THIS(iface
);
446 return IHTMLDocument_Release(HTMLDOC(This
));
449 static HRESULT WINAPI
MonikerProp_PutProperty(IMonikerProp
*iface
, MONIKERPROPERTY mkp
, LPCWSTR val
)
451 HTMLDocument
*This
= MONPROP_THIS(iface
);
453 TRACE("(%p)->(%d %s)\n", This
, mkp
, debugstr_w(val
));
457 heap_free(This
->doc_obj
->mime
);
458 This
->doc_obj
->mime
= heap_strdupW(val
);
465 FIXME("mkp %d\n", mkp
);
472 static const IMonikerPropVtbl MonikerPropVtbl
= {
473 MonikerProp_QueryInterface
,
476 MonikerProp_PutProperty
479 /**********************************************************
480 * IPersistFile implementation
483 #define PERSISTFILE_THIS(iface) DEFINE_THIS(HTMLDocument, PersistFile, iface)
485 static HRESULT WINAPI
PersistFile_QueryInterface(IPersistFile
*iface
, REFIID riid
, void **ppvObject
)
487 HTMLDocument
*This
= PERSISTFILE_THIS(iface
);
488 return IHTMLDocument2_QueryInterface(HTMLDOC(This
), riid
, ppvObject
);
491 static ULONG WINAPI
PersistFile_AddRef(IPersistFile
*iface
)
493 HTMLDocument
*This
= PERSISTFILE_THIS(iface
);
494 return IHTMLDocument2_AddRef(HTMLDOC(This
));
497 static ULONG WINAPI
PersistFile_Release(IPersistFile
*iface
)
499 HTMLDocument
*This
= PERSISTFILE_THIS(iface
);
500 return IHTMLDocument2_Release(HTMLDOC(This
));
503 static HRESULT WINAPI
PersistFile_GetClassID(IPersistFile
*iface
, CLSID
*pClassID
)
505 HTMLDocument
*This
= PERSISTFILE_THIS(iface
);
507 TRACE("(%p)->(%p)\n", This
, pClassID
);
512 *pClassID
= CLSID_HTMLDocument
;
516 static HRESULT WINAPI
PersistFile_IsDirty(IPersistFile
*iface
)
518 HTMLDocument
*This
= PERSISTFILE_THIS(iface
);
520 TRACE("(%p)\n", This
);
522 return IPersistStreamInit_IsDirty(PERSTRINIT(This
));
525 static HRESULT WINAPI
PersistFile_Load(IPersistFile
*iface
, LPCOLESTR pszFileName
, DWORD dwMode
)
527 HTMLDocument
*This
= PERSISTFILE_THIS(iface
);
528 FIXME("(%p)->(%s %08x)\n", This
, debugstr_w(pszFileName
), dwMode
);
532 static HRESULT WINAPI
PersistFile_Save(IPersistFile
*iface
, LPCOLESTR pszFileName
, BOOL fRemember
)
534 HTMLDocument
*This
= PERSISTFILE_THIS(iface
);
540 TRACE("(%p)->(%s %x)\n", This
, debugstr_w(pszFileName
), fRemember
);
542 file
= CreateFileW(pszFileName
, GENERIC_WRITE
, 0, NULL
, CREATE_ALWAYS
,
543 FILE_ATTRIBUTE_NORMAL
, NULL
);
544 if(file
== INVALID_HANDLE_VALUE
) {
545 WARN("Could not create file: %u\n", GetLastError());
549 hres
= get_doc_string(This
->doc_node
, &str
);
551 WriteFile(file
, str
, strlen(str
), &written
, NULL
);
557 static HRESULT WINAPI
PersistFile_SaveCompleted(IPersistFile
*iface
, LPCOLESTR pszFileName
)
559 HTMLDocument
*This
= PERSISTFILE_THIS(iface
);
560 FIXME("(%p)->(%s)\n", This
, debugstr_w(pszFileName
));
564 static HRESULT WINAPI
PersistFile_GetCurFile(IPersistFile
*iface
, LPOLESTR
*pszFileName
)
566 HTMLDocument
*This
= PERSISTFILE_THIS(iface
);
567 FIXME("(%p)->(%p)\n", This
, pszFileName
);
571 static const IPersistFileVtbl PersistFileVtbl
= {
572 PersistFile_QueryInterface
,
575 PersistFile_GetClassID
,
579 PersistFile_SaveCompleted
,
580 PersistFile_GetCurFile
583 #define PERSTRINIT_THIS(iface) DEFINE_THIS(HTMLDocument, PersistStreamInit, iface)
585 static HRESULT WINAPI
PersistStreamInit_QueryInterface(IPersistStreamInit
*iface
,
586 REFIID riid
, void **ppv
)
588 HTMLDocument
*This
= PERSTRINIT_THIS(iface
);
589 return IHTMLDocument2_QueryInterface(HTMLDOC(This
), riid
, ppv
);
592 static ULONG WINAPI
PersistStreamInit_AddRef(IPersistStreamInit
*iface
)
594 HTMLDocument
*This
= PERSTRINIT_THIS(iface
);
595 return IHTMLDocument2_AddRef(HTMLDOC(This
));
598 static ULONG WINAPI
PersistStreamInit_Release(IPersistStreamInit
*iface
)
600 HTMLDocument
*This
= PERSTRINIT_THIS(iface
);
601 return IHTMLDocument2_Release(HTMLDOC(This
));
604 static HRESULT WINAPI
PersistStreamInit_GetClassID(IPersistStreamInit
*iface
, CLSID
*pClassID
)
606 HTMLDocument
*This
= PERSTRINIT_THIS(iface
);
607 return IPersist_GetClassID(PERSIST(This
), pClassID
);
610 static HRESULT WINAPI
PersistStreamInit_IsDirty(IPersistStreamInit
*iface
)
612 HTMLDocument
*This
= PERSTRINIT_THIS(iface
);
614 TRACE("(%p)\n", This
);
616 if(This
->doc_obj
->usermode
== EDITMODE
)
617 return editor_is_dirty(This
);
622 static HRESULT WINAPI
PersistStreamInit_Load(IPersistStreamInit
*iface
, LPSTREAM pStm
)
624 HTMLDocument
*This
= PERSTRINIT_THIS(iface
);
628 static const WCHAR about_blankW
[] = {'a','b','o','u','t',':','b','l','a','n','k',0};
630 TRACE("(%p)->(%p)\n", This
, pStm
);
632 hres
= CreateURLMoniker(NULL
, about_blankW
, &mon
);
634 WARN("CreateURLMoniker failed: %08x\n", hres
);
638 hres
= set_moniker(This
, mon
, NULL
, TRUE
);
639 IMoniker_Release(mon
);
643 return channelbsc_load_stream(This
->window
->bscallback
, pStm
);
646 static HRESULT WINAPI
PersistStreamInit_Save(IPersistStreamInit
*iface
, LPSTREAM pStm
,
649 HTMLDocument
*This
= PERSTRINIT_THIS(iface
);
654 TRACE("(%p)->(%p %x)\n", This
, pStm
, fClearDirty
);
656 hres
= get_doc_string(This
->doc_node
, &str
);
660 hres
= IStream_Write(pStm
, str
, strlen(str
), &written
);
662 FIXME("Write failed: %08x\n", hres
);
667 set_dirty(This
, VARIANT_FALSE
);
672 static HRESULT WINAPI
PersistStreamInit_GetSizeMax(IPersistStreamInit
*iface
,
673 ULARGE_INTEGER
*pcbSize
)
675 HTMLDocument
*This
= PERSTRINIT_THIS(iface
);
676 FIXME("(%p)->(%p)\n", This
, pcbSize
);
680 static HRESULT WINAPI
PersistStreamInit_InitNew(IPersistStreamInit
*iface
)
682 HTMLDocument
*This
= PERSTRINIT_THIS(iface
);
688 static const WCHAR about_blankW
[] = {'a','b','o','u','t',':','b','l','a','n','k',0};
689 static const WCHAR html_bodyW
[] = {'<','H','T','M','L','>','<','/','H','T','M','L','>',0};
691 TRACE("(%p)\n", This
);
693 body
= GlobalAlloc(0, sizeof(html_bodyW
));
695 return E_OUTOFMEMORY
;
696 memcpy(body
, html_bodyW
, sizeof(html_bodyW
));
698 hres
= CreateURLMoniker(NULL
, about_blankW
, &mon
);
700 WARN("CreateURLMoniker failed: %08x\n", hres
);
705 hres
= set_moniker(This
, mon
, NULL
, FALSE
);
706 IMoniker_Release(mon
);
712 hres
= CreateStreamOnHGlobal(body
, TRUE
, &stream
);
718 hres
= channelbsc_load_stream(This
->window
->bscallback
, stream
);
720 IStream_Release(stream
);
724 #undef PERSTRINIT_THIS
726 static const IPersistStreamInitVtbl PersistStreamInitVtbl
= {
727 PersistStreamInit_QueryInterface
,
728 PersistStreamInit_AddRef
,
729 PersistStreamInit_Release
,
730 PersistStreamInit_GetClassID
,
731 PersistStreamInit_IsDirty
,
732 PersistStreamInit_Load
,
733 PersistStreamInit_Save
,
734 PersistStreamInit_GetSizeMax
,
735 PersistStreamInit_InitNew
738 /**********************************************************
739 * IPersistHistory implementation
742 #define PERSISTHIST_THIS(iface) DEFINE_THIS(HTMLDocument, PersistHistory, iface)
744 static HRESULT WINAPI
PersistHistory_QueryInterface(IPersistHistory
*iface
, REFIID riid
, void **ppvObject
)
746 HTMLDocument
*This
= PERSISTHIST_THIS(iface
);
747 return IHTMLDocument2_QueryInterface(HTMLDOC(This
), riid
, ppvObject
);
750 static ULONG WINAPI
PersistHistory_AddRef(IPersistHistory
*iface
)
752 HTMLDocument
*This
= PERSISTHIST_THIS(iface
);
753 return IHTMLDocument2_AddRef(HTMLDOC(This
));
756 static ULONG WINAPI
PersistHistory_Release(IPersistHistory
*iface
)
758 HTMLDocument
*This
= PERSISTHIST_THIS(iface
);
759 return IHTMLDocument2_Release(HTMLDOC(This
));
762 static HRESULT WINAPI
PersistHistory_GetClassID(IPersistHistory
*iface
, CLSID
*pClassID
)
764 HTMLDocument
*This
= PERSISTHIST_THIS(iface
);
765 return IPersist_GetClassID(PERSIST(This
), pClassID
);
768 static HRESULT WINAPI
PersistHistory_LoadHistory(IPersistHistory
*iface
, IStream
*pStream
, IBindCtx
*pbc
)
770 HTMLDocument
*This
= PERSISTHIST_THIS(iface
);
771 FIXME("(%p)->(%p %p)\n", This
, pStream
, pbc
);
775 static HRESULT WINAPI
PersistHistory_SaveHistory(IPersistHistory
*iface
, IStream
*pStream
)
777 HTMLDocument
*This
= PERSISTHIST_THIS(iface
);
778 FIXME("(%p)->(%p)\n", This
, pStream
);
782 static HRESULT WINAPI
PersistHistory_SetPositionCookie(IPersistHistory
*iface
, DWORD dwPositioncookie
)
784 HTMLDocument
*This
= PERSISTHIST_THIS(iface
);
785 FIXME("(%p)->(%x)\n", This
, dwPositioncookie
);
789 static HRESULT WINAPI
PersistHistory_GetPositionCookie(IPersistHistory
*iface
, DWORD
*pdwPositioncookie
)
791 HTMLDocument
*This
= PERSISTHIST_THIS(iface
);
792 FIXME("(%p)->(%p)\n", This
, pdwPositioncookie
);
796 #undef PERSISTHIST_THIS
798 static const IPersistHistoryVtbl PersistHistoryVtbl
= {
799 PersistHistory_QueryInterface
,
800 PersistHistory_AddRef
,
801 PersistHistory_Release
,
802 PersistHistory_GetClassID
,
803 PersistHistory_LoadHistory
,
804 PersistHistory_SaveHistory
,
805 PersistHistory_SetPositionCookie
,
806 PersistHistory_GetPositionCookie
809 void HTMLDocument_Persist_Init(HTMLDocument
*This
)
811 This
->lpPersistMonikerVtbl
= &PersistMonikerVtbl
;
812 This
->lpPersistFileVtbl
= &PersistFileVtbl
;
813 This
->lpMonikerPropVtbl
= &MonikerPropVtbl
;
814 This
->lpPersistStreamInitVtbl
= &PersistStreamInitVtbl
;
815 This
->lpPersistHistoryVtbl
= &PersistHistoryVtbl
;