2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2013-02-09 13:00:45 +01:00
|
|
|
* Copyright (C) 2010-2013 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 WEBTAB_H
|
|
|
|
#define WEBTAB_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2012-12-20 14:45:35 +01:00
|
|
|
#include <QPointer>
|
2012-03-11 15:17:12 +01:00
|
|
|
#include <QIcon>
|
|
|
|
#include <QUrl>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
|
|
|
#include "qz_namespace.h"
|
|
|
|
|
|
|
|
class QVBoxLayout;
|
2012-03-11 15:17:12 +01:00
|
|
|
class QWebHistory;
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
class QupZilla;
|
2011-07-11 20:30:49 +02:00
|
|
|
class LocationBar;
|
2012-03-11 15:17:12 +01:00
|
|
|
class WebView;
|
2012-02-29 18:33:50 +01:00
|
|
|
class TabbedWebView;
|
|
|
|
|
|
|
|
class QT_QUPZILLA_EXPORT WebTab : public QWidget
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2012-03-11 15:17:12 +01:00
|
|
|
struct SavedTab {
|
|
|
|
QString title;
|
|
|
|
QUrl url;
|
|
|
|
QIcon icon;
|
|
|
|
QByteArray history;
|
|
|
|
|
|
|
|
SavedTab() { }
|
|
|
|
SavedTab(WebTab* webTab);
|
|
|
|
|
|
|
|
bool isEmpty() const { return url.isEmpty(); }
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
friend QT_QUPZILLA_EXPORT QDataStream &operator<<(QDataStream &stream, const SavedTab &tab);
|
|
|
|
friend QT_QUPZILLA_EXPORT QDataStream &operator>>(QDataStream &stream, SavedTab &tab);
|
|
|
|
};
|
|
|
|
|
2011-07-11 20:30:49 +02:00
|
|
|
explicit WebTab(QupZilla* mainClass, LocationBar* locationBar);
|
2011-03-02 16:57:41 +01:00
|
|
|
~WebTab();
|
2012-03-11 15:17:12 +01:00
|
|
|
|
|
|
|
TabbedWebView* view() const;
|
|
|
|
void setCurrentTab();
|
|
|
|
|
|
|
|
QUrl url() const;
|
|
|
|
QString title() const;
|
|
|
|
QIcon icon() const;
|
2012-03-15 19:35:37 +01:00
|
|
|
QWebHistory* history() const;
|
2012-03-12 18:22:01 +01:00
|
|
|
|
2013-05-12 22:55:53 +02:00
|
|
|
void moveToWindow(QupZilla* window);
|
|
|
|
|
2012-03-12 18:22:01 +01:00
|
|
|
void setHistoryData(const QByteArray &data);
|
|
|
|
QByteArray historyData() const;
|
2012-03-11 15:17:12 +01:00
|
|
|
|
|
|
|
void reload();
|
|
|
|
void stop();
|
|
|
|
bool isLoading() const;
|
|
|
|
|
|
|
|
bool isPinned() const;
|
2011-03-25 19:16:21 +01:00
|
|
|
void pinTab(int index);
|
2011-12-18 16:57:14 +01:00
|
|
|
void setPinned(bool state);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-03-11 15:17:12 +01:00
|
|
|
int tabIndex() const;
|
|
|
|
|
2011-12-18 16:57:14 +01:00
|
|
|
void setLocationBar(LocationBar* bar);
|
2012-03-11 15:17:12 +01:00
|
|
|
LocationBar* locationBar() const;
|
2011-07-11 20:30:49 +02:00
|
|
|
|
2012-03-11 15:17:12 +01:00
|
|
|
bool inspectorVisible() const;
|
2011-12-18 16:57:14 +01:00
|
|
|
void setInspectorVisible(bool v);
|
2011-10-14 20:14:57 +02:00
|
|
|
|
2012-03-11 15:17:12 +01:00
|
|
|
SavedTab savedTab() const;
|
|
|
|
bool isRestored() const;
|
|
|
|
|
|
|
|
void restoreTab(const SavedTab &tab);
|
|
|
|
|
|
|
|
void p_restoreTab(const SavedTab &tab);
|
|
|
|
void p_restoreTab(const QUrl &url, const QByteArray &history);
|
|
|
|
|
2012-04-08 21:45:40 +02:00
|
|
|
QPixmap renderTabPreview();
|
|
|
|
|
2012-01-14 11:46:06 +01:00
|
|
|
void disconnectObjects();
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
private slots:
|
|
|
|
void showNotification(QWidget* notif);
|
2013-02-11 09:51:22 +01:00
|
|
|
void slotRestore();
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
QupZilla* p_QupZilla;
|
2012-01-21 20:27:45 +01:00
|
|
|
TabbedWebView* m_view;
|
2011-03-02 16:57:41 +01:00
|
|
|
QVBoxLayout* m_layout;
|
2013-02-09 13:00:45 +01:00
|
|
|
QWidget* m_navigationContainer;
|
2012-12-20 14:45:35 +01:00
|
|
|
QPointer<LocationBar> m_locationBar;
|
2011-03-25 19:16:21 +01:00
|
|
|
|
2012-03-11 15:17:12 +01:00
|
|
|
SavedTab m_savedTab;
|
|
|
|
|
2011-03-25 19:16:21 +01:00
|
|
|
bool m_pinned;
|
2011-10-14 20:14:57 +02:00
|
|
|
bool m_inspectorVisible;
|
2011-03-02 16:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // WEBTAB_H
|