2015-09-24 22:46:35 +02:00
|
|
|
/* ============================================================
|
2017-08-25 17:11:29 +02:00
|
|
|
* Falkon - Qt web browser
|
2018-01-04 16:50:45 +01:00
|
|
|
* Copyright (C) 2015-2018 David Rosca <nowrep@gmail.com>
|
2015-09-24 22:46:35 +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/>.
|
|
|
|
* ============================================================ */
|
|
|
|
|
|
|
|
#ifndef RECOVERYJSOBJECT_H
|
|
|
|
#define RECOVERYJSOBJECT_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2015-09-25 15:48:26 +02:00
|
|
|
#include <QJsonArray>
|
2015-09-24 22:46:35 +02:00
|
|
|
|
|
|
|
class WebPage;
|
2015-09-24 23:08:55 +02:00
|
|
|
class BrowserWindow;
|
2015-09-24 22:46:35 +02:00
|
|
|
class RestoreManager;
|
|
|
|
|
|
|
|
class RecoveryJsObject : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2016-12-01 23:11:07 +01:00
|
|
|
Q_PROPERTY(QJsonArray restoreData READ restoreData CONSTANT)
|
|
|
|
|
2015-09-24 22:46:35 +02:00
|
|
|
public:
|
|
|
|
explicit RecoveryJsObject(RestoreManager *manager);
|
|
|
|
|
|
|
|
void setPage(WebPage *page);
|
|
|
|
|
2015-09-25 15:48:26 +02:00
|
|
|
QJsonArray restoreData() const;
|
|
|
|
|
2018-02-25 13:33:07 +01:00
|
|
|
public Q_SLOTS:
|
2015-09-24 22:46:35 +02:00
|
|
|
void startNewSession();
|
2015-09-25 15:48:26 +02:00
|
|
|
void restoreSession(const QStringList &excludeWin, const QStringList &excludeTab);
|
2015-09-24 22:46:35 +02:00
|
|
|
|
|
|
|
private:
|
2018-01-04 16:50:45 +01:00
|
|
|
void closeTab();
|
2015-09-24 23:08:55 +02:00
|
|
|
|
2015-09-24 22:46:35 +02:00
|
|
|
RestoreManager *m_manager;
|
|
|
|
WebPage *m_page;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RECOVERYJSOBJECT_H
|