Date: | December 8, 2004 / year-entry #413 |
Tags: | code |
Orig Link: | https://blogs.msdn.microsoft.com/oldnewthing/20041208-00/?p=37093 |
Comments: | 4 |
Summary: | We were considering how to detect that the drag/drop operation resulted in a conceptual Move even if the DROPEFFECT_MOVE was optimized away. If the drop target is the shell, you can query the data object for CFSTR_PERFORMEDDROPEFFECT to see what the performed effect was. void OnLButtonDown(HWND hwnd, BOOL fDoubleClick, int x, int y, UINT keyFlags)... |
We were considering how to detect that the drag/drop operation
resulted in a conceptual Move even if the
If the drop target is the shell, you can query the
data object for void OnLButtonDown(HWND hwnd, BOOL fDoubleClick, int x, int y, UINT keyFlags) { ... if (dwEffect & DROPEFFECT_MOVE) { DeleteFileW(wszPath); } CheckPerformedEffect(hwnd, pdto); ... }
Of course, we need that void CheckPerformedEffect(HWND hwnd, IDataObject *pdto) { FORMATETC fe = { (CLIPFORMAT)RegisterClipboardFormat(CFSTR_PERFORMEDDROPEFFECT), NULL, DVASPECT_CONTENT, -1, TYMED_HGLOBAL }; STGMEDIUM stgm; if (SUCCEEDED(pdto->GetData(&fe, &stgm))) { if ((stgm.tymed & TYMED_HGLOBAL) && GlobalSize(stgm.hGlobal) >= sizeof(DWORD)) { DWORD *pdw = (DWORD*)GlobalLock(stgm.hGlobal); if (pdw) { if (*pdw == DROPEFFECT_MOVE) { MessageBox(hwnd, TEXT("Moved"), TEXT("Scratch"), MB_OK); } GlobalUnlock(stgm.hGlobal); } } ReleaseStgMedium(&stgm); } }
If the item is dropped on a shell window, the drop target
will set data into the data object under the clipboard format name
Here, we check whether it was a |
Comments (4)
Comments are closed. |
Ahh now this is a gem.
However after doing some additional reading I find myself confused by MSDN documentation (and no this isn’t the first time).
http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/programmersguide/shell_basics/shell_basics_programming/transferring/clipboard.asp?frame=true
—————————————–
The CFSTR_PERFORMEDDROPEFFECT format identifier was intended to allow the target to indicate to the data object what operation actually took place. However, the Shell uses optimized moves for file system objects whenever possible. In that case, the Shell normally sets the CFSTR_PERFORMEDDROPEFFECT value to DROPEFFECT_NONE, to indicate to the data object that the original data has been deleted. Thus, the source cannot use the CFSTR_PERFORMEDDROPEFFECT value to determine which operation has taken place. While most sources do not need this information, there are some exceptions. For instance, even though optimized moves eliminate the need for a source to delete any data, the source might still need to update a related database to indicate that the files have been moved or copied.
——————————————
Of course that claims to be for Version 5..
a little below we then get some more documentation which fails to clarify anything
——————————————-
CFSTR_PERFORMEDDROPEFFECT
This format identifier is used by the target to inform the data object through its IDataObject::SetData method of the outcome of a data transfer. The data is an STGMEDIUM structure that contains a global memory object. The structure’s hGlobal member points to a DWORD set to the appropriate DROPEFFECT value, normally DROPEFFECT_MOVE or DROPEFFECT_COPY.
This format is normally used when the outcome of an operation can be either move or copy, such as in anoptimized move or delete-on-paste operation. It provides a reliable way for the target to tell the data object what actually happened. It was introduced because the value of pdwEffect returned by DoDragDrop did not reliably indicate which operation had taken place. The CFSTR_PERFORMEDDROPEFFECT format is the reliable way to indicate that an unoptimized move has taken place.
———————————————-
So should I use CFSTR_LOGICALPERFORMEDDROPEFFECT or CFSTR_PERFORMEDDROPEFFECT ? After all I think it’s pretty safe to assume that people all have IE 5? Or maybe not (maybe assumptions are never safe, like assuming people will have enough sense to recognize bad coding practices as simple conveniences for demonstrative purposes)? Perhaps I should be doing DllGetVersion on the Shell dll?
I can’t believe you hard-coded the strings in the MessageBox() call. This example needs a full local-language independant implementation.
;-)
i hope there’s a series #4 in drag-drop lectures that explains what happens when IAsyncOperation gets into the picture
thanks!