regedit: An English (United States) spelling fix.
[wine/multimedia.git] / dlls / atl / atl_ax.c
blobc1b74f74aee1564bf62ea8ac2faea1e654bdd191
1 /*
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
21 #include <stdarg.h>
22 #include <stdio.h>
24 #define COBJMACROS
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winerror.h"
29 #include "winuser.h"
30 #include "wine/debug.h"
31 #include "objbase.h"
32 #include "objidl.h"
33 #include "ole2.h"
34 #include "exdisp.h"
35 #include "atlbase.h"
36 #include "atliface.h"
37 #include "atlwin.h"
39 #include "wine/unicode.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(atl);
43 typedef struct IOCS {
44 IOleClientSite IOleClientSite_iface;
45 IOleContainer IOleContainer_iface;
46 IOleInPlaceSiteWindowless IOleInPlaceSiteWindowless_iface;
47 IOleInPlaceFrame IOleInPlaceFrame_iface;
48 IOleControlSite IOleControlSite_iface;
50 LONG ref;
51 HWND hWnd;
52 IOleObject *control;
53 RECT size;
54 WNDPROC OrigWndProc;
55 BOOL fActive, fInPlace, fWindowless;
56 } IOCS;
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) );
67 if (!ptr)
68 return 1;
69 GetWindowTextW( hWnd, ptr, len );
70 AtlAxCreateControlEx( ptr, hWnd, NULL, NULL, NULL, NULL, NULL );
71 HeapFree( GetProcessHeap(), 0, ptr );
72 return 0;
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.
82 * RETURNS
83 * TRUE or FALSE
86 BOOL WINAPI AtlAxWinInit(void)
88 WNDCLASSEXW wcex;
89 const WCHAR AtlAxWin[] = {'A','t','l','A','x','W','i','n',0};
91 FIXME("semi-stub\n");
93 if ( FAILED( OleInitialize(NULL) ) )
94 return FALSE;
96 wcex.cbSize = sizeof(wcex);
97 wcex.style = 0;
98 wcex.cbClsExtra = 0;
99 wcex.cbWndExtra = 0;
100 wcex.hInstance = GetModuleHandleW( NULL );
101 wcex.hIcon = NULL;
102 wcex.hCursor = NULL;
103 wcex.hbrBackground = NULL;
104 wcex.lpszMenuName = NULL;
105 wcex.hIconSm = 0;
107 wcex.lpfnWndProc = AtlAxWin_wndproc;
108 wcex.lpszClassName = AtlAxWin;
109 if ( !RegisterClassExW( &wcex ) )
110 return FALSE;
112 return TRUE;
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 );
126 return ref;
129 static HRESULT IOCS_QueryInterface(IOCS *This, REFIID riid, void **ppv)
131 *ppv = NULL;
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;
151 if (*ppv)
153 IOCS_AddRef( This );
154 return S_OK;
157 WARN("unsupported interface %s\n", debugstr_guid( riid ) );
158 *ppv = NULL;
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 );
169 if (!ref)
171 IOCS_Detach( This );
172 HeapFree( GetProcessHeap(), 0, This );
175 return ref;
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 );
206 return E_NOTIMPL;
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 );
214 return E_NOTIMPL;
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 );
228 return S_OK;
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" );
235 return E_NOTIMPL;
238 static HRESULT WINAPI OleClientSite_RequestNewObjectLayout(IOleClientSite *iface)
240 IOCS *This = impl_from_IOleClientSite(iface);
241 FIXME( "(%p) - stub\n", This );
242 return E_NOTIMPL;
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 );
275 return E_NOTIMPL;
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 );
282 return E_NOTIMPL;
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" );
289 return E_NOTIMPL;
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);
322 *phwnd = This->hWnd;
323 return S_OK;
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);
330 return E_NOTIMPL;
333 static HRESULT WINAPI OleInPlaceSiteWindowless_CanInPlaceActivate(IOleInPlaceSiteWindowless *iface)
335 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
336 TRACE("(%p)\n", This);
337 return S_OK;
340 static HRESULT WINAPI OleInPlaceSiteWindowless_OnInPlaceActivate(IOleInPlaceSiteWindowless *iface)
342 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
344 TRACE("(%p)\n", This);
346 This->fInPlace = TRUE;
347 return S_OK;
350 static HRESULT WINAPI OleInPlaceSiteWindowless_OnUIActivate(IOleInPlaceSiteWindowless *iface)
352 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
354 TRACE("(%p)\n", This);
356 return S_OK;
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);
366 if ( lprcClipRect )
367 *lprcClipRect = This->size;
368 if ( lprcPosRect )
369 *lprcPosRect = This->size;
371 if ( ppFrame )
373 IOCS_QueryInterface( This, &IID_IOleInPlaceFrame, (void**) ppFrame );
376 if ( ppDoc )
377 *ppDoc = NULL;
379 if ( lpFrameInfo )
381 lpFrameInfo->fMDIApp = FALSE;
382 lpFrameInfo->hwndFrame = This->hWnd;
383 lpFrameInfo->haccel = NULL;
384 lpFrameInfo->cAccelEntries = 0;
387 return S_OK;
390 static HRESULT WINAPI OleInPlaceSiteWindowless_Scroll(IOleInPlaceSiteWindowless *iface, SIZE scrollExtent)
392 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
393 FIXME("(%p) - stub\n", This);
394 return E_NOTIMPL;
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);
401 return E_NOTIMPL;
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;
411 return S_OK;
414 static HRESULT WINAPI OleInPlaceSiteWindowless_DiscardUndoState(IOleInPlaceSiteWindowless *iface)
416 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
417 FIXME("(%p) - stub\n", This);
418 return E_NOTIMPL;
421 static HRESULT WINAPI OleInPlaceSiteWindowless_DeactivateAndUndo(IOleInPlaceSiteWindowless *iface)
423 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
424 FIXME("(%p) - stub\n", This);
425 return E_NOTIMPL;
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);
432 return E_NOTIMPL;
435 static HRESULT WINAPI OleInPlaceSiteWindowless_OnInPlaceActivateEx( IOleInPlaceSiteWindowless *iface, BOOL* pfNoRedraw, DWORD dwFlags)
437 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
439 TRACE("\n");
441 This->fActive = This->fInPlace = TRUE;
442 if ( dwFlags & ACTIVATE_WINDOWLESS )
443 This->fWindowless = TRUE;
444 return S_OK;
447 static HRESULT WINAPI OleInPlaceSiteWindowless_OnInPlaceDeactivateEx( IOleInPlaceSiteWindowless *iface, BOOL fNoRedraw)
449 IOCS *This = impl_from_IOleInPlaceSiteWindowless(iface);
451 TRACE("\n");
453 This->fActive = This->fInPlace = This->fWindowless = FALSE;
454 return S_OK;
456 static HRESULT WINAPI OleInPlaceSiteWindowless_RequestUIActivate( IOleInPlaceSiteWindowless *iface)
458 FIXME("\n");
459 return E_NOTIMPL;
461 static HRESULT WINAPI OleInPlaceSiteWindowless_CanWindowlessActivate( IOleInPlaceSiteWindowless *iface)
463 FIXME("\n");
464 return S_OK;
466 static HRESULT WINAPI OleInPlaceSiteWindowless_GetCapture( IOleInPlaceSiteWindowless *iface)
468 FIXME("\n");
469 return E_NOTIMPL;
471 static HRESULT WINAPI OleInPlaceSiteWindowless_SetCapture( IOleInPlaceSiteWindowless *iface, BOOL fCapture)
473 FIXME("\n");
474 return E_NOTIMPL;
476 static HRESULT WINAPI OleInPlaceSiteWindowless_GetFocus( IOleInPlaceSiteWindowless *iface)
478 FIXME("\n");
479 return E_NOTIMPL;
481 static HRESULT WINAPI OleInPlaceSiteWindowless_SetFocus( IOleInPlaceSiteWindowless *iface, BOOL fFocus)
483 FIXME("\n");
484 return E_NOTIMPL;
486 static HRESULT WINAPI OleInPlaceSiteWindowless_GetDC( IOleInPlaceSiteWindowless *iface, LPCRECT pRect, DWORD grfFlags, HDC* phDC)
488 FIXME("\n");
489 return E_NOTIMPL;
491 static HRESULT WINAPI OleInPlaceSiteWindowless_ReleaseDC( IOleInPlaceSiteWindowless *iface, HDC hDC)
493 FIXME("\n");
494 return E_NOTIMPL;
496 static HRESULT WINAPI OleInPlaceSiteWindowless_InvalidateRect( IOleInPlaceSiteWindowless *iface, LPCRECT pRect, BOOL fErase)
498 FIXME("\n");
499 return E_NOTIMPL;
501 static HRESULT WINAPI OleInPlaceSiteWindowless_InvalidateRgn( IOleInPlaceSiteWindowless *iface, HRGN hRGN, BOOL fErase)
503 FIXME("\n");
504 return E_NOTIMPL;
506 static HRESULT WINAPI OleInPlaceSiteWindowless_ScrollRect( IOleInPlaceSiteWindowless *iface, INT dx, INT dy, LPCRECT pRectScroll, LPCRECT pRectClip)
508 FIXME("\n");
509 return E_NOTIMPL;
511 static HRESULT WINAPI OleInPlaceSiteWindowless_AdjustRect( IOleInPlaceSiteWindowless *iface, LPRECT prc)
513 FIXME("\n");
514 return E_NOTIMPL;
516 static HRESULT WINAPI OleInPlaceSiteWindowless_OnDefWindowMessage( IOleInPlaceSiteWindowless *iface, UINT msg, WPARAM wParam, LPARAM lParam, LRESULT* plResult)
518 FIXME("\n");
519 return E_NOTIMPL;
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 );
553 *phWnd = This->hWnd;
554 return S_OK;
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 );
562 return E_NOTIMPL;
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 );
570 return E_NOTIMPL;
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 );
578 return E_NOTIMPL;
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 );
586 return E_NOTIMPL;
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) );
594 return S_OK;
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 );
602 return E_NOTIMPL;
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 );
610 return E_NOTIMPL;
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 );
618 return E_NOTIMPL;
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 ) );
626 return E_NOTIMPL;
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 );
634 return E_NOTIMPL;
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 );
642 return E_NOTIMPL;
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)
672 FIXME( "\n" );
673 return E_NOTIMPL;
675 static HRESULT WINAPI OleControlSite_LockInPlaceActive( IOleControlSite* This, BOOL fLock)
677 FIXME( "\n" );
678 return E_NOTIMPL;
680 static HRESULT WINAPI OleControlSite_GetExtendedControl( IOleControlSite* This, IDispatch** ppDisp)
682 FIXME( "\n" );
683 return E_NOTIMPL;
685 static HRESULT WINAPI OleControlSite_TransformCoords( IOleControlSite* This, POINTL* pPtlHimetric, POINTF* pPtfContainer, DWORD dwFlags)
687 FIXME( "\n" );
688 return E_NOTIMPL;
690 static HRESULT WINAPI OleControlSite_TranslateAccelerator( IOleControlSite* This, MSG* pMsg, DWORD grfModifiers)
692 FIXME( "\n" );
693 return E_NOTIMPL;
695 static HRESULT WINAPI OleControlSite_OnFocus( IOleControlSite* This, BOOL fGotFocus)
697 FIXME( "\n" );
698 return E_NOTIMPL;
700 static HRESULT WINAPI OleControlSite_ShowPropertyFrame( IOleControlSite* This)
702 FIXME( "\n" );
703 return E_NOTIMPL;
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,
720 OleContainer_AddRef,
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 */
792 if ( This->hWnd )
794 SetWindowLongPtrW( This->hWnd, GWLP_WNDPROC, (ULONG_PTR) This->OrigWndProc );
795 SetWindowLongPtrW( This->hWnd, GWLP_USERDATA, 0 );
796 This->hWnd = NULL;
798 if ( This->control )
800 IOleObject *control = This->control;
802 This->control = NULL;
803 IOleObject_SetClientSite( control, NULL );
804 IOleObject_Release( control );
806 return S_OK;
809 static void IOCS_OnSize( IOCS* This, LPCRECT rect )
811 SIZEL inPix, inHi;
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 )
816 return;
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 )
838 return;
840 This->fActive = TRUE;
843 static void IOCS_OnDraw( IOCS *This )
845 IViewObject *view;
847 if ( !This->control || !This->fWindowless )
848 return;
850 if ( SUCCEEDED( IOleObject_QueryInterface( This->control, &IID_IViewObject, (void**)&view ) ) )
852 HDC dc = GetDC( This->hWnd );
853 RECTL rect;
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;
868 switch( uMsg )
870 case WM_DESTROY:
871 IOCS_Detach( This );
872 break;
873 case WM_SIZE:
875 RECT r;
876 r.left = r.top = 0;
877 r.right = LOWORD( lParam );
878 r.bottom = HIWORD( lParam );
879 IOCS_OnSize( This, &r );
881 break;
882 case WM_SHOWWINDOW:
883 IOCS_OnShow( This, (BOOL) wParam );
884 break;
885 case WM_PAINT:
886 IOCS_OnDraw( This );
887 break;
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 */
901 This->hWnd = 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 );
907 return S_OK;
910 static HRESULT IOCS_Init( IOCS *This )
912 RECT rect;
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 );
922 return S_OK;
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 )
930 HRESULT hr;
931 IOCS *This;
933 *ppSite = NULL;
934 This = HeapAlloc(GetProcessHeap(), 0, sizeof(IOCS));
936 if (!This)
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;
944 This->ref = 1;
946 This->OrigWndProc = NULL;
947 This->hWnd = 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 ) )
954 *ppSite = This;
955 else
956 IOCS_Release( This );
958 return hr;
962 /***********************************************************************
963 * AtlAxCreateControl [ATL.@]
965 HRESULT WINAPI AtlAxCreateControl(LPCOLESTR lpszName, HWND hWnd,
966 IStream *pStream, IUnknown **ppUnkContainer)
968 return AtlAxCreateControlEx( lpszName, hWnd, pStream, ppUnkContainer,
969 NULL, NULL, NULL );
972 /***********************************************************************
973 * AtlAxCreateControlEx [ATL.@]
975 * REMARKS
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)
983 CLSID controlId;
984 HRESULT hRes;
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 );
995 if ( FAILED(hRes) )
996 hRes = CLSIDFromProgID( lpszName, &controlId );
997 if ( SUCCEEDED( hRes ) )
998 content = IsGUID;
999 else {
1000 /* FIXME - check for MSHTML: prefix! */
1001 content = IsURL;
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 );
1011 return hRes;
1014 hRes = IOleObject_QueryInterface( pControl, &IID_IPersistStreamInit, (void**) &pPSInit );
1015 if ( SUCCEEDED( hRes ) )
1017 if (!pStream)
1018 IPersistStreamInit_InitNew( pPSInit );
1019 else
1020 IPersistStreamInit_Load( pPSInit, pStream );
1021 IPersistStreamInit_Release( pPSInit );
1022 } else
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 );
1038 if ( !browser )
1039 WARN( "Cannot query IWebBrowser2 interface: %08x\n", hRes );
1040 else {
1041 VARIANT url;
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 );
1057 if (ppUnkContainer)
1059 *ppUnkContainer = pContainer;
1060 if ( pContainer )
1061 IUnknown_AddRef( pContainer );
1063 if (ppUnkControl)
1065 *ppUnkControl = pUnkControl;
1066 if ( pUnkControl )
1067 IUnknown_AddRef( pUnkControl );
1070 if ( pUnkControl )
1071 IUnknown_Release( pUnkControl );
1072 if ( pContainer )
1073 IUnknown_Release( pContainer );
1075 return S_OK;
1078 /***********************************************************************
1079 * AtlAxAttachControl [ATL.@]
1081 HRESULT WINAPI AtlAxAttachControl(IUnknown* pControl, HWND hWnd, IUnknown** ppUnkContainer)
1083 IOCS *pUnkContainer;
1084 HRESULT hr;
1086 TRACE( "%p %p %p\n", pControl, hWnd, ppUnkContainer );
1088 if (!pControl)
1089 return E_INVALIDARG;
1091 hr = IOCS_Create( hWnd, pControl, &pUnkContainer );
1092 if ( SUCCEEDED( hr ) && ppUnkContainer)
1094 *ppUnkContainer = (IUnknown*) pUnkContainer;
1097 if(!hWnd)
1098 return S_FALSE;
1100 return hr;
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) );
1112 if (!*pptr)
1113 return FALSE;
1115 RtlMoveMemory( *pptr+*pfilled, data, size * sizeof(WORD) );
1116 *pfilled += size;
1117 return TRUE;
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;
1131 WORD *output;
1132 DWORD allocated, filled; /* in WORDs */
1133 BOOL ext;
1134 WORD signature, dlgver, rescount;
1135 DWORD style;
1137 filled = 0; allocated = 256;
1138 output = HeapAlloc( GetProcessHeap(), 0, allocated * sizeof(WORD) );
1139 if (!output)
1140 return NULL;
1142 /* header */
1143 tmp = src;
1144 signature = GET_WORD(src);
1145 dlgver = GET_WORD(src + 1);
1146 if (signature == 1 && dlgver == 0xFFFF)
1148 ext = TRUE;
1149 src += 6;
1150 style = GET_DWORD(src);
1151 src += 2;
1152 rescount = GET_WORD(src++);
1153 src += 4;
1154 if ( GET_WORD(src) == 0xFFFF ) /* menu */
1155 src += 2;
1156 else
1157 src += strlenW(src) + 1;
1158 if ( GET_WORD(src) == 0xFFFF ) /* class */
1159 src += 2;
1160 else
1161 src += strlenW(src) + 1;
1162 src += strlenW(src) + 1; /* title */
1163 if ( style & (DS_SETFONT | DS_SHELLFONT) )
1165 src += 3;
1166 src += strlenW(src) + 1;
1168 } else {
1169 ext = FALSE;
1170 style = GET_DWORD(src);
1171 src += 4;
1172 rescount = GET_WORD(src++);
1173 src += 4;
1174 if ( GET_WORD(src) == 0xFFFF ) /* menu */
1175 src += 2;
1176 else
1177 src += strlenW(src) + 1;
1178 if ( GET_WORD(src) == 0xFFFF ) /* class */
1179 src += 2;
1180 else
1181 src += strlenW(src) + 1;
1182 src += strlenW(src) + 1; /* title */
1183 if ( style & DS_SETFONT )
1185 src++;
1186 src += strlenW(src) + 1;
1189 PUT_BLOCK(tmp, src-tmp);
1191 while(rescount--)
1193 src = (const WORD *)( ( ((ULONG_PTR)src) + 3) & ~3); /* align on DWORD boundary */
1194 filled = (filled + 1) & ~1; /* depends on DWORD-aligned allocation unit */
1196 tmp = src;
1197 if (ext)
1198 src += 12;
1199 else
1200 src += 9;
1201 PUT_BLOCK(tmp, src-tmp);
1203 tmp = src;
1204 if ( GET_WORD(src) == 0xFFFF ) /* class */
1206 src += 2;
1207 } else
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[] = {'A','t','l','A','x','W','i','n', 0};
1215 PUT_BLOCK(AtlAxWin, sizeof(AtlAxWin)/sizeof(WCHAR));
1216 PUT_BLOCK(tmp, strlenW(tmp)+1);
1217 } else
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);
1224 src+=size;
1226 else
1228 PUT_WORD(0);
1229 src++;
1232 return (LPDLGTEMPLATEW) output;
1235 /***********************************************************************
1236 * AtlAxCreateDialogA [ATL.@]
1238 * Creates a dialog window
1240 * PARAMS
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
1247 * RETURNS
1248 * Window handle of dialog window.
1250 HWND WINAPI AtlAxCreateDialogA(HINSTANCE hInst, LPCSTR name, HWND owner, DLGPROC dlgProc ,LPARAM param)
1252 HWND res = NULL;
1253 int length;
1254 WCHAR *nameW;
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) );
1261 if (nameW)
1263 MultiByteToWideChar( CP_ACP, 0, name, -1, nameW, length );
1264 res = AtlAxCreateDialogW( hInst, nameW, owner, dlgProc, param );
1265 HeapFree( GetProcessHeap(), 0, nameW );
1267 return res;
1270 /***********************************************************************
1271 * AtlAxCreateDialogW [ATL.@]
1273 * See AtlAxCreateDialogA
1276 HWND WINAPI AtlAxCreateDialogW(HINSTANCE hInst, LPCWSTR name, HWND owner, DLGPROC dlgProc ,LPARAM param)
1278 HRSRC hrsrc;
1279 HGLOBAL hgl;
1280 LPCDLGTEMPLATEW ptr;
1281 LPDLGTEMPLATEW newptr;
1282 HWND res;
1284 TRACE("(%p %s %p %p %lx)\n", hInst, debugstr_w(name), owner, dlgProc, param);
1286 hrsrc = FindResourceW( hInst, name, (LPWSTR)RT_DIALOG );
1287 if ( !hrsrc )
1288 return NULL;
1289 hgl = LoadResource (hInst, hrsrc);
1290 if ( !hgl )
1291 return NULL;
1292 ptr = LockResource ( hgl );
1293 if (!ptr)
1295 FreeResource( hgl );
1296 return NULL;
1298 newptr = AX_ConvertDialogTemplate( ptr );
1299 if ( newptr )
1301 res = CreateDialogIndirectParamW( hInst, newptr, owner, dlgProc, param );
1302 HeapFree( GetProcessHeap(), 0, newptr );
1303 } else
1304 res = NULL;
1305 FreeResource ( hrsrc );
1306 return res;
1309 /***********************************************************************
1310 * AtlAxGetHost [ATL.@]
1313 HRESULT WINAPI AtlAxGetHost(HWND hWnd, IUnknown **pUnk)
1315 IOCS *This;
1317 TRACE( "(%p, %p)\n", hWnd, pUnk );
1319 *pUnk = NULL;
1321 This = (IOCS*) GetWindowLongPtrW( hWnd, GWLP_USERDATA );
1322 if ( !This )
1324 WARN("No container attached to %p\n", hWnd );
1325 return E_FAIL;
1328 return IOCS_QueryInterface( This, &IID_IUnknown, (void**) pUnk );
1331 /***********************************************************************
1332 * AtlAxGetControl [ATL.@]
1335 HRESULT WINAPI AtlAxGetControl(HWND hWnd, IUnknown **pUnk)
1337 IOCS *This;
1339 TRACE( "(%p, %p)\n", hWnd, pUnk );
1341 *pUnk = NULL;
1343 This = (IOCS*) GetWindowLongPtrW( hWnd, GWLP_USERDATA );
1344 if ( !This || !This->control )
1346 WARN("No control attached to %p\n", hWnd );
1347 return E_FAIL;
1350 return IOleObject_QueryInterface( This->control, &IID_IUnknown, (void**) pUnk );