1. Added Tool Tips for most on-screen controls.

2. Removed all vestiges of NB code and controls.


git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3314 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2013-05-24 15:41:33 +00:00
parent 5068b1254d
commit 07b1987eb2
5 changed files with 241 additions and 171 deletions

View File

@ -83,6 +83,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Station callsign</string>
</property>
<property name="text">
<string/>
</property>
@ -152,6 +155,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Maidenhead locator</string>
</property>
<property name="text">
<string/>
</property>
@ -206,6 +212,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Select method for T/R switching</string>
</property>
<property name="currentIndex">
<number>1</number>
</property>
@ -292,6 +301,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Select port for hardware T/R switching</string>
</property>
<item>
<property name="text">
<string>None</string>
@ -327,6 +339,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Select CW ID interval (0 for none)</string>
</property>
<property name="minimum">
<number>0</number>
</property>
@ -350,6 +365,9 @@
</item>
<item>
<widget class="QCheckBox" name="cbID73">
<property name="toolTip">
<string>Send CW ID after a message with 73 or free text</string>
</property>
<property name="text">
<string>ID after 73</string>
</property>
@ -388,6 +406,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Send spots to PSK Reporter web site</string>
</property>
<property name="text">
<string>Enable PSK Reporter</string>
</property>
@ -430,6 +451,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Enable computer control of transceiver</string>
</property>
<property name="text">
<string>Enable CAT</string>
</property>
@ -474,6 +498,9 @@
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Select radio type</string>
</property>
</widget>
</item>
</layout>
@ -525,6 +552,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Select port for CAT control</string>
</property>
<property name="currentIndex">
<number>0</number>
</property>
@ -872,6 +902,9 @@
</item>
<item>
<widget class="QRadioButton" name="rbData">
<property name="toolTip">
<string>Use special Tx command for &quot;data&quot;</string>
</property>
<property name="text">
<string>Data</string>
</property>
@ -879,6 +912,9 @@
</item>
<item>
<widget class="QRadioButton" name="rbMic">
<property name="toolTip">
<string>Use normal Tx command</string>
</property>
<property name="text">
<string>Mic</string>
</property>
@ -924,6 +960,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Check to see if CAT control is working</string>
</property>
<property name="text">
<string>Test CAT Control</string>
</property>
@ -949,6 +988,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Test to see if T/R switching is working</string>
</property>
<property name="text">
<string>Test PTT</string>
</property>
@ -994,6 +1036,9 @@
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Select interval for reading dial frequency</string>
</property>
<property name="maximum">
<number>60</number>
</property>
@ -1087,6 +1132,9 @@
<property name="enabled">
<bool>true</bool>
</property>
<property name="toolTip">
<string>Select audio input device and driver API</string>
</property>
</widget>
</item>
</layout>
@ -1119,7 +1167,11 @@
</widget>
</item>
<item>
<widget class="QComboBox" name="comboBoxSndOut"/>
<widget class="QComboBox" name="comboBoxSndOut">
<property name="toolTip">
<string>select audio output device and driver API</string>
</property>
</widget>
</item>
</layout>
</item>
@ -1146,6 +1198,9 @@
</item>
<item>
<widget class="QLineEdit" name="saveDirEntry">
<property name="toolTip">
<string>Directory for saved audio files</string>
</property>
<property name="text">
<string>C:\Users\joe\wsjt\map65\save</string>
</property>

View File

