mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-20 02:52:00 -05:00
1. Starting to add SWL feature for MSK144 Sh messages.
2. Add (part of) a geometry patch from W9MDB. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7433 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
2c2d31ea8d
commit
33628fd9f4
@ -237,6 +237,7 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
m_lastMessageType {-1},
|
m_lastMessageType {-1},
|
||||||
m_lockTxFreq {false},
|
m_lockTxFreq {false},
|
||||||
m_bShMsgs {false},
|
m_bShMsgs {false},
|
||||||
|
m_bSWL {false},
|
||||||
m_uploading {false},
|
m_uploading {false},
|
||||||
m_txNext {false},
|
m_txNext {false},
|
||||||
m_grid6 {false},
|
m_grid6 {false},
|
||||||
@ -779,6 +780,7 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
ui->sbFtol->setValue(m_FtolIndex);
|
ui->sbFtol->setValue(m_FtolIndex);
|
||||||
on_sbFtol_valueChanged(m_FtolIndex);
|
on_sbFtol_valueChanged(m_FtolIndex);
|
||||||
ui->cbShMsgs->setChecked(m_bShMsgs);
|
ui->cbShMsgs->setChecked(m_bShMsgs);
|
||||||
|
ui->cbSWL->setChecked(m_bSWL);
|
||||||
ui->cbFast9->setChecked(m_bFast9);
|
ui->cbFast9->setChecked(m_bFast9);
|
||||||
if(m_bFast9) m_bFastMode=true;
|
if(m_bFast9) m_bFastMode=true;
|
||||||
|
|
||||||
@ -941,6 +943,7 @@ void MainWindow::writeSettings()
|
|||||||
m_settings->setValue("MinSync",m_minSync);
|
m_settings->setValue("MinSync",m_minSync);
|
||||||
m_settings->setValue ("AutoSeq", ui->cbAutoSeq->isChecked ());
|
m_settings->setValue ("AutoSeq", ui->cbAutoSeq->isChecked ());
|
||||||
m_settings->setValue("ShMsgs",m_bShMsgs);
|
m_settings->setValue("ShMsgs",m_bShMsgs);
|
||||||
|
m_settings->setValue("SWL",ui->cbSWL->isChecked());
|
||||||
m_settings->setValue ("DialFreq", QVariant::fromValue(m_lastMonitoredFrequency));
|
m_settings->setValue ("DialFreq", QVariant::fromValue(m_lastMonitoredFrequency));
|
||||||
m_settings->setValue("InGain",m_inGain);
|
m_settings->setValue("InGain",m_inGain);
|
||||||
m_settings->setValue("OutAttenuation", ui->outAttenuation->value ());
|
m_settings->setValue("OutAttenuation", ui->outAttenuation->value ());
|
||||||
@ -967,6 +970,9 @@ void MainWindow::writeSettings()
|
|||||||
void MainWindow::readSettings()
|
void MainWindow::readSettings()
|
||||||
{
|
{
|
||||||
m_settings->beginGroup("MainWindow");
|
m_settings->beginGroup("MainWindow");
|
||||||
|
m_bHideControls = m_settings->value("HideControls", false).toBool ();
|
||||||
|
m_bHideControls = !m_bHideControls; // we're not toggling here so we start in opposite state
|
||||||
|
on_actionHide_Controls_triggered();
|
||||||
restoreGeometry (m_settings->value ("geometry", saveGeometry ()).toByteArray ());
|
restoreGeometry (m_settings->value ("geometry", saveGeometry ()).toByteArray ());
|
||||||
m_geometryNoControls = m_settings->value ("geometryNoControls",saveGeometry()).toByteArray();
|
m_geometryNoControls = m_settings->value ("geometryNoControls",saveGeometry()).toByteArray();
|
||||||
restoreState (m_settings->value ("state", saveState ()).toByteArray ());
|
restoreState (m_settings->value ("state", saveState ()).toByteArray ());
|
||||||
@ -978,7 +984,6 @@ void MainWindow::readSettings()
|
|||||||
auto displayMsgAvg = m_settings->value ("MsgAvgDisplayed", false).toBool ();
|
auto displayMsgAvg = m_settings->value ("MsgAvgDisplayed", false).toBool ();
|
||||||
if (m_settings->contains ("FreeText")) ui->freeTextMsg->setCurrentText (
|
if (m_settings->contains ("FreeText")) ui->freeTextMsg->setCurrentText (
|
||||||
m_settings->value ("FreeText").toString ());
|
m_settings->value ("FreeText").toString ());
|
||||||
m_bHideControls = m_settings->value("HideControls", false).toBool ();
|
|
||||||
m_settings->endGroup();
|
m_settings->endGroup();
|
||||||
|
|
||||||
// do this outside of settings group because it uses groups internally
|
// do this outside of settings group because it uses groups internally
|
||||||
@ -1001,6 +1006,7 @@ void MainWindow::readSettings()
|
|||||||
ui->syncSpinBox->setValue(m_minSync);
|
ui->syncSpinBox->setValue(m_minSync);
|
||||||
ui->cbAutoSeq->setChecked (m_settings->value ("AutoSeq", false).toBool());
|
ui->cbAutoSeq->setChecked (m_settings->value ("AutoSeq", false).toBool());
|
||||||
m_bShMsgs=m_settings->value("ShMsgs",false).toBool();
|
m_bShMsgs=m_settings->value("ShMsgs",false).toBool();
|
||||||
|
m_bSWL=m_settings->value("SWL",false).toBool();
|
||||||
m_bFast9=m_settings->value("Fast9",false).toBool();
|
m_bFast9=m_settings->value("Fast9",false).toBool();
|
||||||
m_bFastMode=m_settings->value("FastMode",false).toBool();
|
m_bFastMode=m_settings->value("FastMode",false).toBool();
|
||||||
m_TRindex=m_settings->value("TRindex",0).toInt();
|
m_TRindex=m_settings->value("TRindex",0).toInt();
|
||||||
@ -4080,9 +4086,9 @@ void MainWindow::acceptQSO2(QDateTime const& QSO_date_off, QString const& call,
|
|||||||
|
|
||||||
int MainWindow::nWidgets(QString t)
|
int MainWindow::nWidgets(QString t)
|
||||||
{
|
{
|
||||||
Q_ASSERT(t.length()==23);
|
Q_ASSERT(t.length()==N_WIDGETS);
|
||||||
int n=0;
|
int n=0;
|
||||||
for(int i=0; i<23; i++) {
|
for(int i=0; i<N_WIDGETS; i++) {
|
||||||
n=n + n + t.mid(i,1).toInt();
|
n=n + n + t.mid(i,1).toInt();
|
||||||
}
|
}
|
||||||
return n;
|
return n;
|
||||||
@ -4090,9 +4096,9 @@ int MainWindow::nWidgets(QString t)
|
|||||||
|
|
||||||
void MainWindow::displayWidgets(int n)
|
void MainWindow::displayWidgets(int n)
|
||||||
{
|
{
|
||||||
int j=1<<22;
|
int j=1<<(N_WIDGETS-1);
|
||||||
bool b;
|
bool b;
|
||||||
for(int i=0; i<23; i++) {
|
for(int i=0; i<N_WIDGETS; i++) {
|
||||||
b=(n&j) != 0;
|
b=(n&j) != 0;
|
||||||
if(i==0) ui->txFirstCheckBox->setVisible(b);
|
if(i==0) ui->txFirstCheckBox->setVisible(b);
|
||||||
if(i==1) ui->TxFreqSpinBox->setVisible(b);
|
if(i==1) ui->TxFreqSpinBox->setVisible(b);
|
||||||
@ -4130,6 +4136,10 @@ void MainWindow::displayWidgets(int n)
|
|||||||
if(m_echoGraph->isVisible()) m_echoGraph->hide();
|
if(m_echoGraph->isVisible()) m_echoGraph->hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(i==23) {
|
||||||
|
ui->cbSWL->setVisible(b);
|
||||||
|
ui->cbSWL->setEnabled(b and ui->cbShMsgs->isChecked());
|
||||||
|
}
|
||||||
j=j>>1;
|
j=j>>1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -4139,9 +4149,9 @@ void MainWindow::on_actionJT4_triggered()
|
|||||||
m_mode="JT4";
|
m_mode="JT4";
|
||||||
bool bVHF=m_config.enable_VHF_features();
|
bool bVHF=m_config.enable_VHF_features();
|
||||||
if(bVHF) {
|
if(bVHF) {
|
||||||
displayWidgets(nWidgets("11111001001011011011000"));
|
displayWidgets(nWidgets("111110010010110110110000"));
|
||||||
} else {
|
} else {
|
||||||
displayWidgets(nWidgets("11101000000011100011110"));
|
displayWidgets(nWidgets("111010000000111000111100"));
|
||||||
}
|
}
|
||||||
WSPR_config(false);
|
WSPR_config(false);
|
||||||
switch_mode (Modes::JT4);
|
switch_mode (Modes::JT4);
|
||||||
@ -4181,9 +4191,9 @@ void MainWindow::on_actionJT9_triggered()
|
|||||||
m_mode="JT9";
|
m_mode="JT9";
|
||||||
bool bVHF=m_config.enable_VHF_features();
|
bool bVHF=m_config.enable_VHF_features();
|
||||||
if(bVHF) {
|
if(bVHF) {
|
||||||
displayWidgets(nWidgets("11111010110011111001000"));
|
displayWidgets(nWidgets("111110101100111110010000"));
|
||||||
} else {
|
} else {
|
||||||
displayWidgets(nWidgets("11101000000011100001000"));
|
displayWidgets(nWidgets("111010000000111000010000"));
|
||||||
}
|
}
|
||||||
m_bFast9=ui->cbFast9->isChecked();
|
m_bFast9=ui->cbFast9->isChecked();
|
||||||
m_bFastMode=m_bFast9;
|
m_bFastMode=m_bFast9;
|
||||||
@ -4235,7 +4245,7 @@ void MainWindow::on_actionJT9_triggered()
|
|||||||
void MainWindow::on_actionJT9_JT65_triggered()
|
void MainWindow::on_actionJT9_JT65_triggered()
|
||||||
{
|
{
|
||||||
m_mode="JT9+JT65";
|
m_mode="JT9+JT65";
|
||||||
displayWidgets(nWidgets("11101000000111100001000"));
|
displayWidgets(nWidgets("111010000001111000010000"));
|
||||||
WSPR_config(false);
|
WSPR_config(false);
|
||||||
switch_mode (Modes::JT65);
|
switch_mode (Modes::JT65);
|
||||||
if(m_modeTx != "JT65") {
|
if(m_modeTx != "JT65") {
|
||||||
@ -4280,9 +4290,9 @@ void MainWindow::on_actionJT65_triggered()
|
|||||||
m_mode="JT65";
|
m_mode="JT65";
|
||||||
bool bVHF=m_config.enable_VHF_features();
|
bool bVHF=m_config.enable_VHF_features();
|
||||||
if(bVHF) {
|
if(bVHF) {
|
||||||
displayWidgets(nWidgets("11111001000011111011000"));
|
displayWidgets(nWidgets("111110010000111110110000"));
|
||||||
} else {
|
} else {
|
||||||
displayWidgets(nWidgets("11101000000011100001110"));
|
displayWidgets(nWidgets("111010000000111000011100"));
|
||||||
}
|
}
|
||||||
WSPR_config(false);
|
WSPR_config(false);
|
||||||
switch_mode (Modes::JT65);
|
switch_mode (Modes::JT65);
|
||||||
@ -4325,7 +4335,7 @@ void MainWindow::on_actionQRA64_triggered()
|
|||||||
on_actionJT65_triggered();
|
on_actionJT65_triggered();
|
||||||
m_nSubMode=n;
|
m_nSubMode=n;
|
||||||
m_mode="QRA64";
|
m_mode="QRA64";
|
||||||
displayWidgets(nWidgets("11111000000011111000000"));
|
displayWidgets(nWidgets("111110000000111110000000"));
|
||||||
m_modeTx="QRA64";
|
m_modeTx="QRA64";
|
||||||
ui->actionQRA64->setChecked(true);
|
ui->actionQRA64->setChecked(true);
|
||||||
switch_mode (Modes::QRA64);
|
switch_mode (Modes::QRA64);
|
||||||
@ -4351,7 +4361,7 @@ void MainWindow::on_actionQRA64_triggered()
|
|||||||
void MainWindow::on_actionISCAT_triggered()
|
void MainWindow::on_actionISCAT_triggered()
|
||||||
{
|
{
|
||||||
m_mode="ISCAT";
|
m_mode="ISCAT";
|
||||||
displayWidgets(nWidgets("10011100000000011000000"));
|
displayWidgets(nWidgets("100111000000000110000000"));
|
||||||
m_modeTx="ISCAT";
|
m_modeTx="ISCAT";
|
||||||
ui->actionISCAT->setChecked(true);
|
ui->actionISCAT->setChecked(true);
|
||||||
m_TRperiod=ui->sbTR->cleanText().toInt();
|
m_TRperiod=ui->sbTR->cleanText().toInt();
|
||||||
@ -4387,7 +4397,7 @@ void MainWindow::on_actionISCAT_triggered()
|
|||||||
|
|
||||||
void MainWindow::on_actionMSK144_triggered()
|
void MainWindow::on_actionMSK144_triggered()
|
||||||
{
|
{
|
||||||
displayWidgets(nWidgets("10111111010000000001000"));
|
displayWidgets(nWidgets("101111110100000000010001"));
|
||||||
m_mode="MSK144";
|
m_mode="MSK144";
|
||||||
m_modeTx="MSK144";
|
m_modeTx="MSK144";
|
||||||
ui->actionMSK144->setChecked(true);
|
ui->actionMSK144->setChecked(true);
|
||||||
@ -4432,7 +4442,7 @@ void MainWindow::on_actionMSK144_triggered()
|
|||||||
void MainWindow::on_actionWSPR_triggered()
|
void MainWindow::on_actionWSPR_triggered()
|
||||||
{
|
{
|
||||||
m_mode="WSPR";
|
m_mode="WSPR";
|
||||||
displayWidgets(nWidgets("00000000000000000101000"));
|
displayWidgets(nWidgets("000000000000000001010000"));
|
||||||
WSPR_config(true);
|
WSPR_config(true);
|
||||||
switch_mode (Modes::WSPR);
|
switch_mode (Modes::WSPR);
|
||||||
m_modeTx="WSPR"; //### not needed ?? ###
|
m_modeTx="WSPR"; //### not needed ?? ###
|
||||||
@ -4461,7 +4471,7 @@ void MainWindow::on_actionEcho_triggered()
|
|||||||
{
|
{
|
||||||
on_actionJT4_triggered();
|
on_actionJT4_triggered();
|
||||||
m_mode="Echo";
|
m_mode="Echo";
|
||||||
displayWidgets(nWidgets("00000000000000000000001"));
|
displayWidgets(nWidgets("000000000000000000000010"));
|
||||||
ui->actionEcho->setChecked(true);
|
ui->actionEcho->setChecked(true);
|
||||||
m_TRperiod=3;
|
m_TRperiod=3;
|
||||||
m_modulator->setPeriod(m_TRperiod); // TODO - not thread safe
|
m_modulator->setPeriod(m_TRperiod); // TODO - not thread safe
|
||||||
@ -5494,7 +5504,9 @@ void MainWindow::on_cbFast9_clicked(bool b)
|
|||||||
void MainWindow::on_cbShMsgs_toggled(bool b)
|
void MainWindow::on_cbShMsgs_toggled(bool b)
|
||||||
{
|
{
|
||||||
ui->cbTx6->setEnabled(b);
|
ui->cbTx6->setEnabled(b);
|
||||||
|
ui->cbSWL->setEnabled(b);
|
||||||
m_bShMsgs=b;
|
m_bShMsgs=b;
|
||||||
|
if(!b) ui->cbSWL->setChecked(false);
|
||||||
if(m_bShMsgs and (m_mode=="MSK144")) ui->rptSpinBox->setValue(1);
|
if(m_bShMsgs and (m_mode=="MSK144")) ui->rptSpinBox->setValue(1);
|
||||||
int itone0=itone[0];
|
int itone0=itone[0];
|
||||||
int ntx=m_ntx;
|
int ntx=m_ntx;
|
||||||
|
@ -46,6 +46,7 @@
|
|||||||
#define NUM_QRA64_SYMBOLS 84 //63 data + 21 sync
|
#define NUM_QRA64_SYMBOLS 84 //63 data + 21 sync
|
||||||
#define NUM_CW_SYMBOLS 250
|
#define NUM_CW_SYMBOLS 250
|
||||||
#define TX_SAMPLE_RATE 48000
|
#define TX_SAMPLE_RATE 48000
|
||||||
|
#define N_WIDGETS 24
|
||||||
|
|
||||||
extern int volatile itone[NUM_ISCAT_SYMBOLS]; //Audio tones for all Tx symbols
|
extern int volatile itone[NUM_ISCAT_SYMBOLS]; //Audio tones for all Tx symbols
|
||||||
extern int volatile icw[NUM_CW_SYMBOLS]; //Dits for CW ID
|
extern int volatile icw[NUM_CW_SYMBOLS]; //Dits for CW ID
|
||||||
@ -404,6 +405,7 @@ private:
|
|||||||
QString m_lastMessageSent;
|
QString m_lastMessageSent;
|
||||||
bool m_lockTxFreq;
|
bool m_lockTxFreq;
|
||||||
bool m_bShMsgs;
|
bool m_bShMsgs;
|
||||||
|
bool m_bSWL;
|
||||||
bool m_uploadSpots;
|
bool m_uploadSpots;
|
||||||
bool m_uploading;
|
bool m_uploading;
|
||||||
bool m_txNext;
|
bool m_txNext;
|
||||||
|
174
mainwindow.ui
174
mainwindow.ui
@ -666,6 +666,22 @@ QLabel[oob="true"] {
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="3" column="1">
|
||||||
|
<widget class="QPushButton" name="pbR2T">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Set Tx frequency to Rx Frequency</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Tx ← Rx</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item row="13" column="0" rowspan="2" colspan="2">
|
<item row="13" column="0" rowspan="2" colspan="2">
|
||||||
<widget class="QWidget" name="VHFControls_widget" native="true">
|
<widget class="QWidget" name="VHFControls_widget" native="true">
|
||||||
<layout class="QGridLayout" name="gridLayout_8">
|
<layout class="QGridLayout" name="gridLayout_8">
|
||||||
@ -687,7 +703,7 @@ QLabel[oob="true"] {
|
|||||||
<widget class="QCheckBox" name="cbShMsgs">
|
<widget class="QCheckBox" name="cbShMsgs">
|
||||||
<property name="maximumSize">
|
<property name="maximumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>60</width>
|
<width>40</width>
|
||||||
<height>16777215</height>
|
<height>16777215</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
@ -701,6 +717,12 @@ QLabel[oob="true"] {
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="cbFast9">
|
<widget class="QCheckBox" name="cbFast9">
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string><html><head/><body><p>Check to enable JT9 fast modes</p></body></html></string>
|
<string><html><head/><body><p>Check to enable JT9 fast modes</p></body></html></string>
|
||||||
</property>
|
</property>
|
||||||
@ -713,7 +735,7 @@ QLabel[oob="true"] {
|
|||||||
<widget class="QCheckBox" name="cbAutoSeq">
|
<widget class="QCheckBox" name="cbAutoSeq">
|
||||||
<property name="maximumSize">
|
<property name="maximumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>16777215</width>
|
<width>67</width>
|
||||||
<height>16777215</height>
|
<height>16777215</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
@ -730,6 +752,12 @@ QLabel[oob="true"] {
|
|||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Check to generate "@1250 (SEND MSGS)" in Tx6.</string>
|
<string>Check to generate "@1250 (SEND MSGS)" in Tx6.</string>
|
||||||
</property>
|
</property>
|
||||||
@ -743,22 +771,6 @@ QLabel[oob="true"] {
|
|||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="3" column="1">
|
|
||||||
<widget class="QPushButton" name="pbR2T">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Maximum" vsizetype="Fixed">
|
|
||||||
<horstretch>0</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Set Tx frequency to Rx Frequency</string>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Tx ← Rx</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="4" column="0">
|
<item row="4" column="0">
|
||||||
<widget class="QSpinBox" name="RxFreqSpinBox">
|
<widget class="QSpinBox" name="RxFreqSpinBox">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
@ -784,48 +796,6 @@ QLabel[oob="true"] {
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="5" column="1">
|
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
|
||||||
<property name="spacing">
|
|
||||||
<number>5</number>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<widget class="QCheckBox" name="cbTxLock">
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Tx frequency tracks Rx frequency</string>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Lock Tx=Rx</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item row="3" column="0">
|
|
||||||
<widget class="QSpinBox" name="TxFreqSpinBox">
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Audio Tx frequency</string>
|
|
||||||
</property>
|
|
||||||
<property name="alignment">
|
|
||||||
<set>Qt::AlignCenter</set>
|
|
||||||
</property>
|
|
||||||
<property name="suffix">
|
|
||||||
<string> Hz</string>
|
|
||||||
</property>
|
|
||||||
<property name="prefix">
|
|
||||||
<string>Tx </string>
|
|
||||||
</property>
|
|
||||||
<property name="minimum">
|
|
||||||
<number>200</number>
|
|
||||||
</property>
|
|
||||||
<property name="maximum">
|
|
||||||
<number>5000</number>
|
|
||||||
</property>
|
|
||||||
<property name="value">
|
|
||||||
<number>1500</number>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="4" column="1">
|
<item row="4" column="1">
|
||||||
<widget class="QPushButton" name="pbT2R">
|
<widget class="QPushButton" name="pbT2R">
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
@ -864,6 +834,31 @@ QLabel[oob="true"] {
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="3" column="0">
|
||||||
|
<widget class="QSpinBox" name="TxFreqSpinBox">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Audio Tx frequency</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignCenter</set>
|
||||||
|
</property>
|
||||||
|
<property name="suffix">
|
||||||
|
<string> Hz</string>
|
||||||
|
</property>
|
||||||
|
<property name="prefix">
|
||||||
|
<string>Tx </string>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>200</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>5000</number>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<number>1500</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item row="1" column="1">
|
<item row="1" column="1">
|
||||||
<widget class="QPushButton" name="pbTxMode">
|
<widget class="QPushButton" name="pbTxMode">
|
||||||
<property name="enabled">
|
<property name="enabled">
|
||||||
@ -877,6 +872,36 @@ QLabel[oob="true"] {
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="5" column="1">
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||||
|
<property name="spacing">
|
||||||
|
<number>5</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="cbTxLock">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Tx frequency tracks Rx frequency</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Lock Tx=Rx</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item row="16" column="0">
|
||||||
|
<spacer name="verticalSpacer_4">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>20</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
<item row="0" column="0">
|
<item row="0" column="0">
|
||||||
<spacer name="verticalSpacer">
|
<spacer name="verticalSpacer">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
@ -919,19 +944,6 @@ QLabel[oob="true"] {
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="15" column="0">
|
|
||||||
<spacer name="verticalSpacer_4">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Vertical</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>20</width>
|
|
||||||
<height>40</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
<item row="10" column="0">
|
<item row="10" column="0">
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_11">
|
<layout class="QHBoxLayout" name="horizontalLayout_11">
|
||||||
<item>
|
<item>
|
||||||
@ -971,6 +983,22 @@ QLabel[oob="true"] {
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="15" column="0">
|
||||||
|
<widget class="QCheckBox" name="cbSWL">
|
||||||
|
<property name="enabled">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="maximumSize">
|
||||||
|
<size>
|
||||||
|
<width>16777215</width>
|
||||||
|
<height>16777215</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>SWL</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
Loading…
Reference in New Issue
Block a user