I've made a drag & drop implementation using QDrag. Here's the related code:
// ...
// Init URL List
QList<QUrl> uriList;
// Add Files To URI List
uriList << QUrl("file:///Users/Max/file1.avi");
uriList << QUrl("file:///Users/Max/file2.avi");
// Create Drag
QDrag* drag = new QDrag(this);
// Create Mime Data
QMimeData* mimeData = new QMimeData;
// Set URLS
mimeData->setUrls(uriList);
// Set Mime Data
drag->setMimeData(mimeData);
// ...
// Exec Drag
Qt::DropAction dropAction = drag->exec(Qt::CopyAction | Qt::MoveAction | Qt::LinkAction);
// Check Drop Action
if (dropAction == Qt::IgnoreAction) {
// ...
}
// ...
The code runs OK in finder, Skype, Qt creator, etc... Only VLC doesn't seem to accept the drop.
Does anybody know if there is some extra special magic needs to be done for VLC?
Thanks in advance!