2 * Copyright 2008 Jacek Caban for CodeWeavers
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
28 #include "wine/debug.h"
30 #include "mshtml_private.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
36 const IOmNavigatorVtbl *lpIOmNavigatorVtbl;
41 #define OMNAVIGATOR(x) ((IOmNavigator*) &(x)->lpIOmNavigatorVtbl)
43 #define OMNAVIGATOR_THIS(iface) DEFINE_THIS(OmNavigator, IOmNavigator, iface)
45 static HRESULT WINAPI OmNavigator_QueryInterface(IOmNavigator *iface, REFIID riid, void **ppv)
47 OmNavigator *This = OMNAVIGATOR_THIS(iface);
51 if(IsEqualGUID(&IID_IUnknown, riid)) {
52 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
53 *ppv = OMNAVIGATOR(This);
54 }else if(IsEqualGUID(&IID_IOmNavigator, riid)) {
55 TRACE("(%p)->(IID_IOmNavigator %p)\n", This, ppv);
56 *ppv = OMNAVIGATOR(This);
57 }else if(dispex_query_interface(&This->dispex, riid, ppv)) {
58 return *ppv ? S_OK : E_NOINTERFACE;
62 IUnknown_AddRef((IUnknown*)*ppv);
66 WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
70 static ULONG WINAPI OmNavigator_AddRef(IOmNavigator *iface)
72 OmNavigator *This = OMNAVIGATOR_THIS(iface);
73 LONG ref = InterlockedIncrement(&This->ref);
75 TRACE("(%p) ref=%d\n", This, ref);
80 static ULONG WINAPI OmNavigator_Release(IOmNavigator *iface)
82 OmNavigator *This = OMNAVIGATOR_THIS(iface);
83 LONG ref = InterlockedDecrement(&This->ref);
85 TRACE("(%p) ref=%d\n", This, ref);
88 release_dispex(&This->dispex);
95 static HRESULT WINAPI OmNavigator_GetTypeInfoCount(IOmNavigator *iface, UINT *pctinfo)
97 OmNavigator *This = OMNAVIGATOR_THIS(iface);
98 FIXME("(%p)->(%p)\n", This, pctinfo);
102 static HRESULT WINAPI OmNavigator_GetTypeInfo(IOmNavigator *iface, UINT iTInfo,
103 LCID lcid, ITypeInfo **ppTInfo)
105 OmNavigator *This = OMNAVIGATOR_THIS(iface);
107 return IDispatchEx_GetTypeInfo(DISPATCHEX(&This->dispex), iTInfo, lcid, ppTInfo);
110 static HRESULT WINAPI OmNavigator_GetIDsOfNames(IOmNavigator *iface, REFIID riid,
111 LPOLESTR *rgszNames, UINT cNames,
112 LCID lcid, DISPID *rgDispId)
114 OmNavigator *This = OMNAVIGATOR_THIS(iface);
116 return IDispatchEx_GetIDsOfNames(DISPATCHEX(&This->dispex), riid, rgszNames, cNames, lcid, rgDispId);
119 static HRESULT WINAPI OmNavigator_Invoke(IOmNavigator *iface, DISPID dispIdMember,
120 REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
121 VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
123 OmNavigator *This = OMNAVIGATOR_THIS(iface);
125 return IDispatchEx_Invoke(DISPATCHEX(&This->dispex), dispIdMember, riid, lcid, wFlags, pDispParams,
126 pVarResult, pExcepInfo, puArgErr);
129 static HRESULT WINAPI OmNavigator_get_appCodeName(IOmNavigator *iface, BSTR *p)
131 OmNavigator *This = OMNAVIGATOR_THIS(iface);
133 static const WCHAR mozillaW[] = {'M','o','z','i','l','l','a',0};
135 TRACE("(%p)->(%p)\n", This, p);
137 *p = SysAllocString(mozillaW);
141 static HRESULT WINAPI OmNavigator_get_appName(IOmNavigator *iface, BSTR *p)
143 OmNavigator *This = OMNAVIGATOR_THIS(iface);
145 static const WCHAR app_nameW[] =
146 {'M','i','c','r','o','s','o','f','t',' ',
147 'I','n','t','e','r','n','e','t',' ',
148 'E','x','p','l','o','r','e','r',0};
150 TRACE("(%p)->(%p)\n", This, p);
152 *p = SysAllocString(app_nameW);
154 return E_OUTOFMEMORY;
159 static HRESULT WINAPI OmNavigator_get_appVersion(IOmNavigator *iface, BSTR *p)
161 OmNavigator *This = OMNAVIGATOR_THIS(iface);
163 /* FIXME: Should we return something smarter? */
164 static const WCHAR app_verW[] =
165 {'4','.','0',' ','(','c','o','m','p','a','t','i','b','l','e',';',
166 ' ','M','S','I','E',' ','7','.','0',';',
167 ' ','W','i','n','d','o','w','s',' ','N','T',' ','5','.','1',';',
168 ' ','M','o','z','i','l','l','a','/','4','.','0',')',0};
170 TRACE("(%p)->(%p)\n", This, p);
172 *p = SysAllocString(app_verW);
174 return E_OUTOFMEMORY;
179 static HRESULT WINAPI OmNavigator_get_userAgent(IOmNavigator *iface, BSTR *p)
181 OmNavigator *This = OMNAVIGATOR_THIS(iface);
182 char user_agent[512];
186 TRACE("(%p)->(%p)\n", This, p);
188 size = sizeof(user_agent);
189 hres = ObtainUserAgentString(0, user_agent, &size);
193 size = MultiByteToWideChar(CP_ACP, 0, user_agent, -1, NULL, 0);
194 *p = SysAllocStringLen(NULL, size-1);
196 return E_OUTOFMEMORY;
198 MultiByteToWideChar(CP_ACP, 0, user_agent, -1, *p, size);
202 static HRESULT WINAPI OmNavigator_javaEnabled(IOmNavigator *iface, VARIANT_BOOL *enabled)
204 OmNavigator *This = OMNAVIGATOR_THIS(iface);
205 FIXME("(%p)->(%p)\n", This, enabled);
209 static HRESULT WINAPI OmNavigator_taintEnabled(IOmNavigator *iface, VARIANT_BOOL *enabled)
211 OmNavigator *This = OMNAVIGATOR_THIS(iface);
212 FIXME("(%p)->(%p)\n", This, enabled);
216 static HRESULT WINAPI OmNavigator_get_mimeTypes(IOmNavigator *iface, IHTMLMimeTypesCollection **p)
218 OmNavigator *This = OMNAVIGATOR_THIS(iface);
219 FIXME("(%p)->(%p)\n", This, p);
223 static HRESULT WINAPI OmNavigator_get_plugins(IOmNavigator *iface, IHTMLPluginsCollection **p)
225 OmNavigator *This = OMNAVIGATOR_THIS(iface);
226 FIXME("(%p)->(%p)\n", This, p);
230 static HRESULT WINAPI OmNavigator_get_cookieEnabled(IOmNavigator *iface, VARIANT_BOOL *p)
232 OmNavigator *This = OMNAVIGATOR_THIS(iface);
233 FIXME("(%p)->(%p)\n", This, p);
237 static HRESULT WINAPI OmNavigator_get_opsProfile(IOmNavigator *iface, IHTMLOpsProfile **p)
239 OmNavigator *This = OMNAVIGATOR_THIS(iface);
240 FIXME("(%p)->(%p)\n", This, p);
244 static HRESULT WINAPI OmNavigator_toString(IOmNavigator *iface, BSTR *String)
246 OmNavigator *This = OMNAVIGATOR_THIS(iface);
248 static const WCHAR objectW[] = {'[','o','b','j','e','c','t',']',0};
250 TRACE("(%p)->(%p)\n", This, String);
255 *String = SysAllocString(objectW);
256 return *String ? S_OK : E_OUTOFMEMORY;
259 static HRESULT WINAPI OmNavigator_get_cpuClass(IOmNavigator *iface, BSTR *p)
261 OmNavigator *This = OMNAVIGATOR_THIS(iface);
262 FIXME("(%p)->(%p)\n", This, p);
266 static HRESULT WINAPI OmNavigator_get_systemLanguage(IOmNavigator *iface, BSTR *p)
268 OmNavigator *This = OMNAVIGATOR_THIS(iface);
269 FIXME("(%p)->(%p)\n", This, p);
273 static HRESULT WINAPI OmNavigator_get_browserLanguage(IOmNavigator *iface, BSTR *p)
275 OmNavigator *This = OMNAVIGATOR_THIS(iface);
276 FIXME("(%p)->(%p)\n", This, p);
280 static HRESULT WINAPI OmNavigator_get_userLanguage(IOmNavigator *iface, BSTR *p)
282 OmNavigator *This = OMNAVIGATOR_THIS(iface);
283 FIXME("(%p)->(%p)\n", This, p);
287 static HRESULT WINAPI OmNavigator_get_platform(IOmNavigator *iface, BSTR *p)
289 OmNavigator *This = OMNAVIGATOR_THIS(iface);
292 static const WCHAR platformW[] = {'W','i','n','6','4',0};
294 static const WCHAR platformW[] = {'W','i','n','3','2',0};
297 TRACE("(%p)->(%p)\n", This, p);
299 *p = SysAllocString(platformW);
303 static HRESULT WINAPI OmNavigator_get_appMinorVersion(IOmNavigator *iface, BSTR *p)
305 OmNavigator *This = OMNAVIGATOR_THIS(iface);
306 FIXME("(%p)->(%p)\n", This, p);
310 static HRESULT WINAPI OmNavigator_get_connectionSpeed(IOmNavigator *iface, LONG *p)
312 OmNavigator *This = OMNAVIGATOR_THIS(iface);
313 FIXME("(%p)->(%p)\n", This, p);
317 static HRESULT WINAPI OmNavigator_get_onLine(IOmNavigator *iface, VARIANT_BOOL *p)
319 OmNavigator *This = OMNAVIGATOR_THIS(iface);
320 FIXME("(%p)->(%p)\n", This, p);
324 static HRESULT WINAPI OmNavigator_get_userProfile(IOmNavigator *iface, IHTMLOpsProfile **p)
326 OmNavigator *This = OMNAVIGATOR_THIS(iface);
327 FIXME("(%p)->(%p)\n", This, p);
331 #undef OMNAVIGATOR_THIS
333 static const IOmNavigatorVtbl OmNavigatorVtbl = {
334 OmNavigator_QueryInterface,
337 OmNavigator_GetTypeInfoCount,
338 OmNavigator_GetTypeInfo,
339 OmNavigator_GetIDsOfNames,
341 OmNavigator_get_appCodeName,
342 OmNavigator_get_appName,
343 OmNavigator_get_appVersion,
344 OmNavigator_get_userAgent,
345 OmNavigator_javaEnabled,
346 OmNavigator_taintEnabled,
347 OmNavigator_get_mimeTypes,
348 OmNavigator_get_plugins,
349 OmNavigator_get_cookieEnabled,
350 OmNavigator_get_opsProfile,
351 OmNavigator_toString,
352 OmNavigator_get_cpuClass,
353 OmNavigator_get_systemLanguage,
354 OmNavigator_get_browserLanguage,
355 OmNavigator_get_userLanguage,
356 OmNavigator_get_platform,
357 OmNavigator_get_appMinorVersion,
358 OmNavigator_get_connectionSpeed,
359 OmNavigator_get_onLine,
360 OmNavigator_get_userProfile
363 static const tid_t OmNavigator_iface_tids[] = {
367 static dispex_static_data_t OmNavigator_dispex = {
369 DispHTMLNavigator_tid,
371 OmNavigator_iface_tids
374 IOmNavigator *OmNavigator_Create(void)
378 ret = heap_alloc_zero(sizeof(*ret));
379 ret->lpIOmNavigatorVtbl = &OmNavigatorVtbl;
382 init_dispex(&ret->dispex, (IUnknown*)OMNAVIGATOR(ret), &OmNavigator_dispex);
384 return OMNAVIGATOR(ret);