2002-05-05 21:40:57 +02:00
|
|
|
/*
|
|
|
|
* Implementation of miscellaneous interfaces for IE Web Browser control:
|
|
|
|
*
|
|
|
|
* - IQuickActivate
|
|
|
|
*
|
|
|
|
* Copyright 2001 John R. Sheets (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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "shdocvw.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* Implement the IQuickActivate interface
|
|
|
|
*/
|
|
|
|
|
|
|
|
static HRESULT WINAPI WBQA_QueryInterface(LPQUICKACTIVATE iface,
|
|
|
|
REFIID riid, LPVOID *ppobj)
|
|
|
|
{
|
|
|
|
ICOM_THIS(IQuickActivateImpl, iface);
|
|
|
|
|
|
|
|
FIXME("(%p)->(%s,%p),stub!\n", This, debugstr_guid(riid), ppobj);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI WBQA_AddRef(LPQUICKACTIVATE iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS(IQuickActivateImpl, iface);
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
return ++(This->ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI WBQA_Release(LPQUICKACTIVATE iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS(IQuickActivateImpl, iface);
|
|
|
|
|
|
|
|
/* static class, won't be freed */
|
|
|
|
TRACE("\n");
|
|
|
|
return --(This->ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Alternative interface for quicker, easier activation of a control. */
|
|
|
|
static HRESULT WINAPI WBQA_QuickActivate(LPQUICKACTIVATE iface,
|
|
|
|
QACONTAINER *pQaContainer,
|
|
|
|
QACONTROL *pQaControl)
|
|
|
|
{
|
|
|
|
FIXME("stub: QACONTAINER = %p, QACONTROL = %p\n", pQaContainer, pQaControl);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WBQA_SetContentExtent(LPQUICKACTIVATE iface, LPSIZEL pSizel)
|
|
|
|
{
|
|
|
|
FIXME("stub: LPSIZEL = %p\n", pSizel);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI WBQA_GetContentExtent(LPQUICKACTIVATE iface, LPSIZEL pSizel)
|
|
|
|
{
|
|
|
|
FIXME("stub: LPSIZEL = %p\n", pSizel);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* IQuickActivate virtual function table for IE Web Browser component
|
|
|
|
*/
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
static ICOM_VTABLE(IQuickActivate) WBQA_Vtbl =
|
2002-05-05 21:40:57 +02:00
|
|
|
{
|
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
|
|
|
WBQA_QueryInterface,
|
|
|
|
WBQA_AddRef,
|
|
|
|
WBQA_Release,
|
|
|
|
WBQA_QuickActivate,
|
|
|
|
WBQA_SetContentExtent,
|
|
|
|
WBQA_GetContentExtent
|
|
|
|
};
|
|
|
|
|
|
|
|
IQuickActivateImpl SHDOCVW_QuickActivate = { &WBQA_Vtbl, 1 };
|