Improved start_All and resume_All functions to detect if a torrent's state changed or not. This way, it doesn't flood the GUI if the user keeps on clicking on those buttons

This commit is contained in:
Christophe Dumez 2007-06-30 18:56:49 +00:00
parent 9bde00b7de
commit d12e510fad
3 changed files with 42 additions and 34 deletions

View file

@ -1300,7 +1300,7 @@ void GUI::configureSession(bool deleteOptions){
void GUI::on_actionPause_All_triggered(){ void GUI::on_actionPause_All_triggered(){
QString fileHash; QString fileHash;
// Pause all torrents // Pause all torrents
BTSession.pauseAllTorrents(); if(BTSession.pauseAllTorrents()){
// update download list // update download list
unsigned int nbRows = DLListModel->rowCount(); unsigned int nbRows = DLListModel->rowCount();
for(unsigned int i=0; i<nbRows; ++i){ for(unsigned int i=0; i<nbRows; ++i){
@ -1319,6 +1319,7 @@ void GUI::on_actionPause_All_triggered(){
setRowColor(i, "red"); setRowColor(i, "red");
} }
setInfoBar(tr("All downloads were paused.")); setInfoBar(tr("All downloads were paused."));
}
} }
// pause selected items in the list // pause selected items in the list
@ -1351,7 +1352,7 @@ void GUI::on_actionPause_triggered(){
void GUI::on_actionStart_All_triggered(){ void GUI::on_actionStart_All_triggered(){
QString fileHash; QString fileHash;
// Pause all torrents // Pause all torrents
BTSession.resumeAllTorrents(); if(BTSession.resumeAllTorrents()){
// update download list // update download list
unsigned int nbRows = DLListModel->rowCount(); unsigned int nbRows = DLListModel->rowCount();
for(unsigned int i=0; i<nbRows; ++i){ for(unsigned int i=0; i<nbRows; ++i){
@ -1364,6 +1365,7 @@ void GUI::on_actionStart_All_triggered(){
setRowColor(i, "grey"); setRowColor(i, "grey");
} }
setInfoBar(tr("All downloads were resumed.")); setInfoBar(tr("All downloads were resumed."));
}
} }
// start selected items in the list // start selected items in the list

View file

@ -612,25 +612,31 @@ void bittorrent::saveTrackerFile(const QString& hash){
} }
// Pause all torrents in session // Pause all torrents in session
void bittorrent::pauseAllTorrents(){ bool bittorrent::pauseAllTorrents(){
bool paused_torrents = false;
std::vector<torrent_handle> handles = s->get_torrents(); std::vector<torrent_handle> handles = s->get_torrents();
for(unsigned int i=0; i<handles.size(); ++i){ for(unsigned int i=0; i<handles.size(); ++i){
torrent_handle h = handles[i]; torrent_handle h = handles[i];
if(h.is_valid() && !h.is_paused()){ if(h.is_valid() && !h.is_paused()){
h.pause(); h.pause();
paused_torrents = true;
} }
} }
return paused_torrents;
} }
// Resume all torrents in session // Resume all torrents in session
void bittorrent::resumeAllTorrents(){ bool bittorrent::resumeAllTorrents(){
bool resumed_torrents = false;
std::vector<torrent_handle> handles = s->get_torrents(); std::vector<torrent_handle> handles = s->get_torrents();
for(unsigned int i=0; i<handles.size(); ++i){ for(unsigned int i=0; i<handles.size(); ++i){
torrent_handle h = handles[i]; torrent_handle h = handles[i];
if(h.is_valid() && h.is_paused()){ if(h.is_valid() && h.is_paused()){
h.resume(); h.resume();
resumed_torrents = true;
} }
} }
return resumed_torrents;
} }
// Add uT PeX extension to bittorrent session // Add uT PeX extension to bittorrent session

View file

@ -91,8 +91,8 @@ class bittorrent : public QObject{
void downloadFromURLList(const QStringList& url_list); void downloadFromURLList(const QStringList& url_list);
void deleteTorrent(const QString& hash, bool permanent = false); void deleteTorrent(const QString& hash, bool permanent = false);
void pauseTorrent(const QString& hash); void pauseTorrent(const QString& hash);
void pauseAllTorrents(); bool pauseAllTorrents();
void resumeAllTorrents(); bool resumeAllTorrents();
void resumeTorrent(const QString& hash); void resumeTorrent(const QString& hash);
void enableDHT(); void enableDHT();
void disableDHT(); void disableDHT();