summaryrefslogtreecommitdiffstats
blob: 7534c5a5234b9bbd97e3f610f38defb7b8111169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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);
			void handleWidgetShown();
		private:
			QTabWidget* tabs_;
	};
}