mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-16 05:11:49 -05:00
Merge pull request #1888 from srcejon/fix_resize_cursor
Fix resize cursor not being cleared when mouse moves over child widgets
This commit is contained in:
commit
bdfe1a9ab3
@ -133,6 +133,7 @@ BeamSteeringCWModGUI::BeamSteeringCWModGUI(PluginAPI* pluginAPI, DeviceUISet *de
|
||||
makeUIConnections();
|
||||
displayRateAndShift();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
BeamSteeringCWModGUI::~BeamSteeringCWModGUI()
|
||||
|
@ -161,6 +161,7 @@ DOA2GUI::DOA2GUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, MIMOChannel *ch
|
||||
ui->halfWLLabel->setText(QString("%1/2").arg(QChar(0xBB, 0x03)));
|
||||
ui->azUnits->setText(QString("%1").arg(QChar(0260)));
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
DOA2GUI::~DOA2GUI()
|
||||
|
@ -168,6 +168,7 @@ InterferometerGUI::InterferometerGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUI
|
||||
makeUIConnections();
|
||||
displayRateAndShift();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
InterferometerGUI::~InterferometerGUI()
|
||||
|
@ -596,6 +596,7 @@ ChannelAnalyzerGUI::ChannelAnalyzerGUI(PluginAPI* pluginAPI, DeviceUISet *device
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
ChannelAnalyzerGUI::~ChannelAnalyzerGUI()
|
||||
|
@ -5033,6 +5033,7 @@ ADSBDemodGUI::ADSBDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseb
|
||||
m_redrawMapTimer.setSingleShot(true);
|
||||
ui->map->installEventFilter(this);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
ADSBDemodGUI::~ADSBDemodGUI()
|
||||
|
@ -835,6 +835,7 @@ AISDemodGUI::AISDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
void AISDemodGUI::customContextMenuRequested(QPoint pos)
|
||||
|
@ -500,6 +500,7 @@ AMDemodGUI::AMDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandS
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AMDemodGUI::~AMDemodGUI()
|
||||
|
@ -680,6 +680,7 @@ APTDemodGUI::APTDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
APTDemodGUI::~APTDemodGUI()
|
||||
|
@ -333,6 +333,7 @@ ATVDemodGUI::ATVDemodGUI(PluginAPI* objPluginAPI, DeviceUISet *deviceUISet, Base
|
||||
|
||||
makeUIConnections();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
ATVDemodGUI::~ATVDemodGUI()
|
||||
|
@ -453,6 +453,7 @@ BFMDemodGUI::BFMDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
BFMDemodGUI::~BFMDemodGUI()
|
||||
|
@ -445,6 +445,7 @@ ChirpChatDemodGUI::ChirpChatDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUI
|
||||
resetLoRaStatus();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
ChirpChatDemodGUI::~ChirpChatDemodGUI()
|
||||
|
@ -577,6 +577,7 @@ DABDemodGUI::DABDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
DABDemodGUI::~DABDemodGUI()
|
||||
|
@ -314,6 +314,7 @@ DATVDemodGUI::DATVDemodGUI(PluginAPI* objPluginAPI, DeviceUISet *deviceUISet, Ba
|
||||
resetToDefaults(); // does applySettings()
|
||||
makeUIConnections();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
DATVDemodGUI::~DATVDemodGUI()
|
||||
|
@ -664,6 +664,7 @@ DSCDemodGUI::DSCDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
void DSCDemodGUI::createMenuOpenURLAction(QMenu* tableContextMenu, const QString& text, const QString& url, const QString& arg)
|
||||
|
@ -434,6 +434,7 @@ DSDDemodGUI::DSDDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
DSDDemodGUI::~DSDDemodGUI()
|
||||
|
@ -334,6 +334,7 @@ FreeDVDemodGUI::FreeDVDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, B
|
||||
makeUIConnections();
|
||||
applyBandwidths(5 - ui->spanLog2->value(), true); // does applySettings(true)
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
FreeDVDemodGUI::~FreeDVDemodGUI()
|
||||
|
@ -655,6 +655,7 @@ FT8DemodGUI::FT8DemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
|
||||
applyBandwidths(m_settings.m_filterBank[m_settings.m_filterIndex].m_spanLog2, true); // does applySettings(true)
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
populateBandPresets();
|
||||
setupMessagesView();
|
||||
|
@ -1110,6 +1110,7 @@ ILSDemodGUI::ILSDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
drawILSOnMap();
|
||||
|
||||
bool devMode = false;
|
||||
|
@ -515,6 +515,7 @@ M17DemodGUI::M17DemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
makeUIConnections();
|
||||
applySettings(QList<QString>(), true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
M17DemodGUI::~M17DemodGUI()
|
||||
|
@ -613,6 +613,7 @@ NavtexDemodGUI::NavtexDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, B
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
void NavtexDemodGUI::customContextMenuRequested(QPoint pos)
|
||||
|
@ -443,6 +443,7 @@ NFMDemodGUI::NFMDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
NFMDemodGUI::~NFMDemodGUI()
|
||||
|
@ -496,6 +496,7 @@ PacketDemodGUI::PacketDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, B
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
PacketDemodGUI::~PacketDemodGUI()
|
||||
|
@ -556,6 +556,7 @@ PagerDemodGUI::PagerDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Bas
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
void PagerDemodGUI::customContextMenuRequested(QPoint pos)
|
||||
|
@ -669,6 +669,7 @@ RadiosondeDemodGUI::RadiosondeDemodGUI(PluginAPI* pluginAPI, DeviceUISet *device
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
void RadiosondeDemodGUI::customContextMenuRequested(QPoint pos)
|
||||
|
@ -501,6 +501,7 @@ RttyDemodGUI::RttyDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseb
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
RttyDemodGUI::~RttyDemodGUI()
|
||||
|
@ -425,6 +425,7 @@ SSBDemodGUI::SSBDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
|
||||
applyBandwidths(m_settings.m_filterBank[m_settings.m_filterIndex].m_spanLog2, true); // does applySettings(true)
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
SSBDemodGUI::~SSBDemodGUI()
|
||||
|
@ -343,6 +343,7 @@ VORDemodGUI::VORDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
VORDemodGUI::~VORDemodGUI()
|
||||
|
@ -1286,6 +1286,7 @@ VORDemodMCGUI::VORDemodMCGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Bas
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
VORDemodMCGUI::~VORDemodMCGUI()
|
||||
|
@ -267,6 +267,7 @@ WFMDemodGUI::WFMDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
WFMDemodGUI::~WFMDemodGUI()
|
||||
|
@ -234,6 +234,7 @@ FileSinkGUI::FileSinkGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseban
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
FileSinkGUI::~FileSinkGUI()
|
||||
|
@ -461,6 +461,7 @@ FreqScannerGUI::FreqScannerGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, B
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applyAllSettings();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
ui->table->setItemDelegateForColumn(COL_FREQUENCY, new FrequencyDelegate("Auto", 3));
|
||||
ui->table->setItemDelegateForColumn(COL_POWER, new DecimalDelegate(1));
|
||||
|
@ -376,6 +376,7 @@ FreqTrackerGUI::FreqTrackerGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, B
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
FreqTrackerGUI::~FreqTrackerGUI()
|
||||
|
@ -633,6 +633,7 @@ HeatMapGUI::HeatMapGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandS
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
plotPowerVsTimeChart();
|
||||
}
|
||||
|
@ -157,6 +157,7 @@ LocalSinkGUI::LocalSinkGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseb
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
LocalSinkGUI::~LocalSinkGUI()
|
||||
|
@ -672,6 +672,7 @@ NoiseFigureGUI::NoiseFigureGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, B
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
void NoiseFigureGUI::customContextMenuRequested(QPoint pos)
|
||||
|
@ -2223,6 +2223,7 @@ RadioAstronomyGUI::RadioAstronomyGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUI
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
create2DImage();
|
||||
|
||||
|
@ -331,6 +331,7 @@ RadioClockGUI::RadioClockGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Bas
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
RadioClockGUI::~RadioClockGUI()
|
||||
|
@ -134,6 +134,7 @@ RemoteSinkGUI::RemoteSinkGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Bas
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
RemoteSinkGUI::~RemoteSinkGUI()
|
||||
|
@ -215,6 +215,7 @@ RemoteTCPSinkGUI::RemoteTCPSinkGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISe
|
||||
makeUIConnections();
|
||||
applyAllSettings();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
RemoteTCPSinkGUI::~RemoteTCPSinkGUI()
|
||||
|
@ -220,6 +220,7 @@ SigMFFileSinkGUI::SigMFFileSinkGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISe
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
SigMFFileSinkGUI::~SigMFFileSinkGUI()
|
||||
|
@ -221,6 +221,7 @@ UDPSinkGUI::UDPSinkGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandS
|
||||
applySettingsImmediate(true);
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
UDPSinkGUI::~UDPSinkGUI()
|
||||
|
@ -218,6 +218,7 @@ FileSourceGUI::FileSourceGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Bas
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
FileSourceGUI::~FileSourceGUI()
|
||||
|
@ -131,6 +131,7 @@ LocalSourceGUI::LocalSourceGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, B
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
LocalSourceGUI::~LocalSourceGUI()
|
||||
|
@ -484,6 +484,7 @@ IEEE_802_15_4_ModGUI::IEEE_802_15_4_ModGUI(PluginAPI* pluginAPI, DeviceUISet *de
|
||||
makeUIConnections();
|
||||
applySettings();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
IEEE_802_15_4_ModGUI::~IEEE_802_15_4_ModGUI()
|
||||
|
@ -510,6 +510,7 @@ AISModGUI::AISModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSam
|
||||
makeUIConnections();
|
||||
applySettings();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AISModGUI::~AISModGUI()
|
||||
|
@ -410,6 +410,7 @@ AMModGUI::AMModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampl
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AMModGUI::~AMModGUI()
|
||||
|
@ -122,6 +122,7 @@ ATVModGUI::ATVModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSam
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
ATVModGUI::~ATVModGUI()
|
||||
|
@ -469,6 +469,7 @@ ChirpChatModGUI::ChirpChatModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet,
|
||||
makeUIConnections();
|
||||
applySettings();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
ChirpChatModGUI::~ChirpChatModGUI()
|
||||
|
@ -115,6 +115,7 @@ DATVModGUI::DATVModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandS
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
if (!m_settings.m_tsFileName.isEmpty())
|
||||
configureTsFileName();
|
||||
}
|
||||
|
@ -422,6 +422,7 @@ FreeDVModGUI::FreeDVModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseb
|
||||
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
applyBandwidths(5 - ui->spanLog2->value(), true); // does applySettings(true)
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
}
|
||||
|
@ -528,6 +528,7 @@ M17ModGUI::M17ModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSam
|
||||
makeUIConnections();
|
||||
applySettings(QList<QString>{"channelMarker", "rollupState"});
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
M17ModGUI::~M17ModGUI()
|
||||
|
@ -516,6 +516,7 @@ NFMModGUI::NFMModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSam
|
||||
makeUIConnections();
|
||||
applySettings();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
NFMModGUI::~NFMModGUI()
|
||||
|
@ -531,6 +531,7 @@ PacketModGUI::PacketModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseb
|
||||
makeUIConnections();
|
||||
applySettings();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
PacketModGUI::~PacketModGUI()
|
||||
|
@ -412,6 +412,7 @@ PSK31GUI::PSK31GUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampl
|
||||
makeUIConnections();
|
||||
applySettings();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
m_initialToolTip = ui->txButton->toolTip();
|
||||
}
|
||||
|
@ -491,6 +491,7 @@ RttyModGUI::RttyModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandS
|
||||
makeUIConnections();
|
||||
applySettings();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
m_initialToolTip = ui->txButton->toolTip();
|
||||
}
|
||||
|
@ -505,6 +505,7 @@ SSBModGUI::SSBModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSam
|
||||
makeUIConnections();
|
||||
applyBandwidths(5 - ui->spanLog2->value(), true); // does applySettings(true)
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
SSBModGUI::~SSBModGUI()
|
||||
|
@ -426,6 +426,7 @@ WFMModGUI::WFMModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSam
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
WFMModGUI::~WFMModGUI()
|
||||
|
@ -210,6 +210,7 @@ RemoteSourceGUI::RemoteSourceGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet,
|
||||
displayPosition();
|
||||
displayRateAndShift();
|
||||
applySettings(true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
RemoteSourceGUI::~RemoteSourceGUI()
|
||||
|
@ -178,6 +178,7 @@ UDPSourceGUI::UDPSourceGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Baseb
|
||||
makeUIConnections();
|
||||
applySettings(true);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
UDPSourceGUI::~UDPSourceGUI()
|
||||
|
@ -174,6 +174,7 @@ AFCGUI::AFCGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *featur
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AFCGUI::~AFCGUI()
|
||||
|
@ -62,6 +62,7 @@ AMBEGUI::AMBEGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feat
|
||||
refreshInUseList();
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AMBEGUI::~AMBEGUI()
|
||||
|
@ -149,6 +149,7 @@ AntennaToolsGUI::AntennaToolsGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISe
|
||||
displaySettings();
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AntennaToolsGUI::~AntennaToolsGUI()
|
||||
|
@ -586,6 +586,7 @@ APRSGUI::APRSGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feat
|
||||
displaySettings();
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
APRSGUI::~APRSGUI()
|
||||
|
@ -191,6 +191,7 @@ DemodAnalyzerGUI::DemodAnalyzerGUI(PluginAPI* pluginAPI, FeatureUISet *featureUI
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
DemodAnalyzerGUI::~DemodAnalyzerGUI()
|
||||
|
@ -266,6 +266,7 @@ GS232ControllerGUI::GS232ControllerGUI(PluginAPI* pluginAPI, FeatureUISet *featu
|
||||
m_gs232Controller->getInputMessageQueue()->push(GS232Controller::MsgScanAvailableChannelOrFeatures::create());
|
||||
|
||||
new DialogPositioner(&m_dfmStatusDialog, true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
void GS232ControllerGUI::updateInputControllerList()
|
||||
|
@ -178,6 +178,7 @@ JogdialControllerGUI::JogdialControllerGUI(PluginAPI* pluginAPI, FeatureUISet *f
|
||||
displaySettings();
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
JogdialControllerGUI::~JogdialControllerGUI()
|
||||
|
@ -164,6 +164,7 @@ LimeRFEGUI::LimeRFEGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature
|
||||
highlightApplyButton(false);
|
||||
m_timer.setInterval(500);
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
LimeRFEGUI::~LimeRFEGUI()
|
||||
|
@ -334,6 +334,7 @@ MapGUI::MapGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *featur
|
||||
new DialogPositioner(&m_beaconDialog, true);
|
||||
new DialogPositioner(&m_ibpBeaconDialog, true);
|
||||
new DialogPositioner(&m_radioTimeDialog, true);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
MapGUI::~MapGUI()
|
||||
|
@ -156,6 +156,7 @@ PERTesterGUI::PERTesterGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Fea
|
||||
displaySettings();
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
PERTesterGUI::~PERTesterGUI()
|
||||
|
@ -194,6 +194,7 @@ RadiosondeGUI::RadiosondeGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, F
|
||||
displaySettings();
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
plotChart();
|
||||
}
|
||||
|
@ -157,6 +157,7 @@ RemoteControlGUI::RemoteControlGUI(PluginAPI* pluginAPI, FeatureUISet *featureUI
|
||||
displaySettings();
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
RemoteControlGUI::~RemoteControlGUI()
|
||||
|
@ -154,6 +154,7 @@ RigCtlServerGUI::RigCtlServerGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISe
|
||||
displaySettings();
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
RigCtlServerGUI::~RigCtlServerGUI()
|
||||
|
@ -333,6 +333,7 @@ SatelliteTrackerGUI::SatelliteTrackerGUI(PluginAPI* pluginAPI, FeatureUISet *fea
|
||||
displaySettings();
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
// Get initial list of satellites
|
||||
on_updateSatData_clicked();
|
||||
|
@ -227,6 +227,7 @@ SimplePTTGUI::SimplePTTGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Fea
|
||||
applySettings(true);
|
||||
makeUIConnections();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
SimplePTTGUI::~SimplePTTGUI()
|
||||
|
@ -408,6 +408,7 @@ StarTrackerGUI::StarTrackerGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet,
|
||||
applySettings(true);
|
||||
disconnect(ui->azimuth, SIGNAL(valueChanged(double)), this, SLOT(on_azimuth_valueChanged(double)));
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
// Populate subchart menu
|
||||
on_chartSelect_currentIndexChanged(0);
|
||||
|
@ -1217,6 +1217,7 @@ VORLocalizerGUI::VORLocalizerGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISe
|
||||
// List already opened channels
|
||||
channelsRefresh();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
VORLocalizerGUI::~VORLocalizerGUI()
|
||||
|
@ -99,6 +99,7 @@ AaroniaRTSAOutputGui::AaroniaRTSAOutputGui(DeviceUISet *deviceUISet, QWidget* pa
|
||||
m_forceSettings = true;
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AaroniaRTSAOutputGui::~AaroniaRTSAOutputGui()
|
||||
|
@ -63,6 +63,7 @@ AudioOutputGui::AudioOutputGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
makeUIConnections();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AudioOutputGui::~AudioOutputGui()
|
||||
|
@ -70,6 +70,7 @@ Bladerf1OutputGui::Bladerf1OutputGui(DeviceUISet *deviceUISet, QWidget* parent)
|
||||
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||
}
|
||||
|
@ -84,6 +84,7 @@ BladeRF2OutputGui::BladeRF2OutputGui(DeviceUISet *deviceUISet, QWidget* parent)
|
||||
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||
m_sampleSink->setMessageQueueToGUI(&m_inputMessageQueue);
|
||||
|
@ -75,6 +75,7 @@ FileOutputGui::FileOutputGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
m_deviceSampleSink = (FileOutput*) m_deviceUISet->m_deviceAPI->getSampleSink();
|
||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||
|
@ -68,6 +68,7 @@ HackRFOutputGui::HackRFOutputGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
displayBandwidths();
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||
}
|
||||
|
@ -97,6 +97,7 @@ LimeSDROutputGUI::LimeSDROutputGUI(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
LimeSDROutputGUI::~LimeSDROutputGUI()
|
||||
|
@ -83,6 +83,7 @@ LocalOutputGui::LocalOutputGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
m_forceSettings = true;
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
LocalOutputGui::~LocalOutputGui()
|
||||
|
@ -84,6 +84,7 @@ PlutoSDROutputGUI::PlutoSDROutputGUI(DeviceUISet *deviceUISet, QWidget* parent)
|
||||
|
||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
PlutoSDROutputGUI::~PlutoSDROutputGUI()
|
||||
|
@ -94,6 +94,7 @@ RemoteOutputSinkGui::RemoteOutputSinkGui(DeviceUISet *deviceUISet, QWidget* pare
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
RemoteOutputSinkGui::~RemoteOutputSinkGui()
|
||||
|
@ -104,6 +104,7 @@ SoapySDROutputGui::SoapySDROutputGui(DeviceUISet *deviceUISet, QWidget* parent)
|
||||
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
SoapySDROutputGui::~SoapySDROutputGui()
|
||||
|
@ -79,6 +79,7 @@ TestSinkGui::TestSinkGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||
connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(openDeviceSettingsDialog(const QPoint &)));
|
||||
|
@ -90,6 +90,7 @@ USRPOutputGUI::USRPOutputGUI(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
USRPOutputGUI::~USRPOutputGUI()
|
||||
|
@ -78,6 +78,7 @@ XTRXOutputGUI::XTRXOutputGUI(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||
}
|
||||
|
@ -78,6 +78,7 @@ AaroniaRTSAInputGui::AaroniaRTSAInputGui(DeviceUISet *deviceUISet, QWidget* pare
|
||||
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware()));
|
||||
connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus()));
|
||||
|
@ -69,6 +69,7 @@ AirspyGui::AirspyGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AirspyGui::~AirspyGui()
|
||||
|
@ -68,6 +68,7 @@ AirspyHFGui::AirspyHFGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AirspyHFGui::~AirspyHFGui()
|
||||
|
@ -82,6 +82,7 @@ AndroidSDRDriverInputGui::AndroidSDRDriverInputGui(DeviceUISet *deviceUISet, QWi
|
||||
m_forceSettings = true;
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AndroidSDRDriverInputGui::~AndroidSDRDriverInputGui()
|
||||
|
@ -60,6 +60,7 @@ AudioInputGui::AudioInputGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||
m_sampleSource->setMessageQueueToGUI(&m_inputMessageQueue);
|
||||
DialPopup::addPopupsToChildDials(this);
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
AudioInputGui::~AudioInputGui()
|
||||
|
@ -78,6 +78,7 @@ Bladerf1InputGui::Bladerf1InputGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
Bladerf1InputGui::~Bladerf1InputGui()
|
||||
|
@ -100,6 +100,7 @@ BladeRF2InputGui::BladeRF2InputGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
sendSettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
BladeRF2InputGui::~BladeRF2InputGui()
|
||||
|
@ -155,6 +155,7 @@ FCDProGui::FCDProGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||
m_sampleSource->setMessageQueueToGUI(&m_inputMessageQueue);
|
||||
|
@ -73,6 +73,7 @@ FCDProPlusGui::FCDProPlusGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
|
||||
displaySettings();
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
|
||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||
m_sampleSource->setMessageQueueToGUI(&m_inputMessageQueue);
|
||||
|
@ -80,6 +80,7 @@ FileInputGUI::FileInputGUI(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
m_sampleSource->setMessageQueueToGUI(&m_inputMessageQueue);
|
||||
|
||||
makeUIConnections();
|
||||
m_resizer.enableChildMouseTracking();
|
||||
}
|
||||
|
||||
FileInputGUI::~FileInputGUI()
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user