Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Qt desktop application that works on Linux and Windows. At some point I'm hoping to port it to MacOS X and other *nix systems too.

My problem is that, a part of the application has a functionality that allows users to drag and drop files into, and out from an archive. The UI is kinda like that of WinZip or similar GUI based archivers. But Qt's drag and drop system wants the data to be prepared when the user starts dragging files from the archive.

What I currently do is, extract the dragged files to a temporary location, and supply those file names as data. But it's undesirable because extracting deep directory trees take a good amount of time, and it causes the GUI to freeze during that time. It would be nice if I could do that operation when the user decides to drop the files, not when he/she starts to drag. Unfortunately Qt docs don't say anything about this.

I know how to achieve this using Windows API, and I'm pretty sure that most systems have a way to do that too. But I want to avoid writing platform specific code as much as possible.

Is there a Qt way to achieve that? Am I missing something?

share|improve this question

1 Answer

up vote 1 down vote accepted

I may be misunderstanding, but I think what you want to do is supply enough information in a QMimeData for the QDrag you create that you can find the files in the archive after the user drops it without having to extract them first. So, if your code on the drop end doesn't know which archive the files have come from, you need to supply the path to the archive in your mime data, too.

The drag starts as a message: "I'm dragging Archive1:FileA, Archive1:FileB" but no file extraction.

It ends on the other end by interpreting the message and then extracting the files. I'd probably set up some kind of simple ICD for both sides of the message transfer. If you can only drag from one archive at a time, maybe a string list with the first element being the archive and following ones being the files:

QStringList list;
list << archivePath;
list << fileName1;
list << fileName2;

QByteArray ba;
QDataStream stream(&ba);
stream << list;

QMimeData* mime = new QMimeData;
mime->setData("yourType", ba);

I hope this helps!

share|improve this answer
Thanks! But the other side (drop site) is the system's file manager (i.e. Windows Explorer, Nautilus, Konqueror etc.), so I don't have any control over it. I need to supply, in mimeData() of my model, a list of file paths. Since the files are in the archive, I need to extract them first so that the file paths are valid. I'm trying to find out if there is a way to defer that operation until the user actually drops them in the file manager. – cyco130 Nov 2 '11 at 23:04
1  
@cyco130 I see! I did indeed misunderstand. Does this help you at all? doc.trolltech.com/4.6/draganddrop-delayedencoding.html – CrazyIvanovich Nov 3 '11 at 13:11
Thanks! It's not ideal but could work. I'll accept your answer after I try it out and if nothing better comes up :) – cyco130 Nov 4 '11 at 14:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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