1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/webview/tabwidget.h

97 lines
3.1 KiB
C
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2011 nowrep
*
* 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 TABWIDGET_H
#define TABWIDGET_H
#include "webview.h"
#include "webtab.h"
#include <QTabWidget>
#include <QTabBar>
#include <QDateTime>
#include <QToolButton>
#include <QStylePainter>
2011-03-02 16:57:41 +01:00
class QupZilla;
class WebView;
class TabBar;
class WebTab;
class TabListButton;
class NewTabButton;
class ClosedTabsManager;
2011-03-02 16:57:41 +01:00
class TabWidget : public QTabWidget
{
Q_OBJECT
public:
2011-03-17 17:03:04 +01:00
explicit TabWidget(QupZilla* mainclass, QWidget* parent = 0);
2011-03-02 16:57:41 +01:00
~TabWidget();
enum OpenUrlIn{ CurrentTab, NewSelectedTab, NewNotSelectedTab, NewTab = NewSelectedTab };
QByteArray saveState();
bool restoreState(const QByteArray &state);
2011-03-25 19:16:21 +01:00
void savePinnedTabs();
void restorePinnedTabs();
2011-04-24 09:08:53 +02:00
void setTabText(int index, const QString &text);
2011-03-02 16:57:41 +01:00
void loadSettings();
inline TabBar* getTabBar() { return m_tabBar; }
inline ClosedTabsManager* closedTabsManager() { return m_closedTabsManager; }
bool canRestoreTab();
QList<WebTab*> allTabs(bool withPinned = true);
2011-03-02 16:57:41 +01:00
public slots:
void closeTab(int index=-1);
2011-04-24 09:08:53 +02:00
int addView(QUrl url = QUrl(), const QString &title = tr("New tab"), OpenUrlIn openIn = NewTab, bool selectLine = false);
2011-03-02 16:57:41 +01:00
void reloadTab(int index) { weView(index)->reload(); }
void reloadAllTabs();
void stopTab(int index) { weView(index)->stop(); }
void backTab(int index) { weView(index)->back(); }
void forwardTab(int index) { weView(index)->forward(); }
2011-04-08 17:27:08 +02:00
void duplicateTab(int index);
2011-03-02 16:57:41 +01:00
void closeAllButCurrent(int index);
void restoreClosedTab();
void restoreAllClosedTabs();
2011-03-02 16:57:41 +01:00
private slots:
void aboutToShowTabsMenu();
void actionChangeIndex();
2011-03-25 19:16:21 +01:00
void tabChanged(int index);
2011-03-02 16:57:41 +01:00
private:
inline WebView* weView() { WebTab* webTab = qobject_cast<WebTab*>(widget(currentIndex())); if (!webTab) return 0; return webTab->view(); }
inline WebView* weView(int index) { WebTab* webTab = qobject_cast<WebTab*>(widget(index)); if (!webTab) return 0; return webTab->view(); }
2011-03-02 16:57:41 +01:00
bool m_hideCloseButtonWithOneTab;
bool m_hideTabBarWithOneTab;
QUrl m_urlOnNewTab;
QupZilla* p_QupZilla;
int m_lastTabIndex;
TabBar* m_tabBar;
QMenu* m_menuTabs;
NewTabButton* m_buttonAddTab;
TabListButton* m_buttonListTabs;
ClosedTabsManager* m_closedTabsManager;
2011-03-02 16:57:41 +01:00
};
#endif // TABWIDGET_H