2009-07-07 07:23:25 -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.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include <QLayout>
|
|
|
|
#include <QLabel>
|
2010-10-29 08:50:33 -04:00
|
|
|
#include <QMovie>
|
2009-07-07 07:23:25 -04:00
|
|
|
|
2010-10-09 14:35:34 -04:00
|
|
|
#include "hashingstatus.h"
|
2015-01-07 06:47:10 -05:00
|
|
|
#include "gui/common/ElidedLabel.h"
|
2010-10-09 14:35:34 -04:00
|
|
|
#include "gui/notifyqt.h"
|
|
|
|
|
2009-07-07 07:23:25 -04:00
|
|
|
HashingStatus::HashingStatus(QWidget *parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
{
|
2010-10-09 14:35:34 -04:00
|
|
|
QHBoxLayout *hbox = new QHBoxLayout(this);
|
2009-07-07 07:23:25 -04:00
|
|
|
hbox->setMargin(0);
|
|
|
|
hbox->setSpacing(6);
|
2010-10-29 08:50:33 -04:00
|
|
|
|
2015-03-14 17:13:28 -04:00
|
|
|
movie = new QMovie(":/images/loader/indicator-16.gif");
|
2010-11-30 15:33:09 -05:00
|
|
|
movie->setSpeed(80); // 2x speed
|
2010-10-29 08:50:33 -04:00
|
|
|
hashloader = new QLabel(this);
|
2010-11-30 15:33:09 -05:00
|
|
|
hashloader->setMovie(movie);
|
2010-10-29 08:50:33 -04:00
|
|
|
hbox->addWidget(hashloader);
|
2010-10-09 14:35:34 -04:00
|
|
|
|
2010-11-30 15:33:09 -05:00
|
|
|
movie->jumpToNextFrame(); // to calculate the real width
|
2015-01-07 06:47:10 -05:00
|
|
|
statusHashing = new ElidedLabel(this);
|
2009-07-07 07:23:25 -04:00
|
|
|
hbox->addWidget(statusHashing);
|
|
|
|
|
2014-05-29 12:15:26 -04:00
|
|
|
_compactMode = false;
|
|
|
|
|
2010-10-09 14:35:34 -04:00
|
|
|
setLayout(hbox);
|
2009-07-07 07:23:25 -04:00
|
|
|
|
2010-10-29 08:50:33 -04:00
|
|
|
hashloader->hide();
|
2010-10-09 14:35:34 -04:00
|
|
|
statusHashing->hide();
|
2009-07-07 07:23:25 -04:00
|
|
|
|
2010-10-09 14:35:34 -04:00
|
|
|
connect(NotifyQt::getInstance(), SIGNAL(hashingInfoChanged(const QString&)), SLOT(updateHashingInfo(const QString&)));
|
2010-11-30 15:33:09 -05:00
|
|
|
}
|
2010-10-29 08:50:33 -04:00
|
|
|
|
2010-11-30 15:33:09 -05:00
|
|
|
HashingStatus::~HashingStatus()
|
|
|
|
{
|
|
|
|
delete(movie);
|
2009-07-07 07:23:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void HashingStatus::updateHashingInfo(const QString& s)
|
|
|
|
{
|
2014-05-29 12:15:26 -04:00
|
|
|
if (s.isEmpty()) {
|
|
|
|
statusHashing->hide() ;
|
|
|
|
hashloader->hide() ;
|
2010-11-30 15:33:09 -05:00
|
|
|
|
2014-05-29 12:15:26 -04:00
|
|
|
movie->stop() ;
|
2010-10-09 14:35:34 -04:00
|
|
|
} else {
|
2014-05-29 12:15:26 -04:00
|
|
|
hashloader->setToolTip(s) ;
|
|
|
|
|
|
|
|
if (_compactMode) {
|
|
|
|
statusHashing->hide() ;
|
|
|
|
} else {
|
|
|
|
statusHashing->setText(s) ;
|
|
|
|
statusHashing->show() ;
|
|
|
|
}
|
|
|
|
hashloader->show() ;
|
2010-10-29 08:50:33 -04:00
|
|
|
|
2014-05-29 12:15:26 -04:00
|
|
|
movie->start() ;
|
2010-10-09 14:35:34 -04:00
|
|
|
}
|
2009-07-07 07:23:25 -04:00
|
|
|
}
|