#ifndef DOCKWIDGETEVENTFILTER_H#define DOCKWIDGETEVENTFILTER_H#include <QObject>/** Event filter to update a QLabel titleBarWidget if the window's title changes */classDockWidgetEventFilter:publicQObject{Q_OBJECTpublic:DockWidgetEventFilter(QObject*parent=0);protected:virtualbooleventFilter(QObject*object,QEvent*event)override;};#endif // DOCKWIDGETEVENTFILTER_H