@ -161,7 +161,6 @@ MainWindow::MainWindow(QSharedMemory *shdmem, QWidget *parent) :
m_palette="CuteSDR";
m_RxLog=1; //Write Date and Time to RxLog
m_nutc0=9999;
m_NB=false;
m_mode="JT9-1";
m_rpt="-15";
m_TRperiod=60;
@ -309,7 +308,6 @@ MainWindow::MainWindow(QSharedMemory *shdmem, QWidget *parent) :
"QLabel { background-color : black; color : yellow; }");
ui->labDialFreq->setStyleSheet( \
"QLabel { background-color : black; color : yellow; }");
ui->frame->hide();
QFile f2("ALL.TXT");
f2.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Append);
@ -379,8 +377,6 @@ void MainWindow::writeSettings()
settings.setValue("NDepth",m_ndepth);
settings.setValue("KB8RQ",m_kb8rq);
settings.setValue("MonitorOFF",m_monitorStartOFF);
settings.setValue("NB",m_NB);
settings.setValue("NBslider",m_NBslider);
settings.setValue("DialFreq",m_dialFreq);
settings.setValue("TxFreq",m_txFreq);
settings.setValue("InGain",m_inGain);
@ -466,10 +462,6 @@ void MainWindow::readSettings()
ui->actionSave_decoded->setChecked(settings.value(
"SaveDecoded",false).toBool());
ui->actionSave_all->setChecked(settings.value("SaveAll",false).toBool());
m_NB=settings.value("NB",false).toBool();
ui->NBcheckBox->setChecked(m_NB);
m_NBslider=settings.value("NBslider",40).toInt();
ui->NBslider->setValue(m_NBslider);
m_dialFreq=settings.value("DialFreq",14.078).toDouble();
m_txFreq=settings.value("TxFreq",1500).toInt();
ui->TxFreqSpinBox->setValue(m_txFreq);
@ -2458,18 +2450,6 @@ void MainWindow::on_actionJT9_30_triggered()
g_pWideGraph->setfMax(1050);
}
void MainWindow::on_NBcheckBox_toggled(bool checked)
{
m_NB=checked;
ui->NBslider->setEnabled(m_NB);
}
void MainWindow::on_NBslider_valueChanged(int n)
{
m_NBslider=n;
ui->NBcheckBox->setText("NB: " + QString::number(n));
}
void MainWindow::on_TxFreqSpinBox_valueChanged(int n)
{
m_txFreq=n;

View File

@ -102,8 +102,6 @@ private slots:
void on_actionJT9_5_triggered();
void on_actionJT9_30_triggered();
void on_actionJT9_10_triggered();
void on_NBcheckBox_toggled(bool checked);
void on_NBslider_valueChanged(int value);
void on_TxFreqSpinBox_valueChanged(int arg1);
void on_actionSave_synced_triggered();
void on_actionSave_decoded_triggered();
@ -187,7 +185,6 @@ private:
qint32 m_hsym0;
qint32 m_paInDevice;
qint32 m_paOutDevice;
qint32 m_NBslider;
qint32 m_TRperiod;
qint32 m_nsps;
qint32 m_hsymStop;
@ -227,7 +224,6 @@ private:
bool m_saveAll;
bool m_widebandDecode;
bool m_kb8rq;
bool m_NB;
bool m_call3Modified;
bool m_dataAvailable;
bool m_killAll;

View File

@ -389,6 +389,9 @@ p, li { white-space: pre-wrap; }
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Enter this QSO in ADIF log</string>
</property>
<property name="text">
<string>Log &amp;QSO</string>
</property>
@ -402,6 +405,9 @@ p, li { white-space: pre-wrap; }
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Stop monitoring</string>
</property>
<property name="text">
<string>&amp;Stop</string>
</property>
@ -427,6 +433,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Start monitoring</string>
</property>
<property name="text">
<string>&amp;Monitor</string>
</property>
@ -440,6 +449,9 @@ p, li { white-space: pre-wrap; }
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Decode most recent Rx period at QSO Frequency (use shift for all freqs)</string>
</property>
<property name="text">
<string>&amp;Decode</string>
</property>
@ -453,6 +465,9 @@ p, li { white-space: pre-wrap; }
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Erase QSO Frequency window. Double-click for both windows</string>
</property>
<property name="text">
<string>&amp;Erase</string>
</property>
@ -472,6 +487,9 @@ p, li { white-space: pre-wrap; }
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Toggle Tx Enable On/Off</string>
</property>
<property name="text">
<string>E&amp;nable Tx</string>
</property>
@ -491,6 +509,9 @@ p, li { white-space: pre-wrap; }
<height>0</height>
</size>
</property>
<property name="toolTip">
<string>Set Tx Enable OFF</string>
</property>
<property name="text">
<string>&amp;Halt Tx</string>
</property>
@ -498,6 +519,9 @@ p, li { white-space: pre-wrap; }
</item>
<item>
<widget class="QPushButton" name="tuneButton">
<property name="toolTip">
<string>Assert PTT and emit a pure tone</string>
</property>
<property name="text">
<string>&amp;Tune</string>
</property>
@ -537,7 +561,16 @@ p, li { white-space: pre-wrap; }
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
@ -599,6 +632,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Switch to this Tx message NOW</string>
</property>
<property name="layoutDirection">
<enum>Qt::LeftToRight</enum>
</property>
@ -627,11 +663,14 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Send this message in next Tx interval</string>
</property>
<property name="text">
<string/>
</property>
<attribute name="buttonGroup">
<string>buttonGroup</string>
<string notr="true">buttonGroup</string>
</attribute>
</widget>
</item>
@ -655,6 +694,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Send this message in next Tx interval</string>
</property>
<property name="text">
<string/>
</property>
@ -662,7 +704,7 @@ p, li { white-space: pre-wrap; }
<bool>true</bool>
</property>
<attribute name="buttonGroup">
<string>buttonGroup</string>
<string notr="true">buttonGroup</string>
</attribute>
</widget>
</item>
@ -686,11 +728,14 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Send this message in next Tx interval</string>
</property>
<property name="text">
<string/>
</property>
<attribute name="buttonGroup">
<string>buttonGroup</string>
<string notr="true">buttonGroup</string>
</attribute>
</widget>
</item>
@ -734,6 +779,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Switch to this Tx message NOW</string>
</property>
<property name="text">
<string>Tx 3</string>
</property>
@ -747,6 +795,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Switch to this Tx message NOW</string>
</property>
<property name="text">
<string>Tx 4</string>
</property>
@ -754,6 +805,9 @@ p, li { white-space: pre-wrap; }
</item>
<item row="0" column="1">
<widget class="QLabel" name="label_5">
<property name="toolTip">
<string>Queue up the next Tx message</string>
</property>
<property name="text">
<string>Next</string>
</property>
@ -801,6 +855,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Right-click to select a macro message</string>
</property>
</widget>
</item>
<item row="5" column="2">
@ -811,6 +868,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Switch to this Tx message NOW</string>
</property>
<property name="text">
<string>Tx 5</string>
</property>
@ -836,16 +896,22 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Send this message in next Tx interval</string>
</property>
<property name="text">
<string/>
</property>
<attribute name="buttonGroup">
<string>buttonGroup</string>
<string notr="true">buttonGroup</string>
</attribute>
</widget>
</item>
<item row="0" column="2">
<widget class="QLabel" name="label_2">
<property name="toolTip">
<string>Switch to this Tx message NOW</string>
</property>
<property name="text">
<string>Now</string>
</property>
@ -874,6 +940,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Generate standard messages for minimal QSO</string>
</property>
<property name="text">
<string>Generate Std Msgs</string>
</property>
@ -931,6 +1000,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Switch to this Tx message NOW</string>
</property>
<property name="text">
<string>Tx 6</string>
</property>
@ -944,6 +1016,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Switch to this Tx message NOW</string>
</property>
<property name="text">
<string>Tx 2</string>
</property>
@ -969,11 +1044,14 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Send this message in next Tx interval</string>
</property>
<property name="text">
<string/>
</property>
<attribute name="buttonGroup">
<string>buttonGroup</string>
<string notr="true">buttonGroup</string>
</attribute>
</widget>
</item>
@ -997,11 +1075,14 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Send this message in next Tx interval</string>
</property>
<property name="text">
<string/>
</property>
<attribute name="buttonGroup">
<string>buttonGroup</string>
<string notr="true">buttonGroup</string>
</attribute>
</widget>
</item>
@ -1039,7 +1120,16 @@ p, li { white-space: pre-wrap; }
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
@ -1082,6 +1172,9 @@ p, li { white-space: pre-wrap; }
</item>
<item row="1" column="0">
<widget class="QPushButton" name="pbCallCQ">
<property name="toolTip">
<string>Generate a CQ message</string>
</property>
<property name="text">
<string>CQ</string>
</property>
@ -1089,6 +1182,9 @@ p, li { white-space: pre-wrap; }
</item>
<item row="3" column="0">
<widget class="QPushButton" name="pbSendRRR">
<property name="toolTip">
<string>Generate message with RRR</string>
</property>
<property name="text">
<string>RRR</string>
</property>
@ -1096,6 +1192,9 @@ p, li { white-space: pre-wrap; }
</item>
<item row="2" column="0">
<widget class="QPushButton" name="pbAnswerCaller">
<property name="toolTip">
<string>Generate message with report</string>
</property>
<property name="text">
<string>dB</string>
</property>
@ -1125,6 +1224,9 @@ p, li { white-space: pre-wrap; }
</item>
<item row="1" column="1">
<widget class="QPushButton" name="pbAnswerCQ">
<property name="toolTip">
<string>Generate message for replying to a CQ</string>
</property>
<property name="text">
<string>Grid</string>
</property>
@ -1132,6 +1234,9 @@ p, li { white-space: pre-wrap; }
</item>
<item row="2" column="1">
<widget class="QPushButton" name="pbSendReport">
<property name="toolTip">
<string>Generate message with R+report</string>
</property>
<property name="text">
<string>R+dB</string>
</property>
@ -1139,6 +1244,9 @@ p, li { white-space: pre-wrap; }
</item>
<item row="3" column="1">
<widget class="QPushButton" name="pbSend73">
<property name="toolTip">
<string>Generate message with 73</string>
</property>
<property name="text">
<string>73</string>
</property>
@ -1181,6 +1289,9 @@ p, li { white-space: pre-wrap; }
<height>26</height>
</size>
</property>
<property name="toolTip">
<string>Send this standard (generated) message</string>
</property>
<property name="text">
<string>Gen msg</string>
</property>
@ -1223,6 +1334,9 @@ p, li { white-space: pre-wrap; }
<height>26</height>
</size>
</property>
<property name="toolTip">
<string>Send this free-text message (max 13 characters)</string>
</property>
<property name="text">
<string>Free msg</string>
</property>
@ -1339,6 +1453,9 @@ p, li { white-space: pre-wrap; }
</item>
<item row="0" column="0" colspan="2">
<widget class="QComboBox" name="bandComboBox">
<property name="toolTip">
<string>Select operating band</string>
</property>
<property name="currentIndex">
<number>7</number>
</property>
@ -1468,6 +1585,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Signal report (dB0</string>
</property>
<property name="minimum">
<number>-50</number>
</property>
@ -1508,6 +1628,9 @@ p, li { white-space: pre-wrap; }
<bold>false</bold>
</font>
</property>
<property name="toolTip">
<string>USB dial frequency</string>
</property>
<property name="text">
<string>14.078</string>
</property>
@ -1530,6 +1653,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Check to Tx in even minutes, uncheck for odd minutes</string>
</property>
<property name="text">
<string>Tx even</string>
</property>
@ -1555,6 +1681,9 @@ p, li { white-space: pre-wrap; }
<height>180</height>
</size>
</property>
<property name="toolTip">
<string>dB above one bit in A/D samples</string>
</property>
<property name="borderWidth" stdset="0">
<number>1</number>
</property>
@ -1592,6 +1721,9 @@ p, li { white-space: pre-wrap; }
<height>180</height>
</size>
</property>
<property name="toolTip">
<string>Digital gain for audio input</string>
</property>
<property name="minimum">
<number>-50</number>
</property>
@ -1623,6 +1755,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Audio Tx frequency</string>
</property>
<property name="suffix">
<string> Hz</string>
</property>
@ -1694,6 +1829,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Set Tx frequency to Rx Frequency</string>
</property>
<property name="text">
<string>Tx=Rx</string>
</property>
@ -1713,6 +1851,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Set Rx frequency to Tx Frequency</string>
</property>
<property name="text">
<string>Rx=Tx</string>
</property>
@ -1815,6 +1956,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Search for callsign in database</string>
</property>
<property name="text">
<string>&amp;Lookup</string>
</property>
@ -1834,6 +1978,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Add callsign and locator to database</string>
</property>
<property name="text">
<string>Add</string>
</property>
@ -1884,142 +2031,6 @@ p, li { white-space: pre-wrap; }
</property>
</widget>
</item>
<item row="5" column="7">
<widget class="QFrame" name="frame">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>105</width>
<height>60</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>105</width>
<height>60</height>
</size>
</property>
<property name="palette">
<palette>
<active>
<colorrole role="Base">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>252</red>
<green>252</green>
<blue>252</blue>
</color>
</brush>
</colorrole>
<colorrole role="Window">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>172</red>
<green>191</green>
<blue>166</blue>
</color>
</brush>
</colorrole>
</active>
<inactive>
<colorrole role="Base">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>252</red>
<green>252</green>
<blue>252</blue>
</color>
</brush>
</colorrole>
<colorrole role="Window">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>172</red>
<green>191</green>
<blue>166</blue>
</color>
</brush>
</colorrole>
</inactive>
<disabled>
<colorrole role="Base">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>172</red>
<green>191</green>
<blue>166</blue>
</color>
</brush>
</colorrole>
<colorrole role="Window">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>172</red>
<green>191</green>
<blue>166</blue>
</color>
</brush>
</colorrole>
</disabled>
</palette>
</property>
<property name="autoFillBackground">
<bool>true</bool>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Plain</enum>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="margin">
<number>0</number>
</property>
<item>
<layout class="QVBoxLayout" name="verticalLayout_8">
<property name="spacing">
<number>6</number>
</property>
<item>
<widget class="QCheckBox" name="NBcheckBox">
<property name="maximumSize">
<size>
<width>100</width>
<height>16777215</height>
</size>
</property>
<property name="text">
<string>NB</string>
</property>
</widget>
</item>
<item>
<widget class="QSlider" name="NBslider">
<property name="maximumSize">
<size>
<width>100</width>
<height>16777215</height>
</size>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item row="1" column="4">
<widget class="QLabel" name="label_3">
<property name="sizePolicy">
@ -2132,6 +2143,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Locator of station to be worked</string>
</property>
<property name="text">
<string/>
</property>
@ -2160,6 +2174,9 @@ p, li { white-space: pre-wrap; }
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Callsign of station to be worked</string>
</property>
<property name="text">
<string/>
</property>
@ -2192,6 +2209,9 @@ p, li { white-space: pre-wrap; }
<height>15</height>
</size>
</property>
<property name="toolTip">
<string>If orange, click to read dial frequency once</string>
</property>
<property name="text">
<string/>
</property>
@ -2887,8 +2907,6 @@ p, li { white-space: pre-wrap; }
<tabstop>inGain</tabstop>
<tabstop>decodedTextBrowser2</tabstop>
<tabstop>decodedTextBrowser</tabstop>
<tabstop>NBcheckBox</tabstop>
<tabstop>NBslider</tabstop>
</tabstops>
<resources/>
<connections>

View File

@ -107,6 +107,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Compression factor for frequency scale</string>
</property>
<property name="suffix">
<string/>
</property>
@ -179,6 +182,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Number of FFTs averaged (controls waterfall scrolling rate)</string>
</property>
<property name="minimum">
<number>1</number>
</property>
@ -230,6 +236,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Scaling (dB) applied to spectra before plotting</string>
</property>
<property name="minimum">
<number>-20</number>
</property>
@ -281,6 +290,9 @@
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Constant offset applied to waterfall data</string>
</property>
<property name="minimum">
<number>-100</number>
</property>
@ -332,6 +344,9 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>Minimum frequency for wideband decodes</string>
</property>
<property name="minimum">
<number>1000</number>
</property>
@ -386,6 +401,9 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>Maximum frequency for wideband decodes</string>
</property>
<property name="minimum">
<number>1000</number>
</property>
@ -418,6 +436,9 @@
</item>
<item>
<widget class="QComboBox" name="spec2dComboBox">
<property name="toolTip">
<string>Select data for display curve</string>
</property>
<property name="currentIndex">
<number>1</number>
</property>