blob: 6de04d5fdf5086d1fdf5574067af36969a36eda6 (
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
41
42
43
44
|
/*
* Copyright (c) 2014-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <QTabBar>
#include <Swift/QtUI/QtTabWidget.h>
namespace Swift {
class QtDNDTabBar : public QTabBar {
Q_OBJECT
public:
explicit QtDNDTabBar(QWidget* parent = nullptr);
virtual ~QtDNDTabBar();
int getDragIndex() const;
QString getDragText() const;
QWidget* getDragWidget() const;
virtual QSize sizeHint() const;
friend class QtTabWidget;
signals:
void onDropSucceeded();
protected:
virtual void dragEnterEvent(QDragEnterEvent* dragEnterEvent);
virtual void dropEvent(QDropEvent* dropEvent);
virtual bool event(QEvent* event);
virtual QSize tabSizeHint(int index) const;
private:
int defaultTabHeight;
int dragIndex = -1;
QString dragText;
QWidget* dragWidget = nullptr;
};
}
|