2 * Copyright 2006 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
32 #include "wine/debug.h"
33 #include "wine/unicode.h"
35 #include "mshtml_private.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(mshtml
);
40 #define HTMLWINDOW2_THIS(iface) DEFINE_THIS(HTMLWindow, HTMLWindow2, iface)
42 static struct list window_list
= LIST_INIT(window_list
);
44 static HRESULT WINAPI
HTMLWindow2_QueryInterface(IHTMLWindow2
*iface
, REFIID riid
, void **ppv
)
46 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
50 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
51 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
52 *ppv
= HTMLWINDOW2(This
);
53 }else if(IsEqualGUID(&IID_IDispatch
, riid
)) {
54 TRACE("(%p)->(IID_IDispatch %p)\n", This
, ppv
);
55 *ppv
= HTMLWINDOW2(This
);
56 }else if(IsEqualGUID(&IID_IHTMLFramesCollection2
, riid
)) {
57 TRACE("(%p)->(IID_IHTMLFramesCollection2 %p)\n", This
, ppv
);
58 *ppv
= HTMLWINDOW2(This
);
59 }else if(IsEqualGUID(&IID_IHTMLWindow2
, riid
)) {
60 TRACE("(%p)->(IID_IHTMLWindow2 %p)\n", This
, ppv
);
61 *ppv
= HTMLWINDOW2(This
);
65 IUnknown_AddRef((IUnknown
*)*ppv
);
69 WARN("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), ppv
);
73 static ULONG WINAPI
HTMLWindow2_AddRef(IHTMLWindow2
*iface
)
75 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
76 LONG ref
= InterlockedIncrement(&This
->ref
);
78 TRACE("(%p) ref=%d\n", This
, ref
);
83 static ULONG WINAPI
HTMLWindow2_Release(IHTMLWindow2
*iface
)
85 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
86 LONG ref
= InterlockedDecrement(&This
->ref
);
88 TRACE("(%p) ref=%d\n", This
, ref
);
91 list_remove(&This
->entry
);
98 static HRESULT WINAPI
HTMLWindow2_GetTypeInfoCount(IHTMLWindow2
*iface
, UINT
*pctinfo
)
100 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
102 TRACE("(%p)->(%p)\n", This
, pctinfo
);
108 static HRESULT WINAPI
HTMLWindow2_GetTypeInfo(IHTMLWindow2
*iface
, UINT iTInfo
,
109 LCID lcid
, ITypeInfo
**ppTInfo
)
111 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
114 TRACE("(%p)->(%u %u %p)\n", This
, iTInfo
, lcid
, ppTInfo
);
116 hres
= get_typeinfo(IHTMLWindow2_tid
, ppTInfo
);
118 ITypeInfo_AddRef(*ppTInfo
);
123 static HRESULT WINAPI
HTMLWindow2_GetIDsOfNames(IHTMLWindow2
*iface
, REFIID riid
,
124 LPOLESTR
*rgszNames
, UINT cNames
,
125 LCID lcid
, DISPID
*rgDispId
)
127 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
131 TRACE("(%p)->(%s %p %u %u %p)\n", This
, debugstr_guid(riid
), rgszNames
, cNames
,
134 hres
= get_typeinfo(IHTMLWindow2_tid
, &typeinfo
);
136 hres
= ITypeInfo_GetIDsOfNames(typeinfo
, rgszNames
, cNames
, rgDispId
);
141 static HRESULT WINAPI
HTMLWindow2_Invoke(IHTMLWindow2
*iface
, DISPID dispIdMember
,
142 REFIID riid
, LCID lcid
, WORD wFlags
, DISPPARAMS
*pDispParams
,
143 VARIANT
*pVarResult
, EXCEPINFO
*pExcepInfo
, UINT
*puArgErr
)
145 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
149 TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This
, dispIdMember
, debugstr_guid(riid
),
150 lcid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
152 hres
= get_typeinfo(IHTMLWindow2_tid
, &typeinfo
);
154 hres
= ITypeInfo_Invoke(typeinfo
, HTMLWINDOW2(This
), dispIdMember
, wFlags
, pDispParams
,
155 pVarResult
, pExcepInfo
, puArgErr
);
160 static HRESULT WINAPI
HTMLWindow2_item(IHTMLWindow2
*iface
, VARIANT
*pvarIndex
, VARIANT
*pvarResult
)
162 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
163 FIXME("(%p)->(%p %p)\n", This
, pvarIndex
, pvarResult
);
167 static HRESULT WINAPI
HTMLWindow2_get_length(IHTMLWindow2
*iface
, long *p
)
169 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
170 FIXME("(%p)->(%p)\n", This
, p
);
174 static HRESULT WINAPI
HTMLWindow2_get_frames(IHTMLWindow2
*iface
, IHTMLFramesCollection2
**p
)
176 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
177 FIXME("(%p)->(%p)\n", This
, p
);
181 static HRESULT WINAPI
HTMLWindow2_put_defaultStatus(IHTMLWindow2
*iface
, BSTR v
)
183 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
184 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
188 static HRESULT WINAPI
HTMLWindow2_get_defaultStatus(IHTMLWindow2
*iface
, BSTR
*p
)
190 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
191 FIXME("(%p)->(%p)\n", This
, p
);
195 static HRESULT WINAPI
HTMLWindow2_put_status(IHTMLWindow2
*iface
, BSTR v
)
197 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
198 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
202 static HRESULT WINAPI
HTMLWindow2_get_status(IHTMLWindow2
*iface
, BSTR
*p
)
204 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
205 FIXME("(%p)->(%p)\n", This
, p
);
209 static HRESULT WINAPI
HTMLWindow2_setTimeout(IHTMLWindow2
*iface
, BSTR expression
,
210 long msec
, VARIANT
*language
, long *timerID
)
212 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
213 FIXME("(%p)->(%s %ld %p %p)\n", This
, debugstr_w(expression
), msec
, language
, timerID
);
217 static HRESULT WINAPI
HTMLWindow2_clearTimeout(IHTMLWindow2
*iface
, long timerID
)
219 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
220 FIXME("(%p)->(%ld)\n", This
, timerID
);
224 static HRESULT WINAPI
HTMLWindow2_alert(IHTMLWindow2
*iface
, BSTR message
)
226 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
229 TRACE("(%p)->(%s)\n", This
, debugstr_w(message
));
231 if(!LoadStringW(get_shdoclc(), IDS_MESSAGE_BOX_TITLE
, wszTitle
,
232 sizeof(wszTitle
)/sizeof(WCHAR
))) {
233 WARN("Could not load message box title: %d\n", GetLastError());
237 MessageBoxW(This
->doc
->hwnd
, message
, wszTitle
, MB_ICONWARNING
);
241 static HRESULT WINAPI
HTMLWindow2_confirm(IHTMLWindow2
*iface
, BSTR message
,
242 VARIANT_BOOL
*confirmed
)
244 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
245 FIXME("(%p)->(%s %p)\n", This
, debugstr_w(message
), confirmed
);
249 static HRESULT WINAPI
HTMLWindow2_prompt(IHTMLWindow2
*iface
, BSTR message
,
250 BSTR dststr
, VARIANT
*textdata
)
252 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
253 FIXME("(%p)->(%s %s %p)\n", This
, debugstr_w(message
), debugstr_w(dststr
), textdata
);
257 static HRESULT WINAPI
HTMLWindow2_get_Image(IHTMLWindow2
*iface
, IHTMLImageElementFactory
**p
)
259 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
260 FIXME("(%p)->(%p)\n", This
, p
);
264 static HRESULT WINAPI
HTMLWindow2_get_location(IHTMLWindow2
*iface
, IHTMLLocation
**p
)
266 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
267 FIXME("(%p)->(%p)\n", This
, p
);
271 static HRESULT WINAPI
HTMLWindow2_get_history(IHTMLWindow2
*iface
, IOmHistory
**p
)
273 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
274 FIXME("(%p)->(%p)\n", This
, p
);
278 static HRESULT WINAPI
HTMLWindow2_close(IHTMLWindow2
*iface
)
280 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
281 FIXME("(%p)->()\n", This
);
285 static HRESULT WINAPI
HTMLWindow2_put_opener(IHTMLWindow2
*iface
, VARIANT v
)
287 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
288 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
292 static HRESULT WINAPI
HTMLWindow2_get_opener(IHTMLWindow2
*iface
, VARIANT
*p
)
294 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
295 FIXME("(%p)->(%p)\n", This
, p
);
299 static HRESULT WINAPI
HTMLWindow2_get_navigator(IHTMLWindow2
*iface
, IOmNavigator
**p
)
301 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
302 FIXME("(%p)->(%p)\n", This
, p
);
306 static HRESULT WINAPI
HTMLWindow2_put_name(IHTMLWindow2
*iface
, BSTR v
)
308 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
309 FIXME("(%p)->(%s)\n", This
, debugstr_w(v
));
313 static HRESULT WINAPI
HTMLWindow2_get_name(IHTMLWindow2
*iface
, BSTR
*p
)
315 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
316 FIXME("(%p)->(%p)\n", This
, p
);
320 static HRESULT WINAPI
HTMLWindow2_get_parent(IHTMLWindow2
*iface
, IHTMLWindow2
**p
)
322 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
323 FIXME("(%p)->(%p)\n", This
, p
);
327 static HRESULT WINAPI
HTMLWindow2_open(IHTMLWindow2
*iface
, BSTR url
, BSTR name
,
328 BSTR features
, VARIANT_BOOL replace
, IHTMLWindow2
**pomWindowResult
)
330 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
331 FIXME("(%p)->(%s %s %s %x %p)\n", This
, debugstr_w(url
), debugstr_w(name
),
332 debugstr_w(features
), replace
, pomWindowResult
);
336 static HRESULT WINAPI
HTMLWindow2_get_self(IHTMLWindow2
*iface
, IHTMLWindow2
**p
)
338 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
339 FIXME("(%p)->(%p)\n", This
, p
);
343 static HRESULT WINAPI
HTMLWindow2_get_top(IHTMLWindow2
*iface
, IHTMLWindow2
**p
)
345 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
346 FIXME("(%p)->(%p)\n", This
, p
);
350 static HRESULT WINAPI
HTMLWindow2_get_window(IHTMLWindow2
*iface
, IHTMLWindow2
**p
)
352 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
353 FIXME("(%p)->(%p)\n", This
, p
);
357 static HRESULT WINAPI
HTMLWindow2_navigate(IHTMLWindow2
*iface
, BSTR url
)
359 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
360 FIXME("(%p)->(%s)\n", This
, debugstr_w(url
));
364 static HRESULT WINAPI
HTMLWindow2_put_onfocus(IHTMLWindow2
*iface
, VARIANT v
)
366 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
367 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
371 static HRESULT WINAPI
HTMLWindow2_get_onfocus(IHTMLWindow2
*iface
, VARIANT
*p
)
373 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
374 FIXME("(%p)->(%p)\n", This
, p
);
378 static HRESULT WINAPI
HTMLWindow2_put_onblur(IHTMLWindow2
*iface
, VARIANT v
)
380 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
381 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
385 static HRESULT WINAPI
HTMLWindow2_get_onblur(IHTMLWindow2
*iface
, VARIANT
*p
)
387 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
388 FIXME("(%p)->(%p)\n", This
, p
);
392 static HRESULT WINAPI
HTMLWindow2_put_onload(IHTMLWindow2
*iface
, VARIANT v
)
394 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
395 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
399 static HRESULT WINAPI
HTMLWindow2_get_onload(IHTMLWindow2
*iface
, VARIANT
*p
)
401 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
402 FIXME("(%p)->(%p)\n", This
, p
);
406 static HRESULT WINAPI
HTMLWindow2_put_onbeforeunload(IHTMLWindow2
*iface
, VARIANT v
)
408 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
409 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
413 static HRESULT WINAPI
HTMLWindow2_get_onbeforeunload(IHTMLWindow2
*iface
, VARIANT
*p
)
415 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
416 FIXME("(%p)->(%p)\n", This
, p
);
420 static HRESULT WINAPI
HTMLWindow2_put_onunload(IHTMLWindow2
*iface
, VARIANT v
)
422 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
423 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
427 static HRESULT WINAPI
HTMLWindow2_get_onunload(IHTMLWindow2
*iface
, VARIANT
*p
)
429 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
430 FIXME("(%p)->(%p)\n", This
, p
);
434 static HRESULT WINAPI
HTMLWindow2_put_onhelp(IHTMLWindow2
*iface
, VARIANT v
)
436 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
437 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
441 static HRESULT WINAPI
HTMLWindow2_get_onhelp(IHTMLWindow2
*iface
, VARIANT
*p
)
443 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
444 FIXME("(%p)->(%p)\n", This
, p
);
448 static HRESULT WINAPI
HTMLWindow2_put_onerror(IHTMLWindow2
*iface
, VARIANT v
)
450 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
451 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
455 static HRESULT WINAPI
HTMLWindow2_get_onerror(IHTMLWindow2
*iface
, VARIANT
*p
)
457 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
458 FIXME("(%p)->(%p)\n", This
, p
);
462 static HRESULT WINAPI
HTMLWindow2_put_onresize(IHTMLWindow2
*iface
, VARIANT v
)
464 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
465 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
469 static HRESULT WINAPI
HTMLWindow2_get_onresize(IHTMLWindow2
*iface
, VARIANT
*p
)
471 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
472 FIXME("(%p)->(%p)\n", This
, p
);
476 static HRESULT WINAPI
HTMLWindow2_put_onscroll(IHTMLWindow2
*iface
, VARIANT v
)
478 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
479 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
483 static HRESULT WINAPI
HTMLWindow2_get_onscroll(IHTMLWindow2
*iface
, VARIANT
*p
)
485 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
486 FIXME("(%p)->(%p)\n", This
, p
);
490 static HRESULT WINAPI
HTMLWindow2_get_document(IHTMLWindow2
*iface
, IHTMLDocument2
**p
)
492 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
493 FIXME("(%p)->(%p)\n", This
, p
);
497 static HRESULT WINAPI
HTMLWindow2_get_event(IHTMLWindow2
*iface
, IHTMLEventObj
**p
)
499 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
500 FIXME("(%p)->(%p)\n", This
, p
);
504 static HRESULT WINAPI
HTMLWindow2_get__newEnum(IHTMLWindow2
*iface
, IUnknown
**p
)
506 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
507 FIXME("(%p)->(%p)\n", This
, p
);
511 static HRESULT WINAPI
HTMLWindow2_showModalDialog(IHTMLWindow2
*iface
, BSTR dialog
,
512 VARIANT
*varArgIn
, VARIANT
*varOptions
, VARIANT
*varArgOut
)
514 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
515 FIXME("(%p)->(%s %p %p %p)\n", This
, debugstr_w(dialog
), varArgIn
, varOptions
, varArgOut
);
519 static HRESULT WINAPI
HTMLWindow2_showHelp(IHTMLWindow2
*iface
, BSTR helpURL
, VARIANT helpArg
,
522 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
523 FIXME("(%p)->(%s v(%d) %s)\n", This
, debugstr_w(helpURL
), V_VT(&helpArg
), debugstr_w(features
));
527 static HRESULT WINAPI
HTMLWindow2_get_screen(IHTMLWindow2
*iface
, IHTMLScreen
**p
)
529 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
530 FIXME("(%p)->(%p)\n", This
, p
);
534 static HRESULT WINAPI
HTMLWindow2_get_Option(IHTMLWindow2
*iface
, IHTMLOptionElementFactory
**p
)
536 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
538 TRACE("(%p)->(%p)\n", This
, p
);
540 if(!This
->doc
->option_factory
)
541 This
->doc
->option_factory
= HTMLOptionElementFactory_Create(This
->doc
);
543 *p
= HTMLOPTFACTORY(This
->doc
->option_factory
);
544 IHTMLOptionElementFactory_AddRef(*p
);
549 static HRESULT WINAPI
HTMLWindow2_focus(IHTMLWindow2
*iface
)
551 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
552 FIXME("(%p)->()\n", This
);
556 static HRESULT WINAPI
HTMLWindow2_get_closed(IHTMLWindow2
*iface
, VARIANT_BOOL
*p
)
558 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
559 FIXME("(%p)->(%p)\n", This
, p
);
563 static HRESULT WINAPI
HTMLWindow2_blur(IHTMLWindow2
*iface
)
565 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
566 FIXME("(%p)->()\n", This
);
570 static HRESULT WINAPI
HTMLWindow2_scroll(IHTMLWindow2
*iface
, long x
, long y
)
572 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
573 FIXME("(%p)->(%ld %ld)\n", This
, x
, y
);
577 static HRESULT WINAPI
HTMLWindow2_get_clientInformation(IHTMLWindow2
*iface
, IOmNavigator
**p
)
579 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
580 FIXME("(%p)->(%p)\n", This
, p
);
584 static HRESULT WINAPI
HTMLWindow2_setInterval(IHTMLWindow2
*iface
, BSTR expression
,
585 long msec
, VARIANT
*language
, long *timerID
)
587 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
588 FIXME("(%p)->(%s %ld %p %p)\n", This
, debugstr_w(expression
), msec
, language
, timerID
);
592 static HRESULT WINAPI
HTMLWindow2_clearInterval(IHTMLWindow2
*iface
, long timerID
)
594 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
595 FIXME("(%p)->(%ld)\n", This
, timerID
);
599 static HRESULT WINAPI
HTMLWindow2_put_offscreenBuffering(IHTMLWindow2
*iface
, VARIANT v
)
601 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
602 FIXME("(%p)->(v(%d))\n", This
, V_VT(&v
));
606 static HRESULT WINAPI
HTMLWindow2_get_offscreenBuffering(IHTMLWindow2
*iface
, VARIANT
*p
)
608 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
609 FIXME("(%p)->(%p)\n", This
, p
);
613 static HRESULT WINAPI
HTMLWindow2_execScript(IHTMLWindow2
*iface
, BSTR scode
, BSTR language
,
616 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
617 FIXME("(%p)->(%s %s %p)\n", This
, debugstr_w(scode
), debugstr_w(language
), pvarRet
);
621 static HRESULT WINAPI
HTMLWindow2_toString(IHTMLWindow2
*iface
, BSTR
*String
)
623 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
624 FIXME("(%p)->(%p)\n", This
, String
);
628 static HRESULT WINAPI
HTMLWindow2_scrollBy(IHTMLWindow2
*iface
, long x
, long y
)
630 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
631 FIXME("(%p)->(%ld %ld)\n", This
, x
, y
);
635 static HRESULT WINAPI
HTMLWindow2_scrollTo(IHTMLWindow2
*iface
, long x
, long y
)
637 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
638 FIXME("(%p)->(%ld %ld)\n", This
, x
, y
);
642 static HRESULT WINAPI
HTMLWindow2_moveTo(IHTMLWindow2
*iface
, long x
, long y
)
644 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
645 FIXME("(%p)->(%ld %ld)\n", This
, x
, y
);
649 static HRESULT WINAPI
HTMLWindow2_moveBy(IHTMLWindow2
*iface
, long x
, long y
)
651 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
652 FIXME("(%p)->(%ld %ld)\n", This
, x
, y
);
656 static HRESULT WINAPI
HTMLWindow2_resizeTo(IHTMLWindow2
*iface
, long x
, long y
)
658 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
659 FIXME("(%p)->(%ld %ld)\n", This
, x
, y
);
663 static HRESULT WINAPI
HTMLWindow2_resizeBy(IHTMLWindow2
*iface
, long x
, long y
)
665 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
666 FIXME("(%p)->(%ld %ld)\n", This
, x
, y
);
670 static HRESULT WINAPI
HTMLWindow2_get_external(IHTMLWindow2
*iface
, IDispatch
**p
)
672 HTMLWindow
*This
= HTMLWINDOW2_THIS(iface
);
674 TRACE("(%p)->(%p)\n", This
, p
);
678 if(!This
->doc
->hostui
)
681 return IDocHostUIHandler_GetExternal(This
->doc
->hostui
, p
);
684 #undef HTMLWINDOW2_THIS
686 static const IHTMLWindow2Vtbl HTMLWindow2Vtbl
= {
687 HTMLWindow2_QueryInterface
,
690 HTMLWindow2_GetTypeInfoCount
,
691 HTMLWindow2_GetTypeInfo
,
692 HTMLWindow2_GetIDsOfNames
,
695 HTMLWindow2_get_length
,
696 HTMLWindow2_get_frames
,
697 HTMLWindow2_put_defaultStatus
,
698 HTMLWindow2_get_defaultStatus
,
699 HTMLWindow2_put_status
,
700 HTMLWindow2_get_status
,
701 HTMLWindow2_setTimeout
,
702 HTMLWindow2_clearTimeout
,
706 HTMLWindow2_get_Image
,
707 HTMLWindow2_get_location
,
708 HTMLWindow2_get_history
,
710 HTMLWindow2_put_opener
,
711 HTMLWindow2_get_opener
,
712 HTMLWindow2_get_navigator
,
713 HTMLWindow2_put_name
,
714 HTMLWindow2_get_name
,
715 HTMLWindow2_get_parent
,
717 HTMLWindow2_get_self
,
719 HTMLWindow2_get_window
,
720 HTMLWindow2_navigate
,
721 HTMLWindow2_put_onfocus
,
722 HTMLWindow2_get_onfocus
,
723 HTMLWindow2_put_onblur
,
724 HTMLWindow2_get_onblur
,
725 HTMLWindow2_put_onload
,
726 HTMLWindow2_get_onload
,
727 HTMLWindow2_put_onbeforeunload
,
728 HTMLWindow2_get_onbeforeunload
,
729 HTMLWindow2_put_onunload
,
730 HTMLWindow2_get_onunload
,
731 HTMLWindow2_put_onhelp
,
732 HTMLWindow2_get_onhelp
,
733 HTMLWindow2_put_onerror
,
734 HTMLWindow2_get_onerror
,
735 HTMLWindow2_put_onresize
,
736 HTMLWindow2_get_onresize
,
737 HTMLWindow2_put_onscroll
,
738 HTMLWindow2_get_onscroll
,
739 HTMLWindow2_get_document
,
740 HTMLWindow2_get_event
,
741 HTMLWindow2_get__newEnum
,
742 HTMLWindow2_showModalDialog
,
743 HTMLWindow2_showHelp
,
744 HTMLWindow2_get_screen
,
745 HTMLWindow2_get_Option
,
747 HTMLWindow2_get_closed
,
750 HTMLWindow2_get_clientInformation
,
751 HTMLWindow2_setInterval
,
752 HTMLWindow2_clearInterval
,
753 HTMLWindow2_put_offscreenBuffering
,
754 HTMLWindow2_get_offscreenBuffering
,
755 HTMLWindow2_execScript
,
756 HTMLWindow2_toString
,
757 HTMLWindow2_scrollBy
,
758 HTMLWindow2_scrollTo
,
761 HTMLWindow2_resizeTo
,
762 HTMLWindow2_resizeBy
,
763 HTMLWindow2_get_external
766 static const char wineConfig_func
[] =
767 "window.__defineGetter__(\"external\",function() {\n"
768 " return window.__wineWindow__.external;\n"
770 "window.__wineWindow__ = wineWindow;\n";
772 static void astr_to_nswstr(const char *str
, nsAString
*nsstr
)
777 len
= MultiByteToWideChar(CP_ACP
, 0, str
, -1, NULL
, 0);
778 wstr
= heap_alloc(len
*sizeof(WCHAR
));
779 MultiByteToWideChar(CP_ACP
, 0, str
, -1, wstr
, len
);
781 nsAString_Init(nsstr
, wstr
);
786 static nsresult
call_js_func(nsIScriptContainer
*script_container
, nsISupports
*target
,
787 const char *name
, const char *body
,
788 PRUint32 argc
, const char **arg_names
, nsIArray
*argv
)
792 JSObject func_obj
, jsglobal
;
796 nsres
= nsIScriptContainer_GetGlobalObject(script_container
, &jsglobal
);
798 ERR("GetGlobalObject: %08x\n", nsres
);
800 nsACString_Init(&name_str
, name
);
801 astr_to_nswstr(body
, &body_str
);
803 nsres
= nsIScriptContainer_CompileFunction(script_container
, jsglobal
, &name_str
, argc
, arg_names
,
804 &body_str
, NULL
, 1, FALSE
, &func_obj
);
806 nsACString_Finish(&name_str
);
807 nsAString_Finish(&body_str
);
809 if(NS_FAILED(nsres
)) {
810 ERR("CompileFunction failed: %08x\n", nsres
);
814 nsres
= nsIScriptContainer_CallFunction(script_container
, target
, jsglobal
, func_obj
, argv
, &jsret
);
816 nsIScriptContainer_DropScriptObject(script_container
, func_obj
);
817 nsIScriptContainer_DropScriptObject(script_container
, jsglobal
);
818 if(NS_FAILED(nsres
)) {
819 ERR("CallFunction failed: %08x\n", nsres
);
823 nsIVariant_Release(jsret
);
827 void setup_nswindow(HTMLWindow
*This
)
829 nsIScriptContainer
*script_container
;
830 nsIDOMWindow
*nswindow
;
831 nsIDOMDocument
*domdoc
;
832 nsIWritableVariant
*nsvar
;
833 nsIMutableArray
*argv
;
836 static const char *args
[] = {"wineWindow"};
838 TRACE("(%p)\n", This
);
840 nsIWebNavigation_GetDocument(This
->doc
->nscontainer
->navigation
, &domdoc
);
841 nsres
= nsIDOMDocument_QueryInterface(domdoc
, &IID_nsIScriptContainer
, (void**)&script_container
);
842 nsIDOMDocument_Release(domdoc
);
843 if(NS_FAILED(nsres
)) {
844 TRACE("Could not get nsIDOMScriptContainer: %08x\n", nsres
);
848 nsIWebBrowser_GetContentDOMWindow(This
->doc
->nscontainer
->webbrowser
, &nswindow
);
850 nsvar
= create_nsvariant();
851 nsres
= nsIWritableVariant_SetAsInterface(nsvar
, &IID_IDispatch
, HTMLWINDOW2(This
));
853 ERR("SetAsInterface failed: %08x\n", nsres
);
855 argv
= create_nsarray();
856 nsres
= nsIMutableArray_AppendElement(argv
, (nsISupports
*)nsvar
, FALSE
);
857 nsIWritableVariant_Release(nsvar
);
859 ERR("AppendElement failed: %08x\n", nsres
);
861 call_js_func(script_container
, (nsISupports
*)nswindow
/*HTMLWINDOW2(This)*/, "wineConfig",
862 wineConfig_func
, 1, args
, (nsIArray
*)argv
);
864 nsIMutableArray_Release(argv
);
865 nsIScriptContainer_Release(script_container
);
868 HTMLWindow
*HTMLWindow_Create(HTMLDocument
*doc
)
870 HTMLWindow
*ret
= heap_alloc(sizeof(HTMLWindow
));
872 ret
->lpHTMLWindow2Vtbl
= &HTMLWindow2Vtbl
;
874 ret
->nswindow
= NULL
;
877 if(doc
->nscontainer
) {
880 nsres
= nsIWebBrowser_GetContentDOMWindow(doc
->nscontainer
->webbrowser
, &ret
->nswindow
);
882 ERR("GetContentDOMWindow failed: %08x\n", nsres
);
885 list_add_head(&window_list
, &ret
->entry
);
890 HTMLWindow
*nswindow_to_window(const nsIDOMWindow
*nswindow
)
894 LIST_FOR_EACH_ENTRY(iter
, &window_list
, HTMLWindow
, entry
) {
895 if(iter
->nswindow
== nswindow
)