2011-09-23 22:06:21 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based 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-14 19:28:41 +01:00
|
|
|
#include "toolbutton.h"
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QHBoxLayout>
|
2014-02-13 16:44:00 +01:00
|
|
|
#include <QTimer>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2011-12-12 21:14:43 +01:00
|
|
|
ReloadStopButton::ReloadStopButton(QWidget* parent)
|
|
|
|
: QWidget(parent)
|
2014-02-14 19:28:41 +01:00
|
|
|
, m_loadInProgress(false)
|
2011-09-11 19:15:06 +02:00
|
|
|
{
|
|
|
|
QHBoxLayout* lay = new QHBoxLayout(this);
|
|
|
|
setLayout(lay);
|
|
|
|
|
2011-12-04 20:09:44 +01:00
|
|
|
m_buttonStop = new ToolButton(this);
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonStop->setObjectName("navigation-button-stop");
|
2012-01-21 20:27:45 +01:00
|
|
|
m_buttonStop->setToolTip(ToolButton::tr("Stop"));
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonStop->setToolButtonStyle(Qt::ToolButtonIconOnly);
|
2014-04-19 13:46:23 +02:00
|
|
|
m_buttonStop->setToolbarButtonLook(true);
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonStop->setVisible(false);
|
|
|
|
m_buttonStop->setAutoRaise(true);
|
2012-01-08 12:38:02 +01:00
|
|
|
m_buttonStop->setFocusPolicy(Qt::NoFocus);
|
2011-09-11 19:15:06 +02:00
|
|
|
|
2011-12-04 20:09:44 +01:00
|
|
|
m_buttonReload = new ToolButton(this);
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonReload->setObjectName("navigation-button-reload");
|
2012-01-21 20:27:45 +01:00
|
|
|
m_buttonReload->setToolTip(ToolButton::tr("Reload"));
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonReload->setToolButtonStyle(Qt::ToolButtonIconOnly);
|
2014-04-19 13:46:23 +02:00
|
|
|
m_buttonReload->setToolbarButtonLook(true);
|
2011-09-11 19:15:06 +02:00
|
|
|
m_buttonReload->setAutoRaise(true);
|
2012-01-08 12:38:02 +01:00
|
|
|
m_buttonReload->setFocusPolicy(Qt::NoFocus);
|
2011-09-11 19:15:06 +02:00
|
|
|
|
|
|
|
lay->addWidget(m_buttonStop);
|
|
|
|
lay->addWidget(m_buttonReload);
|
|
|
|
lay->setContentsMargins(0, 0, 0, 0);
|
|
|
|
lay->setSpacing(0);
|
2014-02-14 19:28:41 +01:00
|
|
|
|
|
|
|
m_updateTimer = new QTimer(this);
|
|
|
|
m_updateTimer->setInterval(100);
|
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
|
|
|
|
|
|
|
connect(m_buttonStop, SIGNAL(clicked()), this, SIGNAL(stopClicked()));
|
|
|
|
connect(m_buttonReload, SIGNAL(clicked()), this, SIGNAL(reloadClicked()));
|
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-02-14 19:28:41 +01:00
|
|
|
setUpdatesEnabled(false);
|
|
|
|
m_buttonStop->setVisible(m_loadInProgress);
|
|
|
|
m_buttonReload->setVisible(!m_loadInProgress);
|
2014-02-13 16:44:00 +01:00
|
|
|
setUpdatesEnabled(true);
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|