summaryrefslogtreecommitdiffstats
blob: 194cce80c06fb937f3315367c862be618ec5f1cb (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 Isode Limited.
 * All rights reserved.
 * See the COPYING file 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;
};

}