sdrangel/sdrgui/gui/cwkeyergui.cpp

174 wiersze
4.6 KiB
C++
Czysty Zwykły widok Historia

2016-12-11 10:35:25 +00:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2016 F4EXB //
// written by Edouard Griffiths //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation as version 3 of the License, or //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <QKeyEvent>
#include <QDebug>
#include "gui/cwkeyergui.h"
#include "ui_cwkeyergui.h"
#include "dsp/cwkeyer.h"
#include "util/simpleserializer.h"
CWKeyerGUI::CWKeyerGUI(QWidget* parent) :
QWidget(parent),
ui(new Ui::CWKeyerGUI),
m_messageQueue(0),
m_cwKeyer(0)
2016-12-11 10:35:25 +00:00
{
ui->setupUi(this);
}
CWKeyerGUI::~CWKeyerGUI()
{
this->releaseKeyboard(); // just in case
delete ui;
}
void CWKeyerGUI::setBuddies(MessageQueue* messageQueue, CWKeyer* cwKeyer)
{
m_messageQueue = messageQueue;
m_cwKeyer = cwKeyer;
applySettings();
}
void CWKeyerGUI::resetToDefaults()
{
ui->cwTextEdit->setText("");
ui->cwSpeed->setValue(13);
2016-12-11 10:35:25 +00:00
}
QByteArray CWKeyerGUI::serialize() const
{
SimpleSerializer s(1);
s.writeString(1, ui->cwTextEdit->text());
s.writeS32(2, ui->cwSpeed->value());
return s.final();
}
bool CWKeyerGUI::deserialize(const QByteArray& data)
{
SimpleDeserializer d(data);
if(!d.isValid())
{
resetToDefaults();
return false;
}
if(d.getVersion() == 1)
{
QString aString;
int aValue;
d.readString(1, &aString, "");
ui->cwTextEdit->setText(aString);
d.readS32(2, &aValue, 13);
ui->cwSpeed->setValue(aValue);
applySettings();
return true;
}
2017-05-05 08:40:45 +00:00
else
{
return false;
}
2016-12-11 10:35:25 +00:00
}
// === SLOTS ==================================================================
2017-05-25 18:13:34 +00:00
void CWKeyerGUI::on_cwTextClear_clicked(bool checked __attribute__((unused)))
2016-12-11 10:35:25 +00:00
{
ui->cwTextEdit->clear();
m_cwKeyer->setText("");
}
void CWKeyerGUI::on_cwTextEdit_editingFinished()
{
m_cwKeyer->setText(ui->cwTextEdit->text());
}
void CWKeyerGUI::on_cwSpeed_valueChanged(int value)
{
ui->cwSpeedText->setText(QString("%1").arg(value));
m_cwKeyer->setWPM(value);
}
void CWKeyerGUI::on_playDots_toggled(bool checked)
2016-12-11 10:35:25 +00:00
{
//ui->playDots->setEnabled(!checked); // release other source inputs
ui->playDashes->setEnabled(!checked);
ui->playText->setEnabled(!checked);
2016-12-11 10:35:25 +00:00
m_cwKeyer->setMode(checked ? CWKeyerSettings::CWDots : CWKeyerSettings::CWNone);
2016-12-11 10:35:25 +00:00
}
void CWKeyerGUI::on_playDashes_toggled(bool checked)
2016-12-11 10:35:25 +00:00
{
ui->playDots->setEnabled(!checked); // release other source inputs
//ui->playDashes->setEnabled(!checked);
ui->playText->setEnabled(!checked);
2016-12-11 10:35:25 +00:00
m_cwKeyer->setMode(checked ? CWKeyerSettings::CWDashes : CWKeyerSettings::CWNone);
2016-12-11 10:35:25 +00:00
}
void CWKeyerGUI::on_playText_toggled(bool checked)
{
ui->playDots->setEnabled(!checked); // release other source inputs
ui->playDashes->setEnabled(!checked);
//ui->playText->setEnabled(!checked);
m_cwKeyer->setMode(checked ? CWKeyerSettings::CWText : CWKeyerSettings::CWNone);
if (checked) {
ui->playStop->setChecked(true);
} else {
ui->playStop->setChecked(false);
}
2016-12-11 10:35:25 +00:00
}
void CWKeyerGUI::on_playLoopCW_toggled(bool checked)
2016-12-11 10:35:25 +00:00
{
m_cwKeyer->setLoop(checked);
}
void CWKeyerGUI::on_playStop_toggled(bool checked)
{
if (checked)
{
m_cwKeyer->resetText();
}
else
{
m_cwKeyer->stopText();
}
}
// === End SLOTS ==============================================================
void CWKeyerGUI::applySettings()
{
int value;
m_cwKeyer->setText(ui->cwTextEdit->text());
value = ui->cwSpeed->value();
ui->cwSpeedText->setText(QString("%1").arg(value));
m_cwKeyer->setWPM(value);
}