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"
|
|
|
|
|
|
|
|
#include "gui/notifyqt.h"
|
|
|
|
|
2010-10-29 08:35:10 -04:00
|
|
|
class StatusLabel : public QLabel
|
2010-10-09 14:35:34 -04:00
|
|
|
{
|
|
|
|
public:
|
2010-10-29 08:35:10 -04:00
|
|
|
StatusLabel(QLayout *layout, QWidget *parent = NULL, Qt::WindowFlags f = 0) : QLabel(parent, f)
|
2010-10-09 14:35:34 -04:00
|
|
|
{
|
|
|
|
m_layout = layout;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual QSize minimumSizeHint() const
|
|
|
|
{
|
|
|
|
const QSize sizeHint = QLabel::minimumSizeHint();
|
|
|
|
|
|
|
|
// do not resize the layout
|
|
|
|
return QSize(qMin(sizeHint.width(), m_layout->geometry().width()), sizeHint.height());
|
|
|
|
}
|
2009-07-07 07:23:25 -04:00
|
|
|
|
2010-10-09 14:35:34 -04:00
|
|
|
private:
|
|
|
|
QLayout *m_layout;
|
|
|
|
};
|
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
|
|
|
|
|
|
|
hashloader = new QLabel(this);
|
|
|
|
hbox->addWidget(hashloader);
|
2010-10-09 14:35:34 -04:00
|
|
|
|
2010-10-29 08:35:10 -04:00
|
|
|
statusHashing = new StatusLabel(hbox, this);
|
2009-07-07 07:23:25 -04:00
|
|
|
hbox->addWidget(statusHashing);
|
|
|
|
|
|
|
|
QSpacerItem *horizontalSpacer = new QSpacerItem(1000, 0, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
|
|
|
hbox->addItem(horizontalSpacer);
|
|
|
|
|
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-10-29 08:50:33 -04:00
|
|
|
|
2009-07-07 07:23:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void HashingStatus::updateHashingInfo(const QString& s)
|
|
|
|
{
|
2010-10-29 08:50:33 -04:00
|
|
|
QMovie *movie = new QMovie(":/images/loader/16-loader.gif");
|
|
|
|
|
2010-10-09 14:35:34 -04:00
|
|
|
if(s.isEmpty()) {
|
|
|
|
statusHashing->hide() ;
|
2010-10-29 08:50:33 -04:00
|
|
|
hashloader->hide() ;
|
2010-10-09 14:35:34 -04:00
|
|
|
} else {
|
|
|
|
statusHashing->setText(s);
|
|
|
|
statusHashing->show();
|
2010-10-29 08:50:33 -04:00
|
|
|
hashloader->show() ;
|
|
|
|
|
|
|
|
hashloader->setMovie(movie);
|
|
|
|
movie->start();
|
|
|
|
movie->setSpeed(80); // 2x speed
|
2010-10-09 14:35:34 -04:00
|
|
|
}
|
2009-07-07 07:23:25 -04:00
|
|
|
}
|