2 * Active Template Library ActiveX functions (atl.dll)
4 * Copyright 2006 Andrey Turkin
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/debug.h"
39 #include "wine/unicode.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(atl);
44 IOleClientSite IOleClientSite_iface;
45 IOleContainer IOleContainer_iface;
46 IOleInPlaceSiteWindowless IOleInPlaceSiteWindowless_iface;
47 IOleInPlaceFrame IOleInPlaceFrame_iface;
48 IOleControlSite IOleControlSite_iface;
55 BOOL fActive, fInPlace, fWindowless;
58 /**********************************************************************
59 * AtlAxWin class window procedure
61 static LRESULT CALLBACK AtlAxWin_wndproc( HWND hWnd, UINT wMsg, WPARAM wParam, LPARAM lParam )
63 if ( wMsg == WM_CREATE )
65 DWORD len = GetWindowTextLengthW( hWnd ) + 1;
66 WCHAR *ptr = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
69 GetWindowTextW( hWnd, ptr, len );
70 AtlAxCreateControlEx( ptr, hWnd, NULL, NULL, NULL, NULL, NULL );
71 HeapFree( GetProcessHeap(), 0, ptr );
74 return DefWindowProcW( hWnd, wMsg, wParam, lParam );
77 /***********************************************************************
78 * AtlAxWinInit [ATL.@]
79 * Initializes the control-hosting code: registering the AtlAxWin,
80 * AtlAxWin7 and AtlAxWinLic7 window classes and some messages.
86 BOOL WINAPI AtlAxWinInit(void)
89 const WCHAR AtlAxWin[] = {'A','t','l','A','x','W','i','n',0};
93 if ( FAILED( OleInitialize(NULL) ) )
96 wcex.cbSize = sizeof(wcex);
100 wcex.hInstance = GetModuleHandleW( NULL );
103 wcex.hbrBackground = NULL;
104 wcex.lpszMenuName = NULL;
107 wcex.lpfnWndProc = AtlAxWin_wndproc;
108 wcex.lpszClassName = AtlAxWin;
109 if ( !RegisterClassExW( &wcex ) )
115 /***********************************************************************
116 * Atl container component implementation
120 static ULONG IOCS_AddRef(IOCS *This)
122 ULONG ref = InterlockedIncrement(&This->ref);
124 TRACE( "(%p) : AddRef from %d\n", This, ref - 1 );
129 static HRESULT IOCS_QueryInterface(IOCS *This, REFIID riid, void **ppv)
133 if ( IsEqualIID( &IID_IUnknown, riid )
134 || IsEqualIID( &IID_IOleClientSite, riid ) )
136 *ppv = &This->IOleClientSite_iface;
137 } else if ( IsEqualIID( &IID_IOleContainer, riid ) )
139 *ppv = &This->IOleContainer_iface;
140 } else if ( IsEqualIID( &IID_IOleInPlaceSite, riid ) || IsEqualIID( &IID_IOleInPlaceSiteEx, riid ) || IsEqualIID( &IID_IOleInPlaceSiteWindowless, riid ) )
142 *ppv = &This->IOleInPlaceSiteWindowless_iface;
143 } else if ( IsEqualIID( &IID_IOleInPlaceFrame, riid ) )
145 *ppv = &This->IOleInPlaceFrame_iface;
146 } else if ( IsEqualIID( &IID_IOleControlSite, riid ) )
148 *ppv = &This->IOleControlSite_iface;
157 WARN("unsupported interface %s\n", debugstr_guid( riid ) );
159 return E_NOINTERFACE;
162 static HRESULT IOCS_Detach( IOCS *This );
163 static ULONG IOCS_Release(IOCS *This)
165 ULONG ref = InterlockedDecrement(&This->ref);
167 TRACE( "(%p) : ReleaseRef to %d\n", This, ref );
172 HeapFree( GetProcessHeap(), 0, This );
178 /****** IOleClientSite *****/
179 static inline IOCS *impl_from_IOleClientSite(IOleClientSite *iface)
181 return CONTAINING_RECORD(iface, IOCS, IOleClientSite_iface);
184 static HRESULT WINAPI OleClientSite_QueryInterface(IOleClientSite *iface, REFIID riid, void **ppv)
186 IOCS *This = impl_from_IOleClientSite(iface);
187 return IOCS_QueryInterface(This, riid, ppv);
190 static ULONG WINAPI OleClientSite_AddRef(IOleClientSite *iface)
192 IOCS *This = impl_from_IOleClientSite(iface);
193 return IOCS_AddRef(This);
196 static ULONG WINAPI OleClientSite_Release(IOleClientSite *iface)
198 IOCS *This = impl_from_IOleClientSite(iface);
199 return IOCS_Release(This);
202 static HRESULT WINAPI OleClientSite_SaveObject(IOleClientSite *iface)
204 IOCS *This = impl_from_IOleClientSite(iface);
205 FIXME( "(%p) - stub\n", This );
209 static HRESULT WINAPI OleClientSite_GetMoniker(IOleClientSite *iface, DWORD dwAssign, DWORD dwWhichMoniker, IMoniker **ppmk)
211 IOCS *This = impl_from_IOleClientSite(iface);
213 FIXME( "(%p, 0x%x, 0x%x, %p)\n", This, dwAssign, dwWhichMoniker, ppmk );
217 static HRESULT WINAPI OleClientSite_GetContainer(IOleClientSite *iface, IOleContainer **ppContainer)
219 IOCS *This = impl_from_IOleClientSite(iface);
220 TRACE( "(%p, %p)\n", This, ppContainer );
221 return OleClientSite_QueryInterface( iface, &IID_IOleContainer, (void**)ppContainer );
224 static HRESULT WINAPI OleClientSite_ShowObject(IOleClientSite *iface)
226 IOCS *This = impl_from_IOleClientSite(iface);
227 FIXME( "(%p) - stub\n", This );
231 static HRESULT WINAPI OleClientSite_OnShowWindow(IOleClientSite *iface, BOOL fShow)
233 IOCS *This = impl_from_IOleClientSite(iface);
234 FIXME( "(%p, %s) - stub\n", This, fShow ? "TRUE" : "FALSE" );
238 static HRESULT WINAPI OleClientSite_RequestNewObjectLayout(IOleClientSite *iface)
240 IOCS *This = impl_from_IOleClientSite(iface);
241 FIXME( "(%p) - stub\n", This );
246 /****** IOleContainer *****/
247 static inline IOCS *impl_from_IOleContainer(IOleContainer *iface)
249 return CONTAINING_RECORD(iface, IOCS, IOleContainer_iface);
252 static HRESULT WINAPI OleContainer_QueryInterface( IOleContainer* iface, REFIID riid, void** ppv)
254 IOCS *This = impl_from_IOleContainer(iface);
255 return IOCS_QueryInterface( This, riid, ppv );
258 static ULONG WINAPI OleContainer_AddRef(IOleContainer* iface)
260 IOCS *This = impl_from_IOleContainer(iface);
261 return IOCS_AddRef(This);
264 static ULONG WINAPI OleContainer_Release(IOleContainer* iface)
266 IOCS *This = impl_from_IOleContainer(iface);
267 return IOCS_Release(This);
270 static HRESULT WINAPI OleContainer_ParseDisplayName(IOleContainer* iface, IBindCtx* pbc,
271 LPOLESTR pszDisplayName, ULONG* pchEaten, IMoniker** ppmkOut)
273 IOCS *This = impl_from_IOleContainer(iface);
274 FIXME( "(%p,%p,%s,%p,%p) - stub\n", This, pbc, debugstr_w(pszDisplayName), pchEaten, ppmkOut );
278 static HRESULT WINAPI OleContainer_EnumObjects(IOleContainer* iface, DWORD grfFlags, IEnumUnknown** ppenum)
280 IOCS *This = impl_from_IOleContainer(iface);
281 FIXME( "(%p, %u, %p) - stub\n", This, grfFlags, ppenum );
285 static HRESULT WINAPI OleContainer_LockContainer(IOleContainer* iface, BOOL fLock)
287 IOCS *This = impl_from_IOleContainer(iface);
288 FIXME( "(%p, %s) - stub\n", This, fLock?"TRUE":"FALSE" );
293 /****** IOleInPlaceSiteWindowless *******/
294 static inline IOCS *impl_from_IOleInPlaceSiteWindowless(IOleInPlaceSiteWindowless *iface)
296 return CONTAINING_RECORD(iface, IOCS, IOleInPlaceSiteWindowless_iface);
299 static HRESULT WINAPI OleInPlaceSiteWindowless_QueryInterface(IOleInPlaceSiteWindowless *iface, REFIID riid, void **ppv)
301 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
302 return IOCS_QueryInterface(This, riid, ppv);
305 static ULONG WINAPI OleInPlaceSiteWindowless_AddRef(IOleInPlaceSiteWindowless *iface)
307 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
308 return IOCS_AddRef(This);
311 static ULONG WINAPI OleInPlaceSiteWindowless_Release(IOleInPlaceSiteWindowless *iface)
313 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
314 return IOCS_Release(This);
317 static HRESULT WINAPI OleInPlaceSiteWindowless_GetWindow(IOleInPlaceSiteWindowless* iface, HWND* phwnd)
319 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
321 TRACE("(%p,%p)\n", This, phwnd);
326 static HRESULT WINAPI OleInPlaceSiteWindowless_ContextSensitiveHelp(IOleInPlaceSiteWindowless* iface, BOOL fEnterMode)
328 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
329 FIXME("(%p,%d) - stub\n", This, fEnterMode);
333 static HRESULT WINAPI OleInPlaceSiteWindowless_CanInPlaceActivate(IOleInPlaceSiteWindowless *iface)
335 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
336 TRACE("(%p)\n", This);
340 static HRESULT WINAPI OleInPlaceSiteWindowless_OnInPlaceActivate(IOleInPlaceSiteWindowless *iface)
342 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
344 TRACE("(%p)\n", This);
346 This->fInPlace = TRUE;
350 static HRESULT WINAPI OleInPlaceSiteWindowless_OnUIActivate(IOleInPlaceSiteWindowless *iface)
352 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
354 TRACE("(%p)\n", This);
358 static HRESULT WINAPI OleInPlaceSiteWindowless_GetWindowContext(IOleInPlaceSiteWindowless *iface,
359 IOleInPlaceFrame **ppFrame, IOleInPlaceUIWindow **ppDoc, LPRECT lprcPosRect,
360 LPRECT lprcClipRect, LPOLEINPLACEFRAMEINFO lpFrameInfo)
362 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
364 TRACE("(%p,%p,%p,%p,%p,%p)\n", This, ppFrame, ppDoc, lprcPosRect, lprcClipRect, lpFrameInfo);
367 *lprcClipRect = This->size;
369 *lprcPosRect = This->size;
373 IOCS_QueryInterface( This, &IID_IOleInPlaceFrame, (void**) ppFrame );
381 lpFrameInfo->fMDIApp = FALSE;
382 lpFrameInfo->hwndFrame = This->hWnd;
383 lpFrameInfo->haccel = NULL;
384 lpFrameInfo->cAccelEntries = 0;
390 static HRESULT WINAPI OleInPlaceSiteWindowless_Scroll(IOleInPlaceSiteWindowless *iface, SIZE scrollExtent)
392 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
393 FIXME("(%p) - stub\n", This);
397 static HRESULT WINAPI OleInPlaceSiteWindowless_OnUIDeactivate(IOleInPlaceSiteWindowless *iface, BOOL fUndoable)
399 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
400 FIXME("(%p,%d) - stub\n", This, fUndoable);
404 static HRESULT WINAPI OleInPlaceSiteWindowless_OnInPlaceDeactivate(IOleInPlaceSiteWindowless *iface)
406 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
408 TRACE("(%p)\n", This);
410 This->fInPlace = This->fWindowless = FALSE;
414 static HRESULT WINAPI OleInPlaceSiteWindowless_DiscardUndoState(IOleInPlaceSiteWindowless *iface)
416 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
417 FIXME("(%p) - stub\n", This);
421 static HRESULT WINAPI OleInPlaceSiteWindowless_DeactivateAndUndo(IOleInPlaceSiteWindowless *iface)
423 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
424 FIXME("(%p) - stub\n", This);
428 static HRESULT WINAPI OleInPlaceSiteWindowless_OnPosRectChange(IOleInPlaceSiteWindowless *iface, LPCRECT lprcPosRect)
430 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
431 FIXME("(%p,%p) - stub\n", This, lprcPosRect);
435 static HRESULT WINAPI OleInPlaceSiteWindowless_OnInPlaceActivateEx( IOleInPlaceSiteWindowless *iface, BOOL* pfNoRedraw, DWORD dwFlags)
437 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
441 This->fActive = This->fInPlace = TRUE;
442 if ( dwFlags & ACTIVATE_WINDOWLESS )
443 This->fWindowless = TRUE;
447 static HRESULT WINAPI OleInPlaceSiteWindowless_OnInPlaceDeactivateEx( IOleInPlaceSiteWindowless *iface, BOOL fNoRedraw)
449 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
453 This->fActive = This->fInPlace = This->fWindowless = FALSE;
456 static HRESULT WINAPI OleInPlaceSiteWindowless_RequestUIActivate( IOleInPlaceSiteWindowless *iface)
461 static HRESULT WINAPI OleInPlaceSiteWindowless_CanWindowlessActivate( IOleInPlaceSiteWindowless *iface)
466 static HRESULT WINAPI OleInPlaceSiteWindowless_GetCapture( IOleInPlaceSiteWindowless *iface)
471 static HRESULT WINAPI OleInPlaceSiteWindowless_SetCapture( IOleInPlaceSiteWindowless *iface, BOOL fCapture)
476 static HRESULT WINAPI OleInPlaceSiteWindowless_GetFocus( IOleInPlaceSiteWindowless *iface)
481 static HRESULT WINAPI OleInPlaceSiteWindowless_SetFocus( IOleInPlaceSiteWindowless *iface, BOOL fFocus)
486 static HRESULT WINAPI OleInPlaceSiteWindowless_GetDC( IOleInPlaceSiteWindowless *iface, LPCRECT pRect, DWORD grfFlags, HDC* phDC)
491 static HRESULT WINAPI OleInPlaceSiteWindowless_ReleaseDC( IOleInPlaceSiteWindowless *iface, HDC hDC)
496 static HRESULT WINAPI OleInPlaceSiteWindowless_InvalidateRect( IOleInPlaceSiteWindowless *iface, LPCRECT pRect, BOOL fErase)
501 static HRESULT WINAPI OleInPlaceSiteWindowless_InvalidateRgn( IOleInPlaceSiteWindowless *iface, HRGN hRGN, BOOL fErase)
506 static HRESULT WINAPI OleInPlaceSiteWindowless_ScrollRect( IOleInPlaceSiteWindowless *iface, INT dx, INT dy, LPCRECT pRectScroll, LPCRECT pRectClip)
511 static HRESULT WINAPI OleInPlaceSiteWindowless_AdjustRect( IOleInPlaceSiteWindowless *iface, LPRECT prc)
516 static HRESULT WINAPI OleInPlaceSiteWindowless_OnDefWindowMessage( IOleInPlaceSiteWindowless *iface, UINT msg, WPARAM wParam, LPARAM lParam, LRESULT* plResult)
523 /****** IOleInPlaceFrame *******/
524 static inline IOCS *impl_from_IOleInPlaceFrame(IOleInPlaceFrame *iface)
526 return CONTAINING_RECORD(iface, IOCS, IOleInPlaceFrame_iface);
529 static HRESULT WINAPI OleInPlaceFrame_QueryInterface(IOleInPlaceFrame *iface, REFIID riid, void **ppv)
531 IOCS *This = impl_from_IOleInPlaceFrame(iface);
532 return IOCS_QueryInterface(This, riid, ppv);
535 static ULONG WINAPI OleInPlaceFrame_AddRef(IOleInPlaceFrame *iface)
537 IOCS *This = impl_from_IOleInPlaceFrame(iface);
538 return IOCS_AddRef(This);
541 static ULONG WINAPI OleInPlaceFrame_Release(IOleInPlaceFrame *iface)
543 IOCS *This = impl_from_IOleInPlaceFrame(iface);
544 return IOCS_Release(This);
547 static HRESULT WINAPI OleInPlaceFrame_GetWindow(IOleInPlaceFrame *iface, HWND *phWnd)
549 IOCS *This = impl_from_IOleInPlaceFrame(iface);
551 TRACE( "(%p,%p)\n", This, phWnd );
557 static HRESULT WINAPI OleInPlaceFrame_ContextSensitiveHelp(IOleInPlaceFrame *iface, BOOL fEnterMode)
559 IOCS *This = impl_from_IOleInPlaceFrame(iface);
561 FIXME( "(%p,%d) - stub\n", This, fEnterMode );
565 static HRESULT WINAPI OleInPlaceFrame_GetBorder(IOleInPlaceFrame *iface, LPRECT lprectBorder)
567 IOCS *This = impl_from_IOleInPlaceFrame(iface);
569 FIXME( "(%p,%p) - stub\n", This, lprectBorder );
573 static HRESULT WINAPI OleInPlaceFrame_RequestBorderSpace(IOleInPlaceFrame *iface, LPCBORDERWIDTHS pborderwidths)
575 IOCS *This = impl_from_IOleInPlaceFrame(iface);
577 FIXME( "(%p,%p) - stub\n", This, pborderwidths );
581 static HRESULT WINAPI OleInPlaceFrame_SetBorderSpace(IOleInPlaceFrame *iface, LPCBORDERWIDTHS pborderwidths)
583 IOCS *This = impl_from_IOleInPlaceFrame(iface);
585 FIXME( "(%p,%p) - stub\n", This, pborderwidths );
589 static HRESULT WINAPI OleInPlaceFrame_SetActiveObject(IOleInPlaceFrame *iface, IOleInPlaceActiveObject *pActiveObject, LPCOLESTR pszObjName)
591 IOCS *This = impl_from_IOleInPlaceFrame(iface);
593 FIXME( "(%p,%p,%s) - stub\n", This, pActiveObject, debugstr_w(pszObjName) );
597 static HRESULT WINAPI OleInPlaceFrame_InsertMenus(IOleInPlaceFrame *iface, HMENU hmenuShared, LPOLEMENUGROUPWIDTHS lpMenuWidths)
599 IOCS *This = impl_from_IOleInPlaceFrame(iface);
601 FIXME( "(%p,%p,%p) - stub\n", This, hmenuShared, lpMenuWidths );
605 static HRESULT WINAPI OleInPlaceFrame_SetMenu(IOleInPlaceFrame *iface, HMENU hmenuShared, HOLEMENU holemenu, HWND hwndActiveObject)
607 IOCS *This = impl_from_IOleInPlaceFrame(iface);
609 FIXME( "(%p,%p,%p,%p) - stub\n", This, hmenuShared, holemenu, hwndActiveObject );
613 static HRESULT WINAPI OleInPlaceFrame_RemoveMenus(IOleInPlaceFrame *iface, HMENU hmenuShared)
615 IOCS *This = impl_from_IOleInPlaceFrame(iface);
617 FIXME( "(%p, %p) - stub\n", This, hmenuShared );
621 static HRESULT WINAPI OleInPlaceFrame_SetStatusText(IOleInPlaceFrame *iface, LPCOLESTR pszStatusText)
623 IOCS *This = impl_from_IOleInPlaceFrame(iface);
625 FIXME( "(%p, %s) - stub\n", This, debugstr_w( pszStatusText ) );
629 static HRESULT WINAPI OleInPlaceFrame_EnableModeless(IOleInPlaceFrame *iface, BOOL fEnable)
631 IOCS *This = impl_from_IOleInPlaceFrame(iface);
633 FIXME( "(%p, %d) - stub\n", This, fEnable );
637 static HRESULT WINAPI OleInPlaceFrame_TranslateAccelerator(IOleInPlaceFrame *iface, LPMSG lpmsg, WORD wID)
639 IOCS *This = impl_from_IOleInPlaceFrame(iface);
641 FIXME( "(%p, %p, %x) - stub\n", This, lpmsg, wID );
646 /****** IOleControlSite *******/
647 static inline IOCS *impl_from_IOleControlSite(IOleControlSite *iface)
649 return CONTAINING_RECORD(iface, IOCS, IOleControlSite_iface);
652 static HRESULT WINAPI OleControlSite_QueryInterface(IOleControlSite *iface, REFIID riid, void **ppv)
654 IOCS *This = impl_from_IOleControlSite(iface);
655 return IOCS_QueryInterface(This, riid, ppv);
658 static ULONG WINAPI OleControlSite_AddRef(IOleControlSite *iface)
660 IOCS *This = impl_from_IOleControlSite(iface);
661 return IOCS_AddRef(This);
664 static ULONG WINAPI OleControlSite_Release(IOleControlSite *iface)
666 IOCS *This = impl_from_IOleControlSite(iface);
667 return IOCS_Release(This);
670 static HRESULT WINAPI OleControlSite_OnControlInfoChanged( IOleControlSite* This)
675 static HRESULT WINAPI OleControlSite_LockInPlaceActive( IOleControlSite* This, BOOL fLock)
680 static HRESULT WINAPI OleControlSite_GetExtendedControl( IOleControlSite* This, IDispatch** ppDisp)
685 static HRESULT WINAPI OleControlSite_TransformCoords( IOleControlSite* This, POINTL* pPtlHimetric, POINTF* pPtfContainer, DWORD dwFlags)
690 static HRESULT WINAPI OleControlSite_TranslateAccelerator( IOleControlSite* This, MSG* pMsg, DWORD grfModifiers)
695 static HRESULT WINAPI OleControlSite_OnFocus( IOleControlSite* This, BOOL fGotFocus)
700 static HRESULT WINAPI OleControlSite_ShowPropertyFrame( IOleControlSite* This)
707 static const IOleClientSiteVtbl OleClientSite_vtbl = {
708 OleClientSite_QueryInterface,
709 OleClientSite_AddRef,
710 OleClientSite_Release,
711 OleClientSite_SaveObject,
712 OleClientSite_GetMoniker,
713 OleClientSite_GetContainer,
714 OleClientSite_ShowObject,
715 OleClientSite_OnShowWindow,
716 OleClientSite_RequestNewObjectLayout
718 static const IOleContainerVtbl OleContainer_vtbl = {
719 OleContainer_QueryInterface,
721 OleContainer_Release,
722 OleContainer_ParseDisplayName,
723 OleContainer_EnumObjects,
724 OleContainer_LockContainer
726 static const IOleInPlaceSiteWindowlessVtbl OleInPlaceSiteWindowless_vtbl = {
727 OleInPlaceSiteWindowless_QueryInterface,
728 OleInPlaceSiteWindowless_AddRef,
729 OleInPlaceSiteWindowless_Release,
730 OleInPlaceSiteWindowless_GetWindow,
731 OleInPlaceSiteWindowless_ContextSensitiveHelp,
732 OleInPlaceSiteWindowless_CanInPlaceActivate,
733 OleInPlaceSiteWindowless_OnInPlaceActivate,
734 OleInPlaceSiteWindowless_OnUIActivate,
735 OleInPlaceSiteWindowless_GetWindowContext,
736 OleInPlaceSiteWindowless_Scroll,
737 OleInPlaceSiteWindowless_OnUIDeactivate,
738 OleInPlaceSiteWindowless_OnInPlaceDeactivate,
739 OleInPlaceSiteWindowless_DiscardUndoState,
740 OleInPlaceSiteWindowless_DeactivateAndUndo,
741 OleInPlaceSiteWindowless_OnPosRectChange,
742 OleInPlaceSiteWindowless_OnInPlaceActivateEx,
743 OleInPlaceSiteWindowless_OnInPlaceDeactivateEx,
744 OleInPlaceSiteWindowless_RequestUIActivate,
745 OleInPlaceSiteWindowless_CanWindowlessActivate,
746 OleInPlaceSiteWindowless_GetCapture,
747 OleInPlaceSiteWindowless_SetCapture,
748 OleInPlaceSiteWindowless_GetFocus,
749 OleInPlaceSiteWindowless_SetFocus,
750 OleInPlaceSiteWindowless_GetDC,
751 OleInPlaceSiteWindowless_ReleaseDC,
752 OleInPlaceSiteWindowless_InvalidateRect,
753 OleInPlaceSiteWindowless_InvalidateRgn,
754 OleInPlaceSiteWindowless_ScrollRect,
755 OleInPlaceSiteWindowless_AdjustRect,
756 OleInPlaceSiteWindowless_OnDefWindowMessage
758 static const IOleInPlaceFrameVtbl OleInPlaceFrame_vtbl =
760 OleInPlaceFrame_QueryInterface,
761 OleInPlaceFrame_AddRef,
762 OleInPlaceFrame_Release,
763 OleInPlaceFrame_GetWindow,
764 OleInPlaceFrame_ContextSensitiveHelp,
765 OleInPlaceFrame_GetBorder,
766 OleInPlaceFrame_RequestBorderSpace,
767 OleInPlaceFrame_SetBorderSpace,
768 OleInPlaceFrame_SetActiveObject,
769 OleInPlaceFrame_InsertMenus,
770 OleInPlaceFrame_SetMenu,
771 OleInPlaceFrame_RemoveMenus,
772 OleInPlaceFrame_SetStatusText,
773 OleInPlaceFrame_EnableModeless,
774 OleInPlaceFrame_TranslateAccelerator
776 static const IOleControlSiteVtbl OleControlSite_vtbl =
778 OleControlSite_QueryInterface,
779 OleControlSite_AddRef,
780 OleControlSite_Release,
781 OleControlSite_OnControlInfoChanged,
782 OleControlSite_LockInPlaceActive,
783 OleControlSite_GetExtendedControl,
784 OleControlSite_TransformCoords,
785 OleControlSite_TranslateAccelerator,
786 OleControlSite_OnFocus,
787 OleControlSite_ShowPropertyFrame
790 static HRESULT IOCS_Detach( IOCS *This ) /* remove subclassing */
794 SetWindowLongPtrW( This->hWnd, GWLP_WNDPROC, (ULONG_PTR) This->OrigWndProc );
795 SetWindowLongPtrW( This->hWnd, GWLP_USERDATA, 0 );
800 IOleObject *control = This->control;
802 This->control = NULL;
803 IOleObject_SetClientSite( control, NULL );
804 IOleObject_Release( control );
809 static void IOCS_OnSize( IOCS* This, LPCRECT rect )
813 This->size.left = rect->left; This->size.right = rect->right; This->size.top = rect->top; This->size.bottom = rect->bottom;
815 if ( !This->control )
818 inPix.cx = rect->right - rect->left;
819 inPix.cy = rect->bottom - rect->top;
820 AtlPixelToHiMetric( &inPix, &inHi );
821 IOleObject_SetExtent( This->control, DVASPECT_CONTENT, &inHi );
823 if ( This->fInPlace )
825 IOleInPlaceObject *wl;
827 if ( SUCCEEDED( IOleObject_QueryInterface( This->control, &IID_IOleInPlaceObject, (void**)&wl ) ) )
829 IOleInPlaceObject_SetObjectRects( wl, rect, rect );
830 IOleInPlaceObject_Release( wl );
835 static void IOCS_OnShow( IOCS *This, BOOL fShow )
837 if (!This->control || This->fActive || !fShow )
840 This->fActive = TRUE;
843 static void IOCS_OnDraw( IOCS *This )
847 if ( !This->control || !This->fWindowless )
850 if ( SUCCEEDED( IOleObject_QueryInterface( This->control, &IID_IViewObject, (void**)&view ) ) )
852 HDC dc = GetDC( This->hWnd );
855 rect.left = This->size.left; rect.top = This->size.top;
856 rect.bottom = This->size.bottom; rect.right = This->size.right;
858 IViewObject_Draw( view, DVASPECT_CONTENT, ~0, NULL, NULL, 0, dc, &rect, &rect, NULL, 0 );
859 IViewObject_Release( view );
860 ReleaseDC( This->hWnd, dc );
864 static LRESULT IOCS_OnWndProc( IOCS *This, HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
866 WNDPROC OrigWndProc = This->OrigWndProc;
877 r.right = LOWORD( lParam );
878 r.bottom = HIWORD( lParam );
879 IOCS_OnSize( This, &r );
883 IOCS_OnShow( This, (BOOL) wParam );
890 return CallWindowProcW( OrigWndProc, hWnd, uMsg, wParam, lParam );
893 static LRESULT CALLBACK AtlHost_wndproc( HWND hWnd, UINT wMsg, WPARAM wParam, LPARAM lParam )
895 IOCS *This = (IOCS*) GetWindowLongPtrW( hWnd, GWLP_USERDATA );
896 return IOCS_OnWndProc( This, hWnd, wMsg, wParam, lParam );
899 static HRESULT IOCS_Attach( IOCS *This, HWND hWnd, IUnknown *pUnkControl ) /* subclass hWnd */
902 IUnknown_QueryInterface( pUnkControl, &IID_IOleObject, (void**)&This->control );
903 IOleObject_SetClientSite( This->control, &This->IOleClientSite_iface );
904 SetWindowLongPtrW( hWnd, GWLP_USERDATA, (ULONG_PTR) This );
905 This->OrigWndProc = (WNDPROC)SetWindowLongPtrW( hWnd, GWLP_WNDPROC, (ULONG_PTR) AtlHost_wndproc );
910 static HRESULT IOCS_Init( IOCS *This )
913 static const WCHAR AXWIN[] = {'A','X','W','I','N',0};
915 IOleObject_SetHostNames( This->control, AXWIN, AXWIN );
917 GetClientRect( This->hWnd, &rect );
918 IOCS_OnSize( This, &rect );
919 IOleObject_DoVerb( This->control, OLEIVERB_INPLACEACTIVATE, NULL, &This->IOleClientSite_iface,
920 0, This->hWnd, &rect );
925 /**********************************************************************
926 * Create new instance of Atl host component and attach it to window *
928 static HRESULT IOCS_Create( HWND hWnd, IUnknown *pUnkControl, IOCS **ppSite )
934 This = HeapAlloc(GetProcessHeap(), 0, sizeof(IOCS));
937 return E_OUTOFMEMORY;
939 This->IOleClientSite_iface.lpVtbl = &OleClientSite_vtbl;
940 This->IOleContainer_iface.lpVtbl = &OleContainer_vtbl;
941 This->IOleInPlaceSiteWindowless_iface.lpVtbl = &OleInPlaceSiteWindowless_vtbl;
942 This->IOleInPlaceFrame_iface.lpVtbl = &OleInPlaceFrame_vtbl;
943 This->IOleControlSite_iface.lpVtbl = &OleControlSite_vtbl;
946 This->OrigWndProc = NULL;
948 This->fWindowless = This->fActive = This->fInPlace = FALSE;
950 hr = IOCS_Attach( This, hWnd, pUnkControl );
951 if ( SUCCEEDED( hr ) )
952 hr = IOCS_Init( This );
953 if ( SUCCEEDED( hr ) )
956 IOCS_Release( This );
962 /***********************************************************************
963 * AtlAxCreateControl [ATL.@]
965 HRESULT WINAPI AtlAxCreateControl(LPCOLESTR lpszName, HWND hWnd,
966 IStream *pStream, IUnknown **ppUnkContainer)
968 return AtlAxCreateControlEx( lpszName, hWnd, pStream, ppUnkContainer,
972 /***********************************************************************
973 * AtlAxCreateControlEx [ATL.@]
976 * See http://www.codeproject.com/com/cwebpage.asp for some background
979 HRESULT WINAPI AtlAxCreateControlEx(LPCOLESTR lpszName, HWND hWnd,
980 IStream *pStream, IUnknown **ppUnkContainer, IUnknown **ppUnkControl,
981 REFIID iidSink, IUnknown *punkSink)
985 IOleObject *pControl;
986 IUnknown *pUnkControl;
987 IPersistStreamInit *pPSInit;
988 IUnknown *pContainer;
989 enum {IsGUID=0,IsHTML=1,IsURL=2} content;
991 TRACE("(%s %p %p %p %p %p %p)\n", debugstr_w(lpszName), hWnd, pStream,
992 ppUnkContainer, ppUnkControl, iidSink, punkSink);
994 hRes = CLSIDFromString( lpszName, &controlId );
996 hRes = CLSIDFromProgID( lpszName, &controlId );
997 if ( SUCCEEDED( hRes ) )
1000 /* FIXME - check for MSHTML: prefix! */
1002 controlId = CLSID_WebBrowser;
1005 hRes = CoCreateInstance( &controlId, 0, CLSCTX_ALL, &IID_IOleObject,
1006 (void**) &pControl );
1007 if ( FAILED( hRes ) )
1009 WARN( "cannot create ActiveX control %s instance - error 0x%08x\n",
1010 debugstr_guid( &controlId ), hRes );
1014 hRes = IOleObject_QueryInterface( pControl, &IID_IPersistStreamInit, (void**) &pPSInit );
1015 if ( SUCCEEDED( hRes ) )
1018 IPersistStreamInit_InitNew( pPSInit );
1020 IPersistStreamInit_Load( pPSInit, pStream );
1021 IPersistStreamInit_Release( pPSInit );
1023 WARN("cannot get IID_IPersistStreamInit out of control\n");
1025 IOleObject_QueryInterface( pControl, &IID_IUnknown, (void**) &pUnkControl );
1026 IOleObject_Release( pControl );
1029 hRes = AtlAxAttachControl( pUnkControl, hWnd, &pContainer );
1030 if ( FAILED( hRes ) )
1031 WARN("cannot attach control to window\n");
1033 if ( content == IsURL )
1035 IWebBrowser2 *browser;
1037 hRes = IOleObject_QueryInterface( pControl, &IID_IWebBrowser2, (void**) &browser );
1039 WARN( "Cannot query IWebBrowser2 interface: %08x\n", hRes );
1043 IWebBrowser2_put_Visible( browser, VARIANT_TRUE ); /* it seems that native does this on URL (but do not on MSHTML:! why? */
1045 V_VT(&url) = VT_BSTR;
1046 V_BSTR(&url) = SysAllocString( lpszName );
1048 hRes = IWebBrowser2_Navigate2( browser, &url, NULL, NULL, NULL, NULL );
1049 if ( FAILED( hRes ) )
1050 WARN( "IWebBrowser2::Navigate2 failed: %08x\n", hRes );
1051 SysFreeString( V_BSTR(&url) );
1053 IWebBrowser2_Release( browser );
1059 *ppUnkContainer = pContainer;
1061 IUnknown_AddRef( pContainer );
1065 *ppUnkControl = pUnkControl;
1067 IUnknown_AddRef( pUnkControl );
1071 IUnknown_Release( pUnkControl );
1073 IUnknown_Release( pContainer );
1078 /***********************************************************************
1079 * AtlAxAttachControl [ATL.@]
1081 HRESULT WINAPI AtlAxAttachControl(IUnknown* pControl, HWND hWnd, IUnknown** ppUnkContainer)
1083 IOCS *pUnkContainer;
1086 TRACE( "%p %p %p\n", pControl, hWnd, ppUnkContainer );
1089 return E_INVALIDARG;
1091 hr = IOCS_Create( hWnd, pControl, &pUnkContainer );
1092 if ( SUCCEEDED( hr ) && ppUnkContainer)
1094 *ppUnkContainer = (IUnknown*) pUnkContainer;
1103 /**********************************************************************
1104 * Helper function for AX_ConvertDialogTemplate
1106 static inline BOOL advance_array(WORD **pptr, DWORD *palloc, DWORD *pfilled, const WORD *data, DWORD size)
1108 if ( (*pfilled + size) > *palloc )
1110 *palloc = ((*pfilled+size) + 0xFF) & ~0xFF;
1111 *pptr = HeapReAlloc( GetProcessHeap(), 0, *pptr, *palloc * sizeof(WORD) );
1115 RtlMoveMemory( *pptr+*pfilled, data, size * sizeof(WORD) );
1120 /**********************************************************************
1121 * Convert ActiveX control templates to AtlAxWin class instances
1123 static LPDLGTEMPLATEW AX_ConvertDialogTemplate(LPCDLGTEMPLATEW src_tmpl)
1125 #define GET_WORD(x) (*(const WORD *)(x))
1126 #define GET_DWORD(x) (*(const DWORD *)(x))
1127 #define PUT_BLOCK(x,y) do {if (!advance_array(&output, &allocated, &filled, (x), (y))) return NULL;} while (0)
1128 #define PUT_WORD(x) do {WORD w = (x);PUT_BLOCK(&w, 1);} while(0)
1129 #define PUT_DWORD(x) do {DWORD w = (x);PUT_BLOCK(&w, 2);} while(0)
1130 const WORD *tmp, *src = (const WORD *)src_tmpl;
1132 DWORD allocated, filled; /* in WORDs */
1134 WORD signature, dlgver, rescount;
1137 filled = 0; allocated = 256;
1138 output = HeapAlloc( GetProcessHeap(), 0, allocated * sizeof(WORD) );
1144 signature = GET_WORD(src);
1145 dlgver = GET_WORD(src + 1);
1146 if (signature == 1 && dlgver == 0xFFFF)
1150 style = GET_DWORD(src);
1152 rescount = GET_WORD(src++);
1154 if ( GET_WORD(src) == 0xFFFF ) /* menu */
1157 src += strlenW(src) + 1;
1158 if ( GET_WORD(src) == 0xFFFF ) /* class */
1161 src += strlenW(src) + 1;
1162 src += strlenW(src) + 1; /* title */
1163 if ( style & (DS_SETFONT | DS_SHELLFONT) )
1166 src += strlenW(src) + 1;
1170 style = GET_DWORD(src);
1172 rescount = GET_WORD(src++);
1174 if ( GET_WORD(src) == 0xFFFF ) /* menu */
1177 src += strlenW(src) + 1;
1178 if ( GET_WORD(src) == 0xFFFF ) /* class */
1181 src += strlenW(src) + 1;
1182 src += strlenW(src) + 1; /* title */
1183 if ( style & DS_SETFONT )
1186 src += strlenW(src) + 1;
1189 PUT_BLOCK(tmp, src-tmp);
1193 src = (const WORD *)( ( ((ULONG_PTR)src) + 3) & ~3); /* align on DWORD boundary */
1194 filled = (filled + 1) & ~1; /* depends on DWORD-aligned allocation unit */
1201 PUT_BLOCK(tmp, src-tmp);
1204 if ( GET_WORD(src) == 0xFFFF ) /* class */
1209 src += strlenW(src) + 1;
1211 src += strlenW(src) + 1; /* title */
1212 if ( GET_WORD(tmp) == '{' ) /* all this mess created because of this line */
1214 static const WCHAR AtlAxWin[9]={'A','t','l','A','x','W','i','n',0};
1215 PUT_BLOCK(AtlAxWin, sizeof(AtlAxWin)/sizeof(WCHAR));
1216 PUT_BLOCK(tmp, strlenW(tmp)+1);
1218 PUT_BLOCK(tmp, src-tmp);
1220 if ( GET_WORD(src) )
1222 WORD size = (GET_WORD(src)+sizeof(WORD)-1) / sizeof(WORD); /* quite ugly :( Maybe use BYTE* instead of WORD* everywhere ? */
1223 PUT_BLOCK(src, size);
1232 return (LPDLGTEMPLATEW) output;
1235 /***********************************************************************
1236 * AtlAxCreateDialogA [ATL.@]
1238 * Creates a dialog window
1241 * hInst [I] Application instance
1242 * name [I] Dialog box template name
1243 * owner [I] Dialog box parent HWND
1244 * dlgProc [I] Dialog box procedure
1245 * param [I] This value will be passed to dlgProc as WM_INITDIALOG's message lParam
1248 * Window handle of dialog window.
1250 HWND WINAPI AtlAxCreateDialogA(HINSTANCE hInst, LPCSTR name, HWND owner, DLGPROC dlgProc ,LPARAM param)
1256 if (IS_INTRESOURCE(name))
1257 return AtlAxCreateDialogW( hInst, (LPCWSTR) name, owner, dlgProc, param );
1259 length = MultiByteToWideChar( CP_ACP, 0, name, -1, NULL, 0 );
1260 nameW = HeapAlloc( GetProcessHeap(), 0, length * sizeof(WCHAR) );
1263 MultiByteToWideChar( CP_ACP, 0, name, -1, nameW, length );
1264 res = AtlAxCreateDialogW( hInst, nameW, owner, dlgProc, param );
1265 HeapFree( GetProcessHeap(), 0, nameW );
1270 /***********************************************************************
1271 * AtlAxCreateDialogW [ATL.@]
1273 * See AtlAxCreateDialogA
1276 HWND WINAPI AtlAxCreateDialogW(HINSTANCE hInst, LPCWSTR name, HWND owner, DLGPROC dlgProc ,LPARAM param)
1280 LPCDLGTEMPLATEW ptr;
1281 LPDLGTEMPLATEW newptr;
1284 TRACE("(%p %s %p %p %lx)\n", hInst, debugstr_w(name), owner, dlgProc, param);
1286 hrsrc = FindResourceW( hInst, name, (LPWSTR)RT_DIALOG );
1289 hgl = LoadResource (hInst, hrsrc);
1292 ptr = LockResource ( hgl );
1295 FreeResource( hgl );
1298 newptr = AX_ConvertDialogTemplate( ptr );
1301 res = CreateDialogIndirectParamW( hInst, newptr, owner, dlgProc, param );
1302 HeapFree( GetProcessHeap(), 0, newptr );
1305 FreeResource ( hrsrc );
1309 /***********************************************************************
1310 * AtlAxGetHost [ATL.@]
1313 HRESULT WINAPI AtlAxGetHost(HWND hWnd, IUnknown **pUnk)
1317 TRACE( "(%p, %p)\n", hWnd, pUnk );
1321 This = (IOCS*) GetWindowLongPtrW( hWnd, GWLP_USERDATA );
1324 WARN("No container attached to %p\n", hWnd );
1328 return IOCS_QueryInterface( This, &IID_IUnknown, (void**) pUnk );
1331 /***********************************************************************
1332 * AtlAxGetControl [ATL.@]
1335 HRESULT WINAPI AtlAxGetControl(HWND hWnd, IUnknown **pUnk)
1339 TRACE( "(%p, %p)\n", hWnd, pUnk );
1343 This = (IOCS*) GetWindowLongPtrW( hWnd, GWLP_USERDATA );
1344 if ( !This || !This->control )
1346 WARN("No control attached to %p\n", hWnd );
1350 return IOleObject_QueryInterface( This->control, &IID_IUnknown, (void**) pUnk );