frame.c 6.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright 2005 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
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 18
 */

19 20
#include "ieframe.h"

21 22
#include "wine/debug.h"

23
WINE_DEFAULT_DEBUG_CHANNEL(ieframe);
24

25 26
static inline DocHost *impl_from_IOleInPlaceFrame(IOleInPlaceFrame *iface)
{
27
    return CONTAINING_RECORD(iface, DocHost, IOleInPlaceFrame_iface);
28
}
29 30 31 32

static HRESULT WINAPI InPlaceFrame_QueryInterface(IOleInPlaceFrame *iface,
                                                  REFIID riid, void **ppv)
{
33
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
34 35 36

    if(IsEqualGUID(&IID_IUnknown, riid)) {
        TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
37
        *ppv = &This->IOleInPlaceFrame_iface;
38 39
    }else if(IsEqualGUID(&IID_IOleWindow, riid)) {
        TRACE("(%p)->(IID_IOleWindow %p)\n", This, ppv);
40
        *ppv = &This->IOleInPlaceFrame_iface;
41 42
    }else if(IsEqualGUID(&IID_IOleInPlaceUIWindow, riid)) {
        TRACE("(%p)->(IID_IOleInPlaceUIWindow %p)\n", This, ppv);
43
        *ppv = &This->IOleInPlaceFrame_iface;
44 45
    }else if(IsEqualGUID(&IID_IOleInPlaceFrame, riid)) {
        TRACE("(%p)->(IID_IOleInPlaceFrame %p)\n", This, ppv);
46 47 48 49 50
        *ppv = &This->IOleInPlaceFrame_iface;
    }else {
        *ppv = NULL;
        WARN("Unsopported interface %s\n", debugstr_guid(riid));
        return E_NOINTERFACE;
51 52 53
    }


54 55
    IUnknown_AddRef((IUnknown*)*ppv);
    return S_OK;
56 57 58 59
}

static ULONG WINAPI InPlaceFrame_AddRef(IOleInPlaceFrame *iface)
{
60
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
61
    return IOleClientSite_AddRef(&This->IOleClientSite_iface);
62 63 64 65
}

static ULONG WINAPI InPlaceFrame_Release(IOleInPlaceFrame *iface)
{
66
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
67
    return IOleClientSite_Release(&This->IOleClientSite_iface);
68 69 70 71
}

static HRESULT WINAPI InPlaceFrame_GetWindow(IOleInPlaceFrame *iface, HWND *phwnd)
{
72
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
73 74 75 76 77 78 79
    FIXME("(%p)->(%p)\n", This, phwnd);
    return E_NOTIMPL;
}

static HRESULT WINAPI InPlaceFrame_ContextSensitiveHelp(IOleInPlaceFrame *iface,
                                                        BOOL fEnterMode)
{
80
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
81 82 83 84 85 86
    FIXME("(%p)->(%x)\n", This, fEnterMode);
    return E_NOTIMPL;
}

static HRESULT WINAPI InPlaceFrame_GetBorder(IOleInPlaceFrame *iface, LPRECT lprectBorder)
{
87
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
88 89 90 91 92 93 94
    FIXME("(%p)->(%p)\n", This, lprectBorder);
    return E_NOTIMPL;
}

static HRESULT WINAPI InPlaceFrame_RequestBorderSpace(IOleInPlaceFrame *iface,
                                                      LPCBORDERWIDTHS pborderwidths)
{
95
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
96 97 98 99 100 101 102
    FIXME("(%p)->(%p)\n", This, pborderwidths);
    return E_NOTIMPL;
}

static HRESULT WINAPI InPlaceFrame_SetBorderSpace(IOleInPlaceFrame *iface,
                                                  LPCBORDERWIDTHS pborderwidths)
{
103
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
104 105 106 107 108 109 110
    FIXME("(%p)->(%p)\n", This, pborderwidths);
    return E_NOTIMPL;
}

static HRESULT WINAPI InPlaceFrame_SetActiveObject(IOleInPlaceFrame *iface,
        IOleInPlaceActiveObject *pActiveObject, LPCOLESTR pszObjName)
{
111
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
112 113 114 115 116 117 118
    FIXME("(%p)->(%p %s)\n", This, pActiveObject, debugstr_w(pszObjName));
    return E_NOTIMPL;
}

static HRESULT WINAPI InPlaceFrame_InsertMenus(IOleInPlaceFrame *iface, HMENU hmenuShared,
        LPOLEMENUGROUPWIDTHS lpMenuWidths)
{
119
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
120 121 122 123 124 125 126
    FIXME("(%p)->(%p %p)\n", This, hmenuShared, lpMenuWidths);
    return E_NOTIMPL;
}

static HRESULT WINAPI InPlaceFrame_SetMenu(IOleInPlaceFrame *iface, HMENU hmenuShared,
        HOLEMENU holemenu, HWND hwndActiveObject)
{
127
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
128 129 130 131 132 133
    FIXME("(%p)->(%p %p %p)\n", This, hmenuShared, holemenu, hwndActiveObject);
    return E_NOTIMPL;
}

static HRESULT WINAPI InPlaceFrame_RemoveMenus(IOleInPlaceFrame *iface, HMENU hmenuShared)
{
134
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
135 136 137 138 139 140 141
    FIXME("(%p)->(%p)\n", This, hmenuShared);
    return E_NOTIMPL;
}

static HRESULT WINAPI InPlaceFrame_SetStatusText(IOleInPlaceFrame *iface,
                                                 LPCOLESTR pszStatusText)
{
142
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
143 144
    TRACE("(%p)->(%s)\n", This, debugstr_w(pszStatusText));
    return This->container_vtbl->SetStatusText(This, pszStatusText);
145 146 147 148
}

static HRESULT WINAPI InPlaceFrame_EnableModeless(IOleInPlaceFrame *iface, BOOL fEnable)
{
149
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
150 151 152 153 154 155 156
    FIXME("(%p)->(%x)\n", This, fEnable);
    return E_NOTIMPL;
}

static HRESULT WINAPI InPlaceFrame_TranslateAccelerator(IOleInPlaceFrame *iface, LPMSG lpmsg,
                                                        WORD wID)
{
157
    DocHost *This = impl_from_IOleInPlaceFrame(iface);
158 159 160 161
    FIXME("(%p)->(%p %d)\n", This, lpmsg, wID);
    return E_NOTIMPL;
}

162
#undef impl_from_IOleInPlaceFrame
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181

static const IOleInPlaceFrameVtbl OleInPlaceFrameVtbl = {
    InPlaceFrame_QueryInterface,
    InPlaceFrame_AddRef,
    InPlaceFrame_Release,
    InPlaceFrame_GetWindow,
    InPlaceFrame_ContextSensitiveHelp,
    InPlaceFrame_GetBorder,
    InPlaceFrame_RequestBorderSpace,
    InPlaceFrame_SetBorderSpace,
    InPlaceFrame_SetActiveObject,
    InPlaceFrame_InsertMenus,
    InPlaceFrame_SetMenu,
    InPlaceFrame_RemoveMenus,
    InPlaceFrame_SetStatusText,
    InPlaceFrame_EnableModeless,
    InPlaceFrame_TranslateAccelerator
};

182
void DocHost_Frame_Init(DocHost *This)
183
{
184
    This->IOleInPlaceFrame_iface.lpVtbl = &OleInPlaceFrameVtbl;
185
}