mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 13:11:20 -05:00 
			
		
		
		
	
		
			
	
	
		
			90 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			90 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| 
								 | 
							
								///////////////////////////////////////////////////////////////////////////////////
							 | 
						||
| 
								 | 
							
								// Copyright (C) 2020 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                  //
							 | 
						||
| 
								 | 
							
								// (at your option) any later version.                                           //
							 | 
						||
| 
								 | 
							
								//                                                                               //
							 | 
						||
| 
								 | 
							
								// 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 INCLUDE_SIGMFFILESINKMESSAGES_H_
							 | 
						||
| 
								 | 
							
								#define INCLUDE_SIGMFFILESINKMESSAGES_H_
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include <QObject>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include "util/message.h"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class SigMFFileSinkMessages : public QObject {
							 | 
						||
| 
								 | 
							
								    Q_OBJECT
							 | 
						||
| 
								 | 
							
								public:
							 | 
						||
| 
								 | 
							
								    class MsgConfigureSpectrum : public Message {
							 | 
						||
| 
								 | 
							
								        MESSAGE_CLASS_DECLARATION
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public:
							 | 
						||
| 
								 | 
							
								        int64_t getCenterFrequency() const { return m_centerFrequency; }
							 | 
						||
| 
								 | 
							
								        int getSampleRate() const { return m_sampleRate; }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        static MsgConfigureSpectrum* create(int64_t centerFrequency, int sampleRate) {
							 | 
						||
| 
								 | 
							
								            return new MsgConfigureSpectrum(centerFrequency, sampleRate);
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    private:
							 | 
						||
| 
								 | 
							
								        int64_t m_centerFrequency;
							 | 
						||
| 
								 | 
							
								        int m_sampleRate;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        MsgConfigureSpectrum(int64_t centerFrequency, int sampleRate) :
							 | 
						||
| 
								 | 
							
								            Message(),
							 | 
						||
| 
								 | 
							
								            m_centerFrequency(centerFrequency),
							 | 
						||
| 
								 | 
							
								            m_sampleRate(sampleRate)
							 | 
						||
| 
								 | 
							
								        { }
							 | 
						||
| 
								 | 
							
								    };
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    class MsgReportSquelch : public Message {
							 | 
						||
| 
								 | 
							
								        MESSAGE_CLASS_DECLARATION
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public:
							 | 
						||
| 
								 | 
							
								        bool getOpen() const { return m_open; }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        static MsgReportSquelch* create(bool open) {
							 | 
						||
| 
								 | 
							
								            return new MsgReportSquelch(open);
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    private:
							 | 
						||
| 
								 | 
							
								        bool m_open;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        MsgReportSquelch(bool open) :
							 | 
						||
| 
								 | 
							
								            Message(),
							 | 
						||
| 
								 | 
							
								            m_open(open)
							 | 
						||
| 
								 | 
							
								        { }
							 | 
						||
| 
								 | 
							
								    };
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    class MsgReportRecording : public Message {
							 | 
						||
| 
								 | 
							
								        MESSAGE_CLASS_DECLARATION
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public:
							 | 
						||
| 
								 | 
							
								        bool getRecording() const { return m_recording; }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        static MsgReportRecording* create(bool recording) {
							 | 
						||
| 
								 | 
							
								            return new MsgReportRecording(recording);
							 | 
						||
| 
								 | 
							
								        }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    private:
							 | 
						||
| 
								 | 
							
								        bool m_recording;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        MsgReportRecording(bool recording) :
							 | 
						||
| 
								 | 
							
								            Message(),
							 | 
						||
| 
								 | 
							
								            m_recording(recording)
							 | 
						||
| 
								 | 
							
								        { }
							 | 
						||
| 
								 | 
							
								    };
							 | 
						||
| 
								 | 
							
								};
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#endif // INCLUDE_SIGMFFILESINKMESSAGES_H_
							 |