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
|
|
|
#ifndef RELOADSTOPBUTTON_H
|
|
|
|
#define RELOADSTOPBUTTON_H
|
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2014-04-19 14:40:54 +02:00
|
|
|
#include "toolbutton.h"
|
2014-02-14 19:28:41 +01:00
|
|
|
|
|
|
|
class QTimer;
|
|
|
|
|
2014-04-19 14:40:54 +02:00
|
|
|
class QUPZILLA_EXPORT ReloadStopButton : public ToolButton
|
2011-09-11 19:15:06 +02:00
|
|
|
{
|
2014-02-13 16:44:00 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
public:
|
2011-11-06 17:01:23 +01:00
|
|
|
explicit ReloadStopButton(QWidget* parent = 0);
|
2011-09-11 19:15:06 +02:00
|
|
|
|
|
|
|
void showStopButton();
|
|
|
|
void showReloadButton();
|
|
|
|
|
2014-04-19 13:46:23 +02:00
|
|
|
signals:
|
|
|
|
void stopClicked();
|
|
|
|
void reloadClicked();
|
2014-02-13 16:44:00 +01:00
|
|
|
|
|
|
|
private slots:
|
2014-02-14 19:28:41 +01:00
|
|
|
void updateButton();
|
2014-04-19 14:40:54 +02:00
|
|
|
void buttonClicked();
|
2011-09-11 19:15:06 +02:00
|
|
|
|
|
|
|
private:
|
2014-02-14 19:28:41 +01:00
|
|
|
bool m_loadInProgress;
|
|
|
|
QTimer* m_updateTimer;
|
2011-09-11 19:15:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RELOADSTOPBUTTON_H
|