2018-12-25 14:54:48 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* gui/statusbar/hashingstatus.cpp *
|
|
|
|
* *
|
|
|
|
* Copyright (c) 2008 Retroshare Team <retroshare.project@gmail.com> *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2009-07-07 07:23:25 -04:00
|
|
|
|
|
|
|
#include <QLayout>
|
|
|
|
#include <QLabel>
|
2010-10-29 08:50:33 -04:00
|
|
|
#include <QMovie>
|
2017-09-10 16:07:36 -04:00
|
|
|
#include <QToolButton>
|
2009-07-07 07:23:25 -04:00
|
|
|
|
2017-09-10 16:07:36 -04:00
|
|
|
#include "retroshare/rsfiles.h"
|
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)
|
|
|
|
{
|
2017-09-10 16:07:36 -04:00
|
|
|
if (s.isEmpty())
|
|
|
|
{
|
2014-05-29 12:15:26 -04:00
|
|
|
statusHashing->hide() ;
|
|
|
|
hashloader->hide() ;
|
2019-08-25 04:22:58 -04:00
|
|
|
setToolTip(QString());
|
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 {
|
2017-09-10 16:07:36 -04:00
|
|
|
setToolTip(s + "\n"+QObject::tr("Click to pause the hashing process"));
|
2014-05-29 12:15:26 -04:00
|
|
|
|
|
|
|
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
|
|
|
}
|
2017-09-10 16:07:36 -04:00
|
|
|
|
|
|
|
void HashingStatus::mousePressEvent(QMouseEvent *)
|
|
|
|
{
|
|
|
|
rsFiles->togglePauseHashingProcess() ;
|
|
|
|
|
|
|
|
if(rsFiles->hashingProcessPaused())
|
|
|
|
{
|
|
|
|
movie->stop() ;
|
|
|
|
hashloader->setPixmap(QPixmap(":/images/resume.png")) ;
|
|
|
|
|
|
|
|
mLastText = statusHashing->text();
|
|
|
|
statusHashing->setText(QObject::tr("[Hashing is paused]"));
|
|
|
|
setToolTip(QObject::tr("Click to resume the hashing process"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hashloader->setMovie(movie) ;
|
|
|
|
statusHashing->setText(mLastText);
|
|
|
|
movie->start() ;
|
|
|
|
}
|
|
|
|
}
|