mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 01:45:38 +08:00
29 lines
567 B
C++
29 lines
567 B
C++
#ifndef BLACKGUI_STATUSMESSAGEVIEW_H
|
|
#define BLACKGUI_STATUSMESSAGEVIEW_H
|
|
|
|
#include "viewbase.h"
|
|
#include "statusmessagelistmodel.h"
|
|
|
|
namespace BlackGui
|
|
{
|
|
/*!
|
|
* \brief Status message view
|
|
*/
|
|
class CStatusMessageView : public CViewBase<CStatusMessageListModel>
|
|
{
|
|
|
|
public:
|
|
|
|
//! Constructor
|
|
explicit CStatusMessageView(QWidget *parent = nullptr);
|
|
|
|
private:
|
|
QMenu *m_contextMenu;
|
|
|
|
private slots:
|
|
//! Context menu for message list
|
|
void contextMenu(const QPoint &position);
|
|
};
|
|
}
|
|
#endif // guard
|