summaryrefslogtreecommitdiffstats
blob: 4f26bc1dc05b0cfdd7daa5a9fe79ed4abef6af71 (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
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * Copyright (c) 2014 Kevin Smith and Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#pragma once

#include <QTabBar>

namespace Swift {

class QtDNDTabBar : public QTabBar {
	Q_OBJECT
	public:
		explicit QtDNDTabBar(QWidget* parent = 0);
		virtual ~QtDNDTabBar();

		int getDragIndex() const;
		QString getDragText() const;
		QWidget* getDragWidget() const;

		virtual QSize sizeHint() const;

	signals:
		void onDropSucceeded();

	protected:
		void dragEnterEvent(QDragEnterEvent* dragEnterEvent);
		void dropEvent(QDropEvent* dropEvent);
		bool event(QEvent* event);

	private:
		int defaultTabHeight;
		int dragIndex;
		QString dragText;
		QWidget* dragWidget;
};

}