mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
Allow message inbox to dock into the main UI Enable column sorting in the message table Rework mark-as-read signals to trigger on row deselection Add SemiSortableHeader subclass of QHeaderView
23 lines
340 B
C++
23 lines
340 B
C++
#ifndef MESSAGEWINDOW_H
|
|
#define MESSAGEWINDOW_H
|
|
|
|
#include "JS8_Main/Message.h"
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class MessagePanel;
|
|
}
|
|
|
|
class MessageWindow : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MessageWindow(QWidget *parent = 0);
|
|
~MessageWindow();
|
|
|
|
private:
|
|
Ui::MessagePanel *ui;
|
|
};
|
|
|
|
#endif // MESSAGEWINDOW_H
|