2009-05-02 18:14:20 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 RetroShare Team
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
****************************************************************/
|
|
|
|
|
2010-10-09 14:35:34 -04:00
|
|
|
#include <QHBoxLayout>
|
2009-05-02 18:14:20 -04:00
|
|
|
#include <QLabel>
|
|
|
|
|
2010-07-23 14:52:58 -04:00
|
|
|
#include "ratesstatus.h"
|
2010-08-06 05:40:23 -04:00
|
|
|
#include <retroshare/rsiface.h>
|
2009-05-02 18:14:20 -04:00
|
|
|
|
|
|
|
#include <iomanip>
|
|
|
|
|
|
|
|
RatesStatus::RatesStatus(QWidget *parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
{
|
2010-10-09 14:35:34 -04:00
|
|
|
QHBoxLayout *hbox = new QHBoxLayout(this);
|
2009-05-02 18:14:20 -04:00
|
|
|
hbox->setMargin(0);
|
|
|
|
hbox->setSpacing(6);
|
|
|
|
|
|
|
|
iconLabel = new QLabel( this );
|
2010-06-14 07:57:22 -04:00
|
|
|
iconLabel->setPixmap(QPixmap(":/images/up0down0.png"));
|
2009-05-02 18:14:20 -04:00
|
|
|
// iconLabel doesn't change over time, so we didn't need a minimum size
|
|
|
|
hbox->addWidget(iconLabel);
|
|
|
|
|
|
|
|
statusRates = new QLabel( tr("<strong>Down:</strong> 0.00 (kB/s) | <strong>Up:</strong> 0.00 (kB/s) "), this );
|
2010-10-09 14:35:34 -04:00
|
|
|
// statusPeers->setMinimumSize( statusPeers->frameSize().width() + 0, 0 );
|
2009-05-02 18:14:20 -04:00
|
|
|
hbox->addWidget(statusRates);
|
2014-05-29 12:15:26 -04:00
|
|
|
|
|
|
|
_compactMode = false;
|
|
|
|
|
2010-10-09 14:35:34 -04:00
|
|
|
setLayout(hbox);
|
2009-05-02 18:14:20 -04:00
|
|
|
}
|
|
|
|
|
2010-10-28 06:41:19 -04:00
|
|
|
void RatesStatus::getRatesStatus(float downKb, float upKb)
|
2009-05-02 18:14:20 -04:00
|
|
|
{
|
|
|
|
/* set users/friends/network */
|
|
|
|
|
2014-05-29 12:15:26 -04:00
|
|
|
QString normalText = QString("<strong>%1:</strong> %2 (kB/s) | <strong>%3:</strong> %4 (kB/s) ")
|
|
|
|
.arg(tr("Down")).arg(downKb, 0, 'f', 2)
|
|
|
|
.arg(tr("Up")).arg(upKb, 0, 'f', 2);
|
|
|
|
QString compactText = QString("%1|%2").arg(downKb, 0, 'f', 2).arg(upKb, 0, 'f', 2);
|
2012-03-28 14:02:49 -04:00
|
|
|
|
2014-05-29 12:15:26 -04:00
|
|
|
if (statusRates) {
|
|
|
|
statusRates->setText(_compactMode?compactText:normalText);
|
|
|
|
statusRates->setToolTip(normalText);
|
2009-05-02 18:14:20 -04:00
|
|
|
}
|
2014-05-29 12:15:26 -04:00
|
|
|
|
|
|
|
QString up = (upKb > 0)?"1":"0";
|
|
|
|
QString dw = (downKb > 0)?"1":"0";
|
|
|
|
iconLabel->setPixmap(QPixmap(QString(":/images/")
|
|
|
|
+ "up" + up
|
|
|
|
+ "down" + dw
|
|
|
|
+ ".png"));
|
2009-05-02 18:14:20 -04:00
|
|
|
}
|