-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtabbedviewwidget.h
65 lines (54 loc) · 2.03 KB
/
tabbedviewwidget.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
SPDX-FileCopyrightText: 2009 Tony Murray <[email protected]>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef TABBEDVIEWWIDGET_H
#define TABBEDVIEWWIDGET_H
#include <QAbstractItemModel>
#include <QMouseEvent>
#include <QTabWidget>
class TabbedViewWidgetModel : public QAbstractItemModel
{
friend class TabbedViewWidget;
Q_OBJECT
public:
explicit TabbedViewWidgetModel(QTabWidget *modelTarget);
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
QModelIndex parent(const QModelIndex &index) const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
Qt::ItemFlags flags(const QModelIndex &index) const override;
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
QVariant data(const QModelIndex &index, int role) const override;
protected:
void emitLayoutAboutToBeChanged();
void emitLayoutChanged();
void emitDataChanged(int index);
private:
QTabWidget *m_tabWidget;
};
class TabbedViewWidget : public QTabWidget
{
Q_OBJECT
public:
explicit TabbedViewWidget(QWidget *parent = nullptr);
~TabbedViewWidget() override;
TabbedViewWidgetModel *getModel();
int addTab(QWidget *page, const QString &label);
int addTab(QWidget *page, const QIcon &icon, const QString &label);
int insertTab(int index, QWidget *page, const QString &label);
int insertTab(int index, QWidget *page, const QIcon &icon, const QString &label);
void removeTab(int index);
void removePage(QWidget *page);
void moveTab(int from, int to);
void setTabText(int index, const QString &label);
Q_SIGNALS:
void mouseMiddleClick(int index);
protected:
void mouseDoubleClickEvent(QMouseEvent *event) override;
void mouseReleaseEvent(QMouseEvent *) override;
private:
TabbedViewWidgetModel *m_model;
bool isEmptyTabbarSpace(const QPoint &point) const;
};
#endif // FULLSCREENWINDOW_H