mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 04:50:29 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			132 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| // Copyright (C) 2021 F4EXB                                                      //
 | |
| // written by Edouard Griffiths                                                  //
 | |
| //                                                                               //
 | |
| // 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 SDRBASE_GUI_SPECTRUMMARKERSDIALOG_H_
 | |
| #define SDRBASE_GUI_SPECTRUMMARKERSDIALOG_H_
 | |
| 
 | |
| #include <QDialog>
 | |
| #include <QList>
 | |
| 
 | |
| #include "dsp/spectrumsettings.h"
 | |
| #include "dsp/spectrummarkers.h"
 | |
| #include "export.h"
 | |
| 
 | |
| namespace Ui {
 | |
|     class SpectrumMarkersDialog;
 | |
| }
 | |
| 
 | |
| class SDRGUI_API SpectrumMarkersDialog : public QDialog {
 | |
|     Q_OBJECT
 | |
| 
 | |
| public:
 | |
|     explicit SpectrumMarkersDialog(
 | |
|         QList<SpectrumHistogramMarker>& histogramMarkers,
 | |
|         QList<SpectrumWaterfallMarker>& waterfallMarkers,
 | |
|         QList<SpectrumAnnotationMarker>& annotationMarkers,
 | |
|         SpectrumSettings::MarkersDisplay& markersDisplay,
 | |
|         bool& findPeaks,
 | |
|         float calibrationShiftdB,
 | |
|         QWidget* parent = nullptr
 | |
|     );
 | |
|     ~SpectrumMarkersDialog();
 | |
|     void setCenterFrequency(qint64 centerFrequency) { m_centerFrequency = centerFrequency; }
 | |
|     void setPower(float power) { m_power = power; }
 | |
|     void setTime(float time) { m_time = time; }
 | |
|     void updateHistogramMarkersDisplay(); //!< called from spectrum view
 | |
|     void updateWaterfallMarkersDisplay(); //!< called from spectrum view
 | |
| 
 | |
| private:
 | |
|     Ui::SpectrumMarkersDialog* ui;
 | |
|     QList<SpectrumHistogramMarker>& m_histogramMarkers;
 | |
|     QList<SpectrumWaterfallMarker>& m_waterfallMarkers;
 | |
|     QList<SpectrumAnnotationMarker>& m_annotationMarkers;
 | |
|     SpectrumSettings::MarkersDisplay& m_markersDisplay;
 | |
|     bool &m_findPeaks;
 | |
|     float m_calibrationShiftdB;
 | |
|     int m_histogramMarkerIndex;
 | |
|     int m_waterfallMarkerIndex;
 | |
|     int m_annotationMarkerIndex;
 | |
|     qint64 m_centerFrequency;
 | |
|     float m_power;
 | |
|     float m_time;
 | |
|     bool m_annoFreqStartElseCenter;
 | |
| 
 | |
|     void displayHistogramMarker();
 | |
|     void displayWaterfallMarker();
 | |
|     void displayAnnotationMarker();
 | |
|     void displayTime(float time);
 | |
|     float getTime() const;
 | |
| 
 | |
| private slots:
 | |
|     void on_markerFrequency_changed(qint64 value);
 | |
|     void on_centerFrequency_clicked();
 | |
|     void on_markerColor_clicked();
 | |
|     void on_showMarker_clicked(bool clicked);
 | |
|     void on_fixedPower_changed(qint64 value);
 | |
|     void on_marker_valueChanged(int value);
 | |
|     void on_setReference_clicked();
 | |
|     void on_markerAdd_clicked();
 | |
|     void on_markerDel_clicked();
 | |
|     void on_powerMode_currentIndexChanged(int index);
 | |
|     void on_powerHoldReset_clicked();
 | |
|     void on_findPeaks_toggled(bool checked);
 | |
| 
 | |
|     void on_wMarkerFrequency_changed(qint64 value);
 | |
|     void on_timeCoarse_valueChanged(int value);
 | |
|     void on_timeFine_valueChanged(int value);
 | |
|     void on_timeExp_valueChanged(int value);
 | |
|     void on_wCenterFrequency_clicked();
 | |
|     void on_wMarkerColor_clicked();
 | |
|     void on_wShowMarker_clicked(bool clicked);
 | |
|     void on_wMarker_valueChanged(int value);
 | |
|     void on_wSetReference_clicked();
 | |
|     void on_wMarkerAdd_clicked();
 | |
|     void on_wMarkerDel_clicked();
 | |
| 
 | |
|     void on_aMarkerToggleFrequency_toggled(bool checked);
 | |
|     void on_aMarkerFrequency_changed(qint64 value);
 | |
|     void on_aCenterFrequency_clicked();
 | |
|     void on_aMakerDuplicate_clicked();
 | |
|     void on_aMakersSort_clicked();
 | |
|     void on_aMarkerColor_clicked();
 | |
|     void on_aMarkerShowState_currentIndexChanged(int state);
 | |
|     void on_aMarkerShowStateAll_clicked();
 | |
|     void on_aMarkerText_textEdited();
 | |
|     void on_aMarkerText_editingFinished();
 | |
|     void on_aMarker_valueChanged(int value);
 | |
|     void on_aMarkerAdd_clicked();
 | |
|     void on_aMarkerDel_clicked();
 | |
|     void on_aMarkerBandwidth_changed(qint64 value);
 | |
|     void on_aMarkersExport_clicked();
 | |
|     void on_aMarkersImport_clicked();
 | |
| 
 | |
|     static bool annotationMarkerLessThan(const SpectrumAnnotationMarker& m1, const SpectrumAnnotationMarker& m2) {
 | |
|         return m1.m_startFrequency < m2.m_startFrequency;
 | |
|     }
 | |
| 
 | |
|     void on_showSelect_currentIndexChanged(int index);
 | |
| 
 | |
| signals:
 | |
|     void updateHistogram();
 | |
|     void updateWaterfall();
 | |
|     void updateAnnotations();
 | |
|     void updateMarkersDisplay();
 | |
| };
 | |
| 
 | |
| #endif // SDRBASE_GUI_SPECTRUMMARKERSDIALOG_H_
 |