mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-22 03:58:50 -04:00
174 lines
4.7 KiB
C++
174 lines
4.7 KiB
C++
#include "activeStations.h"
|
|
|
|
#include <QSettings>
|
|
#include <QApplication>
|
|
#include <QTextCharFormat>
|
|
#include <QDateTime>
|
|
#include <QDebug>
|
|
|
|
#include "SettingsGroup.hpp"
|
|
#include "qt_helpers.hpp"
|
|
#include "ui_activeStations.h"
|
|
|
|
#include "moc_activeStations.cpp"
|
|
|
|
ActiveStations::ActiveStations(QSettings * settings, QFont const& font, QWidget *parent) :
|
|
QWidget(parent),
|
|
settings_ {settings},
|
|
ui(new Ui::ActiveStations)
|
|
{
|
|
ui->setupUi(this);
|
|
setWindowTitle (QApplication::applicationName () + " - " + tr ("Active Stations"));
|
|
ui->RecentStationsPlainTextEdit->setReadOnly (true);
|
|
changeFont (font);
|
|
read_settings ();
|
|
ui->header_label2->setText(" N Call Grid Az S/N Freq Tx Age Pts");
|
|
connect(ui->cbReadyOnly, SIGNAL(toggled(bool)), this, SLOT(on_cbReadyOnly_toggled(bool)));
|
|
connect(ui->cbWantedOnly, SIGNAL(toggled(bool)), this, SLOT(on_cbWantedOnly_toggled(bool)));
|
|
connect(ui->RecentStationsPlainTextEdit, SIGNAL(cursorPositionChanged()), this, SLOT(on_textEdit_clicked()));
|
|
}
|
|
|
|
ActiveStations::~ActiveStations()
|
|
{
|
|
write_settings ();
|
|
}
|
|
|
|
void ActiveStations::changeFont (QFont const& font)
|
|
{
|
|
ui->header_label2->setStyleSheet (font_as_stylesheet (font));
|
|
ui->RecentStationsPlainTextEdit->setStyleSheet (font_as_stylesheet (font));
|
|
updateGeometry ();
|
|
}
|
|
|
|
void ActiveStations::read_settings ()
|
|
{
|
|
SettingsGroup group {settings_, "ActiveStations"};
|
|
restoreGeometry (settings_->value ("window/geometry").toByteArray ());
|
|
ui->sbMaxRecent->setValue(settings_->value("MaxRecent",10).toInt());
|
|
ui->sbMaxAge->setValue(settings_->value("MaxAge",10).toInt());
|
|
ui->cbReadyOnly->setChecked(settings_->value("ReadyOnly",false).toBool());
|
|
ui->cbWantedOnly->setChecked(settings_->value("WantedOnly",false).toBool());
|
|
}
|
|
|
|
void ActiveStations::write_settings ()
|
|
{
|
|
SettingsGroup group {settings_, "ActiveStations"};
|
|
settings_->setValue ("window/geometry", saveGeometry ());
|
|
settings_->setValue("MaxRecent",ui->sbMaxRecent->value());
|
|
settings_->setValue("MaxAge",ui->sbMaxAge->value());
|
|
settings_->setValue("ReadyOnly",ui->cbReadyOnly->isChecked());
|
|
settings_->setValue("WantedOnly",ui->cbWantedOnly->isChecked());
|
|
}
|
|
|
|
void ActiveStations::displayRecentStations(QString mode, QString const& t)
|
|
{
|
|
if(mode!=m_mode) {
|
|
m_mode=mode;
|
|
if(m_mode=="Q65") {
|
|
ui->header_label2->setText(" N Frx Fsked S/N Call Grid Tx Age");
|
|
ui->label->setText("QSOs:");
|
|
} else if(m_mode=="Q65-pileup") {
|
|
ui->header_label2->setText(" N Freq Call Grid El Age(h)");
|
|
} else {
|
|
ui->header_label2->setText(" N Call Grid Az S/N Freq Tx Age Pts");
|
|
ui->label->setText("Rate:");
|
|
}
|
|
bool b=(m_mode.left(3)=="Q65");
|
|
ui->bandChanges->setVisible(!b);
|
|
ui->cbReadyOnly->setVisible(m_mode!="Q65-pileup");
|
|
ui->cbWantedOnly->setVisible(m_mode!="Q65-pileup");
|
|
ui->label_2->setVisible(!b);
|
|
ui->label_3->setVisible(!b);
|
|
ui->score->setVisible(!b);
|
|
ui->sbMaxRecent->setVisible(!b);
|
|
|
|
b=(m_mode!="Q65-pileup");
|
|
ui->sbMaxAge->setVisible(b);
|
|
ui->label->setVisible(b);
|
|
ui->rate->setVisible(b);
|
|
}
|
|
bool bClickOK=m_clickOK;
|
|
m_clickOK=false;
|
|
ui->RecentStationsPlainTextEdit->setPlainText(t);
|
|
m_clickOK=bClickOK;
|
|
}
|
|
|
|
int ActiveStations::maxRecent()
|
|
{
|
|
return ui->sbMaxRecent->value();
|
|
}
|
|
|
|
int ActiveStations::maxAge()
|
|
{
|
|
return ui->sbMaxAge->value();
|
|
}
|
|
|
|
void ActiveStations::on_textEdit_clicked()
|
|
{
|
|
if(m_clickOK) {
|
|
QTextCursor cursor;
|
|
QString text;
|
|
cursor = ui->RecentStationsPlainTextEdit->textCursor();
|
|
cursor.movePosition(QTextCursor::StartOfBlock);
|
|
cursor.movePosition(QTextCursor::EndOfBlock, QTextCursor::KeepAnchor);
|
|
text = cursor.selectedText();
|
|
if(text!="") {
|
|
int nline=text.left(2).toInt();
|
|
if(QGuiApplication::keyboardModifiers().testFlag(Qt::ControlModifier)) nline=-nline;
|
|
emit callSandP(nline);
|
|
}
|
|
}
|
|
}
|
|
|
|
void ActiveStations::setClickOK(bool b)
|
|
{
|
|
m_clickOK=b;
|
|
}
|
|
|
|
void ActiveStations::erase()
|
|
{
|
|
ui->RecentStationsPlainTextEdit->clear();
|
|
}
|
|
|
|
bool ActiveStations::readyOnly()
|
|
{
|
|
return ui->cbReadyOnly->isChecked();
|
|
}
|
|
|
|
void ActiveStations::on_cbReadyOnly_toggled(bool b)
|
|
{
|
|
m_bReadyOnly=b;
|
|
emit activeStationsDisplay();
|
|
}
|
|
|
|
bool ActiveStations::wantedOnly()
|
|
{
|
|
return ui->cbWantedOnly->isChecked();
|
|
}
|
|
|
|
void ActiveStations::on_cbWantedOnly_toggled(bool b)
|
|
{
|
|
m_bWantedOnly=b;
|
|
emit activeStationsDisplay();
|
|
}
|
|
|
|
void ActiveStations::setRate(int n)
|
|
{
|
|
ui->rate->setText(QString::number(n));
|
|
}
|
|
|
|
void ActiveStations::setScore(int n)
|
|
{
|
|
ui->score->setText(QLocale(QLocale::English).toString(n));
|
|
}
|
|
|
|
void ActiveStations::setBandChanges(int n)
|
|
{
|
|
if(n >= 8) {
|
|
ui->bandChanges->setStyleSheet("QLineEdit{background: rgb(255, 64, 64)}");
|
|
} else {
|
|
ui->bandChanges->setStyleSheet ("");
|
|
}
|
|
ui->bandChanges->setText(QString::number(n));
|
|
}
|