2005-04-12 13:57:51 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2005 Jacek Caban
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-04-12 13:57:51 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "ole2.h"
|
2005-08-18 12:50:05 +02:00
|
|
|
#include "shlguid.h"
|
2005-08-22 11:25:20 +02:00
|
|
|
#include "mshtmdid.h"
|
|
|
|
#include "idispids.h"
|
2005-04-12 13:57:51 +02:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
#include "mshtml_private.h"
|
2010-03-03 14:56:56 +01:00
|
|
|
#include "initguid.h"
|
2005-04-12 13:57:51 +02:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
|
|
|
|
2010-03-03 14:56:56 +01:00
|
|
|
DEFINE_OLEGUID(CGID_DocHostCmdPriv, 0x000214D4L, 0, 0);
|
|
|
|
#define DOCHOST_DOCCANNAVIGATE 0
|
|
|
|
|
2005-04-12 13:57:51 +02:00
|
|
|
/**********************************************************
|
|
|
|
* IOleObject implementation
|
|
|
|
*/
|
|
|
|
|
2005-07-14 14:18:59 +02:00
|
|
|
#define OLEOBJ_THIS(iface) DEFINE_THIS(HTMLDocument, OleObject, iface)
|
2005-04-12 13:57:51 +02:00
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_QueryInterface(IOleObject *iface, REFIID riid, void **ppvObject)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleObject_AddRef(IOleObject *iface)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
return IHTMLDocument2_AddRef(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleObject_Release(IOleObject *iface)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
return IHTMLDocument2_Release(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
2009-09-16 22:09:17 +02:00
|
|
|
static void update_hostinfo(HTMLDocumentObj *This, DOCHOSTUIINFO *hostinfo)
|
2008-06-30 21:37:56 +02:00
|
|
|
{
|
|
|
|
nsIScrollable *scrollable;
|
|
|
|
nsresult nsres;
|
|
|
|
|
|
|
|
if(!This->nscontainer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsres = nsIWebBrowser_QueryInterface(This->nscontainer->webbrowser, &IID_nsIScrollable, (void**)&scrollable);
|
|
|
|
if(NS_SUCCEEDED(nsres)) {
|
|
|
|
nsres = nsIScrollable_SetDefaultScrollbarPreferences(scrollable, ScrollOrientation_Y,
|
|
|
|
(hostinfo->dwFlags & DOCHOSTUIFLAG_SCROLL_NO) ? Scrollbar_Never : Scrollbar_Always);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("Could not set default Y scrollbar prefs: %08x\n", nsres);
|
|
|
|
|
|
|
|
nsres = nsIScrollable_SetDefaultScrollbarPreferences(scrollable, ScrollOrientation_X,
|
|
|
|
hostinfo->dwFlags & DOCHOSTUIFLAG_SCROLL_NO ? Scrollbar_Never : Scrollbar_Auto);
|
|
|
|
if(NS_FAILED(nsres))
|
|
|
|
ERR("Could not set default X scrollbar prefs: %08x\n", nsres);
|
|
|
|
|
|
|
|
nsIScrollable_Release(scrollable);
|
|
|
|
}else {
|
|
|
|
ERR("Could not get nsIScrollable: %08x\n", nsres);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-12 13:57:51 +02:00
|
|
|
static HRESULT WINAPI OleObject_SetClientSite(IOleObject *iface, IOleClientSite *pClientSite)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-07-12 19:00:58 +02:00
|
|
|
IDocHostUIHandler *pDocHostUIHandler = NULL;
|
2005-08-18 12:50:05 +02:00
|
|
|
IOleCommandTarget *cmdtrg = NULL;
|
2010-06-28 12:51:11 +02:00
|
|
|
IOleWindow *ole_window;
|
2010-03-03 14:56:56 +01:00
|
|
|
BOOL hostui_setup;
|
2007-03-09 16:48:09 +01:00
|
|
|
VARIANT silent;
|
2010-06-28 12:51:11 +02:00
|
|
|
HWND hwnd;
|
2005-07-11 12:56:28 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2005-04-12 13:57:51 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, pClientSite);
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
if(pClientSite == This->doc_obj->client)
|
2005-08-22 16:07:49 +02:00
|
|
|
return S_OK;
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
if(This->doc_obj->client) {
|
|
|
|
IOleClientSite_Release(This->doc_obj->client);
|
|
|
|
This->doc_obj->client = NULL;
|
2009-09-16 22:12:25 +02:00
|
|
|
This->doc_obj->usermode = UNKNOWN_USERMODE;
|
2006-01-14 17:04:54 +01:00
|
|
|
}
|
2005-07-11 12:56:28 +02:00
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
if(This->doc_obj->hostui) {
|
|
|
|
IDocHostUIHandler_Release(This->doc_obj->hostui);
|
|
|
|
This->doc_obj->hostui = NULL;
|
2006-01-14 17:04:54 +01:00
|
|
|
}
|
2005-07-12 19:00:58 +02:00
|
|
|
|
2009-09-16 22:11:05 +02:00
|
|
|
memset(&This->doc_obj->hostinfo, 0, sizeof(DOCHOSTUIINFO));
|
2006-11-12 17:09:38 +01:00
|
|
|
|
2006-01-14 17:04:54 +01:00
|
|
|
if(!pClientSite)
|
2005-07-11 12:56:28 +02:00
|
|
|
return S_OK;
|
|
|
|
|
2010-06-28 12:51:11 +02:00
|
|
|
IOleClientSite_AddRef(pClientSite);
|
|
|
|
This->doc_obj->client = pClientSite;
|
|
|
|
|
2010-03-03 14:56:56 +01:00
|
|
|
hostui_setup = This->doc_obj->hostui_setup;
|
|
|
|
|
2005-07-11 12:56:28 +02:00
|
|
|
hres = IOleObject_QueryInterface(pClientSite, &IID_IDocHostUIHandler, (void**)&pDocHostUIHandler);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
DOCHOSTUIINFO hostinfo;
|
|
|
|
LPOLESTR key_path = NULL, override_key_path = NULL;
|
|
|
|
IDocHostUIHandler2 *pDocHostUIHandler2;
|
|
|
|
|
2010-06-28 12:51:11 +02:00
|
|
|
This->doc_obj->hostui = pDocHostUIHandler;
|
|
|
|
|
2005-07-11 12:56:28 +02:00
|
|
|
memset(&hostinfo, 0, sizeof(DOCHOSTUIINFO));
|
|
|
|
hostinfo.cbSize = sizeof(DOCHOSTUIINFO);
|
|
|
|
hres = IDocHostUIHandler_GetHostInfo(pDocHostUIHandler, &hostinfo);
|
2006-11-12 17:09:38 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("hostinfo = {%u %08x %08x %s %s}\n",
|
2005-07-11 12:56:28 +02:00
|
|
|
hostinfo.cbSize, hostinfo.dwFlags, hostinfo.dwDoubleClick,
|
|
|
|
debugstr_w(hostinfo.pchHostCss), debugstr_w(hostinfo.pchHostNS));
|
2009-09-16 22:09:17 +02:00
|
|
|
update_hostinfo(This->doc_obj, &hostinfo);
|
2009-09-16 22:11:05 +02:00
|
|
|
This->doc_obj->hostinfo = hostinfo;
|
2006-11-12 17:09:38 +01:00
|
|
|
}
|
2005-07-11 12:56:28 +02:00
|
|
|
|
2010-03-03 14:56:56 +01:00
|
|
|
if(!hostui_setup) {
|
2005-07-18 11:13:32 +02:00
|
|
|
hres = IDocHostUIHandler_GetOptionKeyPath(pDocHostUIHandler, &key_path, 0);
|
|
|
|
if(hres == S_OK && key_path) {
|
|
|
|
if(key_path[0]) {
|
|
|
|
/* FIXME: use key_path */
|
|
|
|
TRACE("key_path = %s\n", debugstr_w(key_path));
|
|
|
|
}
|
|
|
|
CoTaskMemFree(key_path);
|
|
|
|
}
|
2005-07-11 12:56:28 +02:00
|
|
|
|
2005-07-18 11:13:32 +02:00
|
|
|
hres = IDocHostUIHandler_QueryInterface(pDocHostUIHandler, &IID_IDocHostUIHandler2,
|
|
|
|
(void**)&pDocHostUIHandler2);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
hres = IDocHostUIHandler2_GetOverrideKeyPath(pDocHostUIHandler2, &override_key_path, 0);
|
|
|
|
if(hres == S_OK && override_key_path && override_key_path[0]) {
|
|
|
|
if(override_key_path[0]) {
|
|
|
|
/*FIXME: use override_key_path */
|
|
|
|
TRACE("override_key_path = %s\n", debugstr_w(override_key_path));
|
|
|
|
}
|
|
|
|
CoTaskMemFree(override_key_path);
|
|
|
|
}
|
2006-01-14 17:04:54 +01:00
|
|
|
IDocHostUIHandler2_Release(pDocHostUIHandler2);
|
2005-07-18 11:13:32 +02:00
|
|
|
}
|
|
|
|
|
2010-03-03 14:56:56 +01:00
|
|
|
This->doc_obj->hostui_setup = TRUE;
|
2005-07-11 12:56:28 +02:00
|
|
|
}
|
2010-06-28 12:51:11 +02:00
|
|
|
}else {
|
|
|
|
This->doc_obj->hostui = NULL;
|
2005-07-11 12:56:28 +02:00
|
|
|
}
|
|
|
|
|
2005-07-14 14:18:59 +02:00
|
|
|
/* Native calls here GetWindow. What is it for?
|
|
|
|
* We don't have anything to do with it here (yet). */
|
2010-06-28 12:51:11 +02:00
|
|
|
hres = IOleClientSite_QueryInterface(pClientSite, &IID_IOleWindow, (void**)&ole_window);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
IOleWindow_GetWindow(ole_window, &hwnd);
|
|
|
|
IOleWindow_Release(ole_window);
|
2005-07-14 14:18:59 +02:00
|
|
|
}
|
|
|
|
|
2005-08-18 12:50:05 +02:00
|
|
|
hres = IOleClientSite_QueryInterface(pClientSite, &IID_IOleCommandTarget, (void**)&cmdtrg);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
VARIANT var;
|
|
|
|
OLECMD cmd = {OLECMDID_SETPROGRESSTEXT, 0};
|
|
|
|
|
2010-03-03 14:56:56 +01:00
|
|
|
if(!hostui_setup) {
|
|
|
|
V_VT(&var) = VT_UNKNOWN;
|
|
|
|
V_UNKNOWN(&var) = (IUnknown*)HTMLWINDOW2(This->window);
|
|
|
|
IOleCommandTarget_Exec(cmdtrg, &CGID_DocHostCmdPriv, DOCHOST_DOCCANNAVIGATE, 0, &var, NULL);
|
|
|
|
}
|
|
|
|
|
2005-08-18 12:50:05 +02:00
|
|
|
IOleCommandTarget_QueryStatus(cmdtrg, NULL, 1, &cmd, NULL);
|
|
|
|
|
|
|
|
V_VT(&var) = VT_I4;
|
|
|
|
V_I4(&var) = 0;
|
2006-08-18 14:53:25 +02:00
|
|
|
IOleCommandTarget_Exec(cmdtrg, NULL, OLECMDID_SETPROGRESSMAX,
|
|
|
|
OLECMDEXECOPT_DONTPROMPTUSER, &var, NULL);
|
|
|
|
IOleCommandTarget_Exec(cmdtrg, NULL, OLECMDID_SETPROGRESSPOS,
|
|
|
|
OLECMDEXECOPT_DONTPROMPTUSER, &var, NULL);
|
2005-08-18 12:50:05 +02:00
|
|
|
|
|
|
|
IOleCommandTarget_Release(cmdtrg);
|
|
|
|
}
|
|
|
|
|
2009-09-16 22:12:25 +02:00
|
|
|
if(This->doc_obj->usermode == UNKNOWN_USERMODE)
|
2006-06-30 23:44:04 +02:00
|
|
|
IOleControl_OnAmbientPropertyChange(CONTROL(This), DISPID_AMBIENT_USERMODE);
|
|
|
|
|
2005-08-22 11:25:20 +02:00
|
|
|
IOleControl_OnAmbientPropertyChange(CONTROL(This), DISPID_AMBIENT_OFFLINEIFNOTCONNECTED);
|
2007-03-09 16:48:09 +01:00
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
hres = get_client_disp_property(This->doc_obj->client, DISPID_AMBIENT_SILENT, &silent);
|
2007-03-09 16:48:09 +01:00
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
if(V_VT(&silent) != VT_BOOL)
|
|
|
|
WARN("V_VT(silent) = %d\n", V_VT(&silent));
|
|
|
|
else if(V_BOOL(&silent))
|
|
|
|
FIXME("silent == true\n");
|
|
|
|
}
|
|
|
|
|
2005-08-22 11:25:20 +02:00
|
|
|
IOleControl_OnAmbientPropertyChange(CONTROL(This), DISPID_AMBIENT_USERAGENT);
|
|
|
|
IOleControl_OnAmbientPropertyChange(CONTROL(This), DISPID_AMBIENT_PALETTE);
|
|
|
|
|
2005-04-12 13:57:51 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_GetClientSite(IOleObject *iface, IOleClientSite **ppClientSite)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
|
|
|
|
2005-04-12 13:57:51 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, ppClientSite);
|
|
|
|
|
|
|
|
if(!ppClientSite)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
if(This->doc_obj->client)
|
|
|
|
IOleClientSite_AddRef(This->doc_obj->client);
|
|
|
|
*ppClientSite = This->doc_obj->client;
|
2005-04-12 13:57:51 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_SetHostNames(IOleObject *iface, LPCOLESTR szContainerApp, LPCOLESTR szContainerObj)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
FIXME("(%p)->(%s %s)\n", This, debugstr_w(szContainerApp), debugstr_w(szContainerObj));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_Close(IOleObject *iface, DWORD dwSaveOption)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-07-14 14:18:59 +02:00
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p)->(%08x)\n", This, dwSaveOption);
|
2005-08-12 17:51:55 +02:00
|
|
|
|
|
|
|
if(dwSaveOption == OLECLOSE_PROMPTSAVE)
|
|
|
|
FIXME("OLECLOSE_PROMPTSAVE not implemented\n");
|
|
|
|
|
2009-09-16 22:11:26 +02:00
|
|
|
if(This->doc_obj->in_place_active)
|
2005-08-12 17:51:55 +02:00
|
|
|
IOleInPlaceObjectWindowless_InPlaceDeactivate(INPLACEWIN(This));
|
2005-07-14 14:18:59 +02:00
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
HTMLDocument_LockContainer(This->doc_obj, FALSE);
|
2009-12-07 14:54:05 +01:00
|
|
|
|
|
|
|
if(This->advise_holder)
|
|
|
|
IOleAdviseHolder_SendOnClose(This->advise_holder);
|
2005-07-14 14:18:59 +02:00
|
|
|
|
|
|
|
return S_OK;
|
2005-04-12 13:57:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_SetMoniker(IOleObject *iface, DWORD dwWhichMoniker, IMoniker *pmk)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p %d %p)->()\n", This, dwWhichMoniker, pmk);
|
2005-04-12 13:57:51 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_GetMoniker(IOleObject *iface, DWORD dwAssign, DWORD dwWhichMoniker, IMoniker **ppmk)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p)->(%d %d %p)\n", This, dwAssign, dwWhichMoniker, ppmk);
|
2005-04-12 13:57:51 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_InitFromData(IOleObject *iface, IDataObject *pDataObject, BOOL fCreation,
|
|
|
|
DWORD dwReserved)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p)->(%p %x %d)\n", This, pDataObject, fCreation, dwReserved);
|
2005-04-12 13:57:51 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_GetClipboardData(IOleObject *iface, DWORD dwReserved, IDataObject **ppDataObject)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p)->(%d %p)\n", This, dwReserved, ppDataObject);
|
2005-04-12 13:57:51 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_DoVerb(IOleObject *iface, LONG iVerb, LPMSG lpmsg, IOleClientSite *pActiveSite,
|
|
|
|
LONG lindex, HWND hwndParent, LPCRECT lprcPosRect)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-04-13 16:41:19 +02:00
|
|
|
IOleDocumentSite *pDocSite;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p)->(%d %p %p %d %p %p)\n", This, iVerb, lpmsg, pActiveSite, lindex, hwndParent, lprcPosRect);
|
2005-04-13 16:41:19 +02:00
|
|
|
|
2005-08-12 17:51:55 +02:00
|
|
|
if(iVerb != OLEIVERB_SHOW && iVerb != OLEIVERB_UIACTIVATE && iVerb != OLEIVERB_INPLACEACTIVATE) {
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("iVerb = %d not supported\n", iVerb);
|
2005-04-13 16:41:19 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!pActiveSite)
|
2009-09-16 22:10:03 +02:00
|
|
|
pActiveSite = This->doc_obj->client;
|
2005-04-13 16:41:19 +02:00
|
|
|
|
|
|
|
hres = IOleClientSite_QueryInterface(pActiveSite, &IID_IOleDocumentSite, (void**)&pDocSite);
|
|
|
|
if(SUCCEEDED(hres)) {
|
2009-09-16 22:10:03 +02:00
|
|
|
HTMLDocument_LockContainer(This->doc_obj, TRUE);
|
2005-08-22 16:07:49 +02:00
|
|
|
|
2005-07-12 19:00:58 +02:00
|
|
|
/* FIXME: Create new IOleDocumentView. See CreateView for more info. */
|
|
|
|
hres = IOleDocumentSite_ActivateMe(pDocSite, DOCVIEW(This));
|
2005-04-13 16:41:19 +02:00
|
|
|
IOleDocumentSite_Release(pDocSite);
|
|
|
|
}else {
|
|
|
|
hres = IOleDocumentView_UIActivate(DOCVIEW(This), TRUE);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
if(lprcPosRect) {
|
|
|
|
RECT rect; /* We need to pass rect as not const pointer */
|
2008-03-05 22:35:16 +01:00
|
|
|
rect = *lprcPosRect;
|
2005-04-13 16:41:19 +02:00
|
|
|
IOleDocumentView_SetRect(DOCVIEW(This), &rect);
|
|
|
|
}
|
|
|
|
IOleDocumentView_Show(DOCVIEW(This), TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hres;
|
2005-04-12 13:57:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_EnumVerbs(IOleObject *iface, IEnumOLEVERB **ppEnumOleVerb)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, ppEnumOleVerb);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_Update(IOleObject *iface)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_IsUpToDate(IOleObject *iface)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
FIXME("(%p)\n", This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_GetUserClassID(IOleObject *iface, CLSID *pClsid)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
|
|
|
|
2005-04-12 13:57:51 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, pClsid);
|
|
|
|
|
|
|
|
if(!pClsid)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
2008-03-05 22:35:16 +01:00
|
|
|
*pClsid = CLSID_HTMLDocument;
|
2005-04-12 13:57:51 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_GetUserType(IOleObject *iface, DWORD dwFormOfType, LPOLESTR *pszUserType)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p)->(%d %p)\n", This, dwFormOfType, pszUserType);
|
2005-04-12 13:57:51 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_SetExtent(IOleObject *iface, DWORD dwDrawAspect, SIZEL *psizel)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p)->(%d %p)\n", This, dwDrawAspect, psizel);
|
2005-04-12 13:57:51 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_GetExtent(IOleObject *iface, DWORD dwDrawAspect, SIZEL *psizel)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p)->(%d %p)\n", This, dwDrawAspect, psizel);
|
2005-04-12 13:57:51 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_Advise(IOleObject *iface, IAdviseSink *pAdvSink, DWORD *pdwConnection)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2009-12-07 14:52:28 +01:00
|
|
|
TRACE("(%p)->(%p %p)\n", This, pAdvSink, pdwConnection);
|
|
|
|
|
|
|
|
if(!pdwConnection)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if(!pAdvSink) {
|
|
|
|
*pdwConnection = 0;
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!This->advise_holder) {
|
|
|
|
CreateOleAdviseHolder(&This->advise_holder);
|
|
|
|
if(!This->advise_holder)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return IOleAdviseHolder_Advise(This->advise_holder, pAdvSink, pdwConnection);
|
2005-04-12 13:57:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_Unadvise(IOleObject *iface, DWORD dwConnection)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2009-12-07 14:52:54 +01:00
|
|
|
TRACE("(%p)->(%d)\n", This, dwConnection);
|
|
|
|
|
|
|
|
if(!This->advise_holder)
|
|
|
|
return OLE_E_NOCONNECTION;
|
|
|
|
|
|
|
|
return IOleAdviseHolder_Unadvise(This->advise_holder, dwConnection);
|
2005-04-12 13:57:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_EnumAdvise(IOleObject *iface, IEnumSTATDATA **ppenumAdvise)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2009-12-07 14:53:19 +01:00
|
|
|
|
|
|
|
if(!This->advise_holder) {
|
|
|
|
*ppenumAdvise = NULL;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return IOleAdviseHolder_EnumAdvise(This->advise_holder, ppenumAdvise);
|
2005-04-12 13:57:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_GetMiscStatus(IOleObject *iface, DWORD dwAspect, DWORD *pdwStatus)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p)->(%d %p)\n", This, dwAspect, pdwStatus);
|
2005-04-12 13:57:51 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleObject_SetColorScheme(IOleObject *iface, LOGPALETTE *pLogpal)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEOBJ_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, pLogpal);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2005-07-11 12:56:28 +02:00
|
|
|
#undef OLEPBJ_THIS
|
|
|
|
|
2005-06-01 21:57:42 +02:00
|
|
|
static const IOleObjectVtbl OleObjectVtbl = {
|
2005-04-12 13:57:51 +02:00
|
|
|
OleObject_QueryInterface,
|
|
|
|
OleObject_AddRef,
|
|
|
|
OleObject_Release,
|
|
|
|
OleObject_SetClientSite,
|
|
|
|
OleObject_GetClientSite,
|
|
|
|
OleObject_SetHostNames,
|
|
|
|
OleObject_Close,
|
|
|
|
OleObject_SetMoniker,
|
|
|
|
OleObject_GetMoniker,
|
|
|
|
OleObject_InitFromData,
|
|
|
|
OleObject_GetClipboardData,
|
|
|
|
OleObject_DoVerb,
|
|
|
|
OleObject_EnumVerbs,
|
|
|
|
OleObject_Update,
|
|
|
|
OleObject_IsUpToDate,
|
|
|
|
OleObject_GetUserClassID,
|
|
|
|
OleObject_GetUserType,
|
|
|
|
OleObject_SetExtent,
|
|
|
|
OleObject_GetExtent,
|
|
|
|
OleObject_Advise,
|
|
|
|
OleObject_Unadvise,
|
|
|
|
OleObject_EnumAdvise,
|
|
|
|
OleObject_GetMiscStatus,
|
|
|
|
OleObject_SetColorScheme
|
|
|
|
};
|
|
|
|
|
|
|
|
/**********************************************************
|
|
|
|
* IOleDocument implementation
|
|
|
|
*/
|
|
|
|
|
2005-07-14 14:18:59 +02:00
|
|
|
#define OLEDOC_THIS(iface) DEFINE_THIS(HTMLDocument, OleDocument, iface)
|
2005-04-12 13:57:51 +02:00
|
|
|
|
|
|
|
static HRESULT WINAPI OleDocument_QueryInterface(IOleDocument *iface, REFIID riid, void **ppvObject)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEDOC_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleDocument_AddRef(IOleDocument *iface)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEDOC_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
return IHTMLDocument2_AddRef(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleDocument_Release(IOleDocument *iface)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEDOC_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
return IHTMLDocument2_Release(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleDocument_CreateView(IOleDocument *iface, IOleInPlaceSite *pIPSite, IStream *pstm,
|
|
|
|
DWORD dwReserved, IOleDocumentView **ppView)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEDOC_THIS(iface);
|
2005-04-13 16:41:19 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
TRACE("(%p)->(%p %p %d %p)\n", This, pIPSite, pstm, dwReserved, ppView);
|
2005-04-13 16:41:19 +02:00
|
|
|
|
|
|
|
if(!ppView)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
/* FIXME:
|
|
|
|
* Windows implementation creates new IOleDocumentView when function is called for the
|
|
|
|
* first time and returns E_FAIL when it is called for the second time, but it doesn't matter
|
|
|
|
* if the application uses returned interfaces, passed to ActivateMe or returned by
|
|
|
|
* QueryInterface, so there is no reason to create new interface. This needs more testing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(pIPSite) {
|
|
|
|
hres = IOleDocumentView_SetInPlaceSite(DOCVIEW(This), pIPSite);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(pstm)
|
|
|
|
FIXME("pstm is not supported\n");
|
|
|
|
|
|
|
|
IOleDocumentView_AddRef(DOCVIEW(This));
|
|
|
|
*ppView = DOCVIEW(This);
|
|
|
|
return S_OK;
|
2005-04-12 13:57:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleDocument_GetDocMiscStatus(IOleDocument *iface, DWORD *pdwStatus)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEDOC_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
FIXME("(%p)->(%p)\n", This, pdwStatus);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleDocument_EnumViews(IOleDocument *iface, IEnumOleDocumentViews **ppEnum,
|
|
|
|
IOleDocumentView **ppView)
|
|
|
|
{
|
2005-07-11 12:56:28 +02:00
|
|
|
HTMLDocument *This = OLEDOC_THIS(iface);
|
2005-04-12 13:57:51 +02:00
|
|
|
FIXME("(%p)->(%p %p)\n", This, ppEnum, ppView);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2005-07-11 12:56:28 +02:00
|
|
|
#undef OLEDOC_THIS
|
|
|
|
|
2005-06-01 21:57:42 +02:00
|
|
|
static const IOleDocumentVtbl OleDocumentVtbl = {
|
2005-04-12 13:57:51 +02:00
|
|
|
OleDocument_QueryInterface,
|
|
|
|
OleDocument_AddRef,
|
|
|
|
OleDocument_Release,
|
|
|
|
OleDocument_CreateView,
|
|
|
|
OleDocument_GetDocMiscStatus,
|
|
|
|
OleDocument_EnumViews
|
|
|
|
};
|
|
|
|
|
2005-08-08 13:07:48 +02:00
|
|
|
/**********************************************************
|
|
|
|
* IOleControl implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define CONTROL_THIS(iface) DEFINE_THIS(HTMLDocument, OleControl, iface)
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleControl_QueryInterface(IOleControl *iface, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = CONTROL_THIS(iface);
|
|
|
|
return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleControl_AddRef(IOleControl *iface)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = CONTROL_THIS(iface);
|
|
|
|
return IHTMLDocument2_AddRef(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OleControl_Release(IOleControl *iface)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = CONTROL_THIS(iface);
|
|
|
|
return IHTMLDocument_Release(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleControl_GetControlInfo(IOleControl *iface, CONTROLINFO *pCI)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = CONTROL_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pCI);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleControl_OnMnemonic(IOleControl *iface, MSG *pMsg)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = CONTROL_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pMsg);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2006-08-17 03:34:22 +02:00
|
|
|
HRESULT get_client_disp_property(IOleClientSite *client, DISPID dispid, VARIANT *res)
|
2005-08-22 11:25:20 +02:00
|
|
|
{
|
|
|
|
IDispatch *disp = NULL;
|
|
|
|
DISPPARAMS dispparams = {NULL, 0};
|
|
|
|
UINT err;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = IOleClientSite_QueryInterface(client, &IID_IDispatch, (void**)&disp);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
TRACE("Could not get IDispatch\n");
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
VariantInit(res);
|
|
|
|
|
|
|
|
hres = IDispatch_Invoke(disp, dispid, &IID_NULL, LOCALE_SYSTEM_DEFAULT,
|
|
|
|
DISPATCH_PROPERTYGET, &dispparams, res, NULL, &err);
|
|
|
|
|
|
|
|
IDispatch_Release(disp);
|
|
|
|
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT on_change_dlcontrol(HTMLDocument *This)
|
|
|
|
{
|
|
|
|
VARIANT res;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
hres = get_client_disp_property(This->doc_obj->client, DISPID_AMBIENT_DLCONTROL, &res);
|
2005-08-22 11:25:20 +02:00
|
|
|
if(SUCCEEDED(hres))
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("unsupported dlcontrol %08x\n", V_I4(&res));
|
2005-08-22 11:25:20 +02:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-08-08 13:07:48 +02:00
|
|
|
static HRESULT WINAPI OleControl_OnAmbientPropertyChange(IOleControl *iface, DISPID dispID)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = CONTROL_THIS(iface);
|
2009-09-16 22:10:03 +02:00
|
|
|
IOleClientSite *client;
|
2005-08-22 11:25:20 +02:00
|
|
|
VARIANT res;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
client = This->doc_obj->client;
|
|
|
|
if(!client) {
|
|
|
|
TRACE("client = NULL\n");
|
2005-08-22 11:25:20 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(dispID) {
|
|
|
|
case DISPID_AMBIENT_USERMODE:
|
|
|
|
TRACE("(%p)->(DISPID_AMBIENT_USERMODE)\n", This);
|
2009-09-16 22:10:03 +02:00
|
|
|
hres = get_client_disp_property(client, DISPID_AMBIENT_USERMODE, &res);
|
2005-08-22 11:25:20 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
if(V_VT(&res) == VT_BOOL) {
|
2006-06-30 23:44:04 +02:00
|
|
|
if(V_BOOL(&res)) {
|
2009-09-16 22:12:25 +02:00
|
|
|
This->doc_obj->usermode = BROWSEMODE;
|
2006-06-30 23:44:04 +02:00
|
|
|
}else {
|
2005-08-22 11:25:20 +02:00
|
|
|
FIXME("edit mode is not supported\n");
|
2009-09-16 22:12:25 +02:00
|
|
|
This->doc_obj->usermode = EDITMODE;
|
2005-08-22 11:25:20 +02:00
|
|
|
}
|
|
|
|
}else {
|
|
|
|
FIXME("V_VT(res)=%d\n", V_VT(&res));
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
case DISPID_AMBIENT_DLCONTROL:
|
|
|
|
TRACE("(%p)->(DISPID_AMBIENT_DLCONTROL)\n", This);
|
|
|
|
return on_change_dlcontrol(This);
|
|
|
|
case DISPID_AMBIENT_OFFLINEIFNOTCONNECTED:
|
|
|
|
TRACE("(%p)->(DISPID_AMBIENT_OFFLINEIFNOTCONNECTED)\n", This);
|
|
|
|
on_change_dlcontrol(This);
|
2009-09-16 22:10:03 +02:00
|
|
|
hres = get_client_disp_property(client, DISPID_AMBIENT_OFFLINEIFNOTCONNECTED, &res);
|
2005-08-22 11:25:20 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
if(V_VT(&res) == VT_BOOL) {
|
|
|
|
if(V_BOOL(&res)) {
|
|
|
|
FIXME("offline connection is not supported\n");
|
|
|
|
hres = E_FAIL;
|
|
|
|
}
|
|
|
|
}else {
|
|
|
|
FIXME("V_VT(res)=%d\n", V_VT(&res));
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
case DISPID_AMBIENT_SILENT:
|
|
|
|
TRACE("(%p)->(DISPID_AMBIENT_SILENT)\n", This);
|
|
|
|
on_change_dlcontrol(This);
|
2009-09-16 22:10:03 +02:00
|
|
|
hres = get_client_disp_property(client, DISPID_AMBIENT_SILENT, &res);
|
2005-08-22 11:25:20 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
if(V_VT(&res) == VT_BOOL) {
|
|
|
|
if(V_BOOL(&res)) {
|
|
|
|
FIXME("silent mode is not supported\n");
|
|
|
|
hres = E_FAIL;
|
|
|
|
}
|
|
|
|
}else {
|
|
|
|
FIXME("V_VT(res)=%d\n", V_VT(&res));
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
case DISPID_AMBIENT_USERAGENT:
|
|
|
|
TRACE("(%p)->(DISPID_AMBIENT_USERAGENT)\n", This);
|
2009-09-16 22:10:03 +02:00
|
|
|
hres = get_client_disp_property(client, DISPID_AMBIENT_USERAGENT, &res);
|
2005-08-22 11:25:20 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
FIXME("not supported AMBIENT_USERAGENT\n");
|
|
|
|
hres = E_FAIL;
|
|
|
|
return S_OK;
|
|
|
|
case DISPID_AMBIENT_PALETTE:
|
|
|
|
TRACE("(%p)->(DISPID_AMBIENT_PALETTE)\n", This);
|
2009-09-16 22:10:03 +02:00
|
|
|
hres = get_client_disp_property(client, DISPID_AMBIENT_PALETTE, &res);
|
2005-08-22 11:25:20 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
FIXME("not supported AMBIENT_PALETTE\n");
|
|
|
|
hres = E_FAIL;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2006-10-05 23:50:39 +02:00
|
|
|
FIXME("(%p) unsupported dispID=%d\n", This, dispID);
|
2005-08-22 11:25:20 +02:00
|
|
|
return E_FAIL;
|
2005-08-08 13:07:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OleControl_FreezeEvents(IOleControl *iface, BOOL bFreeze)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = CONTROL_THIS(iface);
|
|
|
|
FIXME("(%p)->(%x)\n", This, bFreeze);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef CONTROL_THIS
|
|
|
|
|
|
|
|
static const IOleControlVtbl OleControlVtbl = {
|
|
|
|
OleControl_QueryInterface,
|
|
|
|
OleControl_AddRef,
|
|
|
|
OleControl_Release,
|
|
|
|
OleControl_GetControlInfo,
|
|
|
|
OleControl_OnMnemonic,
|
|
|
|
OleControl_OnAmbientPropertyChange,
|
|
|
|
OleControl_FreezeEvents
|
|
|
|
};
|
|
|
|
|
2009-12-15 23:46:24 +01:00
|
|
|
/**********************************************************
|
|
|
|
* IObjectWithSite implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define OBJSITE_THIS(iface) DEFINE_THIS(HTMLDocument, ObjectWithSite, iface)
|
|
|
|
|
|
|
|
static HRESULT WINAPI ObjectWithSite_QueryInterface(IObjectWithSite *iface, REFIID riid, void **ppvObject)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = OBJSITE_THIS(iface);
|
|
|
|
return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ObjectWithSite_AddRef(IObjectWithSite *iface)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = OBJSITE_THIS(iface);
|
|
|
|
return IHTMLDocument2_AddRef(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ObjectWithSite_Release(IObjectWithSite *iface)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = OBJSITE_THIS(iface);
|
|
|
|
return IHTMLDocument2_Release(HTMLDOC(This));
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ObjectWithSite_SetSite(IObjectWithSite *iface, IUnknown *pUnkSite)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = OBJSITE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, pUnkSite);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ObjectWithSite_GetSite(IObjectWithSite* iface, REFIID riid, PVOID *ppvSite)
|
|
|
|
{
|
|
|
|
HTMLDocument *This = OBJSITE_THIS(iface);
|
|
|
|
FIXME("(%p)->(%p)\n", This, ppvSite);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef OBJSITE_THIS
|
|
|
|
|
|
|
|
static const IObjectWithSiteVtbl ObjectWithSiteVtbl = {
|
|
|
|
ObjectWithSite_QueryInterface,
|
|
|
|
ObjectWithSite_AddRef,
|
|
|
|
ObjectWithSite_Release,
|
|
|
|
ObjectWithSite_SetSite,
|
|
|
|
ObjectWithSite_GetSite
|
|
|
|
};
|
|
|
|
|
2009-09-16 22:10:03 +02:00
|
|
|
void HTMLDocument_LockContainer(HTMLDocumentObj *This, BOOL fLock)
|
2005-08-22 16:07:49 +02:00
|
|
|
{
|
|
|
|
IOleContainer *container;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-09-16 22:11:26 +02:00
|
|
|
if(!This->client || This->container_locked == fLock)
|
2005-08-22 16:07:49 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
hres = IOleClientSite_GetContainer(This->client, &container);
|
|
|
|
if(SUCCEEDED(hres)) {
|
|
|
|
IOleContainer_LockContainer(container, fLock);
|
2009-09-16 22:11:26 +02:00
|
|
|
This->container_locked = fLock;
|
2005-08-22 16:07:49 +02:00
|
|
|
IOleContainer_Release(container);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-12 13:57:51 +02:00
|
|
|
void HTMLDocument_OleObj_Init(HTMLDocument *This)
|
|
|
|
{
|
|
|
|
This->lpOleObjectVtbl = &OleObjectVtbl;
|
|
|
|
This->lpOleDocumentVtbl = &OleDocumentVtbl;
|
2005-08-08 13:07:48 +02:00
|
|
|
This->lpOleControlVtbl = &OleControlVtbl;
|
2009-12-15 23:46:24 +01:00
|
|
|
This->lpObjectWithSiteVtbl = &ObjectWithSiteVtbl;
|
2005-04-12 13:57:51 +02:00
|
|
|
}
|