FEATURE: Allow to drag 'n drop urls on the main window

This commit is contained in:
Christophe Dumez 2007-07-30 09:30:07 +00:00
parent 0043edc85f
commit d680be3626
3 changed files with 10 additions and 3 deletions

View file

@ -936,13 +936,18 @@ void GUI::dropEvent(QDropEvent *event){
QSettings settings("qBittorrent", "qBittorrent");
bool useTorrentAdditionDialog = settings.value("Options/Misc/TorrentAdditionDialog/Enabled", true).toBool();
foreach(file, files){
file = file.trimmed().replace("file://", "");
if(file.startsWith("http://", Qt::CaseInsensitive) || file.startsWith("ftp://", Qt::CaseInsensitive) || file.startsWith("https://", Qt::CaseInsensitive)){
BTSession->downloadFromUrl(file);
continue;
}
if(useTorrentAdditionDialog){
torrentAdditionDialog *dialog = new torrentAdditionDialog(this);
connect(dialog, SIGNAL(torrentAddition(QString, bool, bool, QString)), BTSession, SLOT(addTorrent(QString, bool, bool, QString)));
connect(dialog, SIGNAL(setInfoBarGUI(QString, QString)), this, SLOT(setInfoBar(QString, QString)));
dialog->showLoad(file.trimmed().replace("file://", ""));
dialog->showLoad(file);
}else{
BTSession->addTorrent(file.trimmed().replace("file://", ""));
BTSession->addTorrent(file);
}
}
}