mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 14:57:52 +00:00
- Implemented delete from finished list
This commit is contained in:
parent
6d0b550f5d
commit
5c53c457e5
58
src/GUI.cpp
58
src/GUI.cpp
@ -840,14 +840,33 @@ void GUI::deletePermanently(){
|
|||||||
|
|
||||||
// delete selected items in the list
|
// delete selected items in the list
|
||||||
void GUI::deleteSelection(){
|
void GUI::deleteSelection(){
|
||||||
QModelIndexList selectedIndexes = downloadList->selectionModel()->selectedIndexes();
|
if(tabs->currentIndex() > 1) return;
|
||||||
|
QModelIndexList selectedIndexes;
|
||||||
|
bool inDownloadList = true;
|
||||||
|
if(tabs->currentIndex() == 0) {
|
||||||
|
selectedIndexes = downloadList->selectionModel()->selectedIndexes();
|
||||||
|
} else {
|
||||||
|
selectedIndexes = finishedTorrentTab->getFinishedList()->selectionModel()->selectedIndexes();
|
||||||
|
inDownloadList = false;
|
||||||
|
}
|
||||||
if(!selectedIndexes.isEmpty()){
|
if(!selectedIndexes.isEmpty()){
|
||||||
if(QMessageBox::question(
|
int ret;
|
||||||
this,
|
if(inDownloadList) {
|
||||||
tr("Are you sure? -- qBittorrent"),
|
ret = QMessageBox::question(
|
||||||
tr("Are you sure you want to delete the selected item(s) in download list?"),
|
this,
|
||||||
tr("&Yes"), tr("&No"),
|
tr("Are you sure? -- qBittorrent"),
|
||||||
QString(), 0, 1) == 0) {
|
tr("Are you sure you want to delete the selected item(s) in download list?"),
|
||||||
|
tr("&Yes"), tr("&No"),
|
||||||
|
QString(), 0, 1);
|
||||||
|
} else {
|
||||||
|
ret = QMessageBox::question(
|
||||||
|
this,
|
||||||
|
tr("Are you sure? -- qBittorrent"),
|
||||||
|
tr("Are you sure you want to delete the selected item(s) in finished list?"),
|
||||||
|
tr("&Yes"), tr("&No"),
|
||||||
|
QString(), 0, 1);
|
||||||
|
}
|
||||||
|
if(ret == 0) {
|
||||||
//User clicked YES
|
//User clicked YES
|
||||||
QModelIndex index;
|
QModelIndex index;
|
||||||
QList<QPair<int, QModelIndex> > sortedIndexes;
|
QList<QPair<int, QModelIndex> > sortedIndexes;
|
||||||
@ -863,17 +882,28 @@ void GUI::deleteSelection(){
|
|||||||
QPair<int, QModelIndex> sortedIndex;
|
QPair<int, QModelIndex> sortedIndex;
|
||||||
foreach(sortedIndex, sortedIndexes){
|
foreach(sortedIndex, sortedIndexes){
|
||||||
qDebug("deleting row: %d, %d, col: %d", sortedIndex.first, sortedIndex.second.row(), sortedIndex.second.column());
|
qDebug("deleting row: %d, %d, col: %d", sortedIndex.first, sortedIndex.second.row(), sortedIndex.second.column());
|
||||||
// Get the file name
|
// Get the file name & hash
|
||||||
QString fileName = DLListModel->data(DLListModel->index(sortedIndex.second.row(), NAME)).toString();
|
QString fileName;
|
||||||
QString fileHash = DLListModel->data(DLListModel->index(sortedIndex.second.row(), HASH)).toString();
|
QString fileHash;
|
||||||
|
if(inDownloadList){
|
||||||
|
fileName = DLListModel->data(DLListModel->index(sortedIndex.second.row(), NAME)).toString();
|
||||||
|
fileHash = DLListModel->data(DLListModel->index(sortedIndex.second.row(), HASH)).toString();
|
||||||
|
}else{
|
||||||
|
fileName = finishedTorrentTab->getFinishedListModel()->data(finishedTorrentTab->getFinishedListModel()->index(sortedIndex.second.row(), NAME)).toString();
|
||||||
|
fileHash = finishedTorrentTab->getFinishedListModel()->data(finishedTorrentTab->getFinishedListModel()->index(sortedIndex.second.row(), HASH)).toString();
|
||||||
|
}
|
||||||
// Remove the torrent
|
// Remove the torrent
|
||||||
BTSession.deleteTorrent(fileHash, false);
|
BTSession.deleteTorrent(fileHash, false);
|
||||||
// Delete item from download list
|
if(inDownloadList) {
|
||||||
DLListModel->removeRow(sortedIndex.first);
|
// Delete item from download list
|
||||||
// Update info bar
|
DLListModel->removeRow(sortedIndex.first);
|
||||||
setInfoBar(tr("'%1' was removed.", "'xxx.avi' was removed.").arg(fileName));
|
|
||||||
--nbTorrents;
|
--nbTorrents;
|
||||||
tabs->setTabText(0, tr("Downloads") +" ("+QString(misc::toString(nbTorrents).c_str())+")");
|
tabs->setTabText(0, tr("Downloads") +" ("+QString(misc::toString(nbTorrents).c_str())+")");
|
||||||
|
} else {
|
||||||
|
finishedTorrentTab->deleteFromFinishedList(fileHash);
|
||||||
|
}
|
||||||
|
// Update info bar
|
||||||
|
setInfoBar(tr("'%1' was removed.", "'xxx.avi' was removed.").arg(fileName));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user