blob: 87b8b10db1ac5370449ba0ebb11dd6f8d0de308a (
plain)
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
|
#pragma once
#include "QtTabbable.h"
#include <QWidget>
class QTabWidget;
namespace Swift {
class QtChatTabs : public QWidget {
Q_OBJECT
public:
QtChatTabs();
void addTab(QtTabbable* tab);
void minimise();
protected slots:
void closeEvent(QCloseEvent* event);
private slots:
void handleTabClosing();
void handleTabTitleUpdated();
void handleTabCloseRequested(int index);
void handleWidgetShown();
void handleWantsToActivate();
private:
QTabWidget* tabs_;
};
}
|