as in winamp or vlc player, how to do a file drag and drop? i mean i want to know what sort of coding goes into application? i want to know for c++
|
1
|
|
|
|
|
|
edit after I posted this, the question was edited to qualify as C++; I'm going to leave this answer here for reference only. "what sort off coding goes into application": That depends hugely on the platform and language. For example, here are examples for Windows via C#/.NET or VB/.NET. For C++, Delphi, etc - the tricks will be different. |
||||
|
|
|
In pure C/C++ on Windows, start reading about the DragAcceptFiles function and the WM_DROPFILES message. If you're using a more powerful C++ library (Qt, Wx, etc) check their respective documentation. It would help to know what you use, more specifically. Also, this discussion may answer your question. If it's what you meant, please close this question. |
||||
|
|
|
In this sample have an implementation of Drag an Drop by Dom Box : See source IFDROP.CPP |
||
|
|
|
|
You should use COM's Ole Drag and drop interfaces. |
||
|
|
|
|
Before the days of OLE/COM/ActiveX, we would do something like the following:
Note: none of this would allow you to drag objects between apps, just inside individual apps. |
||
|
|
|
|
For almost any question like "How do I do this UI thing?" My answer is always: "Use wxWidgets." Hugo |
||
|
|
