quartz: More filesource fixes.
[wine] / dlls / mshtml / omnavigator.c
1 /*
2  * Copyright 2008 Jacek Caban for CodeWeavers
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include <stdarg.h>
20
21 #define COBJMACROS
22
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "ole2.h"
27
28 #include "wine/debug.h"
29
30 #include "mshtml_private.h"
31
32 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
33
34 typedef struct {
35     DispatchEx dispex;
36     const IOmNavigatorVtbl  *lpIOmNavigatorVtbl;
37
38     LONG ref;
39 } OmNavigator;
40
41 #define OMNAVIGATOR(x)  ((IOmNavigator*) &(x)->lpIOmNavigatorVtbl)
42
43 #define OMNAVIGATOR_THIS(iface) DEFINE_THIS(OmNavigator, IOmNavigator, iface)
44
45 static HRESULT WINAPI OmNavigator_QueryInterface(IOmNavigator *iface, REFIID riid, void **ppv)
46 {
47     OmNavigator *This = OMNAVIGATOR_THIS(iface);
48
49     *ppv = NULL;
50
51     if(IsEqualGUID(&IID_IUnknown, riid)) {
52         TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
53         *ppv = OMNAVIGATOR(This);
54     }else if(IsEqualGUID(&IID_IDispatch, riid)) {
55         TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
56         *ppv = DISPATCHEX(&This->dispex);
57     }else if(IsEqualGUID(&IID_IDispatchEx, riid)) {
58         TRACE("(%p)->(IID_IDispatchEx %p)\n", This, ppv);
59         *ppv = DISPATCHEX(&This->dispex);
60     }else if(IsEqualGUID(&IID_IOmNavigator, riid)) {
61         TRACE("(%p)->(IID_IOmNavigator %p)\n", This, ppv);
62         *ppv = OMNAVIGATOR(This);
63     }
64
65     if(*ppv) {
66         IUnknown_AddRef((IUnknown*)*ppv);
67         return S_OK;
68     }
69
70     WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
71     return E_NOINTERFACE;
72 }
73
74 static ULONG WINAPI OmNavigator_AddRef(IOmNavigator *iface)
75 {
76     OmNavigator *This = OMNAVIGATOR_THIS(iface);
77     LONG ref = InterlockedIncrement(&This->ref);
78
79     TRACE("(%p) ref=%d\n", This, ref);
80
81     return ref;
82 }
83
84 static ULONG WINAPI OmNavigator_Release(IOmNavigator *iface)
85 {
86     OmNavigator *This = OMNAVIGATOR_THIS(iface);
87     LONG ref = InterlockedDecrement(&This->ref);
88
89     TRACE("(%p) ref=%d\n", This, ref);
90
91     if(!ref)
92         heap_free(This);
93
94     return ref;
95 }
96
97 static HRESULT WINAPI OmNavigator_GetTypeInfoCount(IOmNavigator *iface, UINT *pctinfo)
98 {
99     OmNavigator *This = OMNAVIGATOR_THIS(iface);
100     FIXME("(%p)->(%p)\n", This, pctinfo);
101     return E_NOTIMPL;
102 }
103
104 static HRESULT WINAPI OmNavigator_GetTypeInfo(IOmNavigator *iface, UINT iTInfo,
105                                               LCID lcid, ITypeInfo **ppTInfo)
106 {
107     OmNavigator *This = OMNAVIGATOR_THIS(iface);
108
109     return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->dispex), iTInfo, lcid, ppTInfo);
110 }
111
112 static HRESULT WINAPI OmNavigator_GetIDsOfNames(IOmNavigator *iface, REFIID riid,
113                                                 LPOLESTR *rgszNames, UINT cNames,
114                                                 LCID lcid, DISPID *rgDispId)
115 {
116     OmNavigator *This = OMNAVIGATOR_THIS(iface);
117
118     return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->dispex), riid, rgszNames, cNames, lcid, rgDispId);
119 }
120
121 static HRESULT WINAPI OmNavigator_Invoke(IOmNavigator *iface, DISPID dispIdMember,
122                             REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
123                             VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
124 {
125     OmNavigator *This = OMNAVIGATOR_THIS(iface);
126
127     return IDispatchEx_Invoke(DISPATCHEX(&This->dispex), dispIdMember, riid, lcid, wFlags, pDispParams,
128             pVarResult, pExcepInfo, puArgErr);
129 }
130
131 static HRESULT WINAPI OmNavigator_get_appCodeName(IOmNavigator *iface, BSTR *p)
132 {
133     OmNavigator *This = OMNAVIGATOR_THIS(iface);
134     FIXME("(%p)->(%p)\n", This, p);
135     return E_NOTIMPL;
136 }
137
138 static HRESULT WINAPI OmNavigator_get_appName(IOmNavigator *iface, BSTR *p)
139 {
140     OmNavigator *This = OMNAVIGATOR_THIS(iface);
141     FIXME("(%p)->(%p)\n", This, p);
142     return E_NOTIMPL;
143 }
144
145 static HRESULT WINAPI OmNavigator_get_appVersion(IOmNavigator *iface, BSTR *p)
146 {
147     OmNavigator *This = OMNAVIGATOR_THIS(iface);
148     FIXME("(%p)->(%p)\n", This, p);
149     return E_NOTIMPL;
150 }
151
152 static HRESULT WINAPI OmNavigator_get_userAgent(IOmNavigator *iface, BSTR *p)
153 {
154     OmNavigator *This = OMNAVIGATOR_THIS(iface);
155     FIXME("(%p)->(%p)\n", This, p);
156     return E_NOTIMPL;
157 }
158
159 static HRESULT WINAPI OmNavigator_javaEnabled(IOmNavigator *iface, VARIANT_BOOL *enabled)
160 {
161     OmNavigator *This = OMNAVIGATOR_THIS(iface);
162     FIXME("(%p)->(%p)\n", This, enabled);
163     return E_NOTIMPL;
164 }
165
166 static HRESULT WINAPI OmNavigator_taintEnabled(IOmNavigator *iface, VARIANT_BOOL *enabled)
167 {
168     OmNavigator *This = OMNAVIGATOR_THIS(iface);
169     FIXME("(%p)->(%p)\n", This, enabled);
170     return E_NOTIMPL;
171 }
172
173 static HRESULT WINAPI OmNavigator_get_mimeTypes(IOmNavigator *iface, IHTMLMimeTypesCollection **p)
174 {
175     OmNavigator *This = OMNAVIGATOR_THIS(iface);
176     FIXME("(%p)->(%p)\n", This, p);
177     return E_NOTIMPL;
178 }
179
180 static HRESULT WINAPI OmNavigator_get_plugins(IOmNavigator *iface, IHTMLPluginsCollection **p)
181 {
182     OmNavigator *This = OMNAVIGATOR_THIS(iface);
183     FIXME("(%p)->(%p)\n", This, p);
184     return E_NOTIMPL;
185 }
186
187 static HRESULT WINAPI OmNavigator_get_cookieEnabled(IOmNavigator *iface, VARIANT_BOOL *p)
188 {
189     OmNavigator *This = OMNAVIGATOR_THIS(iface);
190     FIXME("(%p)->(%p)\n", This, p);
191     return E_NOTIMPL;
192 }
193
194 static HRESULT WINAPI OmNavigator_get_opsProfile(IOmNavigator *iface, IHTMLOpsProfile **p)
195 {
196     OmNavigator *This = OMNAVIGATOR_THIS(iface);
197     FIXME("(%p)->(%p)\n", This, p);
198     return E_NOTIMPL;
199 }
200
201 static HRESULT WINAPI OmNavigator_toString(IOmNavigator *iface, BSTR *String)
202 {
203     OmNavigator *This = OMNAVIGATOR_THIS(iface);
204     FIXME("(%p)->(%p)\n", This, String);
205     return E_NOTIMPL;
206 }
207
208 static HRESULT WINAPI OmNavigator_get_cpuClass(IOmNavigator *iface, BSTR *p)
209 {
210     OmNavigator *This = OMNAVIGATOR_THIS(iface);
211     FIXME("(%p)->(%p)\n", This, p);
212     return E_NOTIMPL;
213 }
214
215 static HRESULT WINAPI OmNavigator_get_systemLanguage(IOmNavigator *iface, BSTR *p)
216 {
217     OmNavigator *This = OMNAVIGATOR_THIS(iface);
218     FIXME("(%p)->(%p)\n", This, p);
219     return E_NOTIMPL;
220 }
221
222 static HRESULT WINAPI OmNavigator_get_browserLanguage(IOmNavigator *iface, BSTR *p)
223 {
224     OmNavigator *This = OMNAVIGATOR_THIS(iface);
225     FIXME("(%p)->(%p)\n", This, p);
226     return E_NOTIMPL;
227 }
228
229 static HRESULT WINAPI OmNavigator_get_userLanguage(IOmNavigator *iface, BSTR *p)
230 {
231     OmNavigator *This = OMNAVIGATOR_THIS(iface);
232     FIXME("(%p)->(%p)\n", This, p);
233     return E_NOTIMPL;
234 }
235
236 static HRESULT WINAPI OmNavigator_get_platform(IOmNavigator *iface, BSTR *p)
237 {
238     OmNavigator *This = OMNAVIGATOR_THIS(iface);
239     FIXME("(%p)->(%p)\n", This, p);
240     return E_NOTIMPL;
241 }
242
243 static HRESULT WINAPI OmNavigator_get_appMinorVersion(IOmNavigator *iface, BSTR *p)
244 {
245     OmNavigator *This = OMNAVIGATOR_THIS(iface);
246     FIXME("(%p)->(%p)\n", This, p);
247     return E_NOTIMPL;
248 }
249
250 static HRESULT WINAPI OmNavigator_get_connectionSpeed(IOmNavigator *iface, long *p)
251 {
252     OmNavigator *This = OMNAVIGATOR_THIS(iface);
253     FIXME("(%p)->(%p)\n", This, p);
254     return E_NOTIMPL;
255 }
256
257 static HRESULT WINAPI OmNavigator_get_onLine(IOmNavigator *iface, VARIANT_BOOL *p)
258 {
259     OmNavigator *This = OMNAVIGATOR_THIS(iface);
260     FIXME("(%p)->(%p)\n", This, p);
261     return E_NOTIMPL;
262 }
263
264 static HRESULT WINAPI OmNavigator_get_userProfile(IOmNavigator *iface, IHTMLOpsProfile **p)
265 {
266     OmNavigator *This = OMNAVIGATOR_THIS(iface);
267     FIXME("(%p)->(%p)\n", This, p);
268     return E_NOTIMPL;
269 }
270
271 #undef OMNAVIGATOR_THIS
272
273 static const IOmNavigatorVtbl OmNavigatorVtbl = {
274     OmNavigator_QueryInterface,
275     OmNavigator_AddRef,
276     OmNavigator_Release,
277     OmNavigator_GetTypeInfoCount,
278     OmNavigator_GetTypeInfo,
279     OmNavigator_GetIDsOfNames,
280     OmNavigator_Invoke,
281     OmNavigator_get_appCodeName,
282     OmNavigator_get_appName,
283     OmNavigator_get_appVersion,
284     OmNavigator_get_userAgent,
285     OmNavigator_javaEnabled,
286     OmNavigator_taintEnabled,
287     OmNavigator_get_mimeTypes,
288     OmNavigator_get_plugins,
289     OmNavigator_get_cookieEnabled,
290     OmNavigator_get_opsProfile,
291     OmNavigator_toString,
292     OmNavigator_get_cpuClass,
293     OmNavigator_get_systemLanguage,
294     OmNavigator_get_browserLanguage,
295     OmNavigator_get_userLanguage,
296     OmNavigator_get_platform,
297     OmNavigator_get_appMinorVersion,
298     OmNavigator_get_connectionSpeed,
299     OmNavigator_get_onLine,
300     OmNavigator_get_userProfile
301 };
302
303 static dispex_static_data_t OmNavigator_dispex = {
304     NULL,
305     IOmNavigator_tid,
306     NULL,
307     {
308         IOmNavigator_tid,
309         0
310     }
311 };
312
313 IOmNavigator *OmNavigator_Create(void)
314 {
315     OmNavigator *ret;
316
317     ret = heap_alloc(sizeof(*ret));
318     ret->lpIOmNavigatorVtbl = &OmNavigatorVtbl;
319     ret->ref = 1;
320
321     init_dispex(&ret->dispex, (IUnknown*)OMNAVIGATOR(ret), &OmNavigator_dispex);
322
323     return OMNAVIGATOR(ret);
324 }