ENABLING Drag-and-Drop without OLE
Digitally Urs (view profile)
May 21, 2003
来源:http://www.codeguru.com/Cpp/Cpp/cpp_mfc/dragdrop/article.php/c4059/
The drag-and-drop can be obtained in two ways; the first is OLE and the second is using the MFC. MFC supports the functionality of drag-and-drop without using OLE. To enable drag-and-drop in your application, you'll have to perform the following tasks:
- The CWnd::DragAcceptFiles () enables you to accept the drag-and-drop functionality for your application. The only parameter to the function is of the BOOL type and which, by default, is set to FALSE to disable the drag-and-drop functionality. Setting it to TRUE will enable your application to handle WM_DROPFILES message for the CWND class.
- The DragAcceptFiles function can be called of any CWnd derived class; handling the WM_DROPFILES will enable your application for drag-and-drop.
The steps involved are the following (I'm writing the code segment for an SDI application):
- Go in the CMainFrame::OnCreate function of your SDI application and make a call to DragAcceptFiles:
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) { // MFC code goes hereDragAcceptFile(true) // call the Drag Accept files
// rest of MFC code generated by ClassWizard}
-
You must keep in mind that you must call this function after the CWnd object has been created.
- Map the WM_DROPFILES message for your CMainFrame class and modify the code like the following:
void CMainFrame::OnDropFiles(HDROP hDropInfo) { UINT i = 0;UINT nFiles = ::DragQueryFile(hDropInfo, (UINT) -1, NULL, 0);for (i = 0; i < nFiles; i++){ TCHAR szFileName[_MAX_PATH];::DragQueryFile(hDropInfo, i, szFileName, _MAX_PATH);
ProcessMyFile(szFileName);
}
::DragFinish(hDropInfo);
CFrameWnd::OnDropFiles(hDropInfo);
}
The first call to DragQueryFile will return you the total number of files dropped at your application. Each next call, the DragQueryFiles will return the name of the file to you in the szFileName parameter.
After that, you have the name of the file. You can process it any way you like.
- The next important thing is to call the DragFinish function; otherwise, your application will leak a little bit of memory every time some drag-and-drop operation is made.
Written by:
Danish Qamar is a student of Computer Sciences in Lahore, Pakistan. He's been developing Web applications for three years and started working with Visual C++ in February, 2002. Other interests includes playing games, messing up 3d models integration in OpenGL, and is a badminton freak. He can be reached at:
本文介绍了在不使用OLE的情况下,利用MFC实现拖放功能的方法。通过调用CWnd::DragAcceptFiles()函数开启拖放功能,处理WM_DROPFILES消息,还给出了SDI应用程序的代码示例。同时强调要在CWnd对象创建后调用该函数,且每次拖放操作后需调用DragFinish函数,避免内存泄漏。
870

被折叠的 条评论
为什么被折叠?



