mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
06484d0663
The TabBar itself does not stretch the entire width of the TabWidget, because it leaves space for the width of the new-tab button. So, we manually tell Qt to paint the TabBar's background into the gap. Fixes #768.
61 lines
1.2 KiB
C++
61 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
|
|
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
|
* Copyright (c) 2024, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QProxyStyle>
|
|
#include <QPushButton>
|
|
#include <QTabBar>
|
|
#include <QTabWidget>
|
|
|
|
class QContextMenuEvent;
|
|
class QEvent;
|
|
class QIcon;
|
|
class QWidget;
|
|
|
|
namespace Ladybird {
|
|
|
|
class TabBar : public QTabBar {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TabBar(QWidget* parent = nullptr);
|
|
|
|
virtual QSize tabSizeHint(int index) const override;
|
|
virtual void contextMenuEvent(QContextMenuEvent* event) override;
|
|
};
|
|
|
|
class TabWidget : public QTabWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TabWidget(QWidget* parent = nullptr);
|
|
|
|
virtual void paintEvent(QPaintEvent*) override;
|
|
};
|
|
|
|
class TabBarButton : public QPushButton {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TabBarButton(QIcon const& icon, QWidget* parent = nullptr);
|
|
|
|
protected:
|
|
virtual bool event(QEvent* event) override;
|
|
};
|
|
|
|
class TabStyle : public QProxyStyle {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TabStyle(QObject* parent = nullptr);
|
|
|
|
virtual QRect subElementRect(QStyle::SubElement, QStyleOption const*, QWidget const*) const override;
|
|
};
|
|
|
|
}
|