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

109 lines
3.0 KiB
C
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2012 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 TABBAR_H
#define TABBAR_H
#include <QTabBar>
#include "qz_namespace.h"
2011-03-02 16:57:41 +01:00
class QupZilla;
class TabWidget;
class QT_QUPZILLA_EXPORT TabBar : public QTabBar
2011-03-02 16:57:41 +01:00
{
Q_OBJECT
public:
explicit TabBar(QupZilla* mainClass, TabWidget* tabWidget);
2011-03-25 19:16:21 +01:00
// 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); }
2011-03-02 16:57:41 +01:00
void setVisible(bool visible);
void updateVisibilityWithFullscreen(bool visible);
int pinnedTabsCount();
int normalTabsCount();
void disconnectObjects();
2011-03-02 16:57:41 +01:00
signals:
void reloadTab(int index);
void stopTab(int index);
void closeAllButCurrent(int index);
void closeTab(int index);
2011-04-08 17:27:08 +02:00
void duplicateTab(int index);
2011-03-02 16:57:41 +01:00
void moveAddTabButton(int posX);
void showButtons();
void hideButtons();
2011-03-02 16:57:41 +01:00
public slots:
private slots:
void pinnedTabAdded();
void pinnedTabClosed();
2011-03-02 16:57:41 +01:00
void contextMenuRequested(const QPoint &position);
void reloadTab() { emit reloadTab(m_clickedTab); }
void stopTab() { emit stopTab(m_clickedTab); }
void closeAllButCurrent() { emit closeAllButCurrent(m_clickedTab); }
void closeTab() { emit closeTab(m_clickedTab); }
2011-04-08 17:27:08 +02:00
void duplicateTab() { emit duplicateTab(m_clickedTab); }
2011-03-02 16:57:41 +01:00
void bookmarkTab();
2011-03-25 19:16:21 +01:00
void pinTab();
void closeCurrentTab();
2011-03-02 16:57:41 +01:00
private:
2012-03-05 13:16:34 +01:00
void mouseDoubleClickEvent(QMouseEvent* event);
void mousePressEvent(QMouseEvent* event);
void mouseMoveEvent(QMouseEvent* event);
void mouseReleaseEvent(QMouseEvent* event);
void wheelEvent(QWheelEvent* event);
2012-03-05 13:16:34 +01:00
void dragEnterEvent(QDragEnterEvent* event);
void dropEvent(QDropEvent* event);
2011-03-25 19:16:21 +01:00
QSize tabSizeHint(int index) const;
// void tabInserted(int index);
2011-03-02 16:57:41 +01:00
// void emitMoveAddTabButton(int pox);
2011-03-02 16:57:41 +01:00
QupZilla* p_QupZilla;
TabWidget* m_tabWidget;
2011-03-02 16:57:41 +01:00
bool m_showCloseButtonWithOneTab;
bool m_showTabBarWithOneTab;
2011-03-02 16:57:41 +01:00
int m_clickedTab;
int m_pinnedTabsCount;
2011-03-02 16:57:41 +01:00
int m_normalTabWidth;
int m_lastTabWidth;
bool m_adjustingLastTab;
QPoint m_dragStartPosition;
2011-03-02 16:57:41 +01:00
};
#endif // TABBAR_H