22 lines
338 B
C
22 lines
338 B
C
|
#ifndef STATUSWINDOW_H
|
||
|
#define STATUSWINDOW_H
|
||
|
|
||
|
#include <QQuickWindow>
|
||
|
|
||
|
class StatusWindow: public QQuickWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit StatusWindow(QWindow *parent = nullptr)
|
||
|
: QQuickWindow(parent)
|
||
|
{
|
||
|
removeTitleBar(winId());
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
void removeTitleBar(WId wid);
|
||
|
};
|
||
|
|
||
|
#endif // STATUSWINDOW_H
|