2008-10-07 21:44:36 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
|
|
|
#include "mshtml_private.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
|
|
|
|
typedef struct {
|
2009-11-01 19:17:17 +01:00
|
|
|
HTMLFrameBase framebase;
|
2008-10-07 21:44:36 +02:00
|
|
|
} HTMLIFrame;
|
|
|
|
|
2009-11-01 19:17:17 +01:00
|
|
|
#define HTMLIFRAME_NODE_THIS(iface) DEFINE_THIS2(HTMLIFrame, framebase.element.node, iface)
|
2008-10-07 21:44:36 +02:00
|
|
|
|
|
|
|
static HRESULT HTMLIFrame_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLIFrame *This = HTMLIFRAME_NODE_THIS(iface);
|
|
|
|
|
2009-11-24 21:13:12 +01:00
|
|
|
return HTMLFrameBase_QI(&This->framebase, riid, ppv);
|
2008-10-07 21:44:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void HTMLIFrame_destructor(HTMLDOMNode *iface)
|
|
|
|
{
|
|
|
|
HTMLIFrame *This = HTMLIFRAME_NODE_THIS(iface);
|
|
|
|
|
2009-11-01 19:17:17 +01:00
|
|
|
HTMLFrameBase_destructor(&This->framebase);
|
2008-10-07 21:44:36 +02:00
|
|
|
}
|
|
|
|
|
2009-11-24 21:13:38 +01:00
|
|
|
static HRESULT HTMLIFrame_get_document(HTMLDOMNode *iface, IDispatch **p)
|
|
|
|
{
|
|
|
|
HTMLIFrame *This = HTMLIFRAME_NODE_THIS(iface);
|
|
|
|
|
|
|
|
if(!This->framebase.content_window || !This->framebase.content_window->doc) {
|
|
|
|
*p = NULL;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = (IDispatch*)HTMLDOC(&This->framebase.content_window->doc->basedoc);
|
|
|
|
IDispatch_AddRef(*p);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-30 17:58:59 +01:00
|
|
|
static HRESULT HTMLIFrame_get_readystate(HTMLDOMNode *iface, BSTR *p)
|
|
|
|
{
|
|
|
|
HTMLIFrame *This = HTMLIFRAME_NODE_THIS(iface);
|
|
|
|
|
|
|
|
return IHTMLFrameBase2_get_readyState(HTMLFRAMEBASE2(&This->framebase), p);
|
|
|
|
}
|
|
|
|
|
2009-12-03 01:12:12 +01:00
|
|
|
static HRESULT HTMLIFrame_bind_to_tree(HTMLDOMNode *iface)
|
|
|
|
{
|
|
|
|
HTMLIFrame *This = HTMLIFRAME_NODE_THIS(iface);
|
|
|
|
nsIDOMDocument *nsdoc;
|
|
|
|
nsresult nsres;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-12-07 23:28:04 +01:00
|
|
|
nsres = nsIDOMHTMLIFrameElement_GetContentDocument(This->framebase.nsiframe, &nsdoc);
|
2009-12-03 01:12:12 +01:00
|
|
|
if(NS_FAILED(nsres) || !nsdoc) {
|
|
|
|
ERR("GetContentDocument failed: %08x\n", nsres);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
hres = set_frame_doc(&This->framebase, nsdoc);
|
|
|
|
nsIDOMDocument_Release(nsdoc);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2008-10-07 21:44:36 +02:00
|
|
|
#undef HTMLIFRAME_NODE_THIS
|
|
|
|
|
|
|
|
static const NodeImplVtbl HTMLIFrameImplVtbl = {
|
|
|
|
HTMLIFrame_QI,
|
2009-11-24 21:13:38 +01:00
|
|
|
HTMLIFrame_destructor,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2009-11-30 17:58:59 +01:00
|
|
|
HTMLIFrame_get_document,
|
2009-12-03 01:12:12 +01:00
|
|
|
HTMLIFrame_get_readystate,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
HTMLIFrame_bind_to_tree
|
2008-10-07 21:44:36 +02:00
|
|
|
};
|
|
|
|
|
2008-10-07 21:44:50 +02:00
|
|
|
static const tid_t HTMLIFrame_iface_tids[] = {
|
|
|
|
IHTMLDOMNode_tid,
|
|
|
|
IHTMLDOMNode2_tid,
|
|
|
|
IHTMLElement_tid,
|
|
|
|
IHTMLElement2_tid,
|
|
|
|
IHTMLElement3_tid,
|
2009-10-13 20:49:34 +02:00
|
|
|
IHTMLFrameBase_tid,
|
2008-10-07 21:44:50 +02:00
|
|
|
IHTMLFrameBase2_tid,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
static dispex_static_data_t HTMLIFrame_dispex = {
|
|
|
|
NULL,
|
|
|
|
DispHTMLIFrame_tid,
|
|
|
|
NULL,
|
|
|
|
HTMLIFrame_iface_tids
|
|
|
|
};
|
|
|
|
|
2009-12-03 01:12:12 +01:00
|
|
|
HTMLElement *HTMLIFrame_Create(HTMLDocumentNode *doc, nsIDOMHTMLElement *nselem)
|
2008-10-07 21:44:36 +02:00
|
|
|
{
|
|
|
|
HTMLIFrame *ret;
|
|
|
|
|
|
|
|
ret = heap_alloc_zero(sizeof(HTMLIFrame));
|
|
|
|
|
2009-11-01 19:17:17 +01:00
|
|
|
ret->framebase.element.node.vtbl = &HTMLIFrameImplVtbl;
|
2008-10-07 21:44:36 +02:00
|
|
|
|
2009-12-03 01:12:12 +01:00
|
|
|
HTMLFrameBase_Init(&ret->framebase, doc, nselem, &HTMLIFrame_dispex);
|
2009-11-01 19:17:58 +01:00
|
|
|
|
2009-11-01 19:17:17 +01:00
|
|
|
return &ret->framebase.element;
|
2008-10-07 21:44:36 +02:00
|
|
|
}
|