mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-04-06 03:29:12 -04:00
localizer GUI updates.
Add QSplitter to allow area for table & map to be adjusted. Remove obsolete OurAirports button. Add workaround for QT Map redraw bug. Automatically update VOR channels when channels are added or removed. Remove Nav Id from table as it doesn't mean anything from a user's perspective.
This commit is contained in:
parent
44f0746cbe
commit
ebca05a8a1
@ -55,10 +55,6 @@ Channels may be used in round robin turns if their number is not enough to cover
|
||||
|
||||
When there is more than one turn for a device valid radial directions are averaged and the resulting average is used during the round robin loop. Averaging also takes place for reference and variable signal levels.
|
||||
|
||||
<h3>9: Refresh VOR demodulators list and allocation</h3>
|
||||
|
||||
Use this button to (re)scan the available VOR demodulators in the SDRangel instance and (re)run the round robin allocation.
|
||||
|
||||
<h2>B: VOR Table</h2>
|
||||
|
||||
The VOR table displays information about selected VORs. To select or deselect a VOR, double click it on the map. The information displayed includes:
|
||||
@ -67,7 +63,6 @@ The VOR table displays information about selected VORs. To select or deselect a
|
||||
|
||||
* Name - The name of the VOR. For example: 'LONDON'.
|
||||
* Freq (MHz) - The center frequency the VOR transmits on in MHz. The frequency is highlighted in green when the VOR is serviced by a demodulator.
|
||||
* Nav Id - This is the VOR unique identifier from the VOR database.
|
||||
* Ident - A 2 or 3 character identifier for the VOR. For example: 'LON'.
|
||||
* Morse - The Morse code identifier for the VOR. For example: '.-.. --- -.'
|
||||
* RX Ident - This contains the demodulated ident. If it matches the expected ident, it will be displayed in green, if not, it will be displayed in red. If an ident is received that is not 2 or 3 characters, it will not be displayed, but the last received ident will be displayed in yellow.
|
||||
|
@ -137,7 +137,6 @@ VORGUI::VORGUI(NavAid *navAid, VORLocalizerGUI *gui) :
|
||||
// These are deleted by QTableWidget
|
||||
m_nameItem = new QTableWidgetItem();
|
||||
m_frequencyItem = new QTableWidgetItem();
|
||||
m_navIdItem = new QTableWidgetItem();
|
||||
m_radialItem = new QTableWidgetItem();
|
||||
m_identItem = new QTableWidgetItem();
|
||||
m_morseItem = new QTableWidgetItem();
|
||||
@ -358,7 +357,6 @@ void VORLocalizerGUI::resizeTable()
|
||||
ui->vorData->setRowCount(row + 1);
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_NAME, new QTableWidgetItem("White Sulphur Springs"));
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_FREQUENCY, new QTableWidgetItem("Freq (MHz) "));
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_NAVID, new QTableWidgetItem("99999999"));
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_IDENT, new QTableWidgetItem("Ident "));
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_MORSE, new QTableWidgetItem(Morse::toSpacedUnicode(morse)));
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_RADIAL, new QTableWidgetItem("Radial (o) "));
|
||||
@ -432,8 +430,6 @@ void VORLocalizerGUI::selectVOR(VORGUI *vorGUI, bool selected)
|
||||
ui->vorData->setRowCount(row + 1);
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_NAME, vorGUI->m_nameItem);
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_FREQUENCY, vorGUI->m_frequencyItem);
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_NAVID, vorGUI->m_navIdItem);
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_IDENT, vorGUI->m_identItem);
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_MORSE, vorGUI->m_morseItem);
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_RADIAL, vorGUI->m_radialItem);
|
||||
ui->vorData->setItem(row, VORLocalizerSettings::VOR_COL_RX_IDENT, vorGUI->m_rxIdentItem);
|
||||
@ -562,7 +558,6 @@ bool VORLocalizerGUI::handleMessage(const Message& message)
|
||||
|
||||
bool validRadial = report.getValidRadial();
|
||||
vorGUI->m_radialItem->setData(Qt::DisplayRole, std::round(report.getRadial()));
|
||||
vorGUI->m_navIdItem->setData(Qt::DisplayRole, subChannelId);
|
||||
|
||||
if (validRadial) {
|
||||
vorGUI->m_radialItem->setForeground(QBrush(Qt::white));
|
||||
@ -780,7 +775,7 @@ void VORLocalizerGUI::on_centerShift_valueChanged(int value)
|
||||
applySettings();
|
||||
}
|
||||
|
||||
void VORLocalizerGUI::on_channelsRefresh_clicked()
|
||||
void VORLocalizerGUI::channelsRefresh()
|
||||
{
|
||||
if (m_doApplySettings)
|
||||
{
|
||||
@ -915,7 +910,6 @@ VORLocalizerGUI::VORLocalizerGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISe
|
||||
|
||||
// Read in VOR information if it exists
|
||||
readNavAids();
|
||||
ui->getOurAirportsVORDB->setVisible(false);
|
||||
|
||||
// Resize the table using dummy data
|
||||
resizeTable();
|
||||
@ -950,11 +944,24 @@ VORLocalizerGUI::VORLocalizerGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISe
|
||||
|
||||
displaySettings();
|
||||
applySettings(true);
|
||||
|
||||
connect(&m_redrawMapTimer, &QTimer::timeout, this, &VORLocalizerGUI::redrawMap);
|
||||
m_redrawMapTimer.setSingleShot(true);
|
||||
ui->map->installEventFilter(this);
|
||||
|
||||
makeUIConnections();
|
||||
|
||||
// Update channel list when added/removed
|
||||
connect(MainCore::instance(), &MainCore::channelAdded, this, &VORLocalizerGUI::channelsRefresh);
|
||||
connect(MainCore::instance(), &MainCore::channelRemoved, this, &VORLocalizerGUI::channelsRefresh);
|
||||
// List already opened channels
|
||||
channelsRefresh();
|
||||
}
|
||||
|
||||
VORLocalizerGUI::~VORLocalizerGUI()
|
||||
{
|
||||
disconnect(&m_redrawMapTimer, &QTimer::timeout, this, &VORLocalizerGUI::redrawMap);
|
||||
m_redrawMapTimer.stop();
|
||||
delete ui;
|
||||
qDeleteAll(m_vors);
|
||||
}
|
||||
@ -1117,6 +1124,52 @@ void VORLocalizerGUI::preferenceChanged(int elementType)
|
||||
}
|
||||
}
|
||||
|
||||
void VORLocalizerGUI::redrawMap()
|
||||
{
|
||||
// An awful workaround for https://bugreports.qt.io/browse/QTBUG-100333
|
||||
// Also used in ADS-B demod
|
||||
QQuickItem *item = ui->map->rootObject();
|
||||
if (item)
|
||||
{
|
||||
QObject *object = item->findChild<QObject*>("map");
|
||||
if (object)
|
||||
{
|
||||
double zoom = object->property("zoomLevel").value<double>();
|
||||
object->setProperty("zoomLevel", QVariant::fromValue(zoom+1));
|
||||
object->setProperty("zoomLevel", QVariant::fromValue(zoom));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void VORLocalizerGUI::showEvent(QShowEvent *event)
|
||||
{
|
||||
if (!event->spontaneous())
|
||||
{
|
||||
// Workaround for https://bugreports.qt.io/browse/QTBUG-100333
|
||||
// MapQuickItems can be in wrong position when window is first displayed
|
||||
m_redrawMapTimer.start(500);
|
||||
}
|
||||
}
|
||||
|
||||
bool VORLocalizerGUI::eventFilter(QObject *obj, QEvent *event)
|
||||
{
|
||||
if (obj == ui->map)
|
||||
{
|
||||
if (event->type() == QEvent::Resize)
|
||||
{
|
||||
// Workaround for https://bugreports.qt.io/browse/QTBUG-100333
|
||||
// MapQuickItems can be in wrong position after vertical resize
|
||||
QResizeEvent *resizeEvent = static_cast<QResizeEvent *>(event);
|
||||
QSize oldSize = resizeEvent->oldSize();
|
||||
QSize size = resizeEvent->size();
|
||||
if (oldSize.height() != size.height()) {
|
||||
redrawMap();
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void VORLocalizerGUI::makeUIConnections()
|
||||
{
|
||||
QObject::connect(ui->startStop, &ButtonSwitch::toggled, this, &VORLocalizerGUI::on_startStop_toggled);
|
||||
@ -1124,5 +1177,4 @@ void VORLocalizerGUI::makeUIConnections()
|
||||
QObject::connect(ui->magDecAdjust, &ButtonSwitch::toggled, this, &VORLocalizerGUI::on_magDecAdjust_toggled);
|
||||
QObject::connect(ui->rrTime, &QDial::valueChanged, this, &VORLocalizerGUI::on_rrTime_valueChanged);
|
||||
QObject::connect(ui->centerShift, &QDial::valueChanged, this, &VORLocalizerGUI::on_centerShift_valueChanged);
|
||||
QObject::connect(ui->channelsRefresh, &QPushButton::clicked, this, &VORLocalizerGUI::on_channelsRefresh_clicked);
|
||||
}
|
||||
|
@ -64,7 +64,6 @@ public:
|
||||
|
||||
QTableWidgetItem *m_nameItem;
|
||||
QTableWidgetItem *m_frequencyItem;
|
||||
QTableWidgetItem *m_navIdItem;
|
||||
QTableWidgetItem *m_identItem;
|
||||
QTableWidgetItem *m_morseItem;
|
||||
QTableWidgetItem *m_radialItem;
|
||||
@ -249,6 +248,7 @@ private:
|
||||
QTimer m_statusTimer;
|
||||
int m_lastFeatureState;
|
||||
int m_rrSecondsCount;
|
||||
QTimer m_redrawMapTimer;
|
||||
|
||||
explicit VORLocalizerGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feature, QWidget* parent = nullptr);
|
||||
virtual ~VORLocalizerGUI();
|
||||
@ -257,6 +257,7 @@ private:
|
||||
void applySettings(bool force = false);
|
||||
void displaySettings();
|
||||
bool handleMessage(const Message& message);
|
||||
void redrawMap();
|
||||
void makeUIConnections();
|
||||
|
||||
void resizeTable();
|
||||
@ -274,7 +275,7 @@ private slots:
|
||||
void on_magDecAdjust_toggled(bool checked);
|
||||
void on_rrTime_valueChanged(int value);
|
||||
void on_centerShift_valueChanged(int value);
|
||||
void on_channelsRefresh_clicked();
|
||||
void channelsRefresh();
|
||||
void vorData_sectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex);
|
||||
void vorData_sectionResized(int logicalIndex, int oldSize, int newSize);
|
||||
void columnSelectMenu(QPoint pos);
|
||||
@ -288,6 +289,8 @@ private slots:
|
||||
void downloadError(const QString& error);
|
||||
void downloadNavAidsFinished();
|
||||
void preferenceChanged(int elementType);
|
||||
virtual void showEvent(QShowEvent *event);
|
||||
virtual bool eventFilter(QObject *obj, QEvent *event);
|
||||
};
|
||||
|
||||
#endif // INCLUDE_VORLOCALIZERGUI_H
|
||||
|
@ -6,7 +6,7 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>462</width>
|
||||
<width>470</width>
|
||||
<height>850</height>
|
||||
</rect>
|
||||
</property>
|
||||
@ -40,7 +40,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>461</width>
|
||||
<height>61</height>
|
||||
<height>31</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
@ -85,23 +85,6 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="getOurAirportsVORDB">
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Download OurAirports VOR database</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="icons.qrc">
|
||||
<normaloff>:/demodvor/icons/vor.png</normaloff>:/demodvor/icons/vor.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="getOpenAIPVORDB">
|
||||
<property name="toolTip">
|
||||
@ -136,6 +119,13 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="Line" name="line_3">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="rrTimeLabel">
|
||||
<property name="text">
|
||||
@ -223,6 +213,13 @@ QToolTip{background-color: white; color: black;}</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="Line" name="line_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="centerShiftLabel">
|
||||
<property name="text">
|
||||
@ -275,22 +272,12 @@ QToolTip{background-color: white; color: black;}</string>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_2">
|
||||
<widget class="Line" name="line">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="vorsLayout">
|
||||
<item>
|
||||
<widget class="QLabel" name="channelsLabel">
|
||||
<property name="text">
|
||||
@ -306,27 +293,7 @@ QToolTip{background-color: white; color: black;}</string>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="channelsRefresh">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Refresh VOR channels available</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../../../sdrgui/resources/res.qrc">
|
||||
<normaloff>:/recycle.png</normaloff>:/recycle.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<spacer name="horizontalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
@ -345,14 +312,14 @@ QToolTip{background-color: white; color: black;}</string>
|
||||
<widget class="QWidget" name="dataContainer" native="true">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>110</y>
|
||||
<width>461</width>
|
||||
<height>145</height>
|
||||
<x>10</x>
|
||||
<y>50</y>
|
||||
<width>441</width>
|
||||
<height>710</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
@ -366,178 +333,146 @@ QToolTip{background-color: white; color: black;}</string>
|
||||
<property name="windowTitle">
|
||||
<string>VORs</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayoutTable">
|
||||
<property name="spacing">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<property name="leftMargin">
|
||||
<number>3</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>3</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>3</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>3</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QTableWidget" name="vorData">
|
||||
<property name="editTriggers">
|
||||
<set>QAbstractItemView::NoEditTriggers</set>
|
||||
</property>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Name</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Name of the VOR</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Freq (MHz)</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Frequency of the VOR in MHz</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Nav Id</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Offset of the VOR's frequency from the current center frequency. Red indicates out of range.</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Ident</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Ident for the VOR</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Morse</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Morse code ident for the VOR</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>RX Ident</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Received ident</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>RX Morse</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Received Morse code ident</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Radial (°)</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Calculated radial from the VOR</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Ref (dB)</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Magnitude of received reference signal in dB</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Var (dB)</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Magnitude of received variable signal in dB</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Mute</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Mute/unmute audio from selected VORs</string>
|
||||
</property>
|
||||
</column>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="mapContainer" native="true">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>258</y>
|
||||
<width>461</width>
|
||||
<height>581</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Map</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayoutMap" stretch="0">
|
||||
<property name="spacing">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="leftMargin">
|
||||
<number>3</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>3</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>3</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>3</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QQuickWidget" name="map">
|
||||
<widget class="QSplitter" name="splitter">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>500</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>VOR map</string>
|
||||
</property>
|
||||
<property name="resizeMode">
|
||||
<enum>QQuickWidget::SizeRootObjectToView</enum>
|
||||
</property>
|
||||
<property name="source">
|
||||
<url>
|
||||
<string/>
|
||||
</url>
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<widget class="QTableWidget" name="vorData">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>1</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="editTriggers">
|
||||
<set>QAbstractItemView::NoEditTriggers</set>
|
||||
</property>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Name</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Name of the VOR</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Freq (MHz)</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Frequency of the VOR in MHz</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Ident</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Ident for the VOR</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Morse</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Morse code ident for the VOR</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>RX Ident</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Received ident</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>RX Morse</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Received Morse code ident</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Radial (°)</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Calculated radial from the VOR</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Ref (dB)</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Magnitude of received reference signal in dB</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Var (dB)</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Magnitude of received variable signal in dB</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Mute</string>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Mute/unmute audio from selected VORs</string>
|
||||
</property>
|
||||
</column>
|
||||
</widget>
|
||||
<widget class="QQuickWidget" name="map">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>4</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>500</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>VOR map</string>
|
||||
</property>
|
||||
<property name="resizeMode">
|
||||
<enum>QQuickWidget::SizeRootObjectToView</enum>
|
||||
</property>
|
||||
<property name="source">
|
||||
<url>
|
||||
<string/>
|
||||
</url>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
@ -562,9 +497,7 @@ QToolTip{background-color: white; color: black;}</string>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<tabstops>
|
||||
<tabstop>getOurAirportsVORDB</tabstop>
|
||||
<tabstop>vorData</tabstop>
|
||||
<tabstop>map</tabstop>
|
||||
</tabstops>
|
||||
<resources>
|
||||
<include location="../../../sdrgui/resources/res.qrc"/>
|
||||
|
@ -77,18 +77,17 @@ struct VORLocalizerSettings
|
||||
int m_workspaceIndex;
|
||||
QByteArray m_geometryBytes;
|
||||
|
||||
static const int VORDEMOD_COLUMNS = 11;
|
||||
static const int VORDEMOD_COLUMNS = 10;
|
||||
static const int VOR_COL_NAME = 0;
|
||||
static const int VOR_COL_FREQUENCY = 1;
|
||||
static const int VOR_COL_NAVID = 2;
|
||||
static const int VOR_COL_IDENT = 3;
|
||||
static const int VOR_COL_MORSE = 4;
|
||||
static const int VOR_COL_RX_IDENT = 5;
|
||||
static const int VOR_COL_RX_MORSE = 6;
|
||||
static const int VOR_COL_RADIAL = 7;
|
||||
static const int VOR_COL_REF_MAG = 8;
|
||||
static const int VOR_COL_VAR_MAG = 9;
|
||||
static const int VOR_COL_MUTE = 10;
|
||||
static const int VOR_COL_IDENT = 2;
|
||||
static const int VOR_COL_MORSE = 3;
|
||||
static const int VOR_COL_RX_IDENT = 4;
|
||||
static const int VOR_COL_RX_MORSE = 5;
|
||||
static const int VOR_COL_RADIAL = 6;
|
||||
static const int VOR_COL_REF_MAG = 7;
|
||||
static const int VOR_COL_VAR_MAG = 8;
|
||||
static const int VOR_COL_MUTE = 9;
|
||||
|
||||
int m_columnIndexes[VORDEMOD_COLUMNS];//!< How the columns are ordered in the table
|
||||
int m_columnSizes[VORDEMOD_COLUMNS]; //!< Size of the coumns in the table
|
||||
|
Loading…
Reference in New Issue
Block a user