aboutsummaryrefslogtreecommitdiff
path: root/src/widgets/browsertabbar.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/browsertabbar.hpp')
-rw-r--r--src/widgets/browsertabbar.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/widgets/browsertabbar.hpp b/src/widgets/browsertabbar.hpp
new file mode 100644
index 0000000..f1cd49b
--- /dev/null
+++ b/src/widgets/browsertabbar.hpp
@@ -0,0 +1,15 @@
+#ifndef BROWSERTABS_HPP
+#define BROWSERTABS_HPP
+
+#include <QTabBar>
+
+class BrowserTabBar : public QTabBar
+{
+ Q_OBJECT
+public:
+ explicit BrowserTabBar(QWidget * parent);
+
+ void mouseReleaseEvent(QMouseEvent *event) override;
+};
+
+#endif // BROWSERTABS_HPP