-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockWidget.h
45 lines (34 loc) · 1.16 KB
/
DockWidget.h
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
45
#ifndef DOCKWIDGET_H
#define DOCKWIDGET_H
#include "DockWidgetTitleBar.h"
#include "DockMainWidgetWrapper.h"
#include <QDockWidget>
#include <QEvent>
#include <QTimer>
class DockMainWidgetWrapper;
class DockWidgetTitleBar;
class DockWidget : public QDockWidget {
Q_OBJECT
public:
explicit DockWidget ( const QString &title, QWidget *parent = Q_NULLPTR, Qt::WindowFlags flags = Qt::WindowFlags () );
explicit DockWidget ( QWidget *parent = Q_NULLPTR, Qt::WindowFlags flags = Qt::WindowFlags () );
void enterEvent ( QEvent *event ) Q_DECL_OVERRIDE;
bool isCollapsed ();
bool isPinned ();
void leaveEvent ( QEvent *event ) Q_DECL_OVERRIDE;
void setCollapsed ( bool flag );
void setPinned ( bool flag );
void setWidget ( QWidget *widget );
void toggleCollapsed ();
static bool hasFeature ( QDockWidget *dockwidget, QDockWidget::DockWidgetFeature feature );
public slots:
void autohide ();
void autoshow ();
private:
bool entered;
DockMainWidgetWrapper *mainWidget;
bool pinned;
bool shot;
DockWidgetTitleBar *titleBar;
};
#endif // DOCKWIDGET_H