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