- fixme when unexpected children found
[wine] / dlls / mshtml / persist.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
34 #include "wine/debug.h"
35
36 #include "mshtml_private.h"
37
38 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
39
40 /**********************************************************
41  * IPersistMoniker implementation
42  */
43
44 #define PERSISTMON_THIS \
45     HTMLDocument* const This=(HTMLDocument*)((char*)(iface)-offsetof(HTMLDocument,lpPersistMonikerVtbl));
46
47 static HRESULT WINAPI PersistMoniker_QueryInterface(IPersistMoniker *iface, REFIID riid,
48                                                             void **ppvObject)
49 {
50     PERSISTMON_THIS
51     return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
52 }
53
54 static ULONG WINAPI PersistMoniker_AddRef(IPersistMoniker *iface)
55 {
56     PERSISTMON_THIS
57     return IHTMLDocument2_AddRef(HTMLDOC(This));
58 }
59
60 static ULONG WINAPI PersistMoniker_Release(IPersistMoniker *iface)
61 {
62     PERSISTMON_THIS
63     return IHTMLDocument2_Release(HTMLDOC(This));
64 }
65
66 static HRESULT WINAPI PersistMoniker_GetClassID(IPersistMoniker *iface, CLSID *pClassID)
67 {
68     PERSISTMON_THIS
69     return IPersist_GetClassID(PERSIST(This), pClassID);
70 }
71
72 static HRESULT WINAPI PersistMoniker_IsDirty(IPersistMoniker *iface)
73 {
74     FIXME("(%p)\n", iface);
75     return E_NOTIMPL;
76 }
77
78 static HRESULT WINAPI PersistMoniker_Load(IPersistMoniker *iface, BOOL fFullyAvailable,
79         IMoniker *pimkName, LPBC pibc, DWORD grfMode)
80 {
81     FIXME("(%p)->(%x %p %p %08lx)\n", iface, fFullyAvailable, pimkName, pibc, grfMode);
82     return S_OK;
83 }
84
85 static HRESULT WINAPI PersistMoniker_Save(IPersistMoniker *iface, IMoniker *pimkName,
86         LPBC pbc, BOOL fRemember)
87 {
88     FIXME("(%p)->(%p %p %x)\n", iface, pimkName, pbc, fRemember);
89     return E_NOTIMPL;
90 }
91
92 static HRESULT WINAPI PersistMoniker_SaveCompleted(IPersistMoniker *iface, IMoniker *pimkName, LPBC pibc)
93 {
94     FIXME("(%p)->(%p %p)\n", iface, pimkName, pibc);
95     return E_NOTIMPL;
96 }
97
98 static HRESULT WINAPI PersistMoniker_GetCurMoniker(IPersistMoniker *iface, IMoniker **ppimkName)
99 {
100     FIXME("(%p)->(%p)\n", iface, ppimkName);
101     return E_NOTIMPL;
102 }
103
104 static IPersistMonikerVtbl PersistMonikerVtbl = {
105     PersistMoniker_QueryInterface,
106     PersistMoniker_AddRef,
107     PersistMoniker_Release,
108     PersistMoniker_GetClassID,
109     PersistMoniker_IsDirty,
110     PersistMoniker_Load,
111     PersistMoniker_Save,
112     PersistMoniker_SaveCompleted,
113     PersistMoniker_GetCurMoniker
114 };
115
116 /**********************************************************
117  * IMonikerProp implementation
118  */
119
120 #define MONPROP_THIS \
121     HTMLDocument* const This=(HTMLDocument*)((char*)(iface)-offsetof(HTMLDocument,lpMonikerPropVtbl));
122
123 static HRESULT WINAPI MonikerProp_QueryInterface(IMonikerProp *iface, REFIID riid, void **ppvObject)
124 {
125     MONPROP_THIS
126     return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
127 }
128
129 static ULONG WINAPI MonikerProp_AddRef(IMonikerProp *iface)
130 {
131     MONPROP_THIS
132     return IHTMLDocument2_AddRef(HTMLDOC(This));
133 }
134
135 static ULONG WINAPI MonikerProp_Release(IMonikerProp *iface)
136 {
137     MONPROP_THIS
138     return IHTMLDocument_Release(HTMLDOC(This));
139 }
140
141 static HRESULT WINAPI MonikerProp_PutProperty(IMonikerProp *iface, MONIKERPROPERTY mkp, LPCWSTR val)
142 {
143     FIXME("(%p)->(%d %s)\n", iface, mkp, debugstr_w(val));
144     return E_NOTIMPL;
145 }
146
147 static IMonikerPropVtbl MonikerPropVtbl = {
148     MonikerProp_QueryInterface,
149     MonikerProp_AddRef,
150     MonikerProp_Release,
151     MonikerProp_PutProperty
152 };
153
154 /**********************************************************
155  * IPersistFile implementation
156  */
157
158 #define PERSISTFILE_THIS \
159         HTMLDocument* const This=(HTMLDocument*)((char*)(iface)-offsetof(HTMLDocument,lpPersistFileVtbl));
160
161 static HRESULT WINAPI PersistFile_QueryInterface(IPersistFile *iface, REFIID riid, void **ppvObject)
162 {
163     PERSISTFILE_THIS
164     return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
165 }
166
167 static ULONG WINAPI PersistFile_AddRef(IPersistFile *iface)
168 {
169     PERSISTFILE_THIS
170     return IHTMLDocument2_AddRef(HTMLDOC(This));
171 }
172
173 static ULONG WINAPI PersistFile_Release(IPersistFile *iface)
174 {
175     PERSISTFILE_THIS
176     return IHTMLDocument2_Release(HTMLDOC(This));
177 }
178
179 static HRESULT WINAPI PersistFile_GetClassID(IPersistFile *iface, CLSID *pClassID)
180 {
181     TRACE("(%p)->(%p)\n", iface, pClassID);
182
183     if(!pClassID)
184         return E_INVALIDARG;
185
186     memcpy(pClassID, &CLSID_HTMLDocument, sizeof(CLSID));
187     return S_OK;
188 }
189
190 static HRESULT WINAPI PersistFile_IsDirty(IPersistFile *iface)
191 {
192     FIXME("(%p)\n", iface);
193     return E_NOTIMPL;
194 }
195
196 static HRESULT WINAPI PersistFile_Load(IPersistFile *iface, LPCOLESTR pszFileName, DWORD dwMode)
197 {
198     FIXME("(%p)->(%s %08lx)\n", iface, debugstr_w(pszFileName), dwMode);
199     return E_NOTIMPL;
200 }
201
202 static HRESULT WINAPI PersistFile_Save(IPersistFile *iface, LPCOLESTR pszFileName, BOOL fRemember)
203 {
204     FIXME("(%p)->(%s %x)\n", iface, debugstr_w(pszFileName), fRemember);
205     return E_NOTIMPL;
206 }
207
208 static HRESULT WINAPI PersistFile_SaveCompleted(IPersistFile *iface, LPCOLESTR pszFileName)
209 {
210     FIXME("(%p)->(%s)\n", iface, debugstr_w(pszFileName));
211     return E_NOTIMPL;
212 }
213
214 static HRESULT WINAPI PersistFile_GetCurFile(IPersistFile *iface, LPOLESTR *pszFileName)
215 {
216     FIXME("(%p)->(%p)\n", iface, pszFileName);
217     return E_NOTIMPL;
218 }
219
220 static IPersistFileVtbl PersistFileVtbl = {
221     PersistFile_QueryInterface,
222     PersistFile_AddRef,
223     PersistFile_Release,
224     PersistFile_GetClassID,
225     PersistFile_IsDirty,
226     PersistFile_Load,
227     PersistFile_Save,
228     PersistFile_SaveCompleted,
229     PersistFile_GetCurFile
230 };
231
232 void HTMLDocument_Persist_Init(HTMLDocument *This)
233 {
234     This->lpPersistMonikerVtbl = &PersistMonikerVtbl;
235     This->lpPersistFileVtbl = &PersistFileVtbl;
236     This->lpMonikerPropVtbl = &MonikerPropVtbl;
237 }