2015-04-22 13:48:03 -04:00
|
|
|
#include "messageaveraging.h"
|
2016-06-10 11:54:16 -04:00
|
|
|
|
2015-06-09 10:30:23 -04:00
|
|
|
#include <QSettings>
|
2015-11-17 20:28:12 -05:00
|
|
|
#include <QApplication>
|
2016-05-18 19:22:24 -04:00
|
|
|
#include <QTextCharFormat>
|
|
|
|
|
|
|
|
#include "SettingsGroup.hpp"
|
|
|
|
#include "qt_helpers.hpp"
|
2015-04-22 13:48:03 -04:00
|
|
|
#include "ui_messageaveraging.h"
|
|
|
|
|
2016-05-18 19:22:24 -04:00
|
|
|
MessageAveraging::MessageAveraging(QSettings * settings, QFont const& font, QWidget *parent) :
|
2015-04-22 13:48:03 -04:00
|
|
|
QWidget(parent),
|
|
|
|
settings_ {settings},
|
|
|
|
ui(new Ui::MessageAveraging)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2015-11-17 20:28:12 -05:00
|
|
|
setWindowTitle (QApplication::applicationName () + " - " + tr ("Message Averaging"));
|
2016-05-18 19:22:24 -04:00
|
|
|
ui->msgAvgPlainTextEdit->setReadOnly (true);
|
|
|
|
changeFont (font);
|
2015-04-22 13:48:03 -04:00
|
|
|
read_settings ();
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageAveraging::~MessageAveraging()
|
|
|
|
{
|
|
|
|
if (isVisible ()) write_settings ();
|
|
|
|
}
|
|
|
|
|
2016-05-18 19:22:24 -04:00
|
|
|
void MessageAveraging::changeFont (QFont const& font)
|
|
|
|
{
|
|
|
|
ui->header_label->setStyleSheet (font_as_stylesheet (font));
|
|
|
|
ui->msgAvgPlainTextEdit->setStyleSheet (font_as_stylesheet (font));
|
|
|
|
setContentFont (font);
|
|
|
|
updateGeometry ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MessageAveraging::setContentFont(QFont const& font)
|
|
|
|
{
|
|
|
|
ui->msgAvgPlainTextEdit->setFont (font);
|
|
|
|
QTextCharFormat charFormat;
|
|
|
|
charFormat.setFont (font);
|
|
|
|
ui->msgAvgPlainTextEdit->selectAll ();
|
|
|
|
auto cursor = ui->msgAvgPlainTextEdit->textCursor ();
|
|
|
|
cursor.mergeCharFormat (charFormat);
|
|
|
|
cursor.clearSelection ();
|
|
|
|
cursor.movePosition (QTextCursor::End);
|
|
|
|
|
|
|
|
// position so viewport scrolled to left
|
|
|
|
cursor.movePosition (QTextCursor::Up);
|
|
|
|
cursor.movePosition (QTextCursor::StartOfLine);
|
|
|
|
|
|
|
|
ui->msgAvgPlainTextEdit->setTextCursor (cursor);
|
|
|
|
ui->msgAvgPlainTextEdit->ensureCursorVisible ();
|
|
|
|
}
|
|
|
|
|
2015-04-22 13:48:03 -04:00
|
|
|
void MessageAveraging::closeEvent (QCloseEvent * e)
|
|
|
|
{
|
|
|
|
write_settings ();
|
|
|
|
QWidget::closeEvent (e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MessageAveraging::read_settings ()
|
|
|
|
{
|
2016-05-18 19:22:24 -04:00
|
|
|
SettingsGroup group {settings_, "MessageAveraging"};
|
2015-12-10 09:15:43 -05:00
|
|
|
restoreGeometry (settings_->value ("window/geometry").toByteArray ());
|
2015-04-22 13:48:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void MessageAveraging::write_settings ()
|
|
|
|
{
|
2016-05-18 19:22:24 -04:00
|
|
|
SettingsGroup group {settings_, "MessageAveraging"};
|
2015-12-10 09:15:43 -05:00
|
|
|
settings_->setValue ("window/geometry", saveGeometry ());
|
2015-04-22 13:48:03 -04:00
|
|
|
}
|
|
|
|
|
2016-05-18 19:22:24 -04:00
|
|
|
void MessageAveraging::displayAvg(QString const& t)
|
2015-04-22 13:48:03 -04:00
|
|
|
{
|
2016-05-18 19:22:24 -04:00
|
|
|
ui->msgAvgPlainTextEdit->setPlainText(t);
|
2015-04-22 13:48:03 -04:00
|
|
|
}
|