From a615038498e485fdea4356c1b2eea4897fda5447 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 4 Apr 2007 13:12:11 +0000 Subject: [PATCH] - Added a popu menu in finished list --- src/FinishedTorrents.cpp | 46 ++++++++++++++++++++++++++++++++++++++++ src/FinishedTorrents.h | 1 + src/seeding.ui | 36 ++++++++++++++++++++++++++++++- 3 files changed, 82 insertions(+), 1 deletion(-) diff --git a/src/FinishedTorrents.cpp b/src/FinishedTorrents.cpp index a8471a1de..d487257b4 100644 --- a/src/FinishedTorrents.cpp +++ b/src/FinishedTorrents.cpp @@ -23,6 +23,7 @@ #include "GUI.h" #include "properties_imp.h" #include +#include FinishedTorrents::FinishedTorrents(QObject *parent, bittorrent *BTSession){ setupUi(this); @@ -44,6 +45,19 @@ FinishedTorrents::FinishedTorrents(QObject *parent, bittorrent *BTSession){ finishedList->hideColumn(HASH); finishedListDelegate = new DLListDelegate(); finishedList->setItemDelegate(finishedListDelegate); + connect(finishedList, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayFinishedListMenu(const QPoint&))); + actionStart->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/play.png"))); + actionPause->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/pause.png"))); + actionDelete->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/delete.png"))); + actionPreview_file->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/preview.png"))); + actionDelete_Permanently->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/delete_perm.png"))); + actionTorrent_Properties->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/properties.png"))); + connect(actionStart, SIGNAL(triggered()), (GUI*)parent, SLOT(startSelection())); + connect(actionPause, SIGNAL(triggered()), (GUI*)parent, SLOT(pauseSelection())); + connect(actionDelete, SIGNAL(triggered()), (GUI*)parent, SLOT(deleteSelection())); + connect(actionPreview_file, SIGNAL(triggered()), (GUI*)parent, SLOT(startSelection())); + connect(actionDelete_Permanently, SIGNAL(triggered()), (GUI*)parent, SLOT(deletePermanently())); + connect(actionTorrent_Properties, SIGNAL(triggered()), this, SLOT(propertiesSelection)); } FinishedTorrents::~FinishedTorrents(){ @@ -170,3 +184,35 @@ void FinishedTorrents::propertiesSelection(){ } } } + +void FinishedTorrents::displayFinishedListMenu(const QPoint& pos){ + QMenu myFinishedListMenu(this); + QModelIndex index; + // Enable/disable pause/start action given the DL state + QModelIndexList selectedIndexes = finishedList->selectionModel()->selectedIndexes(); + QSettings settings("qBittorrent", "qBittorrent"); + QString previewProgram = settings.value("Options/Misc/PreviewProgram", QString()).toString(); + foreach(index, selectedIndexes){ + if(index.column() == NAME){ + // Get the file name + QString fileHash = finishedListModel->data(finishedListModel->index(index.row(), HASH)).toString(); + // Get handle and pause the torrent + torrent_handle h = BTSession->getTorrentHandle(fileHash); + if(h.is_paused()){ + myFinishedListMenu.addAction(actionStart); + }else{ + myFinishedListMenu.addAction(actionPause); + } + myFinishedListMenu.addAction(actionDelete); + myFinishedListMenu.addAction(actionDelete_Permanently); + myFinishedListMenu.addAction(actionTorrent_Properties); + if(!previewProgram.isEmpty() && BTSession->isFilePreviewPossible(fileHash) && selectedIndexes.size()<=finishedListModel->columnCount()){ + myFinishedListMenu.addAction(actionPreview_file); + } + break; + } + } + // Call menu + // XXX: why mapToGlobal() is not enough? + myFinishedListMenu.exec(mapToGlobal(pos)+QPoint(10,55)); +} diff --git a/src/FinishedTorrents.h b/src/FinishedTorrents.h index 1c114bb2c..506584566 100644 --- a/src/FinishedTorrents.h +++ b/src/FinishedTorrents.h @@ -51,6 +51,7 @@ class FinishedTorrents : public QWidget, public Ui::seeding{ void deleteFromFinishedList(QString hash); void showProperties(const QModelIndex &index); void propertiesSelection(); + void displayFinishedListMenu(const QPoint&); protected slots: void setRowColor(int row, const QString& color); diff --git a/src/seeding.ui b/src/seeding.ui index ff743f21e..ac15f41ae 100644 --- a/src/seeding.ui +++ b/src/seeding.ui @@ -27,7 +27,11 @@ - + + + Qt::CustomContextMenu + + @@ -42,6 +46,36 @@ + + + Start + + + + + Pause + + + + + Delete + + + + + Delete Permanently + + + + + Torrent Properties + + + + + Preview file + +