dplayx: Code to forward player creation
[wine/gsoc_dplay.git] / dlls / mshtml / olewnd.c
blob5ce3209f447c56cd4334284a0d0a90c9e0529938
1 /*
2 * Copyright 2005 Jacek Caban
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * 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
19 #include "config.h"
21 #include <stdarg.h>
22 #include <stdio.h>
24 #define COBJMACROS
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "ole2.h"
31 #include "wine/debug.h"
33 #include "mshtml_private.h"
34 #include "resource.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
38 /**********************************************************
39 * IOleInPlaceActiveObject implementation
42 #define ACTOBJ_THIS(iface) DEFINE_THIS(HTMLDocument, OleInPlaceActiveObject, iface)
44 static HRESULT WINAPI OleInPlaceActiveObject_QueryInterface(IOleInPlaceActiveObject *iface, REFIID riid, void **ppvObject)
46 HTMLDocument *This = ACTOBJ_THIS(iface);
47 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
50 static ULONG WINAPI OleInPlaceActiveObject_AddRef(IOleInPlaceActiveObject *iface)
52 HTMLDocument *This = ACTOBJ_THIS(iface);
53 return IHTMLDocument2_AddRef(HTMLDOC(This));
56 static ULONG WINAPI OleInPlaceActiveObject_Release(IOleInPlaceActiveObject *iface)
58 HTMLDocument *This = ACTOBJ_THIS(iface);
59 return IHTMLDocument2_Release(HTMLDOC(This));
62 static HRESULT WINAPI OleInPlaceActiveObject_GetWindow(IOleInPlaceActiveObject *iface, HWND *phwnd)
64 HTMLDocument *This = ACTOBJ_THIS(iface);
66 TRACE("(%p)->(%p)\n", This, phwnd);
68 if(!phwnd)
69 return E_INVALIDARG;
71 if(!This->in_place_active) {
72 *phwnd = NULL;
73 return E_FAIL;
76 *phwnd = This->hwnd;
77 return S_OK;
80 static HRESULT WINAPI OleInPlaceActiveObject_ContextSensitiveHelp(IOleInPlaceActiveObject *iface, BOOL fEnterMode)
82 HTMLDocument *This = ACTOBJ_THIS(iface);
83 FIXME("(%p)->(%x)\n", This, fEnterMode);
84 return E_NOTIMPL;
87 static HRESULT WINAPI OleInPlaceActiveObject_TranslateAccelerator(IOleInPlaceActiveObject *iface, LPMSG lpmsg)
89 HTMLDocument *This = ACTOBJ_THIS(iface);
90 FIXME("(%p)->(%p)\n", This, lpmsg);
91 return E_NOTIMPL;
94 static HRESULT WINAPI OleInPlaceActiveObject_OnFrameWindowActivate(IOleInPlaceActiveObject *iface,
95 BOOL fActivate)
97 HTMLDocument *This = ACTOBJ_THIS(iface);
99 TRACE("(%p)->(%x)\n", This, fActivate);
101 if(This->hostui)
102 IDocHostUIHandler_OnFrameWindowActivate(This->hostui, fActivate);
104 return S_OK;
107 static HRESULT WINAPI OleInPlaceActiveObject_OnDocWindowActivate(IOleInPlaceActiveObject *iface, BOOL fActivate)
109 HTMLDocument *This = ACTOBJ_THIS(iface);
110 FIXME("(%p)->(%x)\n", This, fActivate);
111 return E_NOTIMPL;
114 static HRESULT WINAPI OleInPlaceActiveObject_ResizeBorder(IOleInPlaceActiveObject *iface, LPCRECT prcBorder,
115 IOleInPlaceUIWindow *pUIWindow, BOOL fFrameWindow)
117 HTMLDocument *This = ACTOBJ_THIS(iface);
118 FIXME("(%p)->(%p %p %x)\n", This, prcBorder, pUIWindow, fFrameWindow);
119 return E_NOTIMPL;
122 static HRESULT WINAPI OleInPlaceActiveObject_EnableModeless(IOleInPlaceActiveObject *iface, BOOL fEnable)
124 HTMLDocument *This = ACTOBJ_THIS(iface);
125 FIXME("(%p)->(%x)\n", This, fEnable);
126 return E_NOTIMPL;
129 static const IOleInPlaceActiveObjectVtbl OleInPlaceActiveObjectVtbl = {
130 OleInPlaceActiveObject_QueryInterface,
131 OleInPlaceActiveObject_AddRef,
132 OleInPlaceActiveObject_Release,
133 OleInPlaceActiveObject_GetWindow,
134 OleInPlaceActiveObject_ContextSensitiveHelp,
135 OleInPlaceActiveObject_TranslateAccelerator,
136 OleInPlaceActiveObject_OnFrameWindowActivate,
137 OleInPlaceActiveObject_OnDocWindowActivate,
138 OleInPlaceActiveObject_ResizeBorder,
139 OleInPlaceActiveObject_EnableModeless
142 #undef ACTOBJ_THIS
144 /**********************************************************
145 * IOleInPlaceObjectWindowless implementation
148 #define OLEINPLACEWND_THIS(iface) DEFINE_THIS(HTMLDocument, OleInPlaceObjectWindowless, iface)
150 static HRESULT WINAPI OleInPlaceObjectWindowless_QueryInterface(IOleInPlaceObjectWindowless *iface,
151 REFIID riid, void **ppvObject)
153 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
154 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
157 static ULONG WINAPI OleInPlaceObjectWindowless_AddRef(IOleInPlaceObjectWindowless *iface)
159 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
160 return IHTMLDocument2_AddRef(HTMLDOC(This));
163 static ULONG WINAPI OleInPlaceObjectWindowless_Release(IOleInPlaceObjectWindowless *iface)
165 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
166 return IHTMLDocument2_Release(HTMLDOC(This));
169 static HRESULT WINAPI OleInPlaceObjectWindowless_GetWindow(IOleInPlaceObjectWindowless *iface,
170 HWND *phwnd)
172 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
173 return IOleWindow_GetWindow(OLEWIN(This), phwnd);
176 static HRESULT WINAPI OleInPlaceObjectWindowless_ContextSensitiveHelp(IOleInPlaceObjectWindowless *iface,
177 BOOL fEnterMode)
179 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
180 return IOleWindow_ContextSensitiveHelp(OLEWIN(This), fEnterMode);
183 static HRESULT WINAPI OleInPlaceObjectWindowless_InPlaceDeactivate(IOleInPlaceObjectWindowless *iface)
185 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
187 TRACE("(%p)\n", This);
189 if(This->ui_active)
190 IOleDocumentView_UIActivate(DOCVIEW(This), FALSE);
191 This->window_active = FALSE;
193 if(!This->in_place_active)
194 return S_OK;
196 if(This->frame)
197 IOleInPlaceFrame_Release(This->frame);
199 if(This->hwnd) {
200 ShowWindow(This->hwnd, SW_HIDE);
201 SetWindowPos(This->hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
204 This->focus = FALSE;
205 notif_focus(This);
207 This->in_place_active = FALSE;
208 if(This->ipsite) {
209 IOleInPlaceSiteEx *ipsiteex;
210 HRESULT hres;
212 hres = IOleInPlaceSite_QueryInterface(This->ipsite, &IID_IOleInPlaceSiteEx, (void**)&ipsiteex);
213 if(SUCCEEDED(hres)) {
214 IOleInPlaceSiteEx_OnInPlaceDeactivateEx(ipsiteex, TRUE);
215 IOleInPlaceSiteEx_Release(ipsiteex);
216 }else {
217 IOleInPlaceSite_OnInPlaceDeactivate(This->ipsite);
221 return S_OK;
224 static HRESULT WINAPI OleInPlaceObjectWindowless_UIDeactivate(IOleInPlaceObjectWindowless *iface)
226 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
227 FIXME("(%p)\n", This);
228 return E_NOTIMPL;
231 static HRESULT WINAPI OleInPlaceObjectWindowless_SetObjectRects(IOleInPlaceObjectWindowless *iface,
232 LPCRECT lprcPosRect, LPCRECT lprcClipRect)
234 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
235 FIXME("(%p)->(%p %p)\n", This, lprcPosRect, lprcClipRect);
236 return E_NOTIMPL;
239 static HRESULT WINAPI OleInPlaceObjectWindowless_ReactivateAndUndo(IOleInPlaceObjectWindowless *iface)
241 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
242 FIXME("(%p)\n", This);
243 return E_NOTIMPL;
246 static HRESULT WINAPI OleInPlaceObjectWindowless_OnWindowMessage(IOleInPlaceObjectWindowless *iface,
247 UINT msg, WPARAM wParam, LPARAM lParam, LRESULT *lpResult)
249 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
250 FIXME("(%p)->(%u %lu %lu %p)\n", This, msg, wParam, lParam, lpResult);
251 return E_NOTIMPL;
254 static HRESULT WINAPI OleInPlaceObjectWindowless_GetDropTarget(IOleInPlaceObjectWindowless *iface,
255 IDropTarget **ppDropTarget)
257 HTMLDocument *This = OLEINPLACEWND_THIS(iface);
258 FIXME("(%p)->(%p)\n", This, ppDropTarget);
259 return E_NOTIMPL;
262 static const IOleInPlaceObjectWindowlessVtbl OleInPlaceObjectWindowlessVtbl = {
263 OleInPlaceObjectWindowless_QueryInterface,
264 OleInPlaceObjectWindowless_AddRef,
265 OleInPlaceObjectWindowless_Release,
266 OleInPlaceObjectWindowless_GetWindow,
267 OleInPlaceObjectWindowless_ContextSensitiveHelp,
268 OleInPlaceObjectWindowless_InPlaceDeactivate,
269 OleInPlaceObjectWindowless_UIDeactivate,
270 OleInPlaceObjectWindowless_SetObjectRects,
271 OleInPlaceObjectWindowless_ReactivateAndUndo,
272 OleInPlaceObjectWindowless_OnWindowMessage,
273 OleInPlaceObjectWindowless_GetDropTarget
276 #undef INPLACEWIN_THIS
278 void HTMLDocument_Window_Init(HTMLDocument *This)
280 This->lpOleInPlaceActiveObjectVtbl = &OleInPlaceActiveObjectVtbl;
281 This->lpOleInPlaceObjectWindowlessVtbl = &OleInPlaceObjectWindowlessVtbl;