2002-05-05 19:40:57 +00:00
|
|
|
/*
|
2005-09-06 11:41:14 +00:00
|
|
|
* Implementation of IWebBrowser interface for WebBrowser control
|
2002-05-05 19:40:57 +00:00
|
|
|
*
|
|
|
|
* Copyright 2001 John R. Sheets (for CodeWeavers)
|
2005-09-06 11:41:14 +00:00
|
|
|
* Copyright 2005 Jacek Caban
|
2002-05-05 19:40:57 +00: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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "shdocvw.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Implement the IWebBrowser interface
|
|
|
|
*/
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
#define WEBBROWSER_THIS(iface) DEFINE_THIS(WebBrowser, WebBrowser, iface)
|
|
|
|
|
|
|
|
static HRESULT WINAPI WebBrowser_QueryInterface(IWebBrowser *iface, REFIID riid, LPVOID *ppv)
|
|
|
|
{
|
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
|
|
|
|
if (ppv == NULL)
|
|
|
|
return E_POINTER;
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_IUnknown, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
|
|
|
|
*ppv = WEBBROWSER(This);
|
|
|
|
}else if(IsEqualGUID (&IID_IDispatch, riid)) {
|
|
|
|
FIXME("(%p)->(IID_IDispatch %p)\n", This, ppv);
|
|
|
|
*ppv = WEBBROWSER(This);
|
|
|
|
}else if(IsEqualGUID(&IID_IWebBrowser, riid)) {
|
|
|
|
TRACE("(%p)->(IID_IWebBrowser %p)\n", This, ppv);
|
|
|
|
*ppv = WEBBROWSER(This);
|
|
|
|
}else if(IsEqualGUID(&IID_IOleObject, riid)) {
|
|
|
|
FIXME("(%p)->(IID_IOleObject %p)\n", This, ppv);
|
|
|
|
*ppv = OLEOBJ(This);
|
|
|
|
}else if(IsEqualGUID (&IID_IPersistStorage, riid)) {
|
|
|
|
FIXME("(%p)->(IID_IPersistStorage %p)\n", This, ppv);
|
|
|
|
*ppv = &SHDOCVW_PersistStorage;
|
|
|
|
}else if(IsEqualGUID (&IID_IPersistStreamInit, riid)) {
|
|
|
|
FIXME("(%p)->(IID_IPersistStreamInit %p)\n", This, ppv);
|
|
|
|
*ppv = &SHDOCVW_PersistStreamInit;
|
|
|
|
}else if(IsEqualGUID (&IID_IProvideClassInfo, riid)) {
|
|
|
|
FIXME("(%p)->(IID_IProvideClassInfo %p)\n", This, ppv);
|
|
|
|
*ppv = &SHDOCVW_ProvideClassInfo;
|
|
|
|
}else if(IsEqualGUID (&IID_IProvideClassInfo2, riid)) {
|
|
|
|
FIXME("(%p)->(IID_IProvideClassInfo2 %p)\n", This, ppv);
|
|
|
|
*ppv = &SHDOCVW_ProvideClassInfo2;
|
|
|
|
}else if(IsEqualGUID (&IID_IQuickActivate, riid)) {
|
|
|
|
FIXME("(%p)->(IID_IQuickActivate %p)\n", This, ppv);
|
|
|
|
*ppv = &SHDOCVW_QuickActivate;
|
|
|
|
}else if(IsEqualGUID (&IID_IConnectionPointContainer, riid)) {
|
|
|
|
FIXME("(%p)->(IID_IConnectionPointContainer %p)\n", This, ppv);
|
|
|
|
*ppv = &SHDOCVW_ConnectionPointContainer;
|
|
|
|
}else if(IsEqualGUID (&IID_IOleInPlaceObject, riid)) {
|
|
|
|
FIXME("(%p)->(IID_IOleInPlaceObject %p)\n", This, ppv);
|
|
|
|
*ppv = &SHDOCVW_OleInPlaceObject;
|
|
|
|
}else if(IsEqualGUID (&IID_IOleControl, riid)) {
|
|
|
|
FIXME("(%p)->(IID_IOleControl %p)\n", This, ppv);
|
|
|
|
*ppv = &SHDOCVW_OleControl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(*ppv) {
|
|
|
|
IUnknown_AddRef((IUnknown*)*ppv);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME("(%p)->(%s %p) interface not supported\n", This, debugstr_guid(riid), ppv);
|
2002-05-05 19:40:57 +00:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static ULONG WINAPI WebBrowser_AddRef(IWebBrowser *iface)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
TRACE("(%p) ref=%ld\n", This, ref);
|
|
|
|
return ref;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static ULONG WINAPI WebBrowser_Release(IWebBrowser *iface)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%ld\n", This, ref);
|
2005-01-14 16:02:20 +00:00
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
if(!ref) {
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
SHDOCVW_UnlockModule();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* IDispatch methods */
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_GetTypeInfoCount(IWebBrowser *iface, UINT *pctinfo)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pctinfo);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_GetTypeInfo(IWebBrowser *iface, UINT iTInfo, LCID lcid,
|
2002-05-05 19:40:57 +00:00
|
|
|
LPTYPEINFO *ppTInfo)
|
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%d %ld %p)\n", This, iTInfo, lcid, ppTInfo);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_GetIDsOfNames(IWebBrowser *iface, REFIID riid,
|
2002-05-05 19:40:57 +00:00
|
|
|
LPOLESTR *rgszNames, UINT cNames,
|
|
|
|
LCID lcid, DISPID *rgDispId)
|
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%s %p %d %ld %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
|
|
|
|
lcid, rgDispId);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_Invoke(IWebBrowser *iface, DISPID dispIdMember,
|
2002-05-05 19:40:57 +00:00
|
|
|
REFIID riid, LCID lcid, WORD wFlags,
|
|
|
|
DISPPARAMS *pDispParams, VARIANT *pVarResult,
|
|
|
|
EXCEPINFO *pExepInfo, UINT *puArgErr)
|
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%ld %s %ld %08x %p %p %p %p)\n", This, dispIdMember, debugstr_guid(riid),
|
|
|
|
lcid, wFlags, pDispParams, pVarResult, pExepInfo, puArgErr);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* IWebBrowser methods */
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_GoBack(IWebBrowser *iface)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_GoForward(IWebBrowser *iface)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_GoHome(IWebBrowser *iface)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_GoSearch(IWebBrowser *iface)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_Navigate(IWebBrowser *iface, BSTR URL,
|
2002-05-05 19:40:57 +00:00
|
|
|
VARIANT *Flags, VARIANT *TargetFrameName,
|
|
|
|
VARIANT *PostData, VARIANT *Headers)
|
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%s %p %p %p %p)\n", This, debugstr_w(URL), Flags, TargetFrameName,
|
2002-05-05 19:40:57 +00:00
|
|
|
PostData, Headers);
|
2005-09-06 11:41:14 +00:00
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_Refresh(IWebBrowser *iface)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_Refresh2(IWebBrowser *iface, VARIANT *Level)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, Level);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_Stop(IWebBrowser *iface)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_Application(IWebBrowser *iface, IDispatch **ppDisp)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, ppDisp);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_Parent(IWebBrowser *iface, IDispatch **ppDisp)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, ppDisp);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_Container(IWebBrowser *iface, IDispatch **ppDisp)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, ppDisp);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_Document(IWebBrowser *iface, IDispatch **ppDisp)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, ppDisp);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_TopLevelContainer(IWebBrowser *iface, VARIANT_BOOL *pBool)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pBool);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_Type(IWebBrowser *iface, BSTR *Type)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, Type);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_Left(IWebBrowser *iface, long *pl)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pl);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_put_Left(IWebBrowser *iface, long Left)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%ld)\n", This, Left);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_Top(IWebBrowser *iface, long *pl)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pl);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_put_Top(IWebBrowser *iface, long Top)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%ld)\n", This, Top);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_Width(IWebBrowser *iface, long *pl)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pl);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_put_Width(IWebBrowser *iface, long Width)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%ld)\n", This, Width);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_Height(IWebBrowser *iface, long *pl)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pl);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_put_Height(IWebBrowser *iface, long Height)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%ld)\n", This, Height);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_LocationName(IWebBrowser *iface, BSTR *LocationName)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, LocationName);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_LocationURL(IWebBrowser *iface, BSTR *LocationURL)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, LocationURL);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static HRESULT WINAPI WebBrowser_get_Busy(IWebBrowser *iface, VARIANT_BOOL *pBool)
|
2002-05-05 19:40:57 +00:00
|
|
|
{
|
2005-09-06 11:41:14 +00:00
|
|
|
WebBrowser *This = WEBBROWSER_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pBool);
|
|
|
|
return E_NOTIMPL;
|
2002-05-05 19:40:57 +00:00
|
|
|
}
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
#undef WEBBROWSER_THIS
|
|
|
|
|
2002-05-05 19:40:57 +00:00
|
|
|
/**********************************************************************
|
2005-09-06 11:41:14 +00:00
|
|
|
* IWebBrowser virtual function table for IWebBrowser interface
|
2002-05-05 19:40:57 +00:00
|
|
|
*/
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
static const IWebBrowserVtbl WebBrowserVtbl =
|
|
|
|
{
|
|
|
|
WebBrowser_QueryInterface,
|
|
|
|
WebBrowser_AddRef,
|
|
|
|
WebBrowser_Release,
|
|
|
|
WebBrowser_GetTypeInfoCount,
|
|
|
|
WebBrowser_GetTypeInfo,
|
|
|
|
WebBrowser_GetIDsOfNames,
|
|
|
|
WebBrowser_Invoke,
|
|
|
|
WebBrowser_GoBack,
|
|
|
|
WebBrowser_GoForward,
|
|
|
|
WebBrowser_GoHome,
|
|
|
|
WebBrowser_GoSearch,
|
|
|
|
WebBrowser_Navigate,
|
|
|
|
WebBrowser_Refresh,
|
|
|
|
WebBrowser_Refresh2,
|
|
|
|
WebBrowser_Stop,
|
|
|
|
WebBrowser_get_Application,
|
|
|
|
WebBrowser_get_Parent,
|
|
|
|
WebBrowser_get_Container,
|
|
|
|
WebBrowser_get_Document,
|
|
|
|
WebBrowser_get_TopLevelContainer,
|
|
|
|
WebBrowser_get_Type,
|
|
|
|
WebBrowser_get_Left,
|
|
|
|
WebBrowser_put_Left,
|
|
|
|
WebBrowser_get_Top,
|
|
|
|
WebBrowser_put_Top,
|
|
|
|
WebBrowser_get_Width,
|
|
|
|
WebBrowser_put_Width,
|
|
|
|
WebBrowser_get_Height,
|
|
|
|
WebBrowser_put_Height,
|
|
|
|
WebBrowser_get_LocationName,
|
|
|
|
WebBrowser_get_LocationURL,
|
|
|
|
WebBrowser_get_Busy
|
2002-05-05 19:40:57 +00:00
|
|
|
};
|
|
|
|
|
2005-09-06 11:41:14 +00:00
|
|
|
HRESULT WebBrowser_Create(IUnknown *pOuter, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
WebBrowser *ret;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
TRACE("(%p %s %p)\n", pOuter, debugstr_guid(riid), ppv);
|
|
|
|
|
|
|
|
ret = HeapAlloc(GetProcessHeap(), 0, sizeof(WebBrowser));
|
|
|
|
|
|
|
|
ret->lpWebBrowserVtbl = &WebBrowserVtbl;
|
|
|
|
ret->ref = 0;
|
|
|
|
|
|
|
|
WebBrowser_OleObject_Init(ret);
|
|
|
|
|
|
|
|
hres = IWebBrowser_QueryInterface(WEBBROWSER(ret), riid, ppv);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
SHDOCVW_LockModule();
|
|
|
|
}else {
|
|
|
|
HeapFree(GetProcessHeap(), 0, ret);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hres;
|
|
|
|
}
|