You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
404 B
16 lines
404 B
#ifndef DOCKWIDGETEVENTFILTER_H |
|
#define DOCKWIDGETEVENTFILTER_H |
|
|
|
#include <QObject> |
|
|
|
/** Event filter to update a QLabel titleBarWidget if the window's title changes */ |
|
class DockWidgetEventFilter : public QObject |
|
{ |
|
Q_OBJECT |
|
public: |
|
DockWidgetEventFilter(QObject *parent = 0); |
|
protected: |
|
virtual bool eventFilter(QObject *object,QEvent *event) override; |
|
}; |
|
|
|
#endif // DOCKWIDGETEVENTFILTER_H
|
|
|