From d063aea9773663377cf0ef25c81263a8ed811e67 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 7 Jan 2010 20:48:52 +0000 Subject: [PATCH] - Double-clicking on folders in torrent content opens it in a file explorer --- src/propertieswidget.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/propertieswidget.cpp b/src/propertieswidget.cpp index 2fca3fdae..e60d8868f 100644 --- a/src/propertieswidget.cpp +++ b/src/propertieswidget.cpp @@ -478,10 +478,29 @@ void PropertiesWidget::openDoubleClickedFile(QModelIndex index) { QString filename = misc::toQString(h.get_torrent_info().file_at(i).path.string()); QString file_path = QDir::cleanPath(saveDir.absoluteFilePath(filename)); qDebug("Trying to open file at %s", file_path.toLocal8Bit().data()); + // TODO: Flush data (when libtorrent supports it) if(QFile::exists(file_path)) QDesktopServices::openUrl("file://"+file_path); else QMessageBox::warning(this, tr("I/O Error"), tr("This file does not exist yet.")); + } else { + // FOLDER + QStringList path_items; + path_items << index.data().toString(); + QModelIndex parent = PropListModel->parent(index); + while(parent.isValid()) { + path_items.prepend(parent.data().toString()); + parent = PropListModel->parent(parent); + } + QDir saveDir(h.save_path()); + QString filename = path_items.join(QDir::separator()); + QString file_path = QDir::cleanPath(saveDir.absoluteFilePath(filename)); + qDebug("Trying to open folder at %s", file_path.toLocal8Bit().data()); + // TODO: Flush data (when libtorrent supports it) + if(QFile::exists(file_path)) + QDesktopServices::openUrl("file://"+file_path); + else + QMessageBox::warning(this, tr("I/O Error"), tr("This folder does not exist yet.")); } }