blob: 37acc913b6cbd16694e03eabbc24a5199ecae0a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#pragma once
#include "QtTabbable.h"
#include <QWidget>
class QTabWidget;
namespace Swift {
class QtChatTabs : public QWidget {
Q_OBJECT
public:
QtChatTabs();
void addTab(QtTabbable* tab);
private slots:
void handleTabClosing();
void handleTabTitleUpdated();
void handleTabCloseRequested(int index);
private:
QTabWidget* tabs_;
};
}
|