vote up 1 vote down star
1

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++

flag

10% accept rate

6 Answers

vote up 1 vote down

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.

link|flag
he explicitly asked about C++ – eliben Jan 16 at 9:54
No, he really didn't. Check the revisions, and check when I replied. The C++ tags and note were added later. – Marc Gravell Jan 16 at 10:01
vote up 7 vote down

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.

link|flag
Your downvote was unwarranted; the OP added the C++ bits after I had replied. – Marc Gravell Jan 16 at 10:01
Marc, I'm removing my downvote then. Your're right (it's difficult to track edits vs. comments that are posted very quickly), sorry – eliben Jan 16 at 10:58
vote up 0 vote down

In this sample have an implementation of Drag an Drop by Dom Box :
http://www.microsoft.com/msj/0895/activex0895.aspx

See source IFDROP.CPP

link|flag
vote up 0 vote down

You should use COM's Ole Drag and drop interfaces.

link|flag
vote up 0 vote down

Before the days of OLE/COM/ActiveX, we would do something like the following:

  • If we received a mouse down event, take note of cursor position.
  • If we received a mouse movement and it moved a certain distance from the original point then we're starting a drag operation. Build a cursor that represents the object you're dragging (determined from the original cursor position).
  • When we received a mouse down: if dragging never started then it's a click otherwise use the drop position to determine what to do with the object.

Note: none of this would allow you to drag objects between apps, just inside individual apps.

link|flag
vote up 0 vote down

For almost any question like "How do I do this UI thing?"

My answer is always: "Use wxWidgets."

Hugo

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.