SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
SWGSSBDemodSettings.h
Go to the documentation of this file.
1 
13 /*
14  * SWGSSBDemodSettings.h
15  *
16  * SSBDemod
17  */
18 
19 #ifndef SWGSSBDemodSettings_H_
20 #define SWGSSBDemodSettings_H_
21 
22 #include <QJsonObject>
23 
24 
25 #include <QString>
26 
27 #include "SWGObject.h"
28 #include "export.h"
29 
30 namespace SWGSDRangel {
31 
33 public:
35  SWGSSBDemodSettings(QString* json);
36  virtual ~SWGSSBDemodSettings();
37  void init();
38  void cleanup();
39 
40  virtual QString asJson () override;
41  virtual QJsonObject* asJsonObject() override;
42  virtual void fromJsonObject(QJsonObject &json) override;
43  virtual SWGSSBDemodSettings* fromJson(QString &jsonString) override;
44 
45  qint64 getInputFrequencyOffset();
46  void setInputFrequencyOffset(qint64 input_frequency_offset);
47 
48  float getRfBandwidth();
49  void setRfBandwidth(float rf_bandwidth);
50 
51  float getLowCutoff();
52  void setLowCutoff(float low_cutoff);
53 
54  float getVolume();
55  void setVolume(float volume);
56 
57  qint32 getSpanLog2();
58  void setSpanLog2(qint32 span_log2);
59 
60  qint32 getAudioBinaural();
61  void setAudioBinaural(qint32 audio_binaural);
62 
63  qint32 getAudioFlipChannels();
64  void setAudioFlipChannels(qint32 audio_flip_channels);
65 
66  qint32 getDsb();
67  void setDsb(qint32 dsb);
68 
69  qint32 getAudioMute();
70  void setAudioMute(qint32 audio_mute);
71 
72  qint32 getAgc();
73  void setAgc(qint32 agc);
74 
75  qint32 getAgcClamping();
76  void setAgcClamping(qint32 agc_clamping);
77 
78  qint32 getAgcTimeLog2();
79  void setAgcTimeLog2(qint32 agc_time_log2);
80 
81  qint32 getAgcPowerThreshold();
82  void setAgcPowerThreshold(qint32 agc_power_threshold);
83 
84  qint32 getAgcThresholdGate();
85  void setAgcThresholdGate(qint32 agc_threshold_gate);
86 
87  qint32 getRgbColor();
88  void setRgbColor(qint32 rgb_color);
89 
90  QString* getTitle();
91  void setTitle(QString* title);
92 
93  QString* getAudioDeviceName();
94  void setAudioDeviceName(QString* audio_device_name);
95 
96  qint32 getUseReverseApi();
97  void setUseReverseApi(qint32 use_reverse_api);
98 
99  QString* getReverseApiAddress();
100  void setReverseApiAddress(QString* reverse_api_address);
101 
102  qint32 getReverseApiPort();
103  void setReverseApiPort(qint32 reverse_api_port);
104 
105  qint32 getReverseApiDeviceIndex();
106  void setReverseApiDeviceIndex(qint32 reverse_api_device_index);
107 
108  qint32 getReverseApiChannelIndex();
109  void setReverseApiChannelIndex(qint32 reverse_api_channel_index);
110 
111 
112  virtual bool isSet() override;
113 
114 private:
117 
120 
121  float low_cutoff;
123 
124  float volume;
126 
127  qint32 span_log2;
129 
132 
135 
136  qint32 dsb;
138 
139  qint32 audio_mute;
141 
142  qint32 agc;
144 
145  qint32 agc_clamping;
147 
150 
153 
156 
157  qint32 rgb_color;
159 
160  QString* title;
162 
165 
168 
171 
174 
177 
180 
181 };
182 
183 }
184 
185 #endif /* SWGSSBDemodSettings_H_ */
#define SWG_API
Definition: export.h:124