mirror of https://github.com/cutefishos/core
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
331 B
C++
19 lines
331 B
C++
#ifndef NOTIFICATIONWINDOW_H
|
|
#define NOTIFICATIONWINDOW_H
|
|
|
|
#include <QQuickView>
|
|
|
|
class NotificationWindow : public QQuickView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit NotificationWindow(QQuickView *parent = nullptr);
|
|
|
|
void open();
|
|
|
|
bool eventFilter(QObject *object, QEvent *event) override;
|
|
};
|
|
|
|
#endif // NOTIFICATIONWINDOW_H
|