1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-14 19:12:11 +01:00
falkonOfficial/src/lib/tabwidget/tabbar.h

94 lines
2.6 KiB
C
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
2017-08-25 17:11:29 +02:00
* Falkon - Qt web browser
* Copyright (C) 2010-2018 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 "combotabbar.h"
#include "qzcommon.h"
2011-03-02 16:57:41 +01:00
class BrowserWindow;
class TabWidget;
class WebTab;
2017-08-25 17:11:29 +02:00
class FALKON_EXPORT TabBar : public ComboTabBar
2011-03-02 16:57:41 +01:00
{
Q_OBJECT
public:
explicit TabBar(BrowserWindow* window, TabWidget* tabWidget);
2011-03-25 19:16:21 +01:00
void loadSettings();
2011-03-02 16:57:41 +01:00
TabWidget* tabWidget() const;
void setVisible(bool visible);
void setForceHidden(bool hidden);
void setTabText(int index, const QString &text);
void wheelEvent(QWheelEvent* event);
2011-03-02 16:57:41 +01:00
signals:
void moveAddTabButton(int posX);
2011-03-02 16:57:41 +01:00
private slots:
2012-04-09 14:09:40 +02:00
void currentTabChanged(int index);
void overflowChanged(bool overflowed);
void closeTabFromButton();
2011-03-25 19:16:21 +01:00
2011-03-02 16:57:41 +01:00
private:
inline bool validIndex(int index) const { return index >= 0 && index < count(); }
void tabInserted(int index);
void tabRemoved(int index);
void hideCloseButton(int index);
void showCloseButton(int index);
void updatePinnedTabCloseButton(int index);
void contextMenuEvent(QContextMenuEvent* event);
2012-03-05 13:16:34 +01:00
void mouseDoubleClickEvent(QMouseEvent* event);
void mousePressEvent(QMouseEvent* event);
void mouseMoveEvent(QMouseEvent* event);
void mouseReleaseEvent(QMouseEvent* event);
2012-03-05 13:16:34 +01:00
void dragEnterEvent(QDragEnterEvent* event);
void dragMoveEvent(QDragMoveEvent *event);
void dragLeaveEvent(QDragLeaveEvent *event);
void dropEvent(QDropEvent* event);
QSize tabSizeHint(int index, bool fast) const;
int comboTabBarPixelMetric(ComboTabBar::SizeType sizeType) const;
WebTab* webTab(int index = -1) const;
BrowserWindow* m_window;
TabWidget* m_tabWidget;
bool m_hideTabBarWithOneTab;
2014-02-23 14:54:22 +01:00
int m_showCloseOnInactive;
2011-03-02 16:57:41 +01:00
2012-04-21 22:19:35 +02:00
mutable int m_normalTabWidth;
mutable int m_activeTabWidth;
QPoint m_dragStartPosition;
bool m_forceHidden;
2011-03-02 16:57:41 +01:00
};
#endif // TABBAR_H