2006-12-06 18:21:16 +01:00
|
|
|
/*
|
2010-03-03 14:56:21 +01:00
|
|
|
* Copyright 2006-2010 Jacek Caban for CodeWeavers
|
2006-12-06 18:21:16 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "ole2.h"
|
2009-11-30 17:58:37 +01:00
|
|
|
#include "mshtmdid.h"
|
2010-03-03 14:56:21 +01:00
|
|
|
#include "shlguid.h"
|
2012-01-09 17:56:54 +01:00
|
|
|
#include "shobjidl.h"
|
2006-12-06 18:21:16 +01:00
|
|
|
|
2011-07-23 12:52:17 +02:00
|
|
|
#define NO_SHLWAPI_REG
|
|
|
|
#include "shlwapi.h"
|
|
|
|
|
2006-12-06 18:21:16 +01:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
#include "mshtml_private.h"
|
2009-09-08 22:29:39 +02:00
|
|
|
#include "htmlevent.h"
|
2011-07-23 12:50:11 +02:00
|
|
|
#include "binding.h"
|
2006-12-06 18:21:16 +01:00
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
|
2006-12-08 12:38:19 +01:00
|
|
|
static struct list window_list = LIST_INIT(window_list);
|
|
|
|
|
2009-10-21 21:29:36 +02:00
|
|
|
static void window_set_docnode(HTMLWindow *window, HTMLDocumentNode *doc_node)
|
2009-09-16 22:08:41 +02:00
|
|
|
{
|
|
|
|
if(window->doc) {
|
2011-02-27 05:55:16 +01:00
|
|
|
if(window->doc_obj && window == window->doc_obj->basedoc.window)
|
|
|
|
window->doc->basedoc.cp_container.forward_container = NULL;
|
2011-11-24 12:48:31 +01:00
|
|
|
detach_events(window->doc);
|
2009-10-26 23:05:37 +01:00
|
|
|
abort_document_bindings(window->doc);
|
2009-09-16 22:08:41 +02:00
|
|
|
window->doc->basedoc.window = NULL;
|
|
|
|
htmldoc_release(&window->doc->basedoc);
|
|
|
|
}
|
|
|
|
window->doc = doc_node;
|
|
|
|
if(doc_node)
|
|
|
|
htmldoc_addref(&doc_node->basedoc);
|
2009-10-21 21:29:36 +02:00
|
|
|
|
|
|
|
if(window->doc_obj && window->doc_obj->basedoc.window == window) {
|
|
|
|
if(window->doc_obj->basedoc.doc_node)
|
|
|
|
htmldoc_release(&window->doc_obj->basedoc.doc_node->basedoc);
|
|
|
|
window->doc_obj->basedoc.doc_node = doc_node;
|
|
|
|
if(doc_node)
|
|
|
|
htmldoc_addref(&doc_node->basedoc);
|
|
|
|
}
|
2010-04-13 20:01:41 +02:00
|
|
|
|
2010-06-05 09:21:36 +02:00
|
|
|
if(doc_node && window->doc_obj && window->doc_obj->usermode == EDITMODE) {
|
2010-04-13 20:01:41 +02:00
|
|
|
nsAString mode_str;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
static const PRUnichar onW[] = {'o','n',0};
|
|
|
|
|
2011-11-09 18:11:42 +01:00
|
|
|
nsAString_Init(&mode_str, onW);
|
|
|
|
nsres = nsIDOMHTMLDocument_SetDesignMode(doc_node->nsdoc, &mode_str);
|
|
|
|
nsAString_Finish(&mode_str);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("SetDesignMode failed: %08x\n", nsres);
|
2010-04-13 20:01:41 +02:00
|
|
|
}
|
2009-09-16 22:08:41 +02:00
|
|
|
}
|
|
|
|
|
2009-10-21 21:30:20 +02:00
|
|
|
static void release_children(HTMLWindow *This)
|
|
|
|
{
|
|
|
|
HTMLWindow *child;
|
|
|
|
|
|
|
|
while(!list_empty(&This->children)) {
|
|
|
|
child = LIST_ENTRY(list_tail(&This->children), HTMLWindow, sibling_entry);
|
|
|
|
|
|
|
|
list_remove(&child->sibling_entry);
|
|
|
|
child->parent = NULL;
|
2010-12-27 12:50:32 +01:00
|
|
|
IHTMLWindow2_Release(&child->IHTMLWindow2_iface);
|
2009-10-21 21:30:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-30 17:58:37 +01:00
|
|
|
static HRESULT get_location(HTMLWindow *This, HTMLLocation **ret)
|
|
|
|
{
|
|
|
|
if(This->location) {
|
2011-01-03 01:12:05 +01:00
|
|
|
IHTMLLocation_AddRef(&This->location->IHTMLLocation_iface);
|
2009-11-30 17:58:37 +01:00
|
|
|
}else {
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = HTMLLocation_Create(This, &This->location);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ret = This->location;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-04 00:39:31 +01:00
|
|
|
static inline HRESULT set_window_event(HTMLWindow *window, eventid_t eid, VARIANT *var)
|
|
|
|
{
|
|
|
|
if(!window->doc) {
|
|
|
|
FIXME("No document\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2010-03-18 01:05:38 +01:00
|
|
|
return set_event_handler(&window->doc->body_event_target, NULL, window->doc, eid, var);
|
2010-01-04 00:39:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline HRESULT get_window_event(HTMLWindow *window, eventid_t eid, VARIANT *var)
|
|
|
|
{
|
|
|
|
if(!window->doc) {
|
|
|
|
FIXME("No document\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return get_event_handler(&window->doc->body_event_target, eid, var);
|
|
|
|
}
|
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
static inline HTMLWindow *impl_from_IHTMLWindow2(IHTMLWindow2 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLWindow, IHTMLWindow2_iface);
|
|
|
|
}
|
2008-04-19 18:41:25 +02:00
|
|
|
|
2006-12-06 18:21:16 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_QueryInterface(IHTMLWindow2 *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_IUnknown, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
|
2010-12-27 12:50:32 +01:00
|
|
|
*ppv = &This->IHTMLWindow2_iface;
|
2006-12-06 18:21:16 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IDispatch, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
|
2010-12-27 12:50:32 +01:00
|
|
|
*ppv = &This->IHTMLWindow2_iface;
|
2008-04-19 18:41:25 +02:00
|
|
|
}else if(IsEqualGUID(&IID_IDispatchEx, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IDispatchEx %p)\n", This, ppv);
|
2010-12-31 11:03:45 +01:00
|
|
|
*ppv = &This->IDispatchEx_iface;
|
2006-12-06 18:21:16 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLFramesCollection2, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IHTMLFramesCollection2 %p)\n", This, ppv);
|
2010-12-27 12:50:32 +01:00
|
|
|
*ppv = &This->IHTMLWindow2_iface;
|
2006-12-06 18:21:16 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLWindow2, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IHTMLWindow2 %p)\n", This, ppv);
|
2010-12-27 12:50:32 +01:00
|
|
|
*ppv = &This->IHTMLWindow2_iface;
|
2008-04-17 22:53:31 +02:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLWindow3, riid)) {
|
2009-10-27 00:02:14 +01:00
|
|
|
TRACE("(%p)->(IID_IHTMLWindow3 %p)\n", This, ppv);
|
2010-12-27 14:22:27 +01:00
|
|
|
*ppv = &This->IHTMLWindow3_iface;
|
2009-11-13 21:12:54 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLWindow4, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IHTMLWindow4 %p)\n", This, ppv);
|
2010-12-27 14:22:27 +01:00
|
|
|
*ppv = &This->IHTMLWindow4_iface;
|
2012-01-23 16:42:15 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLWindow5, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IHTMLWindow5 %p)\n", This, ppv);
|
|
|
|
*ppv = &This->IHTMLWindow5_iface;
|
2011-10-19 16:15:16 +02:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLWindow6, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IHTMLWindow6 %p)\n", This, ppv);
|
|
|
|
*ppv = &This->IHTMLWindow6_iface;
|
2010-03-03 14:53:03 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IHTMLPrivateWindow, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IHTMLPrivateWindow %p)\n", This, ppv);
|
2010-12-27 14:22:27 +01:00
|
|
|
*ppv = &This->IHTMLPrivateWindow_iface;
|
2010-11-12 12:30:36 +01:00
|
|
|
}else if(IsEqualGUID(&IID_IServiceProvider, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IServiceProvider %p)\n", This, ppv);
|
2010-12-27 01:43:10 +01:00
|
|
|
*ppv = &This->IServiceProvider_iface;
|
2012-01-20 15:10:25 +01:00
|
|
|
}else if(IsEqualGUID(&IID_ITravelLogClient, riid)) {
|
|
|
|
TRACE("(%p)->(IID_ITravelLogClient %p)\n", This, ppv);
|
|
|
|
*ppv = &This->ITravelLogClient_iface;
|
2008-06-30 21:38:55 +02:00
|
|
|
}else if(dispex_query_interface(&This->dispex, riid, ppv)) {
|
|
|
|
return *ppv ? S_OK : E_NOINTERFACE;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(*ppv) {
|
|
|
|
IUnknown_AddRef((IUnknown*)*ppv);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindow2_AddRef(IHTMLWindow2 *iface)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindow2_Release(IHTMLWindow2 *iface)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
2006-12-08 12:38:19 +01:00
|
|
|
if(!ref) {
|
2009-09-09 21:31:32 +02:00
|
|
|
DWORD i;
|
|
|
|
|
2009-10-26 23:05:37 +01:00
|
|
|
remove_target_tasks(This->task_magic);
|
2009-10-26 23:03:53 +01:00
|
|
|
set_window_bscallback(This, NULL);
|
2009-10-26 23:04:28 +01:00
|
|
|
set_current_mon(This, NULL);
|
2009-09-16 22:08:41 +02:00
|
|
|
window_set_docnode(This, NULL);
|
2009-10-21 21:30:20 +02:00
|
|
|
release_children(This);
|
2009-09-16 22:08:41 +02:00
|
|
|
|
2011-03-29 12:51:04 +02:00
|
|
|
if(This->secmgr)
|
|
|
|
IInternetSecurityManager_Release(This->secmgr);
|
|
|
|
|
2009-12-03 01:12:46 +01:00
|
|
|
if(This->frame_element)
|
|
|
|
This->frame_element->content_window = NULL;
|
|
|
|
|
2009-09-16 22:05:24 +02:00
|
|
|
if(This->option_factory) {
|
|
|
|
This->option_factory->window = NULL;
|
2011-01-03 01:04:25 +01:00
|
|
|
IHTMLOptionElementFactory_Release(&This->option_factory->IHTMLOptionElementFactory_iface);
|
2009-09-16 22:05:24 +02:00
|
|
|
}
|
|
|
|
|
2009-10-20 23:04:34 +02:00
|
|
|
if(This->image_factory) {
|
|
|
|
This->image_factory->window = NULL;
|
2011-01-03 01:05:51 +01:00
|
|
|
IHTMLImageElementFactory_Release(&This->image_factory->IHTMLImageElementFactory_iface);
|
2009-10-20 23:04:34 +02:00
|
|
|
}
|
|
|
|
|
2009-09-16 22:05:50 +02:00
|
|
|
if(This->location) {
|
|
|
|
This->location->window = NULL;
|
2011-01-03 01:12:05 +01:00
|
|
|
IHTMLLocation_Release(&This->location->IHTMLLocation_iface);
|
2009-09-16 22:05:50 +02:00
|
|
|
}
|
|
|
|
|
2009-11-30 17:58:37 +01:00
|
|
|
if(This->screen)
|
|
|
|
IHTMLScreen_Release(This->screen);
|
|
|
|
|
2009-09-09 21:31:32 +02:00
|
|
|
for(i=0; i < This->global_prop_cnt; i++)
|
|
|
|
heap_free(This->global_props[i].name);
|
2009-10-26 23:02:50 +01:00
|
|
|
|
|
|
|
This->window_ref->window = NULL;
|
|
|
|
windowref_release(This->window_ref);
|
|
|
|
|
2009-09-09 21:31:32 +02:00
|
|
|
heap_free(This->global_props);
|
2009-09-09 21:30:41 +02:00
|
|
|
release_script_hosts(This);
|
2009-11-30 17:58:37 +01:00
|
|
|
|
|
|
|
if(This->nswindow)
|
|
|
|
nsIDOMWindow_Release(This->nswindow);
|
|
|
|
|
2006-12-08 12:38:19 +01:00
|
|
|
list_remove(&This->entry);
|
2009-08-31 20:47:55 +02:00
|
|
|
release_dispex(&This->dispex);
|
2007-12-05 21:52:31 +01:00
|
|
|
heap_free(This);
|
2006-12-08 12:38:19 +01:00
|
|
|
}
|
2006-12-06 18:21:16 +01:00
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_GetTypeInfoCount(IHTMLWindow2 *iface, UINT *pctinfo)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2007-07-31 00:53:10 +02:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->IDispatchEx_iface, pctinfo);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_GetTypeInfo(IHTMLWindow2 *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2007-07-31 00:53:10 +02:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_GetTypeInfo(&This->IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_GetIDsOfNames(IHTMLWindow2 *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2007-07-31 00:53:10 +02:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_GetIDsOfNames(&This->IDispatchEx_iface, riid, rgszNames, cNames, lcid,
|
|
|
|
rgDispId);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_Invoke(IHTMLWindow2 *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2007-07-31 00:53:10 +02:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_Invoke(&This->IDispatchEx_iface, dispIdMember, riid, lcid, wFlags,
|
|
|
|
pDispParams, pVarResult, pExcepInfo, puArgErr);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2009-11-13 21:13:10 +01:00
|
|
|
static HRESULT get_frame_by_index(nsIDOMWindowCollection *nsFrames, PRUint32 index, HTMLWindow **ret)
|
|
|
|
{
|
|
|
|
PRUint32 length;
|
|
|
|
nsIDOMWindow *nsWindow;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
nsres = nsIDOMWindowCollection_GetLength(nsFrames, &length);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
FIXME("nsIDOMWindowCollection_GetLength failed: 0x%08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(index >= length)
|
|
|
|
return DISP_E_MEMBERNOTFOUND;
|
|
|
|
|
|
|
|
nsres = nsIDOMWindowCollection_Item(nsFrames, index, &nsWindow);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
FIXME("nsIDOMWindowCollection_Item failed: 0x%08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ret = nswindow_to_window(nsWindow);
|
|
|
|
|
|
|
|
nsIDOMWindow_Release(nsWindow);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2006-12-06 18:21:16 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_item(IHTMLWindow2 *iface, VARIANT *pvarIndex, VARIANT *pvarResult)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-11-13 21:13:10 +01:00
|
|
|
nsIDOMWindowCollection *nsFrames;
|
2011-11-03 19:24:09 +01:00
|
|
|
HTMLWindow *window = NULL;
|
|
|
|
HRESULT hres = S_OK;
|
2009-11-13 21:13:10 +01:00
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p %p)\n", This, pvarIndex, pvarResult);
|
|
|
|
|
|
|
|
nsres = nsIDOMWindow_GetFrames(This->nswindow, &nsFrames);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
FIXME("nsIDOMWindow_GetFrames failed: 0x%08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2011-11-03 19:24:09 +01:00
|
|
|
switch(V_VT(pvarIndex)) {
|
|
|
|
case VT_I4: {
|
2009-11-13 21:13:10 +01:00
|
|
|
int index = V_I4(pvarIndex);
|
|
|
|
TRACE("Getting index %d\n", index);
|
2011-11-03 19:24:09 +01:00
|
|
|
if(index < 0)
|
|
|
|
break;
|
2009-11-13 21:13:10 +01:00
|
|
|
hres = get_frame_by_index(nsFrames, index, &window);
|
2011-11-03 19:24:09 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case VT_UINT: {
|
2009-11-13 21:13:10 +01:00
|
|
|
unsigned int index = V_UINT(pvarIndex);
|
|
|
|
TRACE("Getting index %u\n", index);
|
|
|
|
hres = get_frame_by_index(nsFrames, index, &window);
|
2011-11-03 19:24:09 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case VT_BSTR: {
|
2009-11-13 21:13:10 +01:00
|
|
|
BSTR str = V_BSTR(pvarIndex);
|
|
|
|
PRUint32 length, i;
|
|
|
|
|
|
|
|
TRACE("Getting name %s\n", wine_dbgstr_w(str));
|
|
|
|
|
2011-11-03 19:24:09 +01:00
|
|
|
nsIDOMWindowCollection_GetLength(nsFrames, &length);
|
2009-11-13 21:13:10 +01:00
|
|
|
|
|
|
|
window = NULL;
|
|
|
|
for(i = 0; i < length && !window; ++i) {
|
|
|
|
HTMLWindow *cur_window;
|
|
|
|
nsIDOMWindow *nsWindow;
|
|
|
|
BSTR id;
|
|
|
|
|
|
|
|
nsres = nsIDOMWindowCollection_Item(nsFrames, i, &nsWindow);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
FIXME("nsIDOMWindowCollection_Item failed: 0x%08x\n", nsres);
|
|
|
|
hres = E_FAIL;
|
2011-11-03 19:24:09 +01:00
|
|
|
break;
|
2009-11-13 21:13:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cur_window = nswindow_to_window(nsWindow);
|
|
|
|
|
|
|
|
nsIDOMWindow_Release(nsWindow);
|
|
|
|
|
2010-12-30 01:24:59 +01:00
|
|
|
hres = IHTMLElement_get_id(&cur_window->frame_element->element.IHTMLElement_iface, &id);
|
2009-11-13 21:13:10 +01:00
|
|
|
if(FAILED(hres)) {
|
|
|
|
FIXME("IHTMLElement_get_id failed: 0x%08x\n", hres);
|
2011-11-03 19:24:09 +01:00
|
|
|
break;
|
2009-11-13 21:13:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!strcmpW(id, str))
|
|
|
|
window = cur_window;
|
|
|
|
|
|
|
|
SysFreeString(id);
|
|
|
|
}
|
2011-11-03 19:24:09 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2009-11-13 21:13:10 +01:00
|
|
|
hres = E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
2011-11-03 19:24:09 +01:00
|
|
|
nsIDOMWindowCollection_Release(nsFrames);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
if(!window)
|
|
|
|
return DISP_E_MEMBERNOTFOUND;
|
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
IHTMLWindow2_AddRef(&window->IHTMLWindow2_iface);
|
2009-11-13 21:13:10 +01:00
|
|
|
V_VT(pvarResult) = VT_DISPATCH;
|
|
|
|
V_DISPATCH(pvarResult) = (IDispatch*)window;
|
2011-11-03 19:24:09 +01:00
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_get_length(IHTMLWindow2 *iface, LONG *p)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-10-13 00:41:28 +02:00
|
|
|
nsIDOMWindowCollection *nscollection;
|
|
|
|
PRUint32 length;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
nsres = nsIDOMWindow_GetFrames(This->nswindow, &nscollection);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("GetFrames failed: %08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIDOMWindowCollection_GetLength(nscollection, &length);
|
|
|
|
nsIDOMWindowCollection_Release(nscollection);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("GetLength failed: %08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = length;
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_frames(IHTMLWindow2 *iface, IHTMLFramesCollection2 **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-11-13 21:13:07 +01:00
|
|
|
FIXME("(%p)->(%p): semi-stub\n", This, p);
|
|
|
|
|
|
|
|
/* FIXME: Should return a separate Window object */
|
2010-12-27 12:50:32 +01:00
|
|
|
*p = (IHTMLFramesCollection2*)&This->IHTMLWindow2_iface;
|
2009-11-13 21:13:07 +01:00
|
|
|
HTMLWindow2_AddRef(iface);
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_defaultStatus(IHTMLWindow2 *iface, BSTR v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_defaultStatus(IHTMLWindow2 *iface, BSTR *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_status(IHTMLWindow2 *iface, BSTR v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2011-07-31 16:44:43 +02:00
|
|
|
|
|
|
|
WARN("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: Since IE7, setting status is blocked, but still possible in certain circumstances.
|
|
|
|
* Ignoring the call should be enough for us.
|
|
|
|
*/
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_status(IHTMLWindow2 *iface, BSTR *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2011-07-31 16:44:43 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
/* See put_status */
|
|
|
|
*p = NULL;
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_setTimeout(IHTMLWindow2 *iface, BSTR expression,
|
2009-03-12 01:42:55 +01:00
|
|
|
LONG msec, VARIANT *language, LONG *timerID)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-04-21 18:12:49 +02:00
|
|
|
VARIANT expr_var;
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
TRACE("(%p)->(%s %d %p %p)\n", This, debugstr_w(expression), msec, language, timerID);
|
2008-04-21 18:12:49 +02:00
|
|
|
|
|
|
|
V_VT(&expr_var) = VT_BSTR;
|
|
|
|
V_BSTR(&expr_var) = expression;
|
|
|
|
|
2010-12-27 14:22:27 +01:00
|
|
|
return IHTMLWindow3_setTimeout(&This->IHTMLWindow3_iface, &expr_var, msec, language, timerID);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_clearTimeout(IHTMLWindow2 *iface, LONG timerID)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-06-27 21:14:40 +02:00
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
TRACE("(%p)->(%d)\n", This, timerID);
|
2008-06-27 21:14:40 +02:00
|
|
|
|
2009-09-16 22:08:20 +02:00
|
|
|
return clear_task_timer(&This->doc->basedoc, FALSE, timerID);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2010-04-21 14:01:22 +02:00
|
|
|
#define MAX_MESSAGE_LEN 2000
|
|
|
|
|
2006-12-06 18:21:16 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_alert(IHTMLWindow2 *iface, BSTR message)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2010-04-21 14:01:22 +02:00
|
|
|
WCHAR title[100], *msg = message;
|
|
|
|
DWORD len;
|
2006-12-12 17:08:18 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(message));
|
|
|
|
|
2010-04-21 14:01:22 +02:00
|
|
|
if(!LoadStringW(get_shdoclc(), IDS_MESSAGE_BOX_TITLE, title,
|
|
|
|
sizeof(title)/sizeof(WCHAR))) {
|
2006-12-12 17:08:18 +01:00
|
|
|
WARN("Could not load message box title: %d\n", GetLastError());
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2010-04-21 14:01:22 +02:00
|
|
|
len = SysStringLen(message);
|
|
|
|
if(len > MAX_MESSAGE_LEN) {
|
|
|
|
msg = heap_alloc((MAX_MESSAGE_LEN+1)*sizeof(WCHAR));
|
|
|
|
if(!msg)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
memcpy(msg, message, MAX_MESSAGE_LEN*sizeof(WCHAR));
|
|
|
|
msg[MAX_MESSAGE_LEN] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageBoxW(This->doc_obj->hwnd, msg, title, MB_ICONWARNING);
|
|
|
|
if(msg != message)
|
|
|
|
heap_free(msg);
|
2006-12-12 17:08:18 +01:00
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_confirm(IHTMLWindow2 *iface, BSTR message,
|
|
|
|
VARIANT_BOOL *confirmed)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-03-12 19:08:30 +01:00
|
|
|
WCHAR wszTitle[100];
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s %p)\n", This, debugstr_w(message), confirmed);
|
|
|
|
|
|
|
|
if(!confirmed) return E_INVALIDARG;
|
|
|
|
|
|
|
|
if(!LoadStringW(get_shdoclc(), IDS_MESSAGE_BOX_TITLE, wszTitle,
|
|
|
|
sizeof(wszTitle)/sizeof(WCHAR))) {
|
|
|
|
WARN("Could not load message box title: %d\n", GetLastError());
|
|
|
|
*confirmed = VARIANT_TRUE;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-16 22:10:47 +02:00
|
|
|
if(MessageBoxW(This->doc_obj->hwnd, message, wszTitle,
|
2009-03-12 19:08:30 +01:00
|
|
|
MB_OKCANCEL|MB_ICONQUESTION)==IDOK)
|
|
|
|
*confirmed = VARIANT_TRUE;
|
|
|
|
else *confirmed = VARIANT_FALSE;
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 19:08:06 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
BSTR message;
|
|
|
|
BSTR dststr;
|
|
|
|
VARIANT *textdata;
|
|
|
|
}prompt_arg;
|
|
|
|
|
|
|
|
static INT_PTR CALLBACK prompt_dlgproc(HWND hwnd, UINT msg,
|
|
|
|
WPARAM wparam, LPARAM lparam)
|
|
|
|
{
|
|
|
|
switch(msg)
|
|
|
|
{
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
{
|
|
|
|
prompt_arg *arg = (prompt_arg*)lparam;
|
|
|
|
WCHAR wszTitle[100];
|
|
|
|
|
|
|
|
if(!LoadStringW(get_shdoclc(), IDS_MESSAGE_BOX_TITLE, wszTitle,
|
|
|
|
sizeof(wszTitle)/sizeof(WCHAR))) {
|
|
|
|
WARN("Could not load message box title: %d\n", GetLastError());
|
|
|
|
EndDialog(hwnd, wparam);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetWindowLongPtrW(hwnd, DWLP_USER, lparam);
|
|
|
|
SetWindowTextW(hwnd, wszTitle);
|
|
|
|
SetWindowTextW(GetDlgItem(hwnd, ID_PROMPT_PROMPT), arg->message);
|
|
|
|
SetWindowTextW(GetDlgItem(hwnd, ID_PROMPT_EDIT), arg->dststr);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch(wparam)
|
|
|
|
{
|
|
|
|
case MAKEWPARAM(IDCANCEL, BN_CLICKED):
|
|
|
|
EndDialog(hwnd, wparam);
|
|
|
|
return TRUE;
|
|
|
|
case MAKEWPARAM(IDOK, BN_CLICKED):
|
|
|
|
{
|
|
|
|
prompt_arg *arg =
|
|
|
|
(prompt_arg*)GetWindowLongPtrW(hwnd, DWLP_USER);
|
|
|
|
HWND hwndPrompt = GetDlgItem(hwnd, ID_PROMPT_EDIT);
|
|
|
|
INT len = GetWindowTextLengthW(hwndPrompt);
|
|
|
|
|
|
|
|
if(!arg->textdata)
|
|
|
|
{
|
|
|
|
EndDialog(hwnd, wparam);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
V_VT(arg->textdata) = VT_BSTR;
|
|
|
|
if(!len && !arg->dststr)
|
|
|
|
V_BSTR(arg->textdata) = NULL;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
V_BSTR(arg->textdata) = SysAllocStringLen(NULL, len);
|
|
|
|
GetWindowTextW(hwndPrompt, V_BSTR(arg->textdata), len+1);
|
|
|
|
}
|
|
|
|
EndDialog(hwnd, wparam);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
case WM_CLOSE:
|
|
|
|
EndDialog(hwnd, IDCANCEL);
|
|
|
|
return TRUE;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-06 18:21:16 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_prompt(IHTMLWindow2 *iface, BSTR message,
|
|
|
|
BSTR dststr, VARIANT *textdata)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-03-12 19:08:06 +01:00
|
|
|
prompt_arg arg;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s %s %p)\n", This, debugstr_w(message), debugstr_w(dststr), textdata);
|
|
|
|
|
|
|
|
if(textdata) V_VT(textdata) = VT_NULL;
|
|
|
|
|
|
|
|
arg.message = message;
|
|
|
|
arg.dststr = dststr;
|
|
|
|
arg.textdata = textdata;
|
|
|
|
|
|
|
|
DialogBoxParamW(hInst, MAKEINTRESOURCEW(ID_PROMPT_DIALOG),
|
2009-09-16 22:10:47 +02:00
|
|
|
This->doc_obj->hwnd, prompt_dlgproc, (LPARAM)&arg);
|
2009-03-12 19:08:06 +01:00
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_Image(IHTMLWindow2 *iface, IHTMLImageElementFactory **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-10-20 23:04:34 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(!This->image_factory)
|
|
|
|
This->image_factory = HTMLImageElementFactory_Create(This);
|
|
|
|
|
2011-01-03 01:05:51 +01:00
|
|
|
*p = &This->image_factory->IHTMLImageElementFactory_iface;
|
2009-10-20 23:04:34 +02:00
|
|
|
IHTMLImageElementFactory_AddRef(*p);
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_location(IHTMLWindow2 *iface, IHTMLLocation **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-11-30 17:58:37 +01:00
|
|
|
HTMLLocation *location;
|
|
|
|
HRESULT hres;
|
2009-01-03 17:45:47 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2009-11-30 17:58:37 +01:00
|
|
|
hres = get_location(This, &location);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
2009-01-03 17:45:47 +01:00
|
|
|
|
2011-01-03 01:12:05 +01:00
|
|
|
*p = &location->IHTMLLocation_iface;
|
2009-09-16 22:05:50 +02:00
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_history(IHTMLWindow2 *iface, IOmHistory **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_close(IHTMLWindow2 *iface)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->()\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_opener(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(v(%d))\n", This, V_VT(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_opener(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_navigator(IHTMLWindow2 *iface, IOmNavigator **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-04-07 12:34:24 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
*p = OmNavigator_Create();
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_name(IHTMLWindow2 *iface, BSTR v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-10-13 00:41:11 +02:00
|
|
|
nsAString name_str;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
|
|
|
|
|
2010-01-28 23:56:31 +01:00
|
|
|
nsAString_InitDepend(&name_str, v);
|
2009-10-13 00:41:11 +02:00
|
|
|
nsres = nsIDOMWindow_SetName(This->nswindow, &name_str);
|
|
|
|
nsAString_Finish(&name_str);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("SetName failed: %08x\n", nsres);
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_name(IHTMLWindow2 *iface, BSTR *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-10-13 00:41:11 +02:00
|
|
|
nsAString name_str;
|
|
|
|
nsresult nsres;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
nsAString_Init(&name_str, NULL);
|
|
|
|
nsres = nsIDOMWindow_GetName(This->nswindow, &name_str);
|
|
|
|
if(NS_SUCCEEDED(nsres)) {
|
|
|
|
const PRUnichar *name;
|
|
|
|
|
|
|
|
nsAString_GetData(&name_str, &name);
|
|
|
|
if(*name) {
|
|
|
|
*p = SysAllocString(name);
|
|
|
|
hres = *p ? S_OK : E_OUTOFMEMORY;
|
|
|
|
}else {
|
|
|
|
*p = NULL;
|
|
|
|
hres = S_OK;
|
|
|
|
}
|
|
|
|
}else {
|
|
|
|
ERR("GetName failed: %08x\n", nsres);
|
|
|
|
hres = E_FAIL;
|
|
|
|
}
|
|
|
|
nsAString_Finish(&name_str);
|
|
|
|
|
|
|
|
return hres;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_parent(IHTMLWindow2 *iface, IHTMLWindow2 **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-11-13 21:13:12 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(This->parent) {
|
2010-12-27 12:50:32 +01:00
|
|
|
*p = &This->parent->IHTMLWindow2_iface;
|
2009-11-13 21:13:12 +01:00
|
|
|
IHTMLWindow2_AddRef(*p);
|
|
|
|
}else
|
|
|
|
*p = NULL;
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_open(IHTMLWindow2 *iface, BSTR url, BSTR name,
|
|
|
|
BSTR features, VARIANT_BOOL replace, IHTMLWindow2 **pomWindowResult)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2012-01-09 17:56:54 +01:00
|
|
|
INewWindowManager *new_window_mgr;
|
|
|
|
IUri *uri;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s %s %s %x %p)\n", This, debugstr_w(url), debugstr_w(name),
|
2006-12-06 18:21:16 +01:00
|
|
|
debugstr_w(features), replace, pomWindowResult);
|
2012-01-09 17:56:54 +01:00
|
|
|
|
|
|
|
if(!This->doc_obj)
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
|
|
|
|
if(name && *name == '_') {
|
|
|
|
FIXME("Unsupported name %s\n", debugstr_w(name));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
hres = do_query_service((IUnknown*)This->doc_obj->client, &SID_SNewWindowManager, &IID_INewWindowManager,
|
|
|
|
(void**)&new_window_mgr);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
FIXME("No INewWindowManager\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
hres = INewWindowManager_EvaluateNewWindow(new_window_mgr, url, name, This->url,
|
|
|
|
features, !!replace, This->doc_obj->has_popup ? 0 : NWMF_FIRST, 0);
|
|
|
|
INewWindowManager_Release(new_window_mgr);
|
|
|
|
This->doc_obj->has_popup = TRUE;
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
*pomWindowResult = NULL;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(This->uri)
|
|
|
|
hres = CoInternetCombineUrlEx(This->uri, url, URL_ESCAPE_SPACES_ONLY|URL_DONT_ESCAPE_EXTRA_INFO, &uri, 0);
|
|
|
|
else
|
|
|
|
hres = CreateUri(url, 0, 0, &uri);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = navigate_new_window(This, uri, name, pomWindowResult);
|
|
|
|
IUri_Release(uri);
|
|
|
|
return hres;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_self(IHTMLWindow2 *iface, IHTMLWindow2 **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-06-30 21:37:41 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
/* FIXME: We should return kind of proxy window here. */
|
2010-12-27 12:50:32 +01:00
|
|
|
IHTMLWindow2_AddRef(&This->IHTMLWindow2_iface);
|
|
|
|
*p = &This->IHTMLWindow2_iface;
|
2008-06-30 21:37:41 +02:00
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_top(IHTMLWindow2 *iface, IHTMLWindow2 **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
|
|
|
HTMLWindow *curr;
|
2009-11-17 00:28:54 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
curr = This;
|
|
|
|
while(curr->parent)
|
|
|
|
curr = curr->parent;
|
2010-12-27 12:50:32 +01:00
|
|
|
*p = &curr->IHTMLWindow2_iface;
|
2009-11-17 00:28:54 +01:00
|
|
|
IHTMLWindow2_AddRef(*p);
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_window(IHTMLWindow2 *iface, IHTMLWindow2 **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-06-30 21:37:18 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
/* FIXME: We should return kind of proxy window here. */
|
2010-12-27 12:50:32 +01:00
|
|
|
IHTMLWindow2_AddRef(&This->IHTMLWindow2_iface);
|
|
|
|
*p = &This->IHTMLWindow2_iface;
|
2008-06-30 21:37:18 +02:00
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_navigate(IHTMLWindow2 *iface, BSTR url)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(url));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_onfocus(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(v(%d))\n", This, V_VT(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_onfocus(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_onblur(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(v(%d))\n", This, V_VT(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_onblur(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_onload(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-09-08 22:30:38 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
|
|
|
return set_window_event(This, EVENTID_LOAD, &v);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_onload(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-09-08 22:30:38 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_window_event(This, EVENTID_LOAD, p);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_onbeforeunload(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-09-08 22:30:14 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(v(%d))\n", This, V_VT(&v));
|
|
|
|
|
|
|
|
return set_window_event(This, EVENTID_BEFOREUNLOAD, &v);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_onbeforeunload(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-09-08 22:30:14 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_window_event(This, EVENTID_BEFOREUNLOAD, p);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_onunload(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(v(%d))\n", This, V_VT(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_onunload(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_onhelp(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(v(%d))\n", This, V_VT(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_onhelp(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_onerror(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(v(%d))\n", This, V_VT(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_onerror(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_onresize(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-12-07 23:28:10 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
|
|
|
|
return set_window_event(This, EVENTID_RESIZE, &v);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_onresize(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-12-07 23:28:10 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
return get_window_event(This, EVENTID_RESIZE, p);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_onscroll(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(v(%d))\n", This, V_VT(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_onscroll(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_document(IHTMLWindow2 *iface, IHTMLDocument2 **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-04-21 18:12:32 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(This->doc) {
|
|
|
|
/* FIXME: We should return a wrapper object here */
|
2010-12-16 14:59:51 +01:00
|
|
|
*p = &This->doc->basedoc.IHTMLDocument2_iface;
|
2008-04-21 18:12:32 +02:00
|
|
|
IHTMLDocument2_AddRef(*p);
|
|
|
|
}else {
|
|
|
|
*p = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_event(IHTMLWindow2 *iface, IHTMLEventObj **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-10-10 22:47:02 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(This->event)
|
|
|
|
IHTMLEventObj_AddRef(This->event);
|
|
|
|
*p = This->event;
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get__newEnum(IHTMLWindow2 *iface, IUnknown **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_showModalDialog(IHTMLWindow2 *iface, BSTR dialog,
|
|
|
|
VARIANT *varArgIn, VARIANT *varOptions, VARIANT *varArgOut)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%s %p %p %p)\n", This, debugstr_w(dialog), varArgIn, varOptions, varArgOut);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_showHelp(IHTMLWindow2 *iface, BSTR helpURL, VARIANT helpArg,
|
|
|
|
BSTR features)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%s v(%d) %s)\n", This, debugstr_w(helpURL), V_VT(&helpArg), debugstr_w(features));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_screen(IHTMLWindow2 *iface, IHTMLScreen **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-11-30 17:56:01 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(!This->screen) {
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = HTMLScreen_Create(&This->screen);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = This->screen;
|
|
|
|
IHTMLScreen_AddRef(This->screen);
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_Option(IHTMLWindow2 *iface, IHTMLOptionElementFactory **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2007-10-13 03:58:55 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
2009-09-16 22:05:24 +02:00
|
|
|
if(!This->option_factory)
|
|
|
|
This->option_factory = HTMLOptionElementFactory_Create(This);
|
2007-10-13 03:58:55 +02:00
|
|
|
|
2011-01-03 01:04:25 +01:00
|
|
|
*p = &This->option_factory->IHTMLOptionElementFactory_iface;
|
2007-10-13 03:58:55 +02:00
|
|
|
IHTMLOptionElementFactory_AddRef(*p);
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_focus(IHTMLWindow2 *iface)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2011-02-06 22:15:57 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if(This->doc_obj)
|
|
|
|
SetFocus(This->doc_obj->hwnd);
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_closed(IHTMLWindow2 *iface, VARIANT_BOOL *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_blur(IHTMLWindow2 *iface)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->()\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_scroll(IHTMLWindow2 *iface, LONG x, LONG y)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-03-12 01:42:55 +01:00
|
|
|
FIXME("(%p)->(%d %d)\n", This, x, y);
|
2006-12-06 18:21:16 +01:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_clientInformation(IHTMLWindow2 *iface, IOmNavigator **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_setInterval(IHTMLWindow2 *iface, BSTR expression,
|
2009-03-12 01:42:55 +01:00
|
|
|
LONG msec, VARIANT *language, LONG *timerID)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-06-27 21:10:23 +02:00
|
|
|
VARIANT expr;
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
TRACE("(%p)->(%s %d %p %p)\n", This, debugstr_w(expression), msec, language, timerID);
|
2008-06-27 21:10:23 +02:00
|
|
|
|
|
|
|
V_VT(&expr) = VT_BSTR;
|
|
|
|
V_BSTR(&expr) = expression;
|
2010-12-27 14:22:27 +01:00
|
|
|
return IHTMLWindow3_setInterval(&This->IHTMLWindow3_iface, &expr, msec, language, timerID);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_clearInterval(IHTMLWindow2 *iface, LONG timerID)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-06-27 21:14:08 +02:00
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
TRACE("(%p)->(%d)\n", This, timerID);
|
2008-06-27 21:14:08 +02:00
|
|
|
|
2009-09-16 22:08:20 +02:00
|
|
|
return clear_task_timer(&This->doc->basedoc, TRUE, timerID);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_put_offscreenBuffering(IHTMLWindow2 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(v(%d))\n", This, V_VT(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_offscreenBuffering(IHTMLWindow2 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2006-12-06 18:21:16 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_execScript(IHTMLWindow2 *iface, BSTR scode, BSTR language,
|
|
|
|
VARIANT *pvarRet)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2010-11-09 13:36:24 +01:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s %s %p)\n", This, debugstr_w(scode), debugstr_w(language), pvarRet);
|
|
|
|
|
|
|
|
return exec_script(This, scode, language, pvarRet);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_toString(IHTMLWindow2 *iface, BSTR *String)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-08-31 20:45:02 +02:00
|
|
|
|
|
|
|
static const WCHAR objectW[] = {'[','o','b','j','e','c','t',']',0};
|
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, String);
|
|
|
|
|
|
|
|
if(!String)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
*String = SysAllocString(objectW);
|
|
|
|
return *String ? S_OK : E_OUTOFMEMORY;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_scrollBy(IHTMLWindow2 *iface, LONG x, LONG y)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-07-04 17:23:51 +02:00
|
|
|
nsresult nsres;
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
TRACE("(%p)->(%d %d)\n", This, x, y);
|
2008-07-04 17:23:51 +02:00
|
|
|
|
|
|
|
nsres = nsIDOMWindow_ScrollBy(This->nswindow, x, y);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("ScrollBy failed: %08x\n", nsres);
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_scrollTo(IHTMLWindow2 *iface, LONG x, LONG y)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2008-07-04 17:23:51 +02:00
|
|
|
nsresult nsres;
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
TRACE("(%p)->(%d %d)\n", This, x, y);
|
2008-07-04 17:23:51 +02:00
|
|
|
|
|
|
|
nsres = nsIDOMWindow_ScrollTo(This->nswindow, x, y);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("ScrollTo failed: %08x\n", nsres);
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_moveTo(IHTMLWindow2 *iface, LONG x, LONG y)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-03-12 01:42:55 +01:00
|
|
|
FIXME("(%p)->(%d %d)\n", This, x, y);
|
2006-12-06 18:21:16 +01:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_moveBy(IHTMLWindow2 *iface, LONG x, LONG y)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-03-12 01:42:55 +01:00
|
|
|
FIXME("(%p)->(%d %d)\n", This, x, y);
|
2006-12-06 18:21:16 +01:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_resizeTo(IHTMLWindow2 *iface, LONG x, LONG y)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-03-12 01:42:55 +01:00
|
|
|
FIXME("(%p)->(%d %d)\n", This, x, y);
|
2006-12-06 18:21:16 +01:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow2_resizeBy(IHTMLWindow2 *iface, LONG x, LONG y)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2009-03-12 01:42:55 +01:00
|
|
|
FIXME("(%p)->(%d %d)\n", This, x, y);
|
2006-12-06 18:21:16 +01:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow2_get_external(IHTMLWindow2 *iface, IDispatch **p)
|
|
|
|
{
|
2010-12-27 12:50:32 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow2(iface);
|
2007-08-01 00:59:48 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
*p = NULL;
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
if(!This->doc_obj->hostui)
|
2007-08-01 00:59:48 +02:00
|
|
|
return S_OK;
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
return IDocHostUIHandler_GetExternal(This->doc_obj->hostui, p);
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const IHTMLWindow2Vtbl HTMLWindow2Vtbl = {
|
|
|
|
HTMLWindow2_QueryInterface,
|
|
|
|
HTMLWindow2_AddRef,
|
|
|
|
HTMLWindow2_Release,
|
|
|
|
HTMLWindow2_GetTypeInfoCount,
|
|
|
|
HTMLWindow2_GetTypeInfo,
|
|
|
|
HTMLWindow2_GetIDsOfNames,
|
|
|
|
HTMLWindow2_Invoke,
|
|
|
|
HTMLWindow2_item,
|
|
|
|
HTMLWindow2_get_length,
|
|
|
|
HTMLWindow2_get_frames,
|
|
|
|
HTMLWindow2_put_defaultStatus,
|
|
|
|
HTMLWindow2_get_defaultStatus,
|
|
|
|
HTMLWindow2_put_status,
|
|
|
|
HTMLWindow2_get_status,
|
|
|
|
HTMLWindow2_setTimeout,
|
|
|
|
HTMLWindow2_clearTimeout,
|
|
|
|
HTMLWindow2_alert,
|
|
|
|
HTMLWindow2_confirm,
|
|
|
|
HTMLWindow2_prompt,
|
|
|
|
HTMLWindow2_get_Image,
|
|
|
|
HTMLWindow2_get_location,
|
|
|
|
HTMLWindow2_get_history,
|
|
|
|
HTMLWindow2_close,
|
|
|
|
HTMLWindow2_put_opener,
|
|
|
|
HTMLWindow2_get_opener,
|
|
|
|
HTMLWindow2_get_navigator,
|
|
|
|
HTMLWindow2_put_name,
|
|
|
|
HTMLWindow2_get_name,
|
|
|
|
HTMLWindow2_get_parent,
|
|
|
|
HTMLWindow2_open,
|
|
|
|
HTMLWindow2_get_self,
|
|
|
|
HTMLWindow2_get_top,
|
|
|
|
HTMLWindow2_get_window,
|
|
|
|
HTMLWindow2_navigate,
|
|
|
|
HTMLWindow2_put_onfocus,
|
|
|
|
HTMLWindow2_get_onfocus,
|
|
|
|
HTMLWindow2_put_onblur,
|
|
|
|
HTMLWindow2_get_onblur,
|
|
|
|
HTMLWindow2_put_onload,
|
|
|
|
HTMLWindow2_get_onload,
|
|
|
|
HTMLWindow2_put_onbeforeunload,
|
|
|
|
HTMLWindow2_get_onbeforeunload,
|
|
|
|
HTMLWindow2_put_onunload,
|
|
|
|
HTMLWindow2_get_onunload,
|
|
|
|
HTMLWindow2_put_onhelp,
|
|
|
|
HTMLWindow2_get_onhelp,
|
|
|
|
HTMLWindow2_put_onerror,
|
|
|
|
HTMLWindow2_get_onerror,
|
|
|
|
HTMLWindow2_put_onresize,
|
|
|
|
HTMLWindow2_get_onresize,
|
|
|
|
HTMLWindow2_put_onscroll,
|
|
|
|
HTMLWindow2_get_onscroll,
|
|
|
|
HTMLWindow2_get_document,
|
|
|
|
HTMLWindow2_get_event,
|
|
|
|
HTMLWindow2_get__newEnum,
|
|
|
|
HTMLWindow2_showModalDialog,
|
|
|
|
HTMLWindow2_showHelp,
|
|
|
|
HTMLWindow2_get_screen,
|
|
|
|
HTMLWindow2_get_Option,
|
|
|
|
HTMLWindow2_focus,
|
|
|
|
HTMLWindow2_get_closed,
|
|
|
|
HTMLWindow2_blur,
|
|
|
|
HTMLWindow2_scroll,
|
|
|
|
HTMLWindow2_get_clientInformation,
|
|
|
|
HTMLWindow2_setInterval,
|
|
|
|
HTMLWindow2_clearInterval,
|
|
|
|
HTMLWindow2_put_offscreenBuffering,
|
|
|
|
HTMLWindow2_get_offscreenBuffering,
|
|
|
|
HTMLWindow2_execScript,
|
|
|
|
HTMLWindow2_toString,
|
|
|
|
HTMLWindow2_scrollBy,
|
|
|
|
HTMLWindow2_scrollTo,
|
|
|
|
HTMLWindow2_moveTo,
|
|
|
|
HTMLWindow2_moveBy,
|
|
|
|
HTMLWindow2_resizeTo,
|
|
|
|
HTMLWindow2_resizeBy,
|
|
|
|
HTMLWindow2_get_external
|
|
|
|
};
|
|
|
|
|
2010-12-27 14:22:27 +01:00
|
|
|
static inline HTMLWindow *impl_from_IHTMLWindow3(IHTMLWindow3 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLWindow, IHTMLWindow3_iface);
|
|
|
|
}
|
2008-04-17 22:53:31 +02:00
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_QueryInterface(IHTMLWindow3 *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_QueryInterface(&This->IHTMLWindow2_iface, riid, ppv);
|
2008-04-17 22:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindow3_AddRef(IHTMLWindow3 *iface)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_AddRef(&This->IHTMLWindow2_iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindow3_Release(IHTMLWindow3 *iface)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_Release(&This->IHTMLWindow2_iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_GetTypeInfoCount(IHTMLWindow3 *iface, UINT *pctinfo)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-19 18:41:44 +02:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->IDispatchEx_iface, pctinfo);
|
2008-04-17 22:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_GetTypeInfo(IHTMLWindow3 *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-19 18:41:44 +02:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_GetTypeInfo(&This->IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
2008-04-17 22:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_GetIDsOfNames(IHTMLWindow3 *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-19 18:41:44 +02:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_GetIDsOfNames(&This->IDispatchEx_iface, riid, rgszNames, cNames, lcid,
|
|
|
|
rgDispId);
|
2008-04-17 22:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_Invoke(IHTMLWindow3 *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-19 18:41:44 +02:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_Invoke(&This->IDispatchEx_iface, dispIdMember, riid, lcid, wFlags,
|
|
|
|
pDispParams, pVarResult, pExcepInfo, puArgErr);
|
2008-04-17 22:53:31 +02:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow3_get_screenLeft(IHTMLWindow3 *iface, LONG *p)
|
2008-04-17 22:53:31 +02:00
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow3_get_screenTop(IHTMLWindow3 *iface, LONG *p)
|
2008-04-17 22:53:31 +02:00
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_attachEvent(IHTMLWindow3 *iface, BSTR event, IDispatch *pDisp, VARIANT_BOOL *pfResult)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2009-09-08 22:31:10 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s %p %p)\n", This, debugstr_w(event), pDisp, pfResult);
|
|
|
|
|
2010-01-04 00:39:31 +01:00
|
|
|
if(!This->doc) {
|
|
|
|
FIXME("No document\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2010-03-18 01:05:38 +01:00
|
|
|
return attach_event(&This->doc->body_event_target, NULL, &This->doc->basedoc, event, pDisp, pfResult);
|
2008-04-17 22:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_detachEvent(IHTMLWindow3 *iface, BSTR event, IDispatch *pDisp)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
FIXME("(%p)->()\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT window_set_timer(HTMLWindow *This, VARIANT *expr, LONG msec, VARIANT *language,
|
|
|
|
BOOL interval, LONG *timer_id)
|
2008-04-17 22:53:31 +02:00
|
|
|
{
|
2008-06-27 21:10:04 +02:00
|
|
|
IDispatch *disp = NULL;
|
2008-04-21 18:21:19 +02:00
|
|
|
|
2008-06-27 21:10:04 +02:00
|
|
|
switch(V_VT(expr)) {
|
2008-04-21 18:21:19 +02:00
|
|
|
case VT_DISPATCH:
|
2008-06-27 21:10:04 +02:00
|
|
|
disp = V_DISPATCH(expr);
|
|
|
|
IDispatch_AddRef(disp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VT_BSTR:
|
2009-09-16 22:08:20 +02:00
|
|
|
disp = script_parse_event(This, V_BSTR(expr));
|
2008-04-21 18:21:19 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2008-06-27 21:10:04 +02:00
|
|
|
FIXME("unimplemented vt=%d\n", V_VT(expr));
|
|
|
|
return E_NOTIMPL;
|
2008-04-21 18:21:19 +02:00
|
|
|
}
|
|
|
|
|
2008-06-27 21:10:04 +02:00
|
|
|
if(!disp)
|
|
|
|
return E_FAIL;
|
|
|
|
|
2009-09-16 22:08:20 +02:00
|
|
|
*timer_id = set_task_timer(&This->doc->basedoc, msec, interval, disp);
|
2008-06-27 21:10:04 +02:00
|
|
|
IDispatch_Release(disp);
|
|
|
|
|
2008-04-21 18:21:19 +02:00
|
|
|
return S_OK;
|
2008-04-17 22:53:31 +02:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow3_setTimeout(IHTMLWindow3 *iface, VARIANT *expression, LONG msec,
|
|
|
|
VARIANT *language, LONG *timerID)
|
2008-06-27 21:10:04 +02:00
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-06-27 21:10:04 +02:00
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
TRACE("(%p)->(%p(%d) %d %p %p)\n", This, expression, V_VT(expression), msec, language, timerID);
|
2008-06-27 21:10:04 +02:00
|
|
|
|
2008-06-27 21:11:38 +02:00
|
|
|
return window_set_timer(This, expression, msec, language, FALSE, timerID);
|
2008-06-27 21:10:04 +02:00
|
|
|
}
|
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
static HRESULT WINAPI HTMLWindow3_setInterval(IHTMLWindow3 *iface, VARIANT *expression, LONG msec,
|
|
|
|
VARIANT *language, LONG *timerID)
|
2008-04-17 22:53:31 +02:00
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-06-27 21:11:38 +02:00
|
|
|
|
2009-03-12 01:42:55 +01:00
|
|
|
TRACE("(%p)->(%p %d %p %p)\n", This, expression, msec, language, timerID);
|
2008-06-27 21:11:38 +02:00
|
|
|
|
|
|
|
return window_set_timer(This, expression, msec, language, TRUE, timerID);
|
2008-04-17 22:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_print(IHTMLWindow3 *iface)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_put_onbeforeprint(IHTMLWindow3 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
FIXME("(%p)->()\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_get_onbeforeprint(IHTMLWindow3 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_put_onafterprint(IHTMLWindow3 *iface, VARIANT v)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
FIXME("(%p)->()\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_get_onafterprint(IHTMLWindow3 *iface, VARIANT *p)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_get_clipboardData(IHTMLWindow3 *iface, IHTMLDataTransfer **p)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow3_showModelessDialog(IHTMLWindow3 *iface, BSTR url,
|
|
|
|
VARIANT *varArgIn, VARIANT *options, IHTMLWindow2 **pDialog)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow3(iface);
|
2008-04-17 22:53:31 +02:00
|
|
|
FIXME("(%p)->(%s %p %p %p)\n", This, debugstr_w(url), varArgIn, options, pDialog);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IHTMLWindow3Vtbl HTMLWindow3Vtbl = {
|
|
|
|
HTMLWindow3_QueryInterface,
|
|
|
|
HTMLWindow3_AddRef,
|
|
|
|
HTMLWindow3_Release,
|
|
|
|
HTMLWindow3_GetTypeInfoCount,
|
|
|
|
HTMLWindow3_GetTypeInfo,
|
|
|
|
HTMLWindow3_GetIDsOfNames,
|
|
|
|
HTMLWindow3_Invoke,
|
|
|
|
HTMLWindow3_get_screenLeft,
|
|
|
|
HTMLWindow3_get_screenTop,
|
|
|
|
HTMLWindow3_attachEvent,
|
|
|
|
HTMLWindow3_detachEvent,
|
|
|
|
HTMLWindow3_setTimeout,
|
|
|
|
HTMLWindow3_setInterval,
|
|
|
|
HTMLWindow3_print,
|
|
|
|
HTMLWindow3_put_onbeforeprint,
|
|
|
|
HTMLWindow3_get_onbeforeprint,
|
|
|
|
HTMLWindow3_put_onafterprint,
|
|
|
|
HTMLWindow3_get_onafterprint,
|
|
|
|
HTMLWindow3_get_clipboardData,
|
|
|
|
HTMLWindow3_showModelessDialog
|
|
|
|
};
|
|
|
|
|
2010-12-27 14:22:27 +01:00
|
|
|
static inline HTMLWindow *impl_from_IHTMLWindow4(IHTMLWindow4 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLWindow, IHTMLWindow4_iface);
|
|
|
|
}
|
2009-11-13 21:12:54 +01:00
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow4_QueryInterface(IHTMLWindow4 *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow4(iface);
|
2009-11-13 21:12:54 +01:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_QueryInterface(&This->IHTMLWindow2_iface, riid, ppv);
|
2009-11-13 21:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindow4_AddRef(IHTMLWindow4 *iface)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow4(iface);
|
2009-11-13 21:12:54 +01:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_AddRef(&This->IHTMLWindow2_iface);
|
2009-11-13 21:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindow4_Release(IHTMLWindow4 *iface)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow4(iface);
|
2009-11-13 21:12:54 +01:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_Release(&This->IHTMLWindow2_iface);
|
2009-11-13 21:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow4_GetTypeInfoCount(IHTMLWindow4 *iface, UINT *pctinfo)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow4(iface);
|
2009-11-13 21:12:54 +01:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->IDispatchEx_iface, pctinfo);
|
2009-11-13 21:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow4_GetTypeInfo(IHTMLWindow4 *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow4(iface);
|
2009-11-13 21:12:54 +01:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_GetTypeInfo(&This->IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
2009-11-13 21:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow4_GetIDsOfNames(IHTMLWindow4 *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow4(iface);
|
2009-11-13 21:12:54 +01:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_GetIDsOfNames(&This->IDispatchEx_iface, riid, rgszNames, cNames, lcid,
|
|
|
|
rgDispId);
|
2009-11-13 21:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow4_Invoke(IHTMLWindow4 *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow4(iface);
|
2009-11-13 21:12:54 +01:00
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
return IDispatchEx_Invoke(&This->IDispatchEx_iface, dispIdMember, riid, lcid, wFlags,
|
|
|
|
pDispParams, pVarResult, pExcepInfo, puArgErr);
|
2009-11-13 21:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow4_createPopup(IHTMLWindow4 *iface, VARIANT *varArgIn,
|
|
|
|
IDispatch **ppPopup)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow4(iface);
|
2009-11-13 21:12:54 +01:00
|
|
|
FIXME("(%p)->(%p %p)\n", This, varArgIn, ppPopup);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow4_get_frameElement(IHTMLWindow4 *iface, IHTMLFrameBase **p)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow4(iface);
|
2009-11-13 21:13:04 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, p);
|
|
|
|
|
|
|
|
if(This->frame_element) {
|
2011-01-03 00:59:45 +01:00
|
|
|
*p = &This->frame_element->IHTMLFrameBase_iface;
|
2009-11-13 21:13:04 +01:00
|
|
|
IHTMLFrameBase_AddRef(*p);
|
|
|
|
}else
|
|
|
|
*p = NULL;
|
|
|
|
|
|
|
|
return S_OK;
|
2009-11-13 21:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const IHTMLWindow4Vtbl HTMLWindow4Vtbl = {
|
|
|
|
HTMLWindow4_QueryInterface,
|
|
|
|
HTMLWindow4_AddRef,
|
|
|
|
HTMLWindow4_Release,
|
|
|
|
HTMLWindow4_GetTypeInfoCount,
|
|
|
|
HTMLWindow4_GetTypeInfo,
|
|
|
|
HTMLWindow4_GetIDsOfNames,
|
|
|
|
HTMLWindow4_Invoke,
|
|
|
|
HTMLWindow4_createPopup,
|
|
|
|
HTMLWindow4_get_frameElement
|
|
|
|
};
|
|
|
|
|
2012-01-23 16:42:15 +01:00
|
|
|
static inline HTMLWindow *impl_from_IHTMLWindow5(IHTMLWindow5 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLWindow, IHTMLWindow5_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow5_QueryInterface(IHTMLWindow5 *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow5(iface);
|
|
|
|
|
|
|
|
return IHTMLWindow2_QueryInterface(&This->IHTMLWindow2_iface, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindow5_AddRef(IHTMLWindow5 *iface)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow5(iface);
|
|
|
|
|
|
|
|
return IHTMLWindow2_AddRef(&This->IHTMLWindow2_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindow5_Release(IHTMLWindow5 *iface)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow5(iface);
|
|
|
|
|
|
|
|
return IHTMLWindow2_Release(&This->IHTMLWindow2_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow5_GetTypeInfoCount(IHTMLWindow5 *iface, UINT *pctinfo)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow5(iface);
|
|
|
|
|
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->IDispatchEx_iface, pctinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow5_GetTypeInfo(IHTMLWindow5 *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow5(iface);
|
|
|
|
|
|
|
|
return IDispatchEx_GetTypeInfo(&This->IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow5_GetIDsOfNames(IHTMLWindow5 *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow5(iface);
|
|
|
|
|
|
|
|
return IDispatchEx_GetIDsOfNames(&This->IDispatchEx_iface, riid, rgszNames, cNames, lcid,
|
|
|
|
rgDispId);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow5_Invoke(IHTMLWindow5 *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow5(iface);
|
|
|
|
|
|
|
|
return IDispatchEx_Invoke(&This->IDispatchEx_iface, dispIdMember, riid, lcid, wFlags,
|
|
|
|
pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow5_put_XMLHttpRequest(IHTMLWindow5 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow5(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow5_get_XMLHttpRequest(IHTMLWindow5 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow5(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IHTMLWindow5Vtbl HTMLWindow5Vtbl = {
|
|
|
|
HTMLWindow5_QueryInterface,
|
|
|
|
HTMLWindow5_AddRef,
|
|
|
|
HTMLWindow5_Release,
|
|
|
|
HTMLWindow5_GetTypeInfoCount,
|
|
|
|
HTMLWindow5_GetTypeInfo,
|
|
|
|
HTMLWindow5_GetIDsOfNames,
|
|
|
|
HTMLWindow5_Invoke,
|
|
|
|
HTMLWindow5_put_XMLHttpRequest,
|
|
|
|
HTMLWindow5_get_XMLHttpRequest
|
|
|
|
};
|
|
|
|
|
2011-10-19 16:15:16 +02:00
|
|
|
static inline HTMLWindow *impl_from_IHTMLWindow6(IHTMLWindow6 *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLWindow, IHTMLWindow6_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_QueryInterface(IHTMLWindow6 *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
|
|
|
|
return IHTMLWindow2_QueryInterface(&This->IHTMLWindow2_iface, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindow6_AddRef(IHTMLWindow6 *iface)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
|
|
|
|
return IHTMLWindow2_AddRef(&This->IHTMLWindow2_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindow6_Release(IHTMLWindow6 *iface)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
|
|
|
|
return IHTMLWindow2_Release(&This->IHTMLWindow2_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_GetTypeInfoCount(IHTMLWindow6 *iface, UINT *pctinfo)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
|
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->IDispatchEx_iface, pctinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_GetTypeInfo(IHTMLWindow6 *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
|
|
|
|
return IDispatchEx_GetTypeInfo(&This->IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_GetIDsOfNames(IHTMLWindow6 *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
|
|
|
|
return IDispatchEx_GetIDsOfNames(&This->IDispatchEx_iface, riid, rgszNames, cNames, lcid,
|
|
|
|
rgDispId);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_Invoke(IHTMLWindow6 *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
|
|
|
|
return IDispatchEx_Invoke(&This->IDispatchEx_iface, dispIdMember, riid, lcid, wFlags,
|
|
|
|
pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_put_XDomainRequest(IHTMLWindow6 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_get_XDomainRequest(IHTMLWindow6 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_get_sessionStorage(IHTMLWindow6 *iface, IHTMLStorage **p)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_get_localStorage(IHTMLWindow6 *iface, IHTMLStorage **p)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_put_onhashchange(IHTMLWindow6 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_get_onhashchange(IHTMLWindow6 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_get_maxConnectionsPerServer(IHTMLWindow6 *iface, LONG *p)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_postMessage(IHTMLWindow6 *iface, BSTR msg, VARIANT targetOrigin)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%s %s)\n", This, debugstr_w(msg), debugstr_variant(&targetOrigin));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_toStaticHTML(IHTMLWindow6 *iface, BSTR bstrHTML, BSTR *pbstrStaticHTML)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%s %p)\n", This, debugstr_w(bstrHTML), pbstrStaticHTML);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_put_onmessage(IHTMLWindow6 *iface, VARIANT v)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_variant(&v));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_get_onmessage(IHTMLWindow6 *iface, VARIANT *p)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, p);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindow6_msWriteProfilerMark(IHTMLWindow6 *iface, BSTR bstrProfilerMark)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_IHTMLWindow6(iface);
|
|
|
|
FIXME("(%p)->(%s)\n", This, debugstr_w(bstrProfilerMark));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IHTMLWindow6Vtbl HTMLWindow6Vtbl = {
|
|
|
|
HTMLWindow6_QueryInterface,
|
|
|
|
HTMLWindow6_AddRef,
|
|
|
|
HTMLWindow6_Release,
|
|
|
|
HTMLWindow6_GetTypeInfoCount,
|
|
|
|
HTMLWindow6_GetTypeInfo,
|
|
|
|
HTMLWindow6_GetIDsOfNames,
|
|
|
|
HTMLWindow6_Invoke,
|
|
|
|
HTMLWindow6_put_XDomainRequest,
|
|
|
|
HTMLWindow6_get_XDomainRequest,
|
|
|
|
HTMLWindow6_get_sessionStorage,
|
|
|
|
HTMLWindow6_get_localStorage,
|
|
|
|
HTMLWindow6_put_onhashchange,
|
|
|
|
HTMLWindow6_get_onhashchange,
|
|
|
|
HTMLWindow6_get_maxConnectionsPerServer,
|
|
|
|
HTMLWindow6_postMessage,
|
|
|
|
HTMLWindow6_toStaticHTML,
|
|
|
|
HTMLWindow6_put_onmessage,
|
|
|
|
HTMLWindow6_get_onmessage,
|
|
|
|
HTMLWindow6_msWriteProfilerMark
|
|
|
|
};
|
|
|
|
|
2010-12-27 14:22:27 +01:00
|
|
|
static inline HTMLWindow *impl_from_IHTMLPrivateWindow(IHTMLPrivateWindow *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLWindow, IHTMLPrivateWindow_iface);
|
|
|
|
}
|
2010-03-03 14:53:03 +01:00
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLPrivateWindow_QueryInterface(IHTMLPrivateWindow *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLPrivateWindow(iface);
|
2010-03-03 14:53:03 +01:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_QueryInterface(&This->IHTMLWindow2_iface, riid, ppv);
|
2010-03-03 14:53:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLPrivateWindow_AddRef(IHTMLPrivateWindow *iface)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLPrivateWindow(iface);
|
2010-03-03 14:53:03 +01:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_AddRef(&This->IHTMLWindow2_iface);
|
2010-03-03 14:53:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLPrivateWindow_Release(IHTMLPrivateWindow *iface)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLPrivateWindow(iface);
|
2010-03-03 14:53:03 +01:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_Release(&This->IHTMLWindow2_iface);
|
2010-03-03 14:53:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLPrivateWindow_SuperNavigate(IHTMLPrivateWindow *iface, BSTR url, BSTR arg2, BSTR arg3,
|
|
|
|
BSTR arg4, VARIANT *post_data_var, VARIANT *headers_var, ULONG flags)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLPrivateWindow(iface);
|
2011-11-15 13:29:43 +01:00
|
|
|
OLECHAR *translated_url = NULL;
|
2010-03-03 14:56:21 +01:00
|
|
|
DWORD post_data_size = 0;
|
|
|
|
BYTE *post_data = NULL;
|
|
|
|
WCHAR *headers = NULL;
|
2011-07-23 12:50:32 +02:00
|
|
|
IUri *uri;
|
2010-03-03 14:56:21 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s %s %s %s %s %s %x)\n", This, debugstr_w(url), debugstr_w(arg2), debugstr_w(arg3), debugstr_w(arg4),
|
|
|
|
debugstr_variant(post_data_var), debugstr_variant(headers_var), flags);
|
|
|
|
|
|
|
|
if(This->doc_obj->hostui) {
|
|
|
|
hres = IDocHostUIHandler_TranslateUrl(This->doc_obj->hostui, 0, url, &translated_url);
|
2011-11-15 13:29:43 +01:00
|
|
|
if(hres != S_OK)
|
|
|
|
translated_url = NULL;
|
2010-03-03 14:56:21 +01:00
|
|
|
}
|
|
|
|
|
2011-11-15 13:29:43 +01:00
|
|
|
hres = CreateUri(translated_url ? translated_url : url, 0, 0, &uri);
|
|
|
|
CoTaskMemFree(translated_url);
|
2011-07-23 12:50:32 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2010-03-03 14:56:21 +01:00
|
|
|
if(post_data_var) {
|
|
|
|
if(V_VT(post_data_var) == (VT_ARRAY|VT_UI1)) {
|
|
|
|
SafeArrayAccessData(V_ARRAY(post_data_var), (void**)&post_data);
|
|
|
|
post_data_size = V_ARRAY(post_data_var)->rgsabound[0].cElements;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(headers_var && V_VT(headers_var) != VT_EMPTY && V_VT(headers_var) != VT_ERROR) {
|
|
|
|
if(V_VT(headers_var) != VT_BSTR)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
headers = V_BSTR(headers_var);
|
|
|
|
}
|
|
|
|
|
2011-11-15 13:29:43 +01:00
|
|
|
hres = super_navigate(This, uri, headers, post_data, post_data_size);
|
|
|
|
IUri_Release(uri);
|
2010-03-03 14:56:21 +01:00
|
|
|
if(post_data)
|
|
|
|
SafeArrayUnaccessData(V_ARRAY(post_data_var));
|
2011-07-23 12:52:17 +02:00
|
|
|
|
2011-11-15 13:29:43 +01:00
|
|
|
return hres;
|
2010-03-03 14:53:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLPrivateWindow_GetPendingUrl(IHTMLPrivateWindow *iface, BSTR *url)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLPrivateWindow(iface);
|
2010-03-03 14:53:03 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, url);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLPrivateWindow_SetPICSTarget(IHTMLPrivateWindow *iface, IOleCommandTarget *cmdtrg)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLPrivateWindow(iface);
|
2010-03-03 14:53:03 +01:00
|
|
|
FIXME("(%p)->(%p)\n", This, cmdtrg);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLPrivateWindow_PICSComplete(IHTMLPrivateWindow *iface, int arg)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLPrivateWindow(iface);
|
2010-03-03 14:53:03 +01:00
|
|
|
FIXME("(%p)->(%x)\n", This, arg);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLPrivateWindow_FindWindowByName(IHTMLPrivateWindow *iface, LPCWSTR name, IHTMLWindow2 **ret)
|
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLPrivateWindow(iface);
|
2010-03-03 14:53:03 +01:00
|
|
|
FIXME("(%p)->(%s %p)\n", This, debugstr_w(name), ret);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2011-11-12 14:32:47 +01:00
|
|
|
static HRESULT WINAPI HTMLPrivateWindow_GetAddressBarUrl(IHTMLPrivateWindow *iface, BSTR *url)
|
2010-03-03 14:53:03 +01:00
|
|
|
{
|
2010-12-27 14:22:27 +01:00
|
|
|
HTMLWindow *This = impl_from_IHTMLPrivateWindow(iface);
|
2011-03-11 11:14:08 +01:00
|
|
|
TRACE("(%p)->(%p)\n", This, url);
|
|
|
|
|
|
|
|
if(!url)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
*url = SysAllocString(This->url);
|
|
|
|
return S_OK;
|
2010-03-03 14:53:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const IHTMLPrivateWindowVtbl HTMLPrivateWindowVtbl = {
|
|
|
|
HTMLPrivateWindow_QueryInterface,
|
|
|
|
HTMLPrivateWindow_AddRef,
|
|
|
|
HTMLPrivateWindow_Release,
|
|
|
|
HTMLPrivateWindow_SuperNavigate,
|
|
|
|
HTMLPrivateWindow_GetPendingUrl,
|
|
|
|
HTMLPrivateWindow_SetPICSTarget,
|
|
|
|
HTMLPrivateWindow_PICSComplete,
|
|
|
|
HTMLPrivateWindow_FindWindowByName,
|
2011-11-12 14:32:47 +01:00
|
|
|
HTMLPrivateWindow_GetAddressBarUrl
|
2010-03-03 14:53:03 +01:00
|
|
|
};
|
|
|
|
|
2012-01-20 15:10:25 +01:00
|
|
|
static inline HTMLWindow *impl_from_ITravelLogClient(ITravelLogClient *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLWindow, ITravelLogClient_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI TravelLogClient_QueryInterface(ITravelLogClient *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_ITravelLogClient(iface);
|
|
|
|
|
|
|
|
return IHTMLWindow2_QueryInterface(&This->IHTMLWindow2_iface, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI TravelLogClient_AddRef(ITravelLogClient *iface)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_ITravelLogClient(iface);
|
|
|
|
|
|
|
|
return IHTMLWindow2_AddRef(&This->IHTMLWindow2_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI TravelLogClient_Release(ITravelLogClient *iface)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_ITravelLogClient(iface);
|
|
|
|
|
|
|
|
return IHTMLWindow2_Release(&This->IHTMLWindow2_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI TravelLogClient_FindWindowByIndex(ITravelLogClient *iface, DWORD dwID, IUnknown **ppunk)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_ITravelLogClient(iface);
|
2012-01-20 15:10:39 +01:00
|
|
|
|
|
|
|
FIXME("(%p)->(%d %p) semi-stub\n", This, dwID, ppunk);
|
|
|
|
|
|
|
|
*ppunk = NULL;
|
|
|
|
return E_FAIL;
|
2012-01-20 15:10:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI TravelLogClient_GetWindowData(ITravelLogClient *iface, IStream *pStream, LPWINDOWDATA pWinData)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_ITravelLogClient(iface);
|
|
|
|
FIXME("(%p)->(%p %p)\n", This, pStream, pWinData);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI TravelLogClient_LoadHistoryPosition(ITravelLogClient *iface, LPWSTR pszUrlLocation, DWORD dwPosition)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_ITravelLogClient(iface);
|
|
|
|
FIXME("(%p)->(%s %d)\n", This, debugstr_w(pszUrlLocation), dwPosition);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const ITravelLogClientVtbl TravelLogClientVtbl = {
|
|
|
|
TravelLogClient_QueryInterface,
|
|
|
|
TravelLogClient_AddRef,
|
|
|
|
TravelLogClient_Release,
|
|
|
|
TravelLogClient_FindWindowByIndex,
|
|
|
|
TravelLogClient_GetWindowData,
|
|
|
|
TravelLogClient_LoadHistoryPosition
|
|
|
|
};
|
|
|
|
|
2010-12-31 11:03:45 +01:00
|
|
|
static inline HTMLWindow *impl_from_IDispatchEx(IDispatchEx *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLWindow, IDispatchEx_iface);
|
|
|
|
}
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_QueryInterface(IDispatchEx *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_QueryInterface(&This->IHTMLWindow2_iface, riid, ppv);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI WindowDispEx_AddRef(IDispatchEx *iface)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_AddRef(&This->IHTMLWindow2_iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI WindowDispEx_Release(IDispatchEx *iface)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_Release(&This->IHTMLWindow2_iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pctinfo)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, pctinfo);
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_GetTypeInfo(IDispatchEx *iface, UINT iTInfo,
|
|
|
|
LCID lcid, ITypeInfo **ppTInfo)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%u %u %p)\n", This, iTInfo, lcid, ppTInfo);
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_GetIDsOfNames(IDispatchEx *iface, REFIID riid,
|
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2010-01-24 21:39:01 +01:00
|
|
|
UINT i;
|
|
|
|
HRESULT hres;
|
2008-04-19 18:41:25 +02:00
|
|
|
|
2010-01-24 21:39:01 +01:00
|
|
|
WARN("(%p)->(%s %p %u %u %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
|
2008-04-19 18:41:25 +02:00
|
|
|
lcid, rgDispId);
|
|
|
|
|
2010-01-24 21:39:01 +01:00
|
|
|
for(i=0; i < cNames; i++) {
|
|
|
|
/* We shouldn't use script's IDispatchEx here, so we shouldn't use GetDispID */
|
2010-12-31 11:03:45 +01:00
|
|
|
hres = IDispatchEx_GetDispID(&This->IDispatchEx_iface, rgszNames[i], 0, rgDispId+i);
|
2010-01-24 21:39:01 +01:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
}
|
2008-04-19 18:41:25 +02:00
|
|
|
|
2010-01-24 21:39:01 +01:00
|
|
|
return S_OK;
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_Invoke(IDispatchEx *iface, DISPID dispIdMember,
|
|
|
|
REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams,
|
|
|
|
VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%d %s %d %d %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
|
|
|
|
lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
|
|
|
|
|
|
|
|
/* FIXME: Use script dispatch */
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, wFlags,
|
|
|
|
pDispParams, pVarResult, pExcepInfo, puArgErr);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
2009-11-01 19:21:57 +01:00
|
|
|
static global_prop_t *alloc_global_prop(HTMLWindow *This, global_prop_type_t type, BSTR name)
|
2009-11-01 19:21:37 +01:00
|
|
|
{
|
|
|
|
if(This->global_prop_cnt == This->global_prop_size) {
|
|
|
|
global_prop_t *new_props;
|
|
|
|
DWORD new_size;
|
|
|
|
|
|
|
|
if(This->global_props) {
|
|
|
|
new_size = This->global_prop_size*2;
|
|
|
|
new_props = heap_realloc(This->global_props, new_size*sizeof(global_prop_t));
|
|
|
|
}else {
|
|
|
|
new_size = 16;
|
|
|
|
new_props = heap_alloc(new_size*sizeof(global_prop_t));
|
|
|
|
}
|
|
|
|
if(!new_props)
|
|
|
|
return NULL;
|
|
|
|
This->global_props = new_props;
|
|
|
|
This->global_prop_size = new_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
This->global_props[This->global_prop_cnt].name = heap_strdupW(name);
|
|
|
|
if(!This->global_props[This->global_prop_cnt].name)
|
|
|
|
return NULL;
|
|
|
|
|
2009-11-01 19:21:57 +01:00
|
|
|
This->global_props[This->global_prop_cnt].type = type;
|
2009-11-01 19:21:37 +01:00
|
|
|
return This->global_props + This->global_prop_cnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline DWORD prop_to_dispid(HTMLWindow *This, global_prop_t *prop)
|
|
|
|
{
|
|
|
|
return MSHTML_DISPID_CUSTOM_MIN + (prop-This->global_props);
|
|
|
|
}
|
|
|
|
|
2009-12-15 00:38:53 +01:00
|
|
|
HRESULT search_window_props(HTMLWindow *This, BSTR bstrName, DWORD grfdex, DISPID *pid)
|
2008-04-19 18:41:25 +02:00
|
|
|
{
|
2009-12-15 00:38:53 +01:00
|
|
|
DWORD i;
|
2009-09-09 21:31:32 +02:00
|
|
|
ScriptHost *script_host;
|
|
|
|
DISPID id;
|
2008-04-19 18:41:25 +02:00
|
|
|
|
2009-09-09 21:31:32 +02:00
|
|
|
for(i=0; i < This->global_prop_cnt; i++) {
|
|
|
|
/* FIXME: case sensitivity */
|
|
|
|
if(!strcmpW(This->global_props[i].name, bstrName)) {
|
|
|
|
*pid = MSHTML_DISPID_CUSTOM_MIN+i;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(find_global_prop(This, bstrName, grfdex, &script_host, &id)) {
|
2009-11-01 19:21:37 +01:00
|
|
|
global_prop_t *prop;
|
2009-09-09 21:31:32 +02:00
|
|
|
|
2009-11-01 19:21:57 +01:00
|
|
|
prop = alloc_global_prop(This, GLOBAL_SCRIPTVAR, bstrName);
|
2009-11-01 19:21:37 +01:00
|
|
|
if(!prop)
|
2009-09-09 21:31:32 +02:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2009-11-01 19:21:37 +01:00
|
|
|
prop->script_host = script_host;
|
|
|
|
prop->id = id;
|
2009-09-09 21:31:32 +02:00
|
|
|
|
2009-11-01 19:21:37 +01:00
|
|
|
*pid = prop_to_dispid(This, prop);
|
2009-09-09 21:31:32 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-12-15 00:38:53 +01:00
|
|
|
return DISP_E_UNKNOWNNAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_GetDispID(IDispatchEx *iface, BSTR bstrName, DWORD grfdex, DISPID *pid)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2009-12-15 00:38:53 +01:00
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s %x %p)\n", This, debugstr_w(bstrName), grfdex, pid);
|
|
|
|
|
|
|
|
hres = search_window_props(This, bstrName, grfdex, pid);
|
|
|
|
if(hres != DISP_E_UNKNOWNNAME)
|
|
|
|
return hres;
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
hres = IDispatchEx_GetDispID(&This->dispex.IDispatchEx_iface, bstrName, grfdex, pid);
|
2009-11-01 19:21:57 +01:00
|
|
|
if(hres != DISP_E_UNKNOWNNAME)
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
if(This->doc) {
|
|
|
|
global_prop_t *prop;
|
|
|
|
IHTMLElement *elem;
|
|
|
|
|
2010-12-22 10:39:41 +01:00
|
|
|
hres = IHTMLDocument3_getElementById(&This->doc->basedoc.IHTMLDocument3_iface,
|
|
|
|
bstrName, &elem);
|
2009-11-01 19:21:57 +01:00
|
|
|
if(SUCCEEDED(hres) && elem) {
|
|
|
|
IHTMLElement_Release(elem);
|
|
|
|
|
|
|
|
prop = alloc_global_prop(This, GLOBAL_ELEMENTVAR, bstrName);
|
|
|
|
if(!prop)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
*pid = prop_to_dispid(This, prop);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return DISP_E_UNKNOWNNAME;
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lcid, WORD wFlags, DISPPARAMS *pdp,
|
|
|
|
VARIANT *pvarRes, EXCEPINFO *pei, IServiceProvider *pspCaller)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x %x %x %p %p %p %p)\n", This, id, lcid, wFlags, pdp, pvarRes, pei, pspCaller);
|
|
|
|
|
2009-11-30 17:58:37 +01:00
|
|
|
if(id == DISPID_IHTMLWINDOW2_LOCATION && (wFlags & DISPATCH_PROPERTYPUT)) {
|
|
|
|
HTMLLocation *location;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("forwarding to location.href\n");
|
|
|
|
|
|
|
|
hres = get_location(This, &location);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
hres = IDispatchEx_InvokeEx(&location->dispex.IDispatchEx_iface, DISPID_VALUE, lcid,
|
|
|
|
wFlags, pdp, pvarRes, pei, pspCaller);
|
2011-01-03 01:12:05 +01:00
|
|
|
IHTMLLocation_Release(&location->IHTMLLocation_iface);
|
2009-11-30 17:58:37 +01:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_InvokeEx(&This->dispex.IDispatchEx_iface, id, lcid, wFlags, pdp, pvarRes,
|
|
|
|
pei, pspCaller);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_DeleteMemberByName(IDispatchEx *iface, BSTR bstrName, DWORD grfdex)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%s %x)\n", This, debugstr_w(bstrName), grfdex);
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_DeleteMemberByName(&This->dispex.IDispatchEx_iface, bstrName, grfdex);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_DeleteMemberByDispID(IDispatchEx *iface, DISPID id)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x)\n", This, id);
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_DeleteMemberByDispID(&This->dispex.IDispatchEx_iface, id);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_GetMemberProperties(IDispatchEx *iface, DISPID id, DWORD grfdexFetch, DWORD *pgrfdex)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x %x %p)\n", This, id, grfdexFetch, pgrfdex);
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_GetMemberProperties(&This->dispex.IDispatchEx_iface, id, grfdexFetch,
|
|
|
|
pgrfdex);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_GetMemberName(IDispatchEx *iface, DISPID id, BSTR *pbstrName)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x %p)\n", This, id, pbstrName);
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_GetMemberName(&This->dispex.IDispatchEx_iface, id, pbstrName);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_GetNextDispID(IDispatchEx *iface, DWORD grfdex, DISPID id, DISPID *pid)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%x %x %p)\n", This, grfdex, id, pid);
|
|
|
|
|
2010-12-31 11:07:33 +01:00
|
|
|
return IDispatchEx_GetNextDispID(&This->dispex.IDispatchEx_iface, grfdex, id, pid);
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WindowDispEx_GetNameSpaceParent(IDispatchEx *iface, IUnknown **ppunk)
|
|
|
|
{
|
2010-12-31 11:03:45 +01:00
|
|
|
HTMLWindow *This = impl_from_IDispatchEx(iface);
|
2008-04-19 18:41:25 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p)\n", This, ppunk);
|
|
|
|
|
2008-06-30 21:40:09 +02:00
|
|
|
*ppunk = NULL;
|
|
|
|
return S_OK;
|
2008-04-19 18:41:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const IDispatchExVtbl WindowDispExVtbl = {
|
|
|
|
WindowDispEx_QueryInterface,
|
|
|
|
WindowDispEx_AddRef,
|
|
|
|
WindowDispEx_Release,
|
|
|
|
WindowDispEx_GetTypeInfoCount,
|
|
|
|
WindowDispEx_GetTypeInfo,
|
|
|
|
WindowDispEx_GetIDsOfNames,
|
|
|
|
WindowDispEx_Invoke,
|
|
|
|
WindowDispEx_GetDispID,
|
|
|
|
WindowDispEx_InvokeEx,
|
|
|
|
WindowDispEx_DeleteMemberByName,
|
|
|
|
WindowDispEx_DeleteMemberByDispID,
|
|
|
|
WindowDispEx_GetMemberProperties,
|
|
|
|
WindowDispEx_GetMemberName,
|
|
|
|
WindowDispEx_GetNextDispID,
|
|
|
|
WindowDispEx_GetNameSpaceParent
|
|
|
|
};
|
|
|
|
|
2010-12-27 01:43:10 +01:00
|
|
|
static inline HTMLWindow *impl_from_IServiceProvider(IServiceProvider *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLWindow, IServiceProvider_iface);
|
|
|
|
}
|
2010-11-12 12:30:36 +01:00
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindowSP_QueryInterface(IServiceProvider *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-27 01:43:10 +01:00
|
|
|
HTMLWindow *This = impl_from_IServiceProvider(iface);
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_QueryInterface(&This->IHTMLWindow2_iface, riid, ppv);
|
2010-11-12 12:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindowSP_AddRef(IServiceProvider *iface)
|
|
|
|
{
|
2010-12-27 01:43:10 +01:00
|
|
|
HTMLWindow *This = impl_from_IServiceProvider(iface);
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_AddRef(&This->IHTMLWindow2_iface);
|
2010-11-12 12:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI HTMLWindowSP_Release(IServiceProvider *iface)
|
|
|
|
{
|
2010-12-27 01:43:10 +01:00
|
|
|
HTMLWindow *This = impl_from_IServiceProvider(iface);
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_Release(&This->IHTMLWindow2_iface);
|
2010-11-12 12:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI HTMLWindowSP_QueryService(IServiceProvider *iface, REFGUID guidService, REFIID riid, void **ppv)
|
|
|
|
{
|
2010-12-27 01:43:10 +01:00
|
|
|
HTMLWindow *This = impl_from_IServiceProvider(iface);
|
2010-11-12 12:30:36 +01:00
|
|
|
|
|
|
|
if(IsEqualGUID(guidService, &IID_IHTMLWindow2)) {
|
|
|
|
TRACE("IID_IHTMLWindow2\n");
|
2010-12-27 12:50:32 +01:00
|
|
|
return IHTMLWindow2_QueryInterface(&This->IHTMLWindow2_iface, riid, ppv);
|
2010-11-12 12:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("(%p)->(%s %s %p)\n", This, debugstr_guid(guidService), debugstr_guid(riid), ppv);
|
|
|
|
|
|
|
|
if(!This->doc_obj)
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
|
2010-12-27 01:43:10 +01:00
|
|
|
return IServiceProvider_QueryService(&This->doc_obj->basedoc.IServiceProvider_iface,
|
|
|
|
guidService, riid, ppv);
|
2010-11-12 12:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static const IServiceProviderVtbl ServiceProviderVtbl = {
|
|
|
|
HTMLWindowSP_QueryInterface,
|
|
|
|
HTMLWindowSP_AddRef,
|
|
|
|
HTMLWindowSP_Release,
|
|
|
|
HTMLWindowSP_QueryService
|
|
|
|
};
|
|
|
|
|
2010-12-27 18:34:39 +01:00
|
|
|
static inline HTMLWindow *impl_from_DispatchEx(DispatchEx *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, HTMLWindow, dispex);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT HTMLWindow_invoke(DispatchEx *dispex, DISPID id, LCID lcid, WORD flags, DISPPARAMS *params,
|
|
|
|
VARIANT *res, EXCEPINFO *ei, IServiceProvider *caller)
|
|
|
|
{
|
|
|
|
HTMLWindow *This = impl_from_DispatchEx(dispex);
|
|
|
|
global_prop_t *prop;
|
|
|
|
DWORD idx;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
idx = id - MSHTML_DISPID_CUSTOM_MIN;
|
|
|
|
if(idx >= This->global_prop_cnt)
|
|
|
|
return DISP_E_MEMBERNOTFOUND;
|
|
|
|
|
|
|
|
prop = This->global_props+idx;
|
|
|
|
|
|
|
|
switch(prop->type) {
|
|
|
|
case GLOBAL_SCRIPTVAR: {
|
2011-03-22 01:40:33 +01:00
|
|
|
IDispatchEx *iface;
|
2010-12-27 18:34:39 +01:00
|
|
|
IDispatch *disp;
|
|
|
|
|
|
|
|
disp = get_script_disp(prop->script_host);
|
|
|
|
if(!disp)
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
|
2011-03-22 01:40:33 +01:00
|
|
|
hres = IDispatch_QueryInterface(disp, &IID_IDispatchEx, (void**)&iface);
|
2010-12-27 18:34:39 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
TRACE("%s >>>\n", debugstr_w(prop->name));
|
2011-03-22 01:40:33 +01:00
|
|
|
hres = IDispatchEx_InvokeEx(iface, prop->id, lcid, flags, params, res, ei, caller);
|
2010-12-27 18:34:39 +01:00
|
|
|
if(hres == S_OK)
|
|
|
|
TRACE("%s <<<\n", debugstr_w(prop->name));
|
|
|
|
else
|
|
|
|
WARN("%s <<< %08x\n", debugstr_w(prop->name), hres);
|
2011-03-22 01:40:33 +01:00
|
|
|
IDispatchEx_Release(iface);
|
2010-12-27 18:34:39 +01:00
|
|
|
}else {
|
|
|
|
FIXME("No IDispatchEx\n");
|
|
|
|
}
|
|
|
|
IDispatch_Release(disp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GLOBAL_ELEMENTVAR: {
|
|
|
|
IHTMLElement *elem;
|
|
|
|
|
|
|
|
hres = IHTMLDocument3_getElementById(&This->doc->basedoc.IHTMLDocument3_iface,
|
|
|
|
prop->name, &elem);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
if(!elem)
|
|
|
|
return DISP_E_MEMBERNOTFOUND;
|
|
|
|
|
|
|
|
V_VT(res) = VT_DISPATCH;
|
|
|
|
V_DISPATCH(res) = (IDispatch*)elem;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
ERR("invalid type %d\n", prop->type);
|
|
|
|
hres = DISP_E_MEMBERNOTFOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2009-09-09 21:31:32 +02:00
|
|
|
|
|
|
|
static const dispex_static_data_vtbl_t HTMLWindow_dispex_vtbl = {
|
|
|
|
NULL,
|
2008-04-29 01:38:09 +02:00
|
|
|
NULL,
|
2011-08-23 11:33:18 +02:00
|
|
|
HTMLWindow_invoke,
|
|
|
|
NULL
|
2009-09-09 21:31:32 +02:00
|
|
|
};
|
|
|
|
|
2010-12-27 18:34:39 +01:00
|
|
|
static const tid_t HTMLWindow_iface_tids[] = {
|
|
|
|
IHTMLWindow2_tid,
|
|
|
|
IHTMLWindow3_tid,
|
|
|
|
IHTMLWindow4_tid,
|
2011-10-19 16:15:16 +02:00
|
|
|
IHTMLWindow6_tid,
|
2010-12-27 18:34:39 +01:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2009-09-09 21:31:32 +02:00
|
|
|
static dispex_static_data_t HTMLWindow_dispex = {
|
|
|
|
&HTMLWindow_dispex_vtbl,
|
2008-04-19 18:41:25 +02:00
|
|
|
DispHTMLWindow2_tid,
|
|
|
|
NULL,
|
2008-05-06 16:04:58 +02:00
|
|
|
HTMLWindow_iface_tids
|
2008-04-19 18:41:25 +02:00
|
|
|
};
|
|
|
|
|
2009-10-21 21:30:20 +02:00
|
|
|
HRESULT HTMLWindow_Create(HTMLDocumentObj *doc_obj, nsIDOMWindow *nswindow, HTMLWindow *parent, HTMLWindow **ret)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2008-10-10 22:48:14 +02:00
|
|
|
HTMLWindow *window;
|
2011-03-29 12:51:04 +02:00
|
|
|
HRESULT hres;
|
2006-12-06 18:21:16 +01:00
|
|
|
|
2008-10-10 22:48:14 +02:00
|
|
|
window = heap_alloc_zero(sizeof(HTMLWindow));
|
|
|
|
if(!window)
|
|
|
|
return E_OUTOFMEMORY;
|
2006-12-06 18:21:16 +01:00
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
window->window_ref = heap_alloc(sizeof(windowref_t));
|
|
|
|
if(!window->window_ref) {
|
2009-11-01 18:04:58 +01:00
|
|
|
heap_free(window);
|
2009-10-26 23:02:50 +01:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
window->IHTMLWindow2_iface.lpVtbl = &HTMLWindow2Vtbl;
|
2010-12-27 14:22:27 +01:00
|
|
|
window->IHTMLWindow3_iface.lpVtbl = &HTMLWindow3Vtbl;
|
|
|
|
window->IHTMLWindow4_iface.lpVtbl = &HTMLWindow4Vtbl;
|
2012-01-23 16:42:15 +01:00
|
|
|
window->IHTMLWindow5_iface.lpVtbl = &HTMLWindow5Vtbl;
|
2011-10-19 16:15:16 +02:00
|
|
|
window->IHTMLWindow6_iface.lpVtbl = &HTMLWindow6Vtbl;
|
2010-12-27 14:22:27 +01:00
|
|
|
window->IHTMLPrivateWindow_iface.lpVtbl = &HTMLPrivateWindowVtbl;
|
2010-12-31 11:03:45 +01:00
|
|
|
window->IDispatchEx_iface.lpVtbl = &WindowDispExVtbl;
|
2010-12-27 01:43:10 +01:00
|
|
|
window->IServiceProvider_iface.lpVtbl = &ServiceProviderVtbl;
|
2012-01-20 15:10:25 +01:00
|
|
|
window->ITravelLogClient_iface.lpVtbl = &TravelLogClientVtbl;
|
2008-10-10 22:48:14 +02:00
|
|
|
window->ref = 1;
|
2009-09-16 22:08:20 +02:00
|
|
|
window->doc_obj = doc_obj;
|
2008-04-19 18:41:25 +02:00
|
|
|
|
2009-10-26 23:02:50 +01:00
|
|
|
window->window_ref->window = window;
|
|
|
|
window->window_ref->ref = 1;
|
|
|
|
|
2010-12-27 12:50:32 +01:00
|
|
|
init_dispex(&window->dispex, (IUnknown*)&window->IHTMLWindow2_iface, &HTMLWindow_dispex);
|
2006-12-06 18:21:16 +01:00
|
|
|
|
2008-10-10 22:48:14 +02:00
|
|
|
if(nswindow) {
|
|
|
|
nsIDOMWindow_AddRef(nswindow);
|
|
|
|
window->nswindow = nswindow;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2009-10-28 22:55:26 +01:00
|
|
|
window->scriptmode = parent ? parent->scriptmode : SCRIPTMODE_GECKO;
|
2009-11-01 19:25:13 +01:00
|
|
|
window->readystate = READYSTATE_UNINITIALIZED;
|
2009-09-09 21:30:41 +02:00
|
|
|
list_init(&window->script_hosts);
|
|
|
|
|
2011-03-29 12:51:04 +02:00
|
|
|
hres = CoInternetCreateSecurityManager(NULL, &window->secmgr, 0);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
IHTMLWindow2_Release(&window->IHTMLWindow2_iface);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2009-10-26 23:05:37 +01:00
|
|
|
window->task_magic = get_task_target_magic();
|
2009-10-21 21:29:36 +02:00
|
|
|
update_window_doc(window);
|
|
|
|
|
2009-10-21 21:30:20 +02:00
|
|
|
list_init(&window->children);
|
2008-10-10 22:48:14 +02:00
|
|
|
list_add_head(&window_list, &window->entry);
|
2006-12-08 12:38:19 +01:00
|
|
|
|
2009-10-21 21:30:20 +02:00
|
|
|
if(parent) {
|
2010-12-27 12:50:32 +01:00
|
|
|
IHTMLWindow2_AddRef(&window->IHTMLWindow2_iface);
|
2009-10-21 21:30:20 +02:00
|
|
|
|
|
|
|
window->parent = parent;
|
|
|
|
list_add_tail(&parent->children, &window->sibling_entry);
|
|
|
|
}
|
|
|
|
|
2011-03-08 18:45:45 +01:00
|
|
|
*ret = window;
|
2008-10-10 22:48:14 +02:00
|
|
|
return S_OK;
|
2006-12-06 18:21:16 +01:00
|
|
|
}
|
|
|
|
|
2009-10-21 21:29:36 +02:00
|
|
|
void update_window_doc(HTMLWindow *window)
|
|
|
|
{
|
|
|
|
nsIDOMHTMLDocument *nshtmldoc;
|
|
|
|
nsIDOMDocument *nsdoc;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
nsres = nsIDOMWindow_GetDocument(window->nswindow, &nsdoc);
|
|
|
|
if(NS_FAILED(nsres) || !nsdoc) {
|
|
|
|
ERR("GetDocument failed: %08x\n", nsres);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsres = nsIDOMDocument_QueryInterface(nsdoc, &IID_nsIDOMHTMLDocument, (void**)&nshtmldoc);
|
|
|
|
nsIDOMDocument_Release(nsdoc);
|
|
|
|
if(NS_FAILED(nsres)) {
|
|
|
|
ERR("Could not get nsIDOMHTMLDocument iface: %08x\n", nsres);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!window->doc || window->doc->nsdoc != nshtmldoc) {
|
|
|
|
HTMLDocumentNode *doc;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = create_doc_from_nsdoc(nshtmldoc, window->doc_obj, window, &doc);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
window_set_docnode(window, doc);
|
|
|
|
htmldoc_release(&doc->basedoc);
|
|
|
|
}else {
|
|
|
|
ERR("create_doc_from_nsdoc failed: %08x\n", hres);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIDOMHTMLDocument_Release(nshtmldoc);
|
|
|
|
}
|
|
|
|
|
2007-05-30 23:38:03 +02:00
|
|
|
HTMLWindow *nswindow_to_window(const nsIDOMWindow *nswindow)
|
2006-12-06 18:21:16 +01:00
|
|
|
{
|
2006-12-08 12:38:19 +01:00
|
|
|
HTMLWindow *iter;
|
|
|
|
|
|
|
|
LIST_FOR_EACH_ENTRY(iter, &window_list, HTMLWindow, entry) {
|
|
|
|
if(iter->nswindow == nswindow)
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
2006-12-06 18:21:16 +01:00
|
|
|
return NULL;
|
|
|
|
}
|