4 * Copyright 1995 Martin von Loewis
5 * Copyright 1999 Francis Beaudet
6 * Copyright 1999 Noel Borthwick
7 * Copyright 1999, 2000 Marcus Meissner
8 * Copyright 2005 Juan Lang
9 * Copyright 2011 Adam Martinson for CodeWeavers
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
35 #define NONAMELESSUNION
47 #include "wine/unicode.h"
48 #include "compobj_private.h"
49 #include "wine/list.h"
51 #include "wine/debug.h"
53 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
54 WINE_DECLARE_DEBUG_CHANNEL(accel
);
56 /******************************************************************************
57 * These are static/global variables and internal data structures that the
58 * OLE module uses to maintain its state.
60 typedef struct tagTrackerWindowInfo
62 IDataObject
* dataObject
;
63 IDropSource
* dropSource
;
70 HWND curTargetHWND
; /* window the mouse is hovering over */
71 HWND curDragTargetHWND
; /* might be an ancestor of curTargetHWND */
72 IDropTarget
* curDragTarget
;
73 POINTL curMousePos
; /* current position of the mouse in screen coordinates */
74 DWORD dwKeyState
; /* current state of the shift and ctrl keys and the mouse buttons */
77 typedef struct tagOleMenuDescriptor
/* OleMenuDescriptor */
79 HWND hwndFrame
; /* The containers frame window */
80 HWND hwndActiveObject
; /* The active objects window */
81 OLEMENUGROUPWIDTHS mgw
; /* OLE menu group widths for the shared menu */
82 HMENU hmenuCombined
; /* The combined menu */
83 BOOL bIsServerItem
; /* True if the currently open popup belongs to the server */
86 typedef struct tagOleMenuHookItem
/* OleMenu hook item in per thread hook list */
88 DWORD tid
; /* Thread Id */
89 HANDLE hHeap
; /* Heap this is allocated from */
90 HHOOK GetMsg_hHook
; /* message hook for WH_GETMESSAGE */
91 HHOOK CallWndProc_hHook
; /* message hook for WH_CALLWNDPROC */
92 struct tagOleMenuHookItem
*next
;
95 static OleMenuHookItem
*hook_list
;
98 * This is the lock count on the OLE library. It is controlled by the
99 * OLEInitialize/OLEUninitialize methods.
101 static LONG OLE_moduleLockCount
= 0;
104 * Name of our registered window class.
106 static const WCHAR OLEDD_DRAGTRACKERCLASS
[] =
107 {'W','i','n','e','D','r','a','g','D','r','o','p','T','r','a','c','k','e','r','3','2',0};
110 * Name of menu descriptor property.
112 static const WCHAR prop_olemenuW
[] =
113 {'P','R','O','P','_','O','L','E','M','e','n','u','D','e','s','c','r','i','p','t','o','r',0};
115 /* property to store IDropTarget pointer */
116 static const WCHAR prop_oledroptarget
[] =
117 {'O','l','e','D','r','o','p','T','a','r','g','e','t','I','n','t','e','r','f','a','c','e',0};
119 /* property to store Marshalled IDropTarget pointer */
120 static const WCHAR prop_marshalleddroptarget
[] =
121 {'W','i','n','e','M','a','r','s','h','a','l','l','e','d','D','r','o','p','T','a','r','g','e','t',0};
123 static const WCHAR clsidfmtW
[] =
124 {'C','L','S','I','D','\\','{','%','0','8','x','-','%','0','4','x','-','%','0','4','x','-',
125 '%','0','2','x','%','0','2','x','-','%','0','2','x','%','0','2','x','%','0','2','x','%','0','2','x',
126 '%','0','2','x','%','0','2','x','}','\\',0};
128 static const WCHAR emptyW
[] = { 0 };
130 /******************************************************************************
131 * These are the prototypes of miscellaneous utility methods
133 static void OLEUTL_ReadRegistryDWORDValue(HKEY regKey
, DWORD
* pdwValue
);
135 /******************************************************************************
136 * These are the prototypes of the utility methods used to manage a shared menu
138 static void OLEMenu_Initialize(void);
139 static void OLEMenu_UnInitialize(void);
140 static BOOL
OLEMenu_InstallHooks( DWORD tid
);
141 static BOOL
OLEMenu_UnInstallHooks( DWORD tid
);
142 static OleMenuHookItem
* OLEMenu_IsHookInstalled( DWORD tid
);
143 static BOOL
OLEMenu_FindMainMenuIndex( HMENU hMainMenu
, HMENU hPopupMenu
, UINT
*pnPos
);
144 static BOOL
OLEMenu_SetIsServerMenu( HMENU hmenu
, OleMenuDescriptor
*pOleMenuDescriptor
);
145 static LRESULT CALLBACK
OLEMenu_CallWndProc(INT code
, WPARAM wParam
, LPARAM lParam
);
146 static LRESULT CALLBACK
OLEMenu_GetMsgProc(INT code
, WPARAM wParam
, LPARAM lParam
);
148 /******************************************************************************
149 * These are the prototypes of the OLE Clipboard initialization methods (in clipboard.c)
151 extern void OLEClipbrd_UnInitialize(void);
152 extern void OLEClipbrd_Initialize(void);
154 /******************************************************************************
155 * These are the prototypes of the utility methods used for OLE Drag n Drop
157 static void OLEDD_Initialize(void);
158 static LRESULT WINAPI
OLEDD_DragTrackerWindowProc(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
159 static void OLEDD_TrackStateChange(TrackerWindowInfo
* trackerInfo
);
160 static DWORD
OLEDD_GetButtonState(void);
162 /******************************************************************************
163 * OleBuildVersion [OLE32.@]
165 DWORD WINAPI
OleBuildVersion(void)
167 TRACE("Returning version %d, build %d.\n", rmm
, rup
);
168 return (rmm
<<16)+rup
;
171 /***********************************************************************
172 * OleInitialize (OLE32.@)
174 HRESULT WINAPI
OleInitialize(LPVOID reserved
)
178 TRACE("(%p)\n", reserved
);
181 * The first duty of the OleInitialize is to initialize the COM libraries.
183 hr
= CoInitializeEx(NULL
, COINIT_APARTMENTTHREADED
);
186 * If the CoInitializeEx call failed, the OLE libraries can't be
192 if (!COM_CurrentInfo()->ole_inits
)
196 * Then, it has to initialize the OLE specific modules.
200 * Object linking and Embedding
201 * In-place activation
203 if (!COM_CurrentInfo()->ole_inits
++ &&
204 InterlockedIncrement(&OLE_moduleLockCount
) == 1)
207 * Initialize the libraries.
209 TRACE("() - Initializing the OLE libraries\n");
214 OLEClipbrd_Initialize();
224 OLEMenu_Initialize();
230 /******************************************************************************
231 * OleUninitialize [OLE32.@]
233 void WINAPI DECLSPEC_HOTPATCH
OleUninitialize(void)
238 * If we hit the bottom of the lock stack, free the libraries.
240 if (!--COM_CurrentInfo()->ole_inits
&& !InterlockedDecrement(&OLE_moduleLockCount
))
243 * Actually free the libraries.
245 TRACE("() - Freeing the last reference count\n");
250 OLEClipbrd_UnInitialize();
255 OLEMenu_UnInitialize();
259 * Then, uninitialize the COM libraries.
264 /******************************************************************************
265 * OleInitializeWOW [OLE32.@]
267 HRESULT WINAPI
OleInitializeWOW(DWORD x
, DWORD y
) {
268 FIXME("(0x%08x, 0x%08x),stub!\n",x
, y
);
272 /*************************************************************
273 * get_droptarget_handle
275 * Retrieve a handle to the map containing the marshalled IDropTarget.
276 * This handle belongs to the process that called RegisterDragDrop.
277 * See get_droptarget_local_handle().
279 static inline HANDLE
get_droptarget_handle(HWND hwnd
)
281 return GetPropW(hwnd
, prop_marshalleddroptarget
);
284 /*************************************************************
287 * Is the window a droptarget.
289 static inline BOOL
is_droptarget(HWND hwnd
)
291 return get_droptarget_handle(hwnd
) != 0;
294 /*************************************************************
295 * get_droptarget_local_handle
297 * Retrieve a handle to the map containing the marshalled IDropTarget.
298 * The handle should be closed when finished with.
300 static HANDLE
get_droptarget_local_handle(HWND hwnd
)
302 HANDLE handle
, local_handle
= 0;
304 handle
= get_droptarget_handle(hwnd
);
311 GetWindowThreadProcessId(hwnd
, &pid
);
312 process
= OpenProcess(PROCESS_DUP_HANDLE
, FALSE
, pid
);
315 DuplicateHandle(process
, handle
, GetCurrentProcess(), &local_handle
, 0, FALSE
, DUPLICATE_SAME_ACCESS
);
316 CloseHandle(process
);
322 /***********************************************************************
323 * create_map_from_stream
325 * Helper for RegisterDragDrop. Creates a file mapping object
326 * with the contents of the provided stream. The stream must
327 * be a global memory backed stream.
329 static HRESULT
create_map_from_stream(IStream
*stream
, HANDLE
*map
)
336 hr
= GetHGlobalFromStream(stream
, &hmem
);
337 if(FAILED(hr
)) return hr
;
339 size
= GlobalSize(hmem
);
340 *map
= CreateFileMappingW(INVALID_HANDLE_VALUE
, NULL
, PAGE_READWRITE
, 0, size
, NULL
);
341 if(!*map
) return E_OUTOFMEMORY
;
343 data
= MapViewOfFile(*map
, FILE_MAP_WRITE
, 0, 0, size
);
344 memcpy(data
, GlobalLock(hmem
), size
);
346 UnmapViewOfFile(data
);
350 /***********************************************************************
351 * create_stream_from_map
353 * Creates a stream from the provided map.
355 static HRESULT
create_stream_from_map(HANDLE map
, IStream
**stream
)
357 HRESULT hr
= E_OUTOFMEMORY
;
360 MEMORY_BASIC_INFORMATION info
;
362 data
= MapViewOfFile(map
, FILE_MAP_READ
, 0, 0, 0);
365 VirtualQuery(data
, &info
, sizeof(info
));
366 TRACE("size %d\n", (int)info
.RegionSize
);
368 hmem
= GlobalAlloc(GMEM_MOVEABLE
, info
.RegionSize
);
371 memcpy(GlobalLock(hmem
), data
, info
.RegionSize
);
373 hr
= CreateStreamOnHGlobal(hmem
, TRUE
, stream
);
375 UnmapViewOfFile(data
);
379 /* This is to work around apps which break COM rules by not implementing
380 * IDropTarget::QueryInterface(). Windows doesn't expose this because it
381 * doesn't call CoMarshallInterface() in RegisterDragDrop().
382 * The wrapper is only used internally, and only exists for the life of
383 * the marshal. We don't want to hold a ref on the app provided target
384 * as some apps destroy this prior to CoUninitialize without calling
385 * RevokeDragDrop. The only (long-term) ref is held by the window prop. */
387 IDropTarget IDropTarget_iface
;
392 static inline DropTargetWrapper
* impl_from_IDropTarget(IDropTarget
* iface
)
394 return CONTAINING_RECORD(iface
, DropTargetWrapper
, IDropTarget_iface
);
397 static HRESULT WINAPI
DropTargetWrapper_QueryInterface(IDropTarget
* iface
,
401 DropTargetWrapper
* This
= impl_from_IDropTarget(iface
);
402 if (IsEqualIID(riid
, &IID_IUnknown
) ||
403 IsEqualIID(riid
, &IID_IDropTarget
))
405 IDropTarget_AddRef(&This
->IDropTarget_iface
);
406 *ppvObject
= &This
->IDropTarget_iface
;
410 return E_NOINTERFACE
;
413 static ULONG WINAPI
DropTargetWrapper_AddRef(IDropTarget
* iface
)
415 DropTargetWrapper
* This
= impl_from_IDropTarget(iface
);
416 return InterlockedIncrement(&This
->refs
);
419 static ULONG WINAPI
DropTargetWrapper_Release(IDropTarget
* iface
)
421 DropTargetWrapper
* This
= impl_from_IDropTarget(iface
);
422 ULONG refs
= InterlockedDecrement(&This
->refs
);
423 if (!refs
) HeapFree(GetProcessHeap(), 0, This
);
427 static inline HRESULT
get_target_from_wrapper( IDropTarget
*wrapper
, IDropTarget
**target
)
429 DropTargetWrapper
* This
= impl_from_IDropTarget( wrapper
);
430 *target
= GetPropW( This
->hwnd
, prop_oledroptarget
);
431 if (!*target
) return DRAGDROP_E_NOTREGISTERED
;
432 IDropTarget_AddRef( *target
);
436 static HRESULT WINAPI
DropTargetWrapper_DragEnter(IDropTarget
* iface
,
437 IDataObject
* pDataObj
,
443 HRESULT r
= get_target_from_wrapper( iface
, &target
);
447 r
= IDropTarget_DragEnter( target
, pDataObj
, grfKeyState
, pt
, pdwEffect
);
448 IDropTarget_Release( target
);
453 static HRESULT WINAPI
DropTargetWrapper_DragOver(IDropTarget
* iface
,
459 HRESULT r
= get_target_from_wrapper( iface
, &target
);
463 r
= IDropTarget_DragOver( target
, grfKeyState
, pt
, pdwEffect
);
464 IDropTarget_Release( target
);
469 static HRESULT WINAPI
DropTargetWrapper_DragLeave(IDropTarget
* iface
)
472 HRESULT r
= get_target_from_wrapper( iface
, &target
);
476 r
= IDropTarget_DragLeave( target
);
477 IDropTarget_Release( target
);
482 static HRESULT WINAPI
DropTargetWrapper_Drop(IDropTarget
* iface
,
483 IDataObject
* pDataObj
,
489 HRESULT r
= get_target_from_wrapper( iface
, &target
);
493 r
= IDropTarget_Drop( target
, pDataObj
, grfKeyState
, pt
, pdwEffect
);
494 IDropTarget_Release( target
);
499 static const IDropTargetVtbl DropTargetWrapperVTbl
=
501 DropTargetWrapper_QueryInterface
,
502 DropTargetWrapper_AddRef
,
503 DropTargetWrapper_Release
,
504 DropTargetWrapper_DragEnter
,
505 DropTargetWrapper_DragOver
,
506 DropTargetWrapper_DragLeave
,
507 DropTargetWrapper_Drop
510 static IDropTarget
* WrapDropTarget( HWND hwnd
)
512 DropTargetWrapper
* This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
516 This
->IDropTarget_iface
.lpVtbl
= &DropTargetWrapperVTbl
;
520 return &This
->IDropTarget_iface
;
523 /***********************************************************************
524 * get_droptarget_pointer
526 * Retrieves the marshalled IDropTarget from the window.
528 static IDropTarget
* get_droptarget_pointer(HWND hwnd
)
530 IDropTarget
*droptarget
= NULL
;
534 map
= get_droptarget_local_handle(hwnd
);
535 if(!map
) return NULL
;
537 if(SUCCEEDED(create_stream_from_map(map
, &stream
)))
539 CoUnmarshalInterface(stream
, &IID_IDropTarget
, (void**)&droptarget
);
540 IStream_Release(stream
);
546 /***********************************************************************
547 * RegisterDragDrop (OLE32.@)
549 HRESULT WINAPI
RegisterDragDrop(HWND hwnd
, LPDROPTARGET pDropTarget
)
555 IDropTarget
*wrapper
;
557 TRACE("(%p,%p)\n", hwnd
, pDropTarget
);
559 if (!COM_CurrentApt())
561 ERR("COM not initialized\n");
562 return E_OUTOFMEMORY
;
570 ERR("invalid hwnd %p\n", hwnd
);
571 return DRAGDROP_E_INVALIDHWND
;
574 /* block register for other processes windows */
575 GetWindowThreadProcessId(hwnd
, &pid
);
576 if (pid
!= GetCurrentProcessId())
578 FIXME("register for another process windows is disabled\n");
579 return DRAGDROP_E_INVALIDHWND
;
582 /* check if the window is already registered */
583 if (is_droptarget(hwnd
))
584 return DRAGDROP_E_ALREADYREGISTERED
;
587 * Marshal the drop target pointer into a shared memory map and
588 * store the map's handle in a Wine specific window prop. We also
589 * store the drop target pointer itself in the
590 * "OleDropTargetInterface" prop for compatibility with Windows.
593 hr
= CreateStreamOnHGlobal(NULL
, TRUE
, &stream
);
594 if(FAILED(hr
)) return hr
;
596 /* IDropTarget::QueryInterface() shouldn't be called, some (broken) apps depend on this. */
597 wrapper
= WrapDropTarget( hwnd
);
600 IStream_Release(stream
);
601 return E_OUTOFMEMORY
;
603 hr
= CoMarshalInterface(stream
, &IID_IDropTarget
, (IUnknown
*)wrapper
, MSHCTX_LOCAL
, NULL
, MSHLFLAGS_TABLESTRONG
);
604 IDropTarget_Release(wrapper
);
608 hr
= create_map_from_stream(stream
, &map
);
611 IDropTarget_AddRef(pDropTarget
);
612 SetPropW(hwnd
, prop_oledroptarget
, pDropTarget
);
613 SetPropW(hwnd
, prop_marshalleddroptarget
, map
);
619 IStream_Seek(stream
, zero
, STREAM_SEEK_SET
, NULL
);
620 CoReleaseMarshalData(stream
);
623 IStream_Release(stream
);
628 /***********************************************************************
629 * RevokeDragDrop (OLE32.@)
631 HRESULT WINAPI
RevokeDragDrop(HWND hwnd
)
635 IDropTarget
*drop_target
;
638 TRACE("(%p)\n", hwnd
);
642 ERR("invalid hwnd %p\n", hwnd
);
643 return DRAGDROP_E_INVALIDHWND
;
646 /* no registration data */
647 if (!(map
= get_droptarget_handle(hwnd
)))
648 return DRAGDROP_E_NOTREGISTERED
;
650 drop_target
= GetPropW(hwnd
, prop_oledroptarget
);
651 if(drop_target
) IDropTarget_Release(drop_target
);
653 RemovePropW(hwnd
, prop_oledroptarget
);
654 RemovePropW(hwnd
, prop_marshalleddroptarget
);
656 hr
= create_stream_from_map(map
, &stream
);
659 CoReleaseMarshalData(stream
);
660 IStream_Release(stream
);
667 /***********************************************************************
668 * OleRegGetUserType (OLE32.@)
670 * This implementation of OleRegGetUserType ignores the dwFormOfType
671 * parameter and always returns the full name of the object. This is
672 * not too bad since this is the case for many objects because of the
673 * way they are registered.
675 HRESULT WINAPI
OleRegGetUserType(
678 LPOLESTR
* pszUserType
)
687 * Initialize the out parameter.
692 * Build the key name we're looking for
694 sprintfW( keyName
, clsidfmtW
,
695 clsid
->Data1
, clsid
->Data2
, clsid
->Data3
,
696 clsid
->Data4
[0], clsid
->Data4
[1], clsid
->Data4
[2], clsid
->Data4
[3],
697 clsid
->Data4
[4], clsid
->Data4
[5], clsid
->Data4
[6], clsid
->Data4
[7] );
699 TRACE("(%s, %d, %p)\n", debugstr_w(keyName
), dwFormOfType
, pszUserType
);
702 * Open the class id Key
704 hres
= open_classes_key(HKEY_CLASSES_ROOT
, keyName
, MAXIMUM_ALLOWED
, &clsidKey
);
705 if (hres
!= ERROR_SUCCESS
)
706 return REGDB_E_CLASSNOTREG
;
709 * Retrieve the size of the name string.
713 hres
= RegQueryValueExW(clsidKey
,
720 if (hres
!=ERROR_SUCCESS
)
722 RegCloseKey(clsidKey
);
723 return REGDB_E_READREGDB
;
727 * Allocate a buffer for the registry value.
729 *pszUserType
= CoTaskMemAlloc(cbData
);
731 if (*pszUserType
==NULL
)
733 RegCloseKey(clsidKey
);
734 return E_OUTOFMEMORY
;
737 hres
= RegQueryValueExW(clsidKey
,
741 (LPBYTE
) *pszUserType
,
744 RegCloseKey(clsidKey
);
746 if (hres
!= ERROR_SUCCESS
)
748 CoTaskMemFree(*pszUserType
);
751 return REGDB_E_READREGDB
;
757 /***********************************************************************
758 * DoDragDrop [OLE32.@]
760 HRESULT WINAPI
DoDragDrop (
761 IDataObject
*pDataObject
, /* [in] ptr to the data obj */
762 IDropSource
* pDropSource
, /* [in] ptr to the source obj */
763 DWORD dwOKEffect
, /* [in] effects allowed by the source */
764 DWORD
*pdwEffect
) /* [out] ptr to effects of the source */
766 static const WCHAR trackerW
[] = {'T','r','a','c','k','e','r','W','i','n','d','o','w',0};
767 TrackerWindowInfo trackerInfo
;
768 HWND hwndTrackWindow
;
771 TRACE("(%p, %p, %08x, %p)\n", pDataObject
, pDropSource
, dwOKEffect
, pdwEffect
);
773 if (!pDataObject
|| !pDropSource
|| !pdwEffect
)
777 * Setup the drag n drop tracking window.
780 trackerInfo
.dataObject
= pDataObject
;
781 trackerInfo
.dropSource
= pDropSource
;
782 trackerInfo
.dwOKEffect
= dwOKEffect
;
783 trackerInfo
.pdwEffect
= pdwEffect
;
784 trackerInfo
.trackingDone
= FALSE
;
785 trackerInfo
.escPressed
= FALSE
;
786 trackerInfo
.curDragTargetHWND
= 0;
787 trackerInfo
.curTargetHWND
= 0;
788 trackerInfo
.curDragTarget
= 0;
790 hwndTrackWindow
= CreateWindowW(OLEDD_DRAGTRACKERCLASS
, trackerW
,
791 WS_POPUP
, CW_USEDEFAULT
, CW_USEDEFAULT
,
792 CW_USEDEFAULT
, CW_USEDEFAULT
, 0, 0, 0,
798 * Capture the mouse input
800 SetCapture(hwndTrackWindow
);
805 * Pump messages. All mouse input should go to the capture window.
807 while (!trackerInfo
.trackingDone
&& GetMessageW(&msg
, 0, 0, 0) )
809 trackerInfo
.curMousePos
.x
= msg
.pt
.x
;
810 trackerInfo
.curMousePos
.y
= msg
.pt
.y
;
811 trackerInfo
.dwKeyState
= OLEDD_GetButtonState();
813 if ( (msg
.message
>= WM_KEYFIRST
) &&
814 (msg
.message
<= WM_KEYLAST
) )
817 * When keyboard messages are sent to windows on this thread, we
818 * want to ignore notify the drop source that the state changed.
819 * in the case of the Escape key, we also notify the drop source
820 * we give it a special meaning.
822 if ( (msg
.message
==WM_KEYDOWN
) &&
823 (msg
.wParam
==VK_ESCAPE
) )
825 trackerInfo
.escPressed
= TRUE
;
829 * Notify the drop source.
831 OLEDD_TrackStateChange(&trackerInfo
);
836 * Dispatch the messages only when it's not a keyboard message.
838 DispatchMessageW(&msg
);
842 /* re-post the quit message to outer message loop */
843 if (msg
.message
== WM_QUIT
)
844 PostQuitMessage(msg
.wParam
);
846 * Destroy the temporary window.
848 DestroyWindow(hwndTrackWindow
);
850 return trackerInfo
.returnValue
;
856 /***********************************************************************
857 * OleQueryLinkFromData [OLE32.@]
859 HRESULT WINAPI
OleQueryLinkFromData(
860 IDataObject
* pSrcDataObject
)
862 FIXME("(%p),stub!\n", pSrcDataObject
);
866 /***********************************************************************
867 * OleRegGetMiscStatus [OLE32.@]
869 HRESULT WINAPI
OleRegGetMiscStatus(
874 static const WCHAR miscstatusW
[] = {'M','i','s','c','S','t','a','t','u','s',0};
875 static const WCHAR dfmtW
[] = {'%','d',0};
883 * Build the key name we're looking for
885 sprintfW( keyName
, clsidfmtW
,
886 clsid
->Data1
, clsid
->Data2
, clsid
->Data3
,
887 clsid
->Data4
[0], clsid
->Data4
[1], clsid
->Data4
[2], clsid
->Data4
[3],
888 clsid
->Data4
[4], clsid
->Data4
[5], clsid
->Data4
[6], clsid
->Data4
[7] );
890 TRACE("(%s, %d, %p)\n", debugstr_w(keyName
), dwAspect
, pdwStatus
);
892 if (!pdwStatus
) return E_INVALIDARG
;
896 if (actctx_get_miscstatus(clsid
, dwAspect
, pdwStatus
)) return S_OK
;
899 * Open the class id Key
901 result
= open_classes_key(HKEY_CLASSES_ROOT
, keyName
, MAXIMUM_ALLOWED
, &clsidKey
);
902 if (result
!= ERROR_SUCCESS
)
903 return REGDB_E_CLASSNOTREG
;
908 result
= open_classes_key(clsidKey
, miscstatusW
, MAXIMUM_ALLOWED
, &miscStatusKey
);
909 if (result
!= ERROR_SUCCESS
)
911 RegCloseKey(clsidKey
);
916 * Read the default value
918 OLEUTL_ReadRegistryDWORDValue(miscStatusKey
, pdwStatus
);
921 * Open the key specific to the requested aspect.
923 sprintfW(keyName
, dfmtW
, dwAspect
);
925 result
= open_classes_key(miscStatusKey
, keyName
, MAXIMUM_ALLOWED
, &aspectKey
);
926 if (result
== ERROR_SUCCESS
)
928 OLEUTL_ReadRegistryDWORDValue(aspectKey
, pdwStatus
);
929 RegCloseKey(aspectKey
);
935 RegCloseKey(miscStatusKey
);
936 RegCloseKey(clsidKey
);
941 static HRESULT
EnumOLEVERB_Construct(HKEY hkeyVerb
, ULONG index
, IEnumOLEVERB
**ppenum
);
945 IEnumOLEVERB IEnumOLEVERB_iface
;
952 static inline EnumOLEVERB
*impl_from_IEnumOLEVERB(IEnumOLEVERB
*iface
)
954 return CONTAINING_RECORD(iface
, EnumOLEVERB
, IEnumOLEVERB_iface
);
957 static HRESULT WINAPI
EnumOLEVERB_QueryInterface(
958 IEnumOLEVERB
*iface
, REFIID riid
, void **ppv
)
960 TRACE("(%s, %p)\n", debugstr_guid(riid
), ppv
);
961 if (IsEqualIID(riid
, &IID_IUnknown
) ||
962 IsEqualIID(riid
, &IID_IEnumOLEVERB
))
964 IEnumOLEVERB_AddRef(iface
);
968 return E_NOINTERFACE
;
971 static ULONG WINAPI
EnumOLEVERB_AddRef(
974 EnumOLEVERB
*This
= impl_from_IEnumOLEVERB(iface
);
976 return InterlockedIncrement(&This
->ref
);
979 static ULONG WINAPI
EnumOLEVERB_Release(
982 EnumOLEVERB
*This
= impl_from_IEnumOLEVERB(iface
);
983 LONG refs
= InterlockedDecrement(&This
->ref
);
987 RegCloseKey(This
->hkeyVerb
);
988 HeapFree(GetProcessHeap(), 0, This
);
993 static HRESULT WINAPI
EnumOLEVERB_Next(
994 IEnumOLEVERB
*iface
, ULONG celt
, LPOLEVERB rgelt
,
997 EnumOLEVERB
*This
= impl_from_IEnumOLEVERB(iface
);
1000 TRACE("(%d, %p, %p)\n", celt
, rgelt
, pceltFetched
);
1005 for (; celt
; celt
--, rgelt
++)
1007 WCHAR wszSubKey
[20];
1010 LPWSTR pwszMenuFlags
;
1012 LONG res
= RegEnumKeyW(This
->hkeyVerb
, This
->index
, wszSubKey
, sizeof(wszSubKey
)/sizeof(wszSubKey
[0]));
1013 if (res
== ERROR_NO_MORE_ITEMS
)
1018 else if (res
!= ERROR_SUCCESS
)
1020 ERR("RegEnumKeyW failed with error %d\n", res
);
1021 hr
= REGDB_E_READREGDB
;
1024 res
= RegQueryValueW(This
->hkeyVerb
, wszSubKey
, NULL
, &cbData
);
1025 if (res
!= ERROR_SUCCESS
)
1027 ERR("RegQueryValueW failed with error %d\n", res
);
1028 hr
= REGDB_E_READREGDB
;
1031 pwszOLEVERB
= CoTaskMemAlloc(cbData
);
1037 res
= RegQueryValueW(This
->hkeyVerb
, wszSubKey
, pwszOLEVERB
, &cbData
);
1038 if (res
!= ERROR_SUCCESS
)
1040 ERR("RegQueryValueW failed with error %d\n", res
);
1041 hr
= REGDB_E_READREGDB
;
1042 CoTaskMemFree(pwszOLEVERB
);
1046 TRACE("verb string: %s\n", debugstr_w(pwszOLEVERB
));
1047 pwszMenuFlags
= strchrW(pwszOLEVERB
, ',');
1050 hr
= OLEOBJ_E_INVALIDVERB
;
1051 CoTaskMemFree(pwszOLEVERB
);
1054 /* nul terminate the name string and advance to first character */
1055 *pwszMenuFlags
= '\0';
1057 pwszAttribs
= strchrW(pwszMenuFlags
, ',');
1060 hr
= OLEOBJ_E_INVALIDVERB
;
1061 CoTaskMemFree(pwszOLEVERB
);
1064 /* nul terminate the menu string and advance to first character */
1065 *pwszAttribs
= '\0';
1068 /* fill out structure for this verb */
1069 rgelt
->lVerb
= atolW(wszSubKey
);
1070 rgelt
->lpszVerbName
= pwszOLEVERB
; /* user should free */
1071 rgelt
->fuFlags
= atolW(pwszMenuFlags
);
1072 rgelt
->grfAttribs
= atolW(pwszAttribs
);
1081 static HRESULT WINAPI
EnumOLEVERB_Skip(
1082 IEnumOLEVERB
*iface
, ULONG celt
)
1084 EnumOLEVERB
*This
= impl_from_IEnumOLEVERB(iface
);
1086 TRACE("(%d)\n", celt
);
1088 This
->index
+= celt
;
1092 static HRESULT WINAPI
EnumOLEVERB_Reset(
1093 IEnumOLEVERB
*iface
)
1095 EnumOLEVERB
*This
= impl_from_IEnumOLEVERB(iface
);
1103 static HRESULT WINAPI
EnumOLEVERB_Clone(
1104 IEnumOLEVERB
*iface
,
1105 IEnumOLEVERB
**ppenum
)
1107 EnumOLEVERB
*This
= impl_from_IEnumOLEVERB(iface
);
1109 TRACE("(%p)\n", ppenum
);
1110 if (!DuplicateHandle(GetCurrentProcess(), This
->hkeyVerb
, GetCurrentProcess(), (HANDLE
*)&hkeyVerb
, 0, FALSE
, DUPLICATE_SAME_ACCESS
))
1111 return HRESULT_FROM_WIN32(GetLastError());
1112 return EnumOLEVERB_Construct(hkeyVerb
, This
->index
, ppenum
);
1115 static const IEnumOLEVERBVtbl EnumOLEVERB_VTable
=
1117 EnumOLEVERB_QueryInterface
,
1119 EnumOLEVERB_Release
,
1126 static HRESULT
EnumOLEVERB_Construct(HKEY hkeyVerb
, ULONG index
, IEnumOLEVERB
**ppenum
)
1128 EnumOLEVERB
*This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
1131 RegCloseKey(hkeyVerb
);
1132 return E_OUTOFMEMORY
;
1134 This
->IEnumOLEVERB_iface
.lpVtbl
= &EnumOLEVERB_VTable
;
1136 This
->index
= index
;
1137 This
->hkeyVerb
= hkeyVerb
;
1138 *ppenum
= &This
->IEnumOLEVERB_iface
;
1142 /***********************************************************************
1143 * OleRegEnumVerbs [OLE32.@]
1145 * Enumerates verbs associated with a class stored in the registry.
1148 * clsid [I] Class ID to enumerate the verbs for.
1149 * ppenum [O] Enumerator.
1153 * REGDB_E_CLASSNOTREG: The specified class does not have a key in the registry.
1154 * REGDB_E_READREGDB: The class key could not be opened for some other reason.
1155 * OLE_E_REGDB_KEY: The Verb subkey for the class is not present.
1156 * OLEOBJ_E_NOVERBS: The Verb subkey for the class is empty.
1158 HRESULT WINAPI
OleRegEnumVerbs (REFCLSID clsid
, LPENUMOLEVERB
* ppenum
)
1163 static const WCHAR wszVerb
[] = {'V','e','r','b',0};
1165 TRACE("(%s, %p)\n", debugstr_guid(clsid
), ppenum
);
1167 res
= COM_OpenKeyForCLSID(clsid
, wszVerb
, KEY_READ
, &hkeyVerb
);
1170 if (res
== REGDB_E_CLASSNOTREG
)
1171 ERR("CLSID %s not registered\n", debugstr_guid(clsid
));
1172 else if (res
== REGDB_E_KEYMISSING
)
1173 ERR("no Verbs key for class %s\n", debugstr_guid(clsid
));
1175 ERR("failed to open Verbs key for CLSID %s with error %d\n",
1176 debugstr_guid(clsid
), res
);
1180 res
= RegQueryInfoKeyW(hkeyVerb
, NULL
, NULL
, NULL
, &dwSubKeys
, NULL
,
1181 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
1182 if (res
!= ERROR_SUCCESS
)
1184 ERR("failed to get subkey count with error %d\n", GetLastError());
1185 return REGDB_E_READREGDB
;
1190 WARN("class %s has no verbs\n", debugstr_guid(clsid
));
1191 RegCloseKey(hkeyVerb
);
1192 return OLEOBJ_E_NOVERBS
;
1195 return EnumOLEVERB_Construct(hkeyVerb
, 0, ppenum
);
1198 /******************************************************************************
1199 * OleSetContainedObject [OLE32.@]
1201 HRESULT WINAPI
OleSetContainedObject(
1205 IRunnableObject
* runnable
= NULL
;
1208 TRACE("(%p,%x)\n", pUnknown
, fContained
);
1210 hres
= IUnknown_QueryInterface(pUnknown
,
1211 &IID_IRunnableObject
,
1214 if (SUCCEEDED(hres
))
1216 hres
= IRunnableObject_SetContainedObject(runnable
, fContained
);
1218 IRunnableObject_Release(runnable
);
1226 /******************************************************************************
1229 * Set the OLE object to the running state.
1232 * pUnknown [I] OLE object to run.
1236 * Failure: Any HRESULT code.
1238 HRESULT WINAPI
OleRun(LPUNKNOWN pUnknown
)
1240 IRunnableObject
*runable
;
1243 TRACE("(%p)\n", pUnknown
);
1245 hres
= IUnknown_QueryInterface(pUnknown
, &IID_IRunnableObject
, (void**)&runable
);
1247 return S_OK
; /* Appears to return no error. */
1249 hres
= IRunnableObject_Run(runable
, NULL
);
1250 IRunnableObject_Release(runable
);
1254 /******************************************************************************
1257 HRESULT WINAPI
OleLoad(
1260 LPOLECLIENTSITE pClientSite
,
1263 IPersistStorage
* persistStorage
= NULL
;
1265 IOleObject
* pOleObject
= NULL
;
1266 STATSTG storageInfo
;
1269 TRACE("(%p, %s, %p, %p)\n", pStg
, debugstr_guid(riid
), pClientSite
, ppvObj
);
1274 * TODO, Conversion ... OleDoAutoConvert
1278 * Get the class ID for the object.
1280 hres
= IStorage_Stat(pStg
, &storageInfo
, STATFLAG_NONAME
);
1285 * Now, try and create the handler for the object
1287 hres
= CoCreateInstance(&storageInfo
.clsid
,
1289 CLSCTX_INPROC_HANDLER
|CLSCTX_INPROC_SERVER
,
1294 * If that fails, as it will most times, load the default
1299 hres
= OleCreateDefaultHandler(&storageInfo
.clsid
,
1306 * If we couldn't find a handler... this is bad. Abort the whole thing.
1313 hres
= IUnknown_QueryInterface(pUnk
, &IID_IOleObject
, (void **)&pOleObject
);
1314 if (SUCCEEDED(hres
))
1317 hres
= IOleObject_GetMiscStatus(pOleObject
, DVASPECT_CONTENT
, &dwStatus
);
1322 * Initialize the object with its IPersistStorage interface.
1324 hres
= IUnknown_QueryInterface(pUnk
, &IID_IPersistStorage
, (void**)&persistStorage
);
1325 if (SUCCEEDED(hres
))
1327 hres
= IPersistStorage_Load(persistStorage
, pStg
);
1329 IPersistStorage_Release(persistStorage
);
1330 persistStorage
= NULL
;
1333 if (SUCCEEDED(hres
) && pClientSite
)
1335 * Inform the new object of its client site.
1337 hres
= IOleObject_SetClientSite(pOleObject
, pClientSite
);
1340 * Cleanup interfaces used internally
1343 IOleObject_Release(pOleObject
);
1345 if (SUCCEEDED(hres
))
1349 hres1
= IUnknown_QueryInterface(pUnk
, &IID_IOleLink
, (void **)&pOleLink
);
1350 if (SUCCEEDED(hres1
))
1352 FIXME("handle OLE link\n");
1353 IOleLink_Release(pOleLink
);
1359 IUnknown_Release(pUnk
);
1368 /***********************************************************************
1371 HRESULT WINAPI
OleSave(
1372 LPPERSISTSTORAGE pPS
,
1379 TRACE("(%p,%p,%x)\n", pPS
, pStg
, fSameAsLoad
);
1382 * First, we transfer the class ID (if available)
1384 hres
= IPersistStorage_GetClassID(pPS
, &objectClass
);
1386 if (SUCCEEDED(hres
))
1388 WriteClassStg(pStg
, &objectClass
);
1392 * Then, we ask the object to save itself to the
1393 * storage. If it is successful, we commit the storage.
1395 hres
= IPersistStorage_Save(pPS
, pStg
, fSameAsLoad
);
1397 if (SUCCEEDED(hres
))
1399 IStorage_Commit(pStg
,
1407 /******************************************************************************
1408 * OleLockRunning [OLE32.@]
1410 HRESULT WINAPI
OleLockRunning(LPUNKNOWN pUnknown
, BOOL fLock
, BOOL fLastUnlockCloses
)
1412 IRunnableObject
* runnable
= NULL
;
1415 TRACE("(%p,%x,%x)\n", pUnknown
, fLock
, fLastUnlockCloses
);
1417 hres
= IUnknown_QueryInterface(pUnknown
,
1418 &IID_IRunnableObject
,
1421 if (SUCCEEDED(hres
))
1423 hres
= IRunnableObject_LockRunning(runnable
, fLock
, fLastUnlockCloses
);
1425 IRunnableObject_Release(runnable
);
1434 /**************************************************************************
1435 * Internal methods to manage the shared OLE menu in response to the
1436 * OLE***MenuDescriptor API
1440 * OLEMenu_Initialize()
1442 * Initializes the OLEMENU data structures.
1444 static void OLEMenu_Initialize(void)
1449 * OLEMenu_UnInitialize()
1451 * Releases the OLEMENU data structures.
1453 static void OLEMenu_UnInitialize(void)
1457 /*************************************************************************
1458 * OLEMenu_InstallHooks
1459 * Install thread scope message hooks for WH_GETMESSAGE and WH_CALLWNDPROC
1461 * RETURNS: TRUE if message hooks were successfully installed
1464 static BOOL
OLEMenu_InstallHooks( DWORD tid
)
1466 OleMenuHookItem
*pHookItem
;
1468 /* Create an entry for the hook table */
1469 if ( !(pHookItem
= HeapAlloc(GetProcessHeap(), 0,
1470 sizeof(OleMenuHookItem
)) ) )
1473 pHookItem
->tid
= tid
;
1474 pHookItem
->hHeap
= GetProcessHeap();
1475 pHookItem
->CallWndProc_hHook
= NULL
;
1477 /* Install a thread scope message hook for WH_GETMESSAGE */
1478 pHookItem
->GetMsg_hHook
= SetWindowsHookExW( WH_GETMESSAGE
, OLEMenu_GetMsgProc
,
1479 0, GetCurrentThreadId() );
1480 if ( !pHookItem
->GetMsg_hHook
)
1483 /* Install a thread scope message hook for WH_CALLWNDPROC */
1484 pHookItem
->CallWndProc_hHook
= SetWindowsHookExW( WH_CALLWNDPROC
, OLEMenu_CallWndProc
,
1485 0, GetCurrentThreadId() );
1486 if ( !pHookItem
->CallWndProc_hHook
)
1489 /* Insert the hook table entry */
1490 pHookItem
->next
= hook_list
;
1491 hook_list
= pHookItem
;
1496 /* Unhook any hooks */
1497 if ( pHookItem
->GetMsg_hHook
)
1498 UnhookWindowsHookEx( pHookItem
->GetMsg_hHook
);
1499 if ( pHookItem
->CallWndProc_hHook
)
1500 UnhookWindowsHookEx( pHookItem
->CallWndProc_hHook
);
1501 /* Release the hook table entry */
1502 HeapFree(pHookItem
->hHeap
, 0, pHookItem
);
1507 /*************************************************************************
1508 * OLEMenu_UnInstallHooks
1509 * UnInstall thread scope message hooks for WH_GETMESSAGE and WH_CALLWNDPROC
1511 * RETURNS: TRUE if message hooks were successfully installed
1514 static BOOL
OLEMenu_UnInstallHooks( DWORD tid
)
1516 OleMenuHookItem
*pHookItem
= NULL
;
1517 OleMenuHookItem
**ppHook
= &hook_list
;
1521 if ((*ppHook
)->tid
== tid
)
1523 pHookItem
= *ppHook
;
1524 *ppHook
= pHookItem
->next
;
1527 ppHook
= &(*ppHook
)->next
;
1529 if (!pHookItem
) return FALSE
;
1531 /* Uninstall the hooks installed for this thread */
1532 if ( !UnhookWindowsHookEx( pHookItem
->GetMsg_hHook
) )
1534 if ( !UnhookWindowsHookEx( pHookItem
->CallWndProc_hHook
) )
1537 /* Release the hook table entry */
1538 HeapFree(pHookItem
->hHeap
, 0, pHookItem
);
1543 /* Release the hook table entry */
1544 HeapFree(pHookItem
->hHeap
, 0, pHookItem
);
1549 /*************************************************************************
1550 * OLEMenu_IsHookInstalled
1551 * Tests if OLEMenu hooks have been installed for a thread
1553 * RETURNS: The pointer and index of the hook table entry for the tid
1554 * NULL and -1 for the index if no hooks were installed for this thread
1556 static OleMenuHookItem
* OLEMenu_IsHookInstalled( DWORD tid
)
1558 OleMenuHookItem
*pHookItem
;
1560 /* Do a simple linear search for an entry whose tid matches ours.
1561 * We really need a map but efficiency is not a concern here. */
1562 for (pHookItem
= hook_list
; pHookItem
; pHookItem
= pHookItem
->next
)
1564 if ( tid
== pHookItem
->tid
)
1571 /***********************************************************************
1572 * OLEMenu_FindMainMenuIndex
1574 * Used by OLEMenu API to find the top level group a menu item belongs to.
1575 * On success pnPos contains the index of the item in the top level menu group
1577 * RETURNS: TRUE if the ID was found, FALSE on failure
1579 static BOOL
OLEMenu_FindMainMenuIndex( HMENU hMainMenu
, HMENU hPopupMenu
, UINT
*pnPos
)
1583 nItems
= GetMenuItemCount( hMainMenu
);
1585 for (i
= 0; i
< nItems
; i
++)
1589 /* Is the current item a submenu? */
1590 if ( (hsubmenu
= GetSubMenu(hMainMenu
, i
)) )
1592 /* If the handle is the same we're done */
1593 if ( hsubmenu
== hPopupMenu
)
1599 /* Recursively search without updating pnPos */
1600 else if ( OLEMenu_FindMainMenuIndex( hsubmenu
, hPopupMenu
, NULL
) )
1612 /***********************************************************************
1613 * OLEMenu_SetIsServerMenu
1615 * Checks whether a popup menu belongs to a shared menu group which is
1616 * owned by the server, and sets the menu descriptor state accordingly.
1617 * All menu messages from these groups should be routed to the server.
1619 * RETURNS: TRUE if the popup menu is part of a server owned group
1620 * FALSE if the popup menu is part of a container owned group
1622 static BOOL
OLEMenu_SetIsServerMenu( HMENU hmenu
, OleMenuDescriptor
*pOleMenuDescriptor
)
1624 UINT nPos
= 0, nWidth
, i
;
1626 pOleMenuDescriptor
->bIsServerItem
= FALSE
;
1628 /* Don't bother searching if the popup is the combined menu itself */
1629 if ( hmenu
== pOleMenuDescriptor
->hmenuCombined
)
1632 /* Find the menu item index in the shared OLE menu that this item belongs to */
1633 if ( !OLEMenu_FindMainMenuIndex( pOleMenuDescriptor
->hmenuCombined
, hmenu
, &nPos
) )
1636 /* The group widths array has counts for the number of elements
1637 * in the groups File, Edit, Container, Object, Window, Help.
1638 * The Edit, Object & Help groups belong to the server object
1639 * and the other three belong to the container.
1640 * Loop through the group widths and locate the group we are a member of.
1642 for ( i
= 0, nWidth
= 0; i
< 6; i
++ )
1644 nWidth
+= pOleMenuDescriptor
->mgw
.width
[i
];
1645 if ( nPos
< nWidth
)
1647 /* Odd elements are server menu widths */
1648 pOleMenuDescriptor
->bIsServerItem
= i
%2;
1653 return pOleMenuDescriptor
->bIsServerItem
;
1656 /*************************************************************************
1657 * OLEMenu_CallWndProc
1658 * Thread scope WH_CALLWNDPROC hook proc filter function (callback)
1659 * This is invoked from a message hook installed in OleSetMenuDescriptor.
1661 static LRESULT CALLBACK
OLEMenu_CallWndProc(INT code
, WPARAM wParam
, LPARAM lParam
)
1664 HOLEMENU hOleMenu
= 0;
1665 OleMenuDescriptor
*pOleMenuDescriptor
= NULL
;
1666 OleMenuHookItem
*pHookItem
= NULL
;
1669 TRACE("%i, %04lx, %08lx\n", code
, wParam
, lParam
);
1671 /* Check if we're being asked to process the message */
1672 if ( HC_ACTION
!= code
)
1675 /* Retrieve the current message being dispatched from lParam */
1676 pMsg
= (LPCWPSTRUCT
)lParam
;
1678 /* Check if the message is destined for a window we are interested in:
1679 * If the window has an OLEMenu property we may need to dispatch
1680 * the menu message to its active objects window instead. */
1682 hOleMenu
= GetPropW( pMsg
->hwnd
, prop_olemenuW
);
1686 /* Get the menu descriptor */
1687 pOleMenuDescriptor
= GlobalLock( hOleMenu
);
1688 if ( !pOleMenuDescriptor
) /* Bad descriptor! */
1691 /* Process menu messages */
1692 switch( pMsg
->message
)
1696 /* Reset the menu descriptor state */
1697 pOleMenuDescriptor
->bIsServerItem
= FALSE
;
1699 /* Send this message to the server as well */
1700 SendMessageW( pOleMenuDescriptor
->hwndActiveObject
,
1701 pMsg
->message
, pMsg
->wParam
, pMsg
->lParam
);
1705 case WM_INITMENUPOPUP
:
1707 /* Save the state for whether this is a server owned menu */
1708 OLEMenu_SetIsServerMenu( (HMENU
)pMsg
->wParam
, pOleMenuDescriptor
);
1714 fuFlags
= HIWORD(pMsg
->wParam
); /* Get flags */
1715 if ( fuFlags
& MF_SYSMENU
)
1718 /* Save the state for whether this is a server owned popup menu */
1719 else if ( fuFlags
& MF_POPUP
)
1720 OLEMenu_SetIsServerMenu( (HMENU
)pMsg
->lParam
, pOleMenuDescriptor
);
1727 LPDRAWITEMSTRUCT lpdis
= (LPDRAWITEMSTRUCT
) pMsg
->lParam
;
1728 if ( pMsg
->wParam
!= 0 || lpdis
->CtlType
!= ODT_MENU
)
1729 goto NEXTHOOK
; /* Not a menu message */
1738 /* If the message was for the server dispatch it accordingly */
1739 if ( pOleMenuDescriptor
->bIsServerItem
)
1741 SendMessageW( pOleMenuDescriptor
->hwndActiveObject
,
1742 pMsg
->message
, pMsg
->wParam
, pMsg
->lParam
);
1746 if ( pOleMenuDescriptor
)
1747 GlobalUnlock( hOleMenu
);
1749 /* Lookup the hook item for the current thread */
1750 if ( !( pHookItem
= OLEMenu_IsHookInstalled( GetCurrentThreadId() ) ) )
1752 /* This should never fail!! */
1753 WARN("could not retrieve hHook for current thread!\n" );
1757 /* Pass on the message to the next hooker */
1758 return CallNextHookEx( pHookItem
->CallWndProc_hHook
, code
, wParam
, lParam
);
1761 /*************************************************************************
1762 * OLEMenu_GetMsgProc
1763 * Thread scope WH_GETMESSAGE hook proc filter function (callback)
1764 * This is invoked from a message hook installed in OleSetMenuDescriptor.
1766 static LRESULT CALLBACK
OLEMenu_GetMsgProc(INT code
, WPARAM wParam
, LPARAM lParam
)
1769 HOLEMENU hOleMenu
= 0;
1770 OleMenuDescriptor
*pOleMenuDescriptor
= NULL
;
1771 OleMenuHookItem
*pHookItem
= NULL
;
1774 TRACE("%i, %04lx, %08lx\n", code
, wParam
, lParam
);
1776 /* Check if we're being asked to process a messages */
1777 if ( HC_ACTION
!= code
)
1780 /* Retrieve the current message being dispatched from lParam */
1781 pMsg
= (LPMSG
)lParam
;
1783 /* Check if the message is destined for a window we are interested in:
1784 * If the window has an OLEMenu property we may need to dispatch
1785 * the menu message to its active objects window instead. */
1787 hOleMenu
= GetPropW( pMsg
->hwnd
, prop_olemenuW
);
1791 /* Process menu messages */
1792 switch( pMsg
->message
)
1796 wCode
= HIWORD(pMsg
->wParam
); /* Get notification code */
1798 goto NEXTHOOK
; /* Not a menu message */
1805 /* Get the menu descriptor */
1806 pOleMenuDescriptor
= GlobalLock( hOleMenu
);
1807 if ( !pOleMenuDescriptor
) /* Bad descriptor! */
1810 /* If the message was for the server dispatch it accordingly */
1811 if ( pOleMenuDescriptor
->bIsServerItem
)
1813 /* Change the hWnd in the message to the active objects hWnd.
1814 * The message loop which reads this message will automatically
1815 * dispatch it to the embedded objects window. */
1816 pMsg
->hwnd
= pOleMenuDescriptor
->hwndActiveObject
;
1820 if ( pOleMenuDescriptor
)
1821 GlobalUnlock( hOleMenu
);
1823 /* Lookup the hook item for the current thread */
1824 if ( !( pHookItem
= OLEMenu_IsHookInstalled( GetCurrentThreadId() ) ) )
1826 /* This should never fail!! */
1827 WARN("could not retrieve hHook for current thread!\n" );
1831 /* Pass on the message to the next hooker */
1832 return CallNextHookEx( pHookItem
->GetMsg_hHook
, code
, wParam
, lParam
);
1835 /***********************************************************************
1836 * OleCreateMenuDescriptor [OLE32.@]
1837 * Creates an OLE menu descriptor for OLE to use when dispatching
1838 * menu messages and commands.
1841 * hmenuCombined - Handle to the objects combined menu
1842 * lpMenuWidths - Pointer to array of 6 LONG's indicating menus per group
1845 HOLEMENU WINAPI
OleCreateMenuDescriptor(
1846 HMENU hmenuCombined
,
1847 LPOLEMENUGROUPWIDTHS lpMenuWidths
)
1850 OleMenuDescriptor
*pOleMenuDescriptor
;
1853 if ( !hmenuCombined
|| !lpMenuWidths
)
1856 /* Create an OLE menu descriptor */
1857 if ( !(hOleMenu
= GlobalAlloc(GMEM_MOVEABLE
| GMEM_ZEROINIT
,
1858 sizeof(OleMenuDescriptor
) ) ) )
1861 pOleMenuDescriptor
= GlobalLock( hOleMenu
);
1862 if ( !pOleMenuDescriptor
)
1865 /* Initialize menu group widths and hmenu */
1866 for ( i
= 0; i
< 6; i
++ )
1867 pOleMenuDescriptor
->mgw
.width
[i
] = lpMenuWidths
->width
[i
];
1869 pOleMenuDescriptor
->hmenuCombined
= hmenuCombined
;
1870 pOleMenuDescriptor
->bIsServerItem
= FALSE
;
1871 GlobalUnlock( hOleMenu
);
1876 /***********************************************************************
1877 * OleDestroyMenuDescriptor [OLE32.@]
1878 * Destroy the shared menu descriptor
1880 HRESULT WINAPI
OleDestroyMenuDescriptor(
1881 HOLEMENU hmenuDescriptor
)
1883 if ( hmenuDescriptor
)
1884 GlobalFree( hmenuDescriptor
);
1888 /***********************************************************************
1889 * OleSetMenuDescriptor [OLE32.@]
1890 * Installs or removes OLE dispatching code for the containers frame window.
1893 * hOleMenu Handle to composite menu descriptor
1894 * hwndFrame Handle to containers frame window
1895 * hwndActiveObject Handle to objects in-place activation window
1896 * lpFrame Pointer to IOleInPlaceFrame on containers window
1897 * lpActiveObject Pointer to IOleInPlaceActiveObject on active in-place object
1900 * S_OK - menu installed correctly
1901 * E_FAIL, E_INVALIDARG, E_UNEXPECTED - failure
1904 * The lpFrame and lpActiveObject parameters are currently ignored
1905 * OLE should install context sensitive help F1 filtering for the app when
1906 * these are non null.
1908 HRESULT WINAPI
OleSetMenuDescriptor(
1911 HWND hwndActiveObject
,
1912 LPOLEINPLACEFRAME lpFrame
,
1913 LPOLEINPLACEACTIVEOBJECT lpActiveObject
)
1915 OleMenuDescriptor
*pOleMenuDescriptor
= NULL
;
1918 if ( !hwndFrame
|| (hOleMenu
&& !hwndActiveObject
) )
1919 return E_INVALIDARG
;
1921 if ( lpFrame
|| lpActiveObject
)
1923 FIXME("(%p, %p, %p, %p, %p), Context sensitive help filtering not implemented!\n",
1931 /* Set up a message hook to intercept the containers frame window messages.
1932 * The message filter is responsible for dispatching menu messages from the
1933 * shared menu which are intended for the object.
1936 if ( hOleMenu
) /* Want to install dispatching code */
1938 /* If OLEMenu hooks are already installed for this thread, fail
1939 * Note: This effectively means that OleSetMenuDescriptor cannot
1940 * be called twice in succession on the same frame window
1941 * without first calling it with a null hOleMenu to uninstall
1943 if ( OLEMenu_IsHookInstalled( GetCurrentThreadId() ) )
1946 /* Get the menu descriptor */
1947 pOleMenuDescriptor
= GlobalLock( hOleMenu
);
1948 if ( !pOleMenuDescriptor
)
1949 return E_UNEXPECTED
;
1951 /* Update the menu descriptor */
1952 pOleMenuDescriptor
->hwndFrame
= hwndFrame
;
1953 pOleMenuDescriptor
->hwndActiveObject
= hwndActiveObject
;
1955 GlobalUnlock( hOleMenu
);
1956 pOleMenuDescriptor
= NULL
;
1958 /* Add a menu descriptor windows property to the frame window */
1959 SetPropW( hwndFrame
, prop_olemenuW
, hOleMenu
);
1961 /* Install thread scope message hooks for WH_GETMESSAGE and WH_CALLWNDPROC */
1962 if ( !OLEMenu_InstallHooks( GetCurrentThreadId() ) )
1965 else /* Want to uninstall dispatching code */
1967 /* Uninstall the hooks */
1968 if ( !OLEMenu_UnInstallHooks( GetCurrentThreadId() ) )
1971 /* Remove the menu descriptor property from the frame window */
1972 RemovePropW( hwndFrame
, prop_olemenuW
);
1978 /******************************************************************************
1979 * IsAccelerator [OLE32.@]
1980 * Mostly copied from controls/menu.c TranslateAccelerator implementation
1982 BOOL WINAPI
IsAccelerator(HACCEL hAccel
, int cAccelEntries
, LPMSG lpMsg
, WORD
* lpwCmd
)
1987 if(!lpMsg
) return FALSE
;
1990 WARN_(accel
)("NULL accel handle\n");
1993 if((lpMsg
->message
!= WM_KEYDOWN
&&
1994 lpMsg
->message
!= WM_SYSKEYDOWN
&&
1995 lpMsg
->message
!= WM_SYSCHAR
&&
1996 lpMsg
->message
!= WM_CHAR
)) return FALSE
;
1997 lpAccelTbl
= HeapAlloc(GetProcessHeap(), 0, cAccelEntries
* sizeof(ACCEL
));
1998 if (NULL
== lpAccelTbl
)
2002 if (CopyAcceleratorTableW(hAccel
, lpAccelTbl
, cAccelEntries
) != cAccelEntries
)
2004 WARN_(accel
)("CopyAcceleratorTableW failed\n");
2005 HeapFree(GetProcessHeap(), 0, lpAccelTbl
);
2009 TRACE_(accel
)("hAccel=%p, cAccelEntries=%d,"
2010 "msg->hwnd=%p, msg->message=%04x, wParam=%08lx, lParam=%08lx\n",
2011 hAccel
, cAccelEntries
,
2012 lpMsg
->hwnd
, lpMsg
->message
, lpMsg
->wParam
, lpMsg
->lParam
);
2013 for(i
= 0; i
< cAccelEntries
; i
++)
2015 if(lpAccelTbl
[i
].key
!= lpMsg
->wParam
)
2018 if(lpMsg
->message
== WM_CHAR
)
2020 if(!(lpAccelTbl
[i
].fVirt
& FALT
) && !(lpAccelTbl
[i
].fVirt
& FVIRTKEY
))
2022 TRACE_(accel
)("found accel for WM_CHAR: ('%c')\n", LOWORD(lpMsg
->wParam
) & 0xff);
2028 if(lpAccelTbl
[i
].fVirt
& FVIRTKEY
)
2031 TRACE_(accel
)("found accel for virt_key %04lx (scan %04x)\n",
2032 lpMsg
->wParam
, HIWORD(lpMsg
->lParam
) & 0xff);
2033 if(GetKeyState(VK_SHIFT
) & 0x8000) mask
|= FSHIFT
;
2034 if(GetKeyState(VK_CONTROL
) & 0x8000) mask
|= FCONTROL
;
2035 if(GetKeyState(VK_MENU
) & 0x8000) mask
|= FALT
;
2036 if(mask
== (lpAccelTbl
[i
].fVirt
& (FSHIFT
| FCONTROL
| FALT
))) goto found
;
2037 TRACE_(accel
)("incorrect SHIFT/CTRL/ALT-state\n");
2041 if(!(lpMsg
->lParam
& 0x01000000)) /* no special_key */
2043 if((lpAccelTbl
[i
].fVirt
& FALT
) && (lpMsg
->lParam
& 0x20000000))
2044 { /* ^^ ALT pressed */
2045 TRACE_(accel
)("found accel for Alt-%c\n", LOWORD(lpMsg
->wParam
) & 0xff);
2053 WARN_(accel
)("couldn't translate accelerator key\n");
2054 HeapFree(GetProcessHeap(), 0, lpAccelTbl
);
2058 if(lpwCmd
) *lpwCmd
= lpAccelTbl
[i
].cmd
;
2059 HeapFree(GetProcessHeap(), 0, lpAccelTbl
);
2063 /***********************************************************************
2064 * ReleaseStgMedium [OLE32.@]
2066 void WINAPI
ReleaseStgMedium(
2069 switch (pmedium
->tymed
)
2073 if ( (pmedium
->pUnkForRelease
==0) &&
2074 (pmedium
->u
.hGlobal
!=0) )
2075 GlobalFree(pmedium
->u
.hGlobal
);
2080 if (pmedium
->u
.lpszFileName
!=0)
2082 if (pmedium
->pUnkForRelease
==0)
2084 DeleteFileW(pmedium
->u
.lpszFileName
);
2087 CoTaskMemFree(pmedium
->u
.lpszFileName
);
2093 if (pmedium
->u
.pstm
!=0)
2095 IStream_Release(pmedium
->u
.pstm
);
2099 case TYMED_ISTORAGE
:
2101 if (pmedium
->u
.pstg
!=0)
2103 IStorage_Release(pmedium
->u
.pstg
);
2109 if ( (pmedium
->pUnkForRelease
==0) &&
2110 (pmedium
->u
.hBitmap
!=0) )
2111 DeleteObject(pmedium
->u
.hBitmap
);
2116 if ( (pmedium
->pUnkForRelease
==0) &&
2117 (pmedium
->u
.hMetaFilePict
!=0) )
2119 LPMETAFILEPICT pMP
= GlobalLock(pmedium
->u
.hMetaFilePict
);
2120 DeleteMetaFile(pMP
->hMF
);
2121 GlobalUnlock(pmedium
->u
.hMetaFilePict
);
2122 GlobalFree(pmedium
->u
.hMetaFilePict
);
2128 if ( (pmedium
->pUnkForRelease
==0) &&
2129 (pmedium
->u
.hEnhMetaFile
!=0) )
2131 DeleteEnhMetaFile(pmedium
->u
.hEnhMetaFile
);
2139 pmedium
->tymed
=TYMED_NULL
;
2142 * After cleaning up, the unknown is released
2144 if (pmedium
->pUnkForRelease
!=0)
2146 IUnknown_Release(pmedium
->pUnkForRelease
);
2147 pmedium
->pUnkForRelease
= 0;
2152 * OLEDD_Initialize()
2154 * Initializes the OLE drag and drop data structures.
2156 static void OLEDD_Initialize(void)
2160 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
2161 wndClass
.style
= CS_GLOBALCLASS
;
2162 wndClass
.lpfnWndProc
= OLEDD_DragTrackerWindowProc
;
2163 wndClass
.cbClsExtra
= 0;
2164 wndClass
.cbWndExtra
= sizeof(TrackerWindowInfo
*);
2165 wndClass
.hCursor
= 0;
2166 wndClass
.hbrBackground
= 0;
2167 wndClass
.lpszClassName
= OLEDD_DRAGTRACKERCLASS
;
2169 RegisterClassW (&wndClass
);
2173 * OLEDD_DragTrackerWindowProc()
2175 * This method is the WindowProcedure of the drag n drop tracking
2176 * window. During a drag n Drop operation, an invisible window is created
2177 * to receive the user input and act upon it. This procedure is in charge
2181 #define DRAG_TIMER_ID 1
2183 static LRESULT WINAPI
OLEDD_DragTrackerWindowProc(
2193 LPCREATESTRUCTA createStruct
= (LPCREATESTRUCTA
)lParam
;
2195 SetWindowLongPtrW(hwnd
, 0, (LONG_PTR
)createStruct
->lpCreateParams
);
2196 SetTimer(hwnd
, DRAG_TIMER_ID
, 50, NULL
);
2205 case WM_LBUTTONDOWN
:
2206 case WM_MBUTTONDOWN
:
2207 case WM_RBUTTONDOWN
:
2209 TrackerWindowInfo
*trackerInfo
= (TrackerWindowInfo
*)GetWindowLongPtrA(hwnd
, 0);
2210 if (trackerInfo
->trackingDone
) break;
2211 OLEDD_TrackStateChange(trackerInfo
);
2216 KillTimer(hwnd
, DRAG_TIMER_ID
);
2222 * This is a window proc after all. Let's call the default.
2224 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2228 * OLEDD_TrackStateChange()
2230 * This method is invoked while a drag and drop operation is in effect.
2233 * trackerInfo - Pointer to the structure identifying the
2234 * drag & drop operation that is currently
2237 static void OLEDD_TrackStateChange(TrackerWindowInfo
* trackerInfo
)
2239 HWND hwndNewTarget
= 0;
2244 * Get the handle of the window under the mouse
2246 pt
.x
= trackerInfo
->curMousePos
.x
;
2247 pt
.y
= trackerInfo
->curMousePos
.y
;
2248 hwndNewTarget
= WindowFromPoint(pt
);
2250 trackerInfo
->returnValue
= IDropSource_QueryContinueDrag(trackerInfo
->dropSource
,
2251 trackerInfo
->escPressed
,
2252 trackerInfo
->dwKeyState
);
2255 * Every time, we re-initialize the effects passed to the
2256 * IDropTarget to the effects allowed by the source.
2258 *trackerInfo
->pdwEffect
= trackerInfo
->dwOKEffect
;
2261 * If we are hovering over the same target as before, send the
2262 * DragOver notification
2264 if ( (trackerInfo
->curDragTarget
!= 0) &&
2265 (trackerInfo
->curTargetHWND
== hwndNewTarget
) )
2267 IDropTarget_DragOver(trackerInfo
->curDragTarget
,
2268 trackerInfo
->dwKeyState
,
2269 trackerInfo
->curMousePos
,
2270 trackerInfo
->pdwEffect
);
2271 *trackerInfo
->pdwEffect
&= trackerInfo
->dwOKEffect
;
2276 * If we changed window, we have to notify our old target and check for
2279 if (trackerInfo
->curDragTarget
)
2280 IDropTarget_DragLeave(trackerInfo
->curDragTarget
);
2283 * Make sure we're hovering over a window.
2288 * Find-out if there is a drag target under the mouse
2290 HWND next_target_wnd
= hwndNewTarget
;
2292 trackerInfo
->curTargetHWND
= hwndNewTarget
;
2294 while (next_target_wnd
&& !is_droptarget(next_target_wnd
))
2295 next_target_wnd
= GetParent(next_target_wnd
);
2297 if (next_target_wnd
) hwndNewTarget
= next_target_wnd
;
2299 trackerInfo
->curDragTargetHWND
= hwndNewTarget
;
2300 if(trackerInfo
->curDragTarget
) IDropTarget_Release(trackerInfo
->curDragTarget
);
2301 trackerInfo
->curDragTarget
= get_droptarget_pointer(hwndNewTarget
);
2304 * If there is, notify it that we just dragged-in
2306 if (trackerInfo
->curDragTarget
)
2308 hr
= IDropTarget_DragEnter(trackerInfo
->curDragTarget
,
2309 trackerInfo
->dataObject
,
2310 trackerInfo
->dwKeyState
,
2311 trackerInfo
->curMousePos
,
2312 trackerInfo
->pdwEffect
);
2313 *trackerInfo
->pdwEffect
&= trackerInfo
->dwOKEffect
;
2315 /* failed DragEnter() means invalid target */
2318 trackerInfo
->curDragTargetHWND
= 0;
2319 trackerInfo
->curTargetHWND
= 0;
2320 IDropTarget_Release(trackerInfo
->curDragTarget
);
2321 trackerInfo
->curDragTarget
= 0;
2328 * The mouse is not over a window so we don't track anything.
2330 trackerInfo
->curDragTargetHWND
= 0;
2331 trackerInfo
->curTargetHWND
= 0;
2332 if(trackerInfo
->curDragTarget
) IDropTarget_Release(trackerInfo
->curDragTarget
);
2333 trackerInfo
->curDragTarget
= 0;
2338 * Now that we have done that, we have to tell the source to give
2339 * us feedback on the work being done by the target. If we don't
2340 * have a target, simulate no effect.
2342 if (trackerInfo
->curDragTarget
==0)
2344 *trackerInfo
->pdwEffect
= DROPEFFECT_NONE
;
2347 hr
= IDropSource_GiveFeedback(trackerInfo
->dropSource
,
2348 *trackerInfo
->pdwEffect
);
2351 * When we ask for feedback from the drop source, sometimes it will
2352 * do all the necessary work and sometimes it will not handle it
2353 * when that's the case, we must display the standard drag and drop
2356 if (hr
== DRAGDROP_S_USEDEFAULTCURSORS
)
2360 if (*trackerInfo
->pdwEffect
& DROPEFFECT_MOVE
)
2362 hCur
= LoadCursorW(hProxyDll
, MAKEINTRESOURCEW(2));
2364 else if (*trackerInfo
->pdwEffect
& DROPEFFECT_COPY
)
2366 hCur
= LoadCursorW(hProxyDll
, MAKEINTRESOURCEW(3));
2368 else if (*trackerInfo
->pdwEffect
& DROPEFFECT_LINK
)
2370 hCur
= LoadCursorW(hProxyDll
, MAKEINTRESOURCEW(4));
2374 hCur
= LoadCursorW(hProxyDll
, MAKEINTRESOURCEW(1));
2381 * All the return valued will stop the operation except the S_OK
2384 if (trackerInfo
->returnValue
!=S_OK
)
2387 * Make sure the message loop in DoDragDrop stops
2389 trackerInfo
->trackingDone
= TRUE
;
2392 * Release the mouse in case the drop target decides to show a popup
2393 * or a menu or something.
2398 * If we end-up over a target, drop the object in the target or
2399 * inform the target that the operation was cancelled.
2401 if (trackerInfo
->curDragTarget
)
2403 switch (trackerInfo
->returnValue
)
2406 * If the source wants us to complete the operation, we tell
2407 * the drop target that we just dropped the object in it.
2409 case DRAGDROP_S_DROP
:
2410 if (*trackerInfo
->pdwEffect
!= DROPEFFECT_NONE
)
2412 hr
= IDropTarget_Drop(trackerInfo
->curDragTarget
, trackerInfo
->dataObject
,
2413 trackerInfo
->dwKeyState
, trackerInfo
->curMousePos
, trackerInfo
->pdwEffect
);
2415 trackerInfo
->returnValue
= hr
;
2418 IDropTarget_DragLeave(trackerInfo
->curDragTarget
);
2422 * If the source told us that we should cancel, fool the drop
2423 * target by telling it that the mouse left its window.
2424 * Also set the drop effect to "NONE" in case the application
2425 * ignores the result of DoDragDrop.
2427 case DRAGDROP_S_CANCEL
:
2428 IDropTarget_DragLeave(trackerInfo
->curDragTarget
);
2429 *trackerInfo
->pdwEffect
= DROPEFFECT_NONE
;
2437 * OLEDD_GetButtonState()
2439 * This method will use the current state of the keyboard to build
2440 * a button state mask equivalent to the one passed in the
2441 * WM_MOUSEMOVE wParam.
2443 static DWORD
OLEDD_GetButtonState(void)
2445 BYTE keyboardState
[256];
2448 GetKeyboardState(keyboardState
);
2450 if ( (keyboardState
[VK_SHIFT
] & 0x80) !=0)
2451 keyMask
|= MK_SHIFT
;
2453 if ( (keyboardState
[VK_CONTROL
] & 0x80) !=0)
2454 keyMask
|= MK_CONTROL
;
2456 if ( (keyboardState
[VK_MENU
] & 0x80) !=0)
2459 if ( (keyboardState
[VK_LBUTTON
] & 0x80) !=0)
2460 keyMask
|= MK_LBUTTON
;
2462 if ( (keyboardState
[VK_RBUTTON
] & 0x80) !=0)
2463 keyMask
|= MK_RBUTTON
;
2465 if ( (keyboardState
[VK_MBUTTON
] & 0x80) !=0)
2466 keyMask
|= MK_MBUTTON
;
2472 * OLEDD_GetButtonState()
2474 * This method will read the default value of the registry key in
2475 * parameter and extract a DWORD value from it. The registry key value
2476 * can be in a string key or a DWORD key.
2479 * regKey - Key to read the default value from
2480 * pdwValue - Pointer to the location where the DWORD
2481 * value is returned. This value is not modified
2482 * if the value is not found.
2485 static void OLEUTL_ReadRegistryDWORDValue(
2490 DWORD cbData
= sizeof(buffer
);
2494 lres
= RegQueryValueExW(regKey
,
2501 if (lres
==ERROR_SUCCESS
)
2506 *pdwValue
= *(DWORD
*)buffer
;
2511 *pdwValue
= (DWORD
)strtoulW(buffer
, NULL
, 10);
2517 /******************************************************************************
2520 * The operation of this function is documented literally in the WinAPI
2521 * documentation to involve a QueryInterface for the IViewObject interface,
2522 * followed by a call to IViewObject::Draw.
2524 HRESULT WINAPI
OleDraw(
2531 IViewObject
*viewobject
;
2533 if (!pUnk
) return E_INVALIDARG
;
2535 hres
= IUnknown_QueryInterface(pUnk
,
2537 (void**)&viewobject
);
2538 if (SUCCEEDED(hres
))
2540 hres
= IViewObject_Draw(viewobject
, dwAspect
, -1, 0, 0, 0, hdcDraw
, (RECTL
*)rect
, 0, 0, 0);
2541 IViewObject_Release(viewobject
);
2545 return DV_E_NOIVIEWOBJECT
;
2548 /***********************************************************************
2549 * OleTranslateAccelerator [OLE32.@]
2551 HRESULT WINAPI
OleTranslateAccelerator (LPOLEINPLACEFRAME lpFrame
,
2552 LPOLEINPLACEFRAMEINFO lpFrameInfo
, LPMSG lpmsg
)
2556 TRACE("(%p,%p,%p)\n", lpFrame
, lpFrameInfo
, lpmsg
);
2558 if (IsAccelerator(lpFrameInfo
->haccel
,lpFrameInfo
->cAccelEntries
,lpmsg
,&wID
))
2559 return IOleInPlaceFrame_TranslateAccelerator(lpFrame
,lpmsg
,wID
);
2564 /******************************************************************************
2565 * OleCreate [OLE32.@]
2568 HRESULT WINAPI
OleCreate(
2572 LPFORMATETC pFormatEtc
,
2573 LPOLECLIENTSITE pClientSite
,
2578 IUnknown
* pUnk
= NULL
;
2579 IOleObject
*pOleObject
= NULL
;
2581 TRACE("(%s, %s, %d, %p, %p, %p, %p)\n", debugstr_guid(rclsid
),
2582 debugstr_guid(riid
), renderopt
, pFormatEtc
, pClientSite
, pStg
, ppvObj
);
2584 hres
= CoCreateInstance(rclsid
, 0, CLSCTX_INPROC_SERVER
|CLSCTX_INPROC_HANDLER
, riid
, (LPVOID
*)&pUnk
);
2586 if (SUCCEEDED(hres
))
2587 hres
= IStorage_SetClass(pStg
, rclsid
);
2589 if (pClientSite
&& SUCCEEDED(hres
))
2591 hres
= IUnknown_QueryInterface(pUnk
, &IID_IOleObject
, (LPVOID
*)&pOleObject
);
2592 if (SUCCEEDED(hres
))
2595 hres
= IOleObject_GetMiscStatus(pOleObject
, DVASPECT_CONTENT
, &dwStatus
);
2599 if (SUCCEEDED(hres
))
2601 IPersistStorage
* pPS
;
2602 if (SUCCEEDED((hres
= IUnknown_QueryInterface(pUnk
, &IID_IPersistStorage
, (LPVOID
*)&pPS
))))
2604 TRACE("trying to set stg %p\n", pStg
);
2605 hres
= IPersistStorage_InitNew(pPS
, pStg
);
2606 TRACE("-- result 0x%08x\n", hres
);
2607 IPersistStorage_Release(pPS
);
2611 if (pClientSite
&& SUCCEEDED(hres
))
2613 TRACE("trying to set clientsite %p\n", pClientSite
);
2614 hres
= IOleObject_SetClientSite(pOleObject
, pClientSite
);
2615 TRACE("-- result 0x%08x\n", hres
);
2619 IOleObject_Release(pOleObject
);
2621 if (((renderopt
== OLERENDER_DRAW
) || (renderopt
== OLERENDER_FORMAT
)) &&
2624 IRunnableObject
*pRunnable
;
2625 IOleCache
*pOleCache
;
2628 hres2
= IUnknown_QueryInterface(pUnk
, &IID_IRunnableObject
, (void **)&pRunnable
);
2629 if (SUCCEEDED(hres2
))
2631 hres
= IRunnableObject_Run(pRunnable
, NULL
);
2632 IRunnableObject_Release(pRunnable
);
2635 if (SUCCEEDED(hres
))
2637 hres2
= IUnknown_QueryInterface(pUnk
, &IID_IOleCache
, (void **)&pOleCache
);
2638 if (SUCCEEDED(hres2
))
2641 if (renderopt
== OLERENDER_DRAW
&& !pFormatEtc
) {
2645 pfe
.dwAspect
= DVASPECT_CONTENT
;
2647 pfe
.tymed
= TYMED_NULL
;
2648 hres
= IOleCache_Cache(pOleCache
, &pfe
, ADVF_PRIMEFIRST
, &dwConnection
);
2651 hres
= IOleCache_Cache(pOleCache
, pFormatEtc
, ADVF_PRIMEFIRST
, &dwConnection
);
2652 IOleCache_Release(pOleCache
);
2657 if (FAILED(hres
) && pUnk
)
2659 IUnknown_Release(pUnk
);
2665 TRACE("-- %p\n", pUnk
);
2669 /******************************************************************************
2670 * OleGetAutoConvert [OLE32.@]
2672 HRESULT WINAPI
OleGetAutoConvert(REFCLSID clsidOld
, LPCLSID pClsidNew
)
2674 static const WCHAR wszAutoConvertTo
[] = {'A','u','t','o','C','o','n','v','e','r','t','T','o',0};
2676 WCHAR buf
[CHARS_IN_GUID
];
2680 res
= COM_OpenKeyForCLSID(clsidOld
, wszAutoConvertTo
, KEY_READ
, &hkey
);
2685 if (RegQueryValueW(hkey
, NULL
, buf
, &len
))
2687 res
= REGDB_E_KEYMISSING
;
2690 res
= CLSIDFromString(buf
, pClsidNew
);
2692 if (hkey
) RegCloseKey(hkey
);
2696 /******************************************************************************
2697 * OleSetAutoConvert [OLE32.@]
2699 HRESULT WINAPI
OleSetAutoConvert(REFCLSID clsidOld
, REFCLSID clsidNew
)
2701 static const WCHAR wszAutoConvertTo
[] = {'A','u','t','o','C','o','n','v','e','r','t','T','o',0};
2703 WCHAR szClsidNew
[CHARS_IN_GUID
];
2706 TRACE("(%s,%s)\n", debugstr_guid(clsidOld
), debugstr_guid(clsidNew
));
2708 res
= COM_OpenKeyForCLSID(clsidOld
, NULL
, KEY_READ
| KEY_WRITE
, &hkey
);
2711 StringFromGUID2(clsidNew
, szClsidNew
, CHARS_IN_GUID
);
2712 if (RegSetValueW(hkey
, wszAutoConvertTo
, REG_SZ
, szClsidNew
, (strlenW(szClsidNew
)+1) * sizeof(WCHAR
)))
2714 res
= REGDB_E_WRITEREGDB
;
2719 if (hkey
) RegCloseKey(hkey
);
2723 /******************************************************************************
2724 * OleDoAutoConvert [OLE32.@]
2726 HRESULT WINAPI
OleDoAutoConvert(LPSTORAGE pStg
, LPCLSID pClsidNew
)
2728 WCHAR
*user_type_old
, *user_type_new
;
2734 TRACE("(%p, %p)\n", pStg
, pClsidNew
);
2736 *pClsidNew
= CLSID_NULL
;
2738 return E_INVALIDARG
;
2739 hr
= IStorage_Stat(pStg
, &stat
, STATFLAG_NONAME
);
2743 *pClsidNew
= stat
.clsid
;
2744 hr
= OleGetAutoConvert(&stat
.clsid
, &clsid
);
2748 hr
= IStorage_SetClass(pStg
, &clsid
);
2752 hr
= ReadFmtUserTypeStg(pStg
, &cf
, &user_type_old
);
2755 user_type_new
= NULL
;
2758 hr
= OleRegGetUserType(&clsid
, USERCLASSTYPE_FULL
, &user_type_new
);
2760 user_type_new
= NULL
;
2762 hr
= WriteFmtUserTypeStg(pStg
, cf
, user_type_new
);
2763 CoTaskMemFree(user_type_new
);
2766 CoTaskMemFree(user_type_old
);
2767 IStorage_SetClass(pStg
, &stat
.clsid
);
2771 hr
= SetConvertStg(pStg
, TRUE
);
2774 WriteFmtUserTypeStg(pStg
, cf
, user_type_old
);
2775 IStorage_SetClass(pStg
, &stat
.clsid
);
2779 CoTaskMemFree(user_type_old
);
2783 /******************************************************************************
2784 * OleIsRunning [OLE32.@]
2786 BOOL WINAPI
OleIsRunning(LPOLEOBJECT object
)
2788 IRunnableObject
*pRunnable
;
2792 TRACE("(%p)\n", object
);
2794 if (!object
) return FALSE
;
2796 hr
= IOleObject_QueryInterface(object
, &IID_IRunnableObject
, (void **)&pRunnable
);
2799 running
= IRunnableObject_IsRunning(pRunnable
);
2800 IRunnableObject_Release(pRunnable
);
2804 /***********************************************************************
2805 * OleNoteObjectVisible [OLE32.@]
2807 HRESULT WINAPI
OleNoteObjectVisible(LPUNKNOWN pUnknown
, BOOL bVisible
)
2809 TRACE("(%p, %s)\n", pUnknown
, bVisible
? "TRUE" : "FALSE");
2810 return CoLockObjectExternal(pUnknown
, bVisible
, TRUE
);
2814 /***********************************************************************
2815 * OLE_FreeClipDataArray [internal]
2818 * frees the data associated with an array of CLIPDATAs
2820 static void OLE_FreeClipDataArray(ULONG count
, CLIPDATA
* pClipDataArray
)
2823 for (i
= 0; i
< count
; i
++)
2824 if (pClipDataArray
[i
].pClipData
)
2825 CoTaskMemFree(pClipDataArray
[i
].pClipData
);
2828 /***********************************************************************
2829 * PropSysAllocString [OLE32.@]
2831 * Forward to oleaut32.
2833 BSTR WINAPI
PropSysAllocString(LPCOLESTR str
)
2835 return SysAllocString(str
);
2838 /***********************************************************************
2839 * PropSysFreeString [OLE32.@]
2841 * Forward to oleaut32.
2843 void WINAPI
PropSysFreeString(LPOLESTR str
)
2848 /******************************************************************************
2849 * Check if a PROPVARIANT's type is valid.
2851 static inline HRESULT
PROPVARIANT_ValidateType(VARTYPE vt
)
2883 case VT_STREAMED_OBJECT
:
2884 case VT_STORED_OBJECT
:
2885 case VT_BLOB_OBJECT
:
2888 case VT_I1
|VT_VECTOR
:
2889 case VT_I2
|VT_VECTOR
:
2890 case VT_I4
|VT_VECTOR
:
2891 case VT_I8
|VT_VECTOR
:
2892 case VT_R4
|VT_VECTOR
:
2893 case VT_R8
|VT_VECTOR
:
2894 case VT_CY
|VT_VECTOR
:
2895 case VT_DATE
|VT_VECTOR
:
2896 case VT_BSTR
|VT_VECTOR
:
2897 case VT_ERROR
|VT_VECTOR
:
2898 case VT_BOOL
|VT_VECTOR
:
2899 case VT_VARIANT
|VT_VECTOR
:
2900 case VT_UI1
|VT_VECTOR
:
2901 case VT_UI2
|VT_VECTOR
:
2902 case VT_UI4
|VT_VECTOR
:
2903 case VT_UI8
|VT_VECTOR
:
2904 case VT_LPSTR
|VT_VECTOR
:
2905 case VT_LPWSTR
|VT_VECTOR
:
2906 case VT_FILETIME
|VT_VECTOR
:
2907 case VT_CF
|VT_VECTOR
:
2908 case VT_CLSID
|VT_VECTOR
:
2911 WARN("Bad type %d\n", vt
);
2912 return STG_E_INVALIDPARAMETER
;
2915 /***********************************************************************
2916 * PropVariantClear [OLE32.@]
2918 HRESULT WINAPI
PropVariantClear(PROPVARIANT
* pvar
) /* [in/out] */
2922 TRACE("(%p)\n", pvar
);
2927 hr
= PROPVARIANT_ValidateType(pvar
->vt
);
2930 memset(pvar
, 0, sizeof(*pvar
));
2960 case VT_STREAMED_OBJECT
:
2962 case VT_STORED_OBJECT
:
2963 if (pvar
->u
.pStream
)
2964 IStream_Release(pvar
->u
.pStream
);
2969 /* pick an arbitrary typed pointer - we don't care about the type
2970 * as we are just freeing it */
2971 CoTaskMemFree(pvar
->u
.puuid
);
2974 case VT_BLOB_OBJECT
:
2975 CoTaskMemFree(pvar
->u
.blob
.pBlobData
);
2978 PropSysFreeString(pvar
->u
.bstrVal
);
2981 if (pvar
->u
.pclipdata
)
2983 OLE_FreeClipDataArray(1, pvar
->u
.pclipdata
);
2984 CoTaskMemFree(pvar
->u
.pclipdata
);
2988 if (pvar
->vt
& VT_VECTOR
)
2992 switch (pvar
->vt
& ~VT_VECTOR
)
2995 FreePropVariantArray(pvar
->u
.capropvar
.cElems
, pvar
->u
.capropvar
.pElems
);
2998 OLE_FreeClipDataArray(pvar
->u
.caclipdata
.cElems
, pvar
->u
.caclipdata
.pElems
);
3001 for (i
= 0; i
< pvar
->u
.cabstr
.cElems
; i
++)
3002 PropSysFreeString(pvar
->u
.cabstr
.pElems
[i
]);
3005 for (i
= 0; i
< pvar
->u
.calpstr
.cElems
; i
++)
3006 CoTaskMemFree(pvar
->u
.calpstr
.pElems
[i
]);
3009 for (i
= 0; i
< pvar
->u
.calpwstr
.cElems
; i
++)
3010 CoTaskMemFree(pvar
->u
.calpwstr
.pElems
[i
]);
3013 if (pvar
->vt
& ~VT_VECTOR
)
3015 /* pick an arbitrary VT_VECTOR structure - they all have the same
3017 CoTaskMemFree(pvar
->u
.capropvar
.pElems
);
3022 WARN("Invalid/unsupported type %d\n", pvar
->vt
);
3023 hr
= STG_E_INVALIDPARAMETER
;
3027 memset(pvar
, 0, sizeof(*pvar
));
3031 /***********************************************************************
3032 * PropVariantCopy [OLE32.@]
3034 HRESULT WINAPI
PropVariantCopy(PROPVARIANT
*pvarDest
, /* [out] */
3035 const PROPVARIANT
*pvarSrc
) /* [in] */
3040 TRACE("(%p, %p vt %04x)\n", pvarDest
, pvarSrc
, pvarSrc
->vt
);
3042 hr
= PROPVARIANT_ValidateType(pvarSrc
->vt
);
3046 /* this will deal with most cases */
3047 *pvarDest
= *pvarSrc
;
3075 case VT_STREAMED_OBJECT
:
3077 case VT_STORED_OBJECT
:
3078 if (pvarDest
->u
.pStream
)
3079 IStream_AddRef(pvarDest
->u
.pStream
);
3082 pvarDest
->u
.puuid
= CoTaskMemAlloc(sizeof(CLSID
));
3083 *pvarDest
->u
.puuid
= *pvarSrc
->u
.puuid
;
3086 if (pvarSrc
->u
.pszVal
)
3088 len
= strlen(pvarSrc
->u
.pszVal
);
3089 pvarDest
->u
.pszVal
= CoTaskMemAlloc((len
+1)*sizeof(CHAR
));
3090 CopyMemory(pvarDest
->u
.pszVal
, pvarSrc
->u
.pszVal
, (len
+1)*sizeof(CHAR
));
3094 if (pvarSrc
->u
.pwszVal
)
3096 len
= lstrlenW(pvarSrc
->u
.pwszVal
);
3097 pvarDest
->u
.pwszVal
= CoTaskMemAlloc((len
+1)*sizeof(WCHAR
));
3098 CopyMemory(pvarDest
->u
.pwszVal
, pvarSrc
->u
.pwszVal
, (len
+1)*sizeof(WCHAR
));
3102 case VT_BLOB_OBJECT
:
3103 if (pvarSrc
->u
.blob
.pBlobData
)
3105 len
= pvarSrc
->u
.blob
.cbSize
;
3106 pvarDest
->u
.blob
.pBlobData
= CoTaskMemAlloc(len
);
3107 CopyMemory(pvarDest
->u
.blob
.pBlobData
, pvarSrc
->u
.blob
.pBlobData
, len
);
3111 pvarDest
->u
.bstrVal
= PropSysAllocString(pvarSrc
->u
.bstrVal
);
3114 if (pvarSrc
->u
.pclipdata
)
3116 len
= pvarSrc
->u
.pclipdata
->cbSize
- sizeof(pvarSrc
->u
.pclipdata
->ulClipFmt
);
3117 pvarDest
->u
.pclipdata
= CoTaskMemAlloc(sizeof (CLIPDATA
));
3118 pvarDest
->u
.pclipdata
->cbSize
= pvarSrc
->u
.pclipdata
->cbSize
;
3119 pvarDest
->u
.pclipdata
->ulClipFmt
= pvarSrc
->u
.pclipdata
->ulClipFmt
;
3120 pvarDest
->u
.pclipdata
->pClipData
= CoTaskMemAlloc(len
);
3121 CopyMemory(pvarDest
->u
.pclipdata
->pClipData
, pvarSrc
->u
.pclipdata
->pClipData
, len
);
3125 if (pvarSrc
->vt
& VT_VECTOR
)
3130 switch(pvarSrc
->vt
& ~VT_VECTOR
)
3132 case VT_I1
: elemSize
= sizeof(pvarSrc
->u
.cVal
); break;
3133 case VT_UI1
: elemSize
= sizeof(pvarSrc
->u
.bVal
); break;
3134 case VT_I2
: elemSize
= sizeof(pvarSrc
->u
.iVal
); break;
3135 case VT_UI2
: elemSize
= sizeof(pvarSrc
->u
.uiVal
); break;
3136 case VT_BOOL
: elemSize
= sizeof(pvarSrc
->u
.boolVal
); break;
3137 case VT_I4
: elemSize
= sizeof(pvarSrc
->u
.lVal
); break;
3138 case VT_UI4
: elemSize
= sizeof(pvarSrc
->u
.ulVal
); break;
3139 case VT_R4
: elemSize
= sizeof(pvarSrc
->u
.fltVal
); break;
3140 case VT_R8
: elemSize
= sizeof(pvarSrc
->u
.dblVal
); break;
3141 case VT_ERROR
: elemSize
= sizeof(pvarSrc
->u
.scode
); break;
3142 case VT_I8
: elemSize
= sizeof(pvarSrc
->u
.hVal
); break;
3143 case VT_UI8
: elemSize
= sizeof(pvarSrc
->u
.uhVal
); break;
3144 case VT_CY
: elemSize
= sizeof(pvarSrc
->u
.cyVal
); break;
3145 case VT_DATE
: elemSize
= sizeof(pvarSrc
->u
.date
); break;
3146 case VT_FILETIME
: elemSize
= sizeof(pvarSrc
->u
.filetime
); break;
3147 case VT_CLSID
: elemSize
= sizeof(*pvarSrc
->u
.puuid
); break;
3148 case VT_CF
: elemSize
= sizeof(*pvarSrc
->u
.pclipdata
); break;
3149 case VT_BSTR
: elemSize
= sizeof(pvarSrc
->u
.bstrVal
); break;
3150 case VT_LPSTR
: elemSize
= sizeof(pvarSrc
->u
.pszVal
); break;
3151 case VT_LPWSTR
: elemSize
= sizeof(pvarSrc
->u
.pwszVal
); break;
3152 case VT_VARIANT
: elemSize
= sizeof(*pvarSrc
->u
.pvarVal
); break;
3155 FIXME("Invalid element type: %ul\n", pvarSrc
->vt
& ~VT_VECTOR
);
3156 return E_INVALIDARG
;
3158 len
= pvarSrc
->u
.capropvar
.cElems
;
3159 pvarDest
->u
.capropvar
.pElems
= len
? CoTaskMemAlloc(len
* elemSize
) : NULL
;
3160 if (pvarSrc
->vt
== (VT_VECTOR
| VT_VARIANT
))
3162 for (i
= 0; i
< len
; i
++)
3163 PropVariantCopy(&pvarDest
->u
.capropvar
.pElems
[i
], &pvarSrc
->u
.capropvar
.pElems
[i
]);
3165 else if (pvarSrc
->vt
== (VT_VECTOR
| VT_CF
))
3167 FIXME("Copy clipformats\n");
3169 else if (pvarSrc
->vt
== (VT_VECTOR
| VT_BSTR
))
3171 for (i
= 0; i
< len
; i
++)
3172 pvarDest
->u
.cabstr
.pElems
[i
] = PropSysAllocString(pvarSrc
->u
.cabstr
.pElems
[i
]);
3174 else if (pvarSrc
->vt
== (VT_VECTOR
| VT_LPSTR
))
3177 for (i
= 0; i
< len
; i
++)
3179 strLen
= lstrlenA(pvarSrc
->u
.calpstr
.pElems
[i
]) + 1;
3180 pvarDest
->u
.calpstr
.pElems
[i
] = CoTaskMemAlloc(strLen
);
3181 memcpy(pvarDest
->u
.calpstr
.pElems
[i
],
3182 pvarSrc
->u
.calpstr
.pElems
[i
], strLen
);
3185 else if (pvarSrc
->vt
== (VT_VECTOR
| VT_LPWSTR
))
3188 for (i
= 0; i
< len
; i
++)
3190 strLen
= (lstrlenW(pvarSrc
->u
.calpwstr
.pElems
[i
]) + 1) *
3192 pvarDest
->u
.calpstr
.pElems
[i
] = CoTaskMemAlloc(strLen
);
3193 memcpy(pvarDest
->u
.calpstr
.pElems
[i
],
3194 pvarSrc
->u
.calpstr
.pElems
[i
], strLen
);
3198 CopyMemory(pvarDest
->u
.capropvar
.pElems
, pvarSrc
->u
.capropvar
.pElems
, len
* elemSize
);
3201 WARN("Invalid/unsupported type %d\n", pvarSrc
->vt
);
3207 /***********************************************************************
3208 * FreePropVariantArray [OLE32.@]
3210 HRESULT WINAPI
FreePropVariantArray(ULONG cVariants
, /* [in] */
3211 PROPVARIANT
*rgvars
) /* [in/out] */
3215 TRACE("(%u, %p)\n", cVariants
, rgvars
);
3218 return E_INVALIDARG
;
3220 for(i
= 0; i
< cVariants
; i
++)
3221 PropVariantClear(&rgvars
[i
]);
3226 /******************************************************************************
3227 * DllDebugObjectRPCHook (OLE32.@)
3228 * turns on and off internal debugging, pointer is only used on macintosh
3231 BOOL WINAPI
DllDebugObjectRPCHook(BOOL b
, void *dummy
)