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
15 lines
329 B
C++
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; }
|
|
|