1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/webview/tabbar.h
2011-04-08 17:27:08 +02:00

82 lines
2.5 KiB
C++

/* ============================================================
* 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/>.
* ============================================================ */
#ifndef TABBAR_H
#define TABBAR_H
#include <QTabBar>
#include <QAction>
#include <QDebug>
#include <QMenu>
#include <QMouseEvent>
#include <QStyle>
#include <QSettings>
class QupZilla;
class TabBar : public QTabBar
{
Q_OBJECT
public:
explicit TabBar(QupZilla* mainClass, QWidget* parent = 0);
// void hideCloseButton(int index);
// void showCloseButton(int index);
void updateCloseButton(int index);
QSize getTabSizeHint(int index) { return QTabBar::tabSizeHint(index); }
void loadSettings();
QSize getTabSizeHint(int index) const { return QTabBar::tabSizeHint(index); }
signals:
void reloadTab(int index);
void stopTab(int index);
void backTab(int index);
void forwardTab(int index);
void closeAllButCurrent(int index);
void closeTab(int index);
void duplicateTab(int index);
public slots:
private slots:
void contextMenuRequested(const QPoint &position);
void reloadTab() { emit reloadTab(m_clickedTab); }
void stopTab() { emit stopTab(m_clickedTab); }
void backTab() { emit backTab(m_clickedTab); }
void forwardTab() { emit forwardTab(m_clickedTab); }
void closeAllButCurrent() { emit closeAllButCurrent(m_clickedTab); }
void closeTab() { emit closeTab(m_clickedTab); }
void duplicateTab() { emit duplicateTab(m_clickedTab); }
void bookmarkTab();
void pinTab();
void closeCurrentTab();
private:
void mouseDoubleClickEvent(QMouseEvent* event);
QSize tabSizeHint(int index) const;
#ifdef Q_WS_X11
void tabInserted(int index);
#endif
QupZilla* p_QupZilla;
bool m_showCloseButtonWithOneTab;
bool m_showTabBarWithOneTab;
int m_clickedTab;
};
#endif // TABBAR_H