Merge pull request #1105 from Gelmir/stats

Add statistics dialog
This commit is contained in:
sledgehammer999 2013-11-21 06:38:07 -08:00
commit 475aa6aad8
13 changed files with 497 additions and 7 deletions

View file

@ -2781,6 +2781,14 @@ qlonglong QBtSession::getETA(const QString &hash) const
return m_speedMonitor->getETA(hash);
}
quint64 QBtSession::getAlltimeDL() const {
return m_speedMonitor->getAlltimeDL();
}
quint64 QBtSession::getAlltimeUL() const {
return m_speedMonitor->getAlltimeUL();
}
void QBtSession::handleIPFilterParsed(int ruleCount)
{
addConsoleMessage(tr("Successfully parsed the provided IP filter: %1 rules were applied.", "%1 is a number").arg(ruleCount));