2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2016-02-26 10:43:34 +01:00
|
|
|
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
|
2011-03-03 18:29:20 +01: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-03-02 16:57:41 +01:00
|
|
|
#ifndef AUTOSAVER_H
|
|
|
|
#define AUTOSAVER_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QBasicTimer>
|
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
class QUPZILLA_EXPORT AutoSaver : public QObject
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2014-03-06 16:12:36 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
public:
|
2011-03-17 17:03:04 +01:00
|
|
|
explicit AutoSaver(QObject* parent = 0);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2014-03-06 16:12:36 +01:00
|
|
|
// Emits save() if timer is running. Call this from destructor.
|
|
|
|
void saveIfNecessary();
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2014-03-10 00:47:07 +01:00
|
|
|
public slots:
|
|
|
|
// Tells AutoSaver that change occurred. Signal save() will be emitted after a delay
|
2016-02-26 10:43:34 +01:00
|
|
|
void changeOccurred();
|
2014-03-10 00:47:07 +01:00
|
|
|
|
2014-03-06 16:12:36 +01:00
|
|
|
signals:
|
|
|
|
void save();
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
private:
|
2011-03-17 17:03:04 +01:00
|
|
|
void timerEvent(QTimerEvent* event);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2014-03-06 16:12:36 +01:00
|
|
|
QBasicTimer m_timer;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // AUTOSAVER_H
|