22 lines
429 B
C++
22 lines
429 B
C++
#ifndef NOTIFICATIONLISTWIDGET_H
|
|
#define NOTIFICATIONLISTWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class QListView;
|
|
class QTextEdit;
|
|
class Notification;
|
|
class NotificationListModel;
|
|
|
|
class NotificationListWidget: QWidget {
|
|
public:
|
|
NotificationListWidget();
|
|
|
|
private:
|
|
QListView *m_notificationList = nullptr;
|
|
QTextEdit *m_detailMessage;
|
|
NotificationListModel *m_notificationListModel = nullptr;
|
|
|
|
};
|
|
|
|
#endif // NOTIFICATIONLISTWIDGET_H
|