2011-09-23 22:06:21 +02:00
|
|
|
/* ============================================================
|
2017-08-25 17:11:29 +02:00
|
|
|
* Falkon - Qt web browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2011-09-23 22:06:21 +02:00
|
|
|
*
|
|
|
|
* 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 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-09-11 19:15:06 +02:00
|
|
|
#include "reloadstopbutton.h"
|
|
|
|
|
2014-02-13 16:44:00 +01:00
|
|
|
#include <QTimer>
|
2014-04-19 14:40:54 +02:00
|
|
|
#include <QStyle>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2011-12-12 21:14:43 +01:00
|
|
|
ReloadStopButton::ReloadStopButton(QWidget* parent)
|
2014-04-19 14:40:54 +02:00
|
|
|
: ToolButton(parent)
|
2014-02-14 19:28:41 +01:00
|
|
|
, m_loadInProgress(false)
|
2011-09-11 19:15:06 +02:00
|
|
|
{
|
2014-04-19 14:40:54 +02:00
|
|
|
setToolButtonStyle(Qt::ToolButtonIconOnly);
|
|
|
|
setToolbarButtonLook(true);
|
|
|
|
setAutoRaise(true);
|
|
|
|
setFocusPolicy(Qt::NoFocus);
|
2014-02-14 19:28:41 +01:00
|
|
|
|
|
|
|
m_updateTimer = new QTimer(this);
|
2014-04-19 14:40:54 +02:00
|
|
|
m_updateTimer->setInterval(50);
|
2014-03-17 08:58:49 +01:00
|
|
|
m_updateTimer->setSingleShot(true);
|
2014-02-14 19:28:41 +01:00
|
|
|
connect(m_updateTimer, SIGNAL(timeout()), this, SLOT(updateButton()));
|
2014-04-19 13:46:23 +02:00
|
|
|
|
2014-04-19 14:40:54 +02:00
|
|
|
connect(this, SIGNAL(clicked()), this, SLOT(buttonClicked()));
|
|
|
|
|
|
|
|
updateButton();
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
2014-02-13 16:44:00 +01:00
|
|
|
void ReloadStopButton::showStopButton()
|
|
|
|
{
|
2014-02-14 19:28:41 +01:00
|
|
|
m_loadInProgress = true;
|
|
|
|
m_updateTimer->start();
|
2014-02-13 16:44:00 +01:00
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
void ReloadStopButton::showReloadButton()
|
|
|
|
{
|
2014-02-14 19:28:41 +01:00
|
|
|
m_loadInProgress = false;
|
|
|
|
m_updateTimer->start();
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
2014-02-14 19:28:41 +01:00
|
|
|
void ReloadStopButton::updateButton()
|
2014-02-13 16:44:00 +01:00
|
|
|
{
|
2014-04-19 14:40:54 +02:00
|
|
|
if (m_loadInProgress) {
|
|
|
|
setToolTip(tr("Stop"));
|
|
|
|
setObjectName(QSL("navigation-button-stop"));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
setToolTip(tr("Reload"));
|
|
|
|
setObjectName(QSL("navigation-button-reload"));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the stylesheet for the changed object name
|
|
|
|
style()->unpolish(this);
|
|
|
|
style()->polish(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReloadStopButton::buttonClicked()
|
|
|
|
{
|
|
|
|
if (m_loadInProgress)
|
|
|
|
emit stopClicked();
|
|
|
|
else
|
|
|
|
emit reloadClicked();
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|