js8call/JS8_UI/MessageWindow.h
rruchte e56d3afe48 Message Inbox Enhancements
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
2026-02-05 20:05:17 -06:00

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