Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
158 lines
5.0 KiB
158 lines
5.0 KiB
/* |
|
* Bittorrent Client using Qt4 and libtorrent. |
|
* Copyright (C) 2006 Christophe Dumez |
|
* |
|
* This program is free software; you can redistribute it and/or |
|
* modify it under the terms of the GNU General Public License |
|
* as published by the Free Software Foundation; either version 2 |
|
* of the License, or (at your option) any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU General Public License |
|
* along with this program; if not, write to the Free Software |
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
* |
|
* Contact : chris@qbittorrent.org |
|
*/ |
|
|
|
#ifndef BANDWIDTH_ALLOCATION_H |
|
#define BANDWIDTH_ALLOCATION_H |
|
|
|
#include <QDialog> |
|
#include <QList> |
|
#include <QSettings> |
|
#include "ui_bandwidth_limit.h" |
|
#include "misc.h" |
|
#include "bittorrent.h" |
|
|
|
using namespace libtorrent; |
|
|
|
class BandwidthAllocationDialog : public QDialog, private Ui_bandwidth_dlg { |
|
Q_OBJECT |
|
|
|
public: |
|
BandwidthAllocationDialog(QWidget *parent, bool uploadMode, bittorrent *BTSession, QStringList hashes): QDialog(parent), uploadMode(uploadMode), hashes(hashes){ |
|
setupUi(this); |
|
setAttribute(Qt::WA_DeleteOnClose); |
|
qDebug("Bandwidth allocation dialog creation"); |
|
this->BTSession = BTSession; |
|
if(hashes.size() == 0) |
|
global = true; |
|
else |
|
global = false; |
|
if(uploadMode) |
|
lblTitle->setText(tr("Upload limit:")); |
|
else |
|
lblTitle->setText(tr("Download limit:")); |
|
connect(bandwidthSlider, SIGNAL(valueChanged(int)), this, SLOT(updateBandwidthLabel(int))); |
|
if(!global){ |
|
unsigned int nbTorrents = hashes.size(); |
|
if(!nbTorrents) close(); |
|
int val; |
|
int max; |
|
if(nbTorrents == 1){ |
|
torrent_handle h = BTSession->getTorrentHandle(hashes.at(0)); |
|
if(uploadMode){ |
|
val = (int)(h.upload_limit() / 1024.); |
|
max = (int)(BTSession->getSession()->upload_rate_limit() / 1024.); |
|
}else{ |
|
val = (int)(h.download_limit() / 1024.); |
|
max = (int)(BTSession->getSession()->download_rate_limit() / 1024.); |
|
} |
|
if(max != -1) |
|
bandwidthSlider->setMaximum(max); |
|
qDebug("Bandwidth limit: %d", val); |
|
if(val > bandwidthSlider->maximum()) |
|
val = bandwidthSlider->maximum(); |
|
else if(val < bandwidthSlider->minimum()) |
|
val = -1; |
|
bandwidthSlider->setValue(val); |
|
if(val == -1) { |
|
limit_lbl->setText(tr("Unlimited", "Unlimited (bandwidth)")); |
|
kb_lbl->setText(""); |
|
} else { |
|
limit_lbl->setText(QString(misc::toString(val).c_str())); |
|
} |
|
}else{ |
|
qDebug("More than one torrent selected, no initilization"); |
|
bandwidthSlider->setValue(-1); |
|
limit_lbl->setText(tr("Unlimited", "Unlimited (bandwidth)")); |
|
kb_lbl->setText(""); |
|
} |
|
}else{ |
|
// Global limit |
|
int val; |
|
session *s = BTSession->getSession(); |
|
if(uploadMode) |
|
val = (int)(s->upload_rate_limit()/1024.); |
|
else |
|
val = (int)(s->download_rate_limit()/1024.); |
|
if(val == -1){ |
|
bandwidthSlider->setValue(-1); |
|
limit_lbl->setText(tr("Unlimited", "Unlimited (bandwidth)")); |
|
kb_lbl->setText(""); |
|
}else{ |
|
bandwidthSlider->setValue(val); |
|
} |
|
} |
|
connect(buttonBox, SIGNAL(accepted()), this, SLOT(setBandwidth())); |
|
show(); |
|
} |
|
|
|
~BandwidthAllocationDialog(){ |
|
qDebug("Deleting bandwidth allocation dialog"); |
|
} |
|
|
|
protected slots: |
|
void updateBandwidthLabel(int val){ |
|
if(val == -1){ |
|
limit_lbl->setText(tr("Unlimited", "Unlimited (bandwidth)")); |
|
kb_lbl->setText(""); |
|
}else{ |
|
limit_lbl->setText(QString(misc::toString(val).c_str())); |
|
kb_lbl->setText(tr("KiB/s")); |
|
} |
|
} |
|
|
|
void setBandwidth(){ |
|
qDebug("setBandwidth called"); |
|
int val = bandwidthSlider->value(); |
|
if(!global){ |
|
QString hash; |
|
if(uploadMode) { |
|
foreach(hash, hashes) { |
|
BTSession->setUploadLimit(hash, val*1024); |
|
qDebug("Setting upload limit"); |
|
} |
|
} else { |
|
foreach(hash, hashes) { |
|
BTSession->setDownloadLimit(hash, val*1024); |
|
qDebug("Setting download limit"); |
|
} |
|
} |
|
}else{ |
|
QSettings settings("qBittorrent", "qBittorrent"); |
|
session *s = BTSession->getSession(); |
|
if(uploadMode){ |
|
s->set_upload_rate_limit(val*1024); |
|
settings.setValue("Options/Main/UPLimit", val); |
|
}else{ |
|
s->set_download_rate_limit(val*1024); |
|
settings.setValue("Options/Main/DLLimit", val); |
|
} |
|
} |
|
close(); |
|
} |
|
|
|
private: |
|
bool uploadMode; |
|
bool global; |
|
bittorrent *BTSession; |
|
QStringList hashes; |
|
}; |
|
|
|
#endif
|
|
|