mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			106 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			4.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| // Copyright (C) 2016 Edouard Griffiths, F4EXB                                   //
 | |
| //                                                                               //
 | |
| // This program is free software; you can redistribute it and/or modify          //
 | |
| // it under the terms of the GNU General Public License as published by          //
 | |
| // the Free Software Foundation as version 3 of the License, or                  //
 | |
| //                                                                               //
 | |
| // This program is distributed in the hope that it will be useful,               //
 | |
| // but WITHOUT ANY WARRANTY; without even the implied warranty of                //
 | |
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                  //
 | |
| // GNU General Public License V3 for more details.                               //
 | |
| //                                                                               //
 | |
| // You should have received a copy of the GNU General Public License             //
 | |
| // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | |
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef SDRGUI_DEVICE_DEVICEUISET_H_
 | |
| #define SDRGUI_DEVICE_DEVICEUISET_H_
 | |
| 
 | |
| #include <QTimer>
 | |
| #include <QByteArray>
 | |
| 
 | |
| #include "export.h"
 | |
| 
 | |
| class SpectrumVis;
 | |
| class GLSpectrum;
 | |
| class GLSpectrumGUI;
 | |
| class ChannelWindow;
 | |
| class SamplingDeviceControl;
 | |
| class DSPDeviceSourceEngine;
 | |
| class DeviceSourceAPI;
 | |
| class DSPDeviceSinkEngine;
 | |
| class DeviceSinkAPI;
 | |
| class ChannelMarker;
 | |
| class PluginAPI;
 | |
| 
 | |
| class SDRGUI_API DeviceUISet
 | |
| {
 | |
| public:
 | |
|     SpectrumVis *m_spectrumVis;
 | |
|     GLSpectrum *m_spectrum;
 | |
|     GLSpectrumGUI *m_spectrumGUI;
 | |
|     ChannelWindow *m_channelWindow;
 | |
|     SamplingDeviceControl *m_samplingDeviceControl;
 | |
|     DSPDeviceSourceEngine *m_deviceSourceEngine;
 | |
|     DeviceSourceAPI *m_deviceSourceAPI;
 | |
|     DSPDeviceSinkEngine *m_deviceSinkEngine;
 | |
|     DeviceSinkAPI *m_deviceSinkAPI;
 | |
|     QByteArray m_mainWindowState;
 | |
| 
 | |
|     DeviceUISet(int tabIndex, bool rxElseTx, QTimer& timer);
 | |
|     ~DeviceUISet();
 | |
| 
 | |
|     GLSpectrum *getSpectrum() { return m_spectrum; }     //!< Direct spectrum getter
 | |
|     void addChannelMarker(ChannelMarker* channelMarker); //!< Add channel marker to spectrum
 | |
|     void addRollupWidget(QWidget *widget);               //!< Add rollup widget to channel window
 | |
| 
 | |
|     int getNumberOfRxChannels() const { return m_rxChannelInstanceRegistrations.size(); }
 | |
|     int getNumberOfTxChannels() const { return m_txChannelInstanceRegistrations.size(); }
 | |
|     void registerRxChannelInstance(const QString& channelName, PluginInstanceGUI* pluginGUI);
 | |
|     void registerTxChannelInstance(const QString& channelName, PluginInstanceGUI* pluginGUI);
 | |
|     void removeRxChannelInstance(PluginInstanceGUI* pluginGUI);
 | |
|     void removeTxChannelInstance(PluginInstanceGUI* pluginGUI);
 | |
|     void freeRxChannels();
 | |
|     void freeTxChannels();
 | |
|     void deleteRxChannel(int channelIndex);
 | |
|     void deleteTxChannel(int channelIndex);
 | |
|     void loadRxChannelSettings(const Preset* preset, PluginAPI *pluginAPI);
 | |
|     void saveRxChannelSettings(Preset* preset);
 | |
|     void loadTxChannelSettings(const Preset* preset, PluginAPI *pluginAPI);
 | |
|     void saveTxChannelSettings(Preset* preset);
 | |
| 
 | |
| private:
 | |
|     struct ChannelInstanceRegistration
 | |
|     {
 | |
|         QString m_channelName;
 | |
|         PluginInstanceGUI* m_gui;
 | |
| 
 | |
|         ChannelInstanceRegistration() :
 | |
|             m_channelName(),
 | |
|             m_gui(NULL)
 | |
|         { }
 | |
| 
 | |
|         ChannelInstanceRegistration(const QString& channelName, PluginInstanceGUI* pluginGUI) :
 | |
|             m_channelName(channelName),
 | |
|             m_gui(pluginGUI)
 | |
|         { }
 | |
| 
 | |
|         bool operator<(const ChannelInstanceRegistration& other) const;
 | |
|     };
 | |
| 
 | |
|     typedef QList<ChannelInstanceRegistration> ChannelInstanceRegistrations;
 | |
| 
 | |
|     ChannelInstanceRegistrations m_rxChannelInstanceRegistrations;
 | |
|     ChannelInstanceRegistrations m_txChannelInstanceRegistrations;
 | |
|     int m_deviceTabIndex;
 | |
| 
 | |
|     void renameRxChannelInstances();
 | |
|     void renameTxChannelInstances();
 | |
| };
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| #endif /* SDRGUI_DEVICE_DEVICEUISET_H_ */
 |