I’m having big troubles with drag & drop. I’ve created a new Qt Designer Form Class in which I have one QListWidget and one QWidget. Now I want to enable dragging & dropping between these two widgets.
The problem is, where can I add dragEnterEven(…), dragMoveEvent(…) etc. functions? I only have these class.h, class.cpp and class.ui files.
Any help is much appreciated!
-Samuli
First off, if you haven’t read Qt’s Drag and Drop documentation you really want to start there. What I’m going to tell you is a summary of what’s there. You also should definitely look at the drag and drop examples once you’ve read the description of the process.
Secondly, and I apologize if I’m misreading this, your question makes it sound like you aren’t quite familiar with C++. You want to declare methods in the
.hfile, and define them in the.cppfile. You can use the Designer to do some of that declaration of events, but you will need to define the implementation of those events in the.cpp. If that’s not clear you will need to go read more about basic C++ first.If you’re ok with those basics, here’s a short summary of how drag and drop works:
QDrag. You want to do this in the event that triggers the drag, which is, in all cases I can think of a mouse-click (mousePressEventormouseMoveEvent— which one depends on the exact behavior you want to see).QMimeDataQMimeData::setText)\QDrag::setMimeData.QDrag::execon your drag object.acceptDropsproperty on the given widget usingQWidget::setAcceptDrops(true).dropEventon your widget to handle the drop. The data you set in the drag usingsetMimeDatais available as a method of the drop eventQDropEvent::mimeData. You need to extract the data out of it using the appropriate document type (e.g.text()).Obviously this isn’t complete, but drag and drop has enough steps that you really should read about them in detail once and look at some examples. This summary is meant to give you an idea of what you need to do.