js8call/JS8_UI/MessageWindow.cpp
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

15 lines
329 B
C++

/**
* \file MessageWindow.cpp
* @brief implementation of the message window dialog for the UI
*/
#include "MessageWindow.h"
#include "ui_MessageWindow.h"
MessageWindow::MessageWindow(QWidget *parent)
: QDialog(parent), ui(new Ui::MessagePanel) {
ui->setupUi(this);
}
MessageWindow::~MessageWindow() { delete ui; }