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-05-07 12:59:53 +02:00
|
|
|
#include "closedtabsmanager.h"
|
2012-03-12 18:22:01 +01:00
|
|
|
#include "webtab.h"
|
2013-02-26 12:56:11 +01:00
|
|
|
#include "qztools.h"
|
2012-02-04 18:45:59 +01:00
|
|
|
#include "mainapplication.h"
|
2011-05-07 12:59:53 +02:00
|
|
|
|
2015-01-27 11:01:52 +01:00
|
|
|
#include <QWebEngineHistory>
|
|
|
|
#include <QWebEngineSettings>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
|
|
|
ClosedTabsManager::ClosedTabsManager()
|
2011-05-07 12:59:53 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-03-30 12:46:06 +02:00
|
|
|
void ClosedTabsManager::saveTab(WebTab* tab, int position)
|
2011-05-07 12:59:53 +02:00
|
|
|
{
|
2014-03-30 12:46:06 +02:00
|
|
|
if (mApp->isPrivate()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't save empty tab
|
|
|
|
if (tab->url().isEmpty() && tab->history()->items().count() == 0) {
|
2011-05-08 12:54:49 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-05-08 12:54:49 +02:00
|
|
|
|
2012-03-12 18:22:01 +01:00
|
|
|
Tab closedTab;
|
|
|
|
closedTab.url = tab->url();
|
|
|
|
closedTab.title = tab->title();
|
2014-03-30 12:46:06 +02:00
|
|
|
closedTab.icon = tab->icon();
|
2012-03-12 18:22:01 +01:00
|
|
|
closedTab.position = position;
|
|
|
|
closedTab.history = tab->historyData();
|
2015-12-13 20:48:38 +01:00
|
|
|
closedTab.zoomLevel = tab->zoomLevel();
|
2011-05-07 12:59:53 +02:00
|
|
|
|
2012-03-12 18:22:01 +01:00
|
|
|
m_closedTabs.prepend(closedTab);
|
2011-05-07 12:59:53 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 19:23:08 +01:00
|
|
|
bool ClosedTabsManager::isClosedTabAvailable()
|
|
|
|
{
|
|
|
|
return !m_closedTabs.isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
ClosedTabsManager::Tab ClosedTabsManager::takeLastClosedTab()
|
2011-05-07 12:59:53 +02:00
|
|
|
{
|
|
|
|
Tab tab;
|
2014-02-01 19:21:49 +01:00
|
|
|
tab.position = -1;
|
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
if (m_closedTabs.count() > 0) {
|
2014-02-10 19:23:08 +01:00
|
|
|
tab = m_closedTabs.takeFirst();
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-05-07 12:59:53 +02:00
|
|
|
|
|
|
|
return tab;
|
|
|
|
}
|
|
|
|
|
2014-02-10 19:23:08 +01:00
|
|
|
ClosedTabsManager::Tab ClosedTabsManager::takeTabAt(int index)
|
2011-05-07 12:59:53 +02:00
|
|
|
{
|
|
|
|
Tab tab;
|
2014-02-01 19:21:49 +01:00
|
|
|
tab.position = -1;
|
|
|
|
|
2014-02-10 19:23:08 +01:00
|
|
|
QLinkedList<Tab>::iterator it;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
for (it = m_closedTabs.begin(); it != m_closedTabs.end(); ++it, ++i) {
|
|
|
|
if (i == index) {
|
|
|
|
tab = *it;
|
|
|
|
m_closedTabs.erase(it);
|
|
|
|
break;
|
|
|
|
}
|
2011-05-07 12:59:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return tab;
|
|
|
|
}
|
|
|
|
|
2014-02-10 19:23:08 +01:00
|
|
|
QLinkedList<ClosedTabsManager::Tab> ClosedTabsManager::allClosedTabs()
|
2011-05-07 12:59:53 +02:00
|
|
|
{
|
2014-02-10 19:23:08 +01:00
|
|
|
return m_closedTabs;
|
2011-05-07 12:59:53 +02:00
|
|
|
}
|
2011-05-16 21:36:39 +02:00
|
|
|
|
|
|
|
void ClosedTabsManager::clearList()
|
|
|
|
{
|
|
|
|
m_closedTabs.clear();
|
|
|
|
}
|