mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-08-14 15:33:34 -04:00
Implement MainCore in MainWindow step3: device sets: fixes
This commit is contained in:
@@ -34,8 +34,9 @@ DeviceSet::ChannelInstanceRegistration::ChannelInstanceRegistration(const QStrin
|
||||
m_channelAPI(channelAPI)
|
||||
{}
|
||||
|
||||
DeviceSet::DeviceSet(int tabIndex)
|
||||
DeviceSet::DeviceSet(int tabIndex, int deviceType)
|
||||
{
|
||||
(void) deviceType;
|
||||
m_deviceAPI = nullptr;
|
||||
m_deviceSourceEngine = nullptr;
|
||||
m_deviceSinkEngine = nullptr;
|
||||
@@ -413,3 +414,32 @@ bool DeviceSet::ChannelInstanceRegistration::operator<(const ChannelInstanceRegi
|
||||
}
|
||||
}
|
||||
|
||||
void DeviceSet::addChannelInstance(const QString& channelURI, ChannelAPI *channelAPI)
|
||||
{
|
||||
ChannelInstanceRegistration reg = ChannelInstanceRegistration(channelURI, channelAPI);
|
||||
m_channelInstanceRegistrations.append(reg);
|
||||
}
|
||||
|
||||
void DeviceSet::removeChannelInstanceAt(int index)
|
||||
{
|
||||
if (index < m_channelInstanceRegistrations.size()) {
|
||||
m_channelInstanceRegistrations.removeAt(index);
|
||||
}
|
||||
}
|
||||
|
||||
void DeviceSet::removeChannelInstance(ChannelAPI *channelAPI)
|
||||
{
|
||||
for (int i = 0; i < m_channelInstanceRegistrations.count(); i++)
|
||||
{
|
||||
if (m_channelInstanceRegistrations.at(i).m_channelAPI == channelAPI)
|
||||
{
|
||||
m_channelInstanceRegistrations.removeAt(i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void DeviceSet::clearChannels()
|
||||
{
|
||||
m_channelInstanceRegistrations.clear();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user