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.
Public Member Functions | Private Attributes | List of all members
SWGSDRangel::SWGFileSourceSettings Class Reference

#include <SWGFileSourceSettings.h>

+ Inheritance diagram for SWGSDRangel::SWGFileSourceSettings:
+ Collaboration diagram for SWGSDRangel::SWGFileSourceSettings:

Public Member Functions

 SWGFileSourceSettings ()
 
 SWGFileSourceSettings (QString *json)
 
virtual ~SWGFileSourceSettings ()
 
void init ()
 
void cleanup ()
 
virtual QString asJson () override
 
virtual QJsonObject * asJsonObject () override
 
virtual void fromJsonObject (QJsonObject &json) override
 
virtual SWGFileSourceSettingsfromJson (QString &jsonString) override
 
QString * getFileName ()
 
void setFileName (QString *file_name)
 
qint32 getLoop ()
 
void setLoop (qint32 loop)
 
qint32 getLog2Interp ()
 
void setLog2Interp (qint32 log2_interp)
 
qint32 getFilterChainHash ()
 
void setFilterChainHash (qint32 filter_chain_hash)
 
qint32 getGainDb ()
 
void setGainDb (qint32 gain_db)
 
qint32 getRgbColor ()
 
void setRgbColor (qint32 rgb_color)
 
QString * getTitle ()
 
void setTitle (QString *title)
 
qint32 getUseReverseApi ()
 
void setUseReverseApi (qint32 use_reverse_api)
 
QString * getReverseApiAddress ()
 
void setReverseApiAddress (QString *reverse_api_address)
 
qint32 getReverseApiPort ()
 
void setReverseApiPort (qint32 reverse_api_port)
 
qint32 getReverseApiDeviceIndex ()
 
void setReverseApiDeviceIndex (qint32 reverse_api_device_index)
 
qint32 getReverseApiChannelIndex ()
 
void setReverseApiChannelIndex (qint32 reverse_api_channel_index)
 
virtual bool isSet () override
 
- Public Member Functions inherited from SWGSDRangel::SWGObject
virtual ~SWGObject ()
 

Private Attributes

QString * file_name
 
bool m_file_name_isSet
 
qint32 loop
 
bool m_loop_isSet
 
qint32 log2_interp
 
bool m_log2_interp_isSet
 
qint32 filter_chain_hash
 
bool m_filter_chain_hash_isSet
 
qint32 gain_db
 
bool m_gain_db_isSet
 
qint32 rgb_color
 
bool m_rgb_color_isSet
 
QString * title
 
bool m_title_isSet
 
qint32 use_reverse_api
 
bool m_use_reverse_api_isSet
 
QString * reverse_api_address
 
bool m_reverse_api_address_isSet
 
qint32 reverse_api_port
 
bool m_reverse_api_port_isSet
 
qint32 reverse_api_device_index
 
bool m_reverse_api_device_index_isSet
 
qint32 reverse_api_channel_index
 
bool m_reverse_api_channel_index_isSet
 

Detailed Description

Definition at line 32 of file SWGFileSourceSettings.h.

Constructor & Destructor Documentation

◆ SWGFileSourceSettings() [1/2]

SWGSDRangel::SWGFileSourceSettings::SWGFileSourceSettings ( )

Definition at line 30 of file SWGFileSourceSettings.cpp.

References file_name, filter_chain_hash, gain_db, log2_interp, loop, m_file_name_isSet, m_filter_chain_hash_isSet, m_gain_db_isSet, m_log2_interp_isSet, m_loop_isSet, m_reverse_api_address_isSet, m_reverse_api_channel_index_isSet, m_reverse_api_device_index_isSet, m_reverse_api_port_isSet, m_rgb_color_isSet, m_title_isSet, m_use_reverse_api_isSet, reverse_api_address, reverse_api_channel_index, reverse_api_device_index, reverse_api_port, rgb_color, title, and use_reverse_api.

30  {
31  file_name = nullptr;
32  m_file_name_isSet = false;
33  loop = 0;
34  m_loop_isSet = false;
35  log2_interp = 0;
36  m_log2_interp_isSet = false;
39  gain_db = 0;
40  m_gain_db_isSet = false;
41  rgb_color = 0;
42  m_rgb_color_isSet = false;
43  title = nullptr;
44  m_title_isSet = false;
45  use_reverse_api = 0;
47  reverse_api_address = nullptr;
49  reverse_api_port = 0;
55 }

◆ SWGFileSourceSettings() [2/2]

SWGSDRangel::SWGFileSourceSettings::SWGFileSourceSettings ( QString *  json)

Definition at line 25 of file SWGFileSourceSettings.cpp.

References fromJson(), and init().

25  {
26  init();
27  this->fromJson(*json);
28 }
virtual SWGFileSourceSettings * fromJson(QString &jsonString) override
+ Here is the call graph for this function:

◆ ~SWGFileSourceSettings()

SWGSDRangel::SWGFileSourceSettings::~SWGFileSourceSettings ( )
virtual

Definition at line 57 of file SWGFileSourceSettings.cpp.

References cleanup().

57  {
58  this->cleanup();
59 }
+ Here is the call graph for this function:

Member Function Documentation

◆ asJson()

QString SWGSDRangel::SWGFileSourceSettings::asJson ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 149 of file SWGFileSourceSettings.cpp.

References asJsonObject().

150 {
151  QJsonObject* obj = this->asJsonObject();
152 
153  QJsonDocument doc(*obj);
154  QByteArray bytes = doc.toJson();
155  delete obj;
156  return QString(bytes);
157 }
virtual QJsonObject * asJsonObject() override
+ Here is the call graph for this function:

◆ asJsonObject()

QJsonObject * SWGSDRangel::SWGFileSourceSettings::asJsonObject ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 160 of file SWGFileSourceSettings.cpp.

References file_name, filter_chain_hash, gain_db, log2_interp, loop, m_filter_chain_hash_isSet, m_gain_db_isSet, m_log2_interp_isSet, m_loop_isSet, m_reverse_api_channel_index_isSet, m_reverse_api_device_index_isSet, m_reverse_api_port_isSet, m_rgb_color_isSet, m_use_reverse_api_isSet, reverse_api_address, reverse_api_channel_index, reverse_api_device_index, reverse_api_port, rgb_color, title, SWGSDRangel::toJsonValue(), and use_reverse_api.

Referenced by asJson().

160  {
161  QJsonObject* obj = new QJsonObject();
162  if(file_name != nullptr && *file_name != QString("")){
163  toJsonValue(QString("fileName"), file_name, obj, QString("QString"));
164  }
165  if(m_loop_isSet){
166  obj->insert("loop", QJsonValue(loop));
167  }
169  obj->insert("log2Interp", QJsonValue(log2_interp));
170  }
172  obj->insert("filterChainHash", QJsonValue(filter_chain_hash));
173  }
174  if(m_gain_db_isSet){
175  obj->insert("gainDB", QJsonValue(gain_db));
176  }
177  if(m_rgb_color_isSet){
178  obj->insert("rgbColor", QJsonValue(rgb_color));
179  }
180  if(title != nullptr && *title != QString("")){
181  toJsonValue(QString("title"), title, obj, QString("QString"));
182  }
184  obj->insert("useReverseAPI", QJsonValue(use_reverse_api));
185  }
186  if(reverse_api_address != nullptr && *reverse_api_address != QString("")){
187  toJsonValue(QString("reverseAPIAddress"), reverse_api_address, obj, QString("QString"));
188  }
190  obj->insert("reverseAPIPort", QJsonValue(reverse_api_port));
191  }
193  obj->insert("reverseAPIDeviceIndex", QJsonValue(reverse_api_device_index));
194  }
196  obj->insert("reverseAPIChannelIndex", QJsonValue(reverse_api_channel_index));
197  }
198 
199  return obj;
200 }
void toJsonValue(QString name, void *value, QJsonObject *output, QString type)
Definition: SWGHelpers.cpp:383
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ cleanup()

void SWGSDRangel::SWGFileSourceSettings::cleanup ( )

Definition at line 90 of file SWGFileSourceSettings.cpp.

References file_name, reverse_api_address, and title.

Referenced by ~SWGFileSourceSettings().

90  {
91  if(file_name != nullptr) {
92  delete file_name;
93  }
94 
95 
96 
97 
98 
99  if(title != nullptr) {
100  delete title;
101  }
102 
103  if(reverse_api_address != nullptr) {
104  delete reverse_api_address;
105  }
106 
107 
108 
109 }
+ Here is the caller graph for this function:

◆ fromJson()

SWGFileSourceSettings * SWGSDRangel::SWGFileSourceSettings::fromJson ( QString &  jsonString)
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 112 of file SWGFileSourceSettings.cpp.

References fromJsonObject().

Referenced by SWGFileSourceSettings().

112  {
113  QByteArray array (json.toStdString().c_str());
114  QJsonDocument doc = QJsonDocument::fromJson(array);
115  QJsonObject jsonObject = doc.object();
116  this->fromJsonObject(jsonObject);
117  return this;
118 }
virtual void fromJsonObject(QJsonObject &json) override
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ fromJsonObject()

void SWGSDRangel::SWGFileSourceSettings::fromJsonObject ( QJsonObject &  json)
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 121 of file SWGFileSourceSettings.cpp.

References file_name, filter_chain_hash, gain_db, log2_interp, loop, reverse_api_address, reverse_api_channel_index, reverse_api_device_index, reverse_api_port, rgb_color, SWGSDRangel::setValue(), title, and use_reverse_api.

Referenced by fromJson().

121  {
122  ::SWGSDRangel::setValue(&file_name, pJson["fileName"], "QString", "QString");
123 
124  ::SWGSDRangel::setValue(&loop, pJson["loop"], "qint32", "");
125 
126  ::SWGSDRangel::setValue(&log2_interp, pJson["log2Interp"], "qint32", "");
127 
128  ::SWGSDRangel::setValue(&filter_chain_hash, pJson["filterChainHash"], "qint32", "");
129 
130  ::SWGSDRangel::setValue(&gain_db, pJson["gainDB"], "qint32", "");
131 
132  ::SWGSDRangel::setValue(&rgb_color, pJson["rgbColor"], "qint32", "");
133 
134  ::SWGSDRangel::setValue(&title, pJson["title"], "QString", "QString");
135 
136  ::SWGSDRangel::setValue(&use_reverse_api, pJson["useReverseAPI"], "qint32", "");
137 
138  ::SWGSDRangel::setValue(&reverse_api_address, pJson["reverseAPIAddress"], "QString", "QString");
139 
140  ::SWGSDRangel::setValue(&reverse_api_port, pJson["reverseAPIPort"], "qint32", "");
141 
142  ::SWGSDRangel::setValue(&reverse_api_device_index, pJson["reverseAPIDeviceIndex"], "qint32", "");
143 
144  ::SWGSDRangel::setValue(&reverse_api_channel_index, pJson["reverseAPIChannelIndex"], "qint32", "");
145 
146 }
void setValue(void *value, QJsonValue obj, QString type, QString complexType)
Definition: SWGHelpers.cpp:25
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getFileName()

QString * SWGSDRangel::SWGFileSourceSettings::getFileName ( )

Definition at line 203 of file SWGFileSourceSettings.cpp.

References file_name.

203  {
204  return file_name;
205 }

◆ getFilterChainHash()

qint32 SWGSDRangel::SWGFileSourceSettings::getFilterChainHash ( )

Definition at line 233 of file SWGFileSourceSettings.cpp.

References filter_chain_hash.

Referenced by FileSource::webapiSettingsPutPatch().

233  {
234  return filter_chain_hash;
235 }
+ Here is the caller graph for this function:

◆ getGainDb()

qint32 SWGSDRangel::SWGFileSourceSettings::getGainDb ( )

Definition at line 243 of file SWGFileSourceSettings.cpp.

References gain_db.

Referenced by FileSource::webapiSettingsPutPatch().

243  {
244  return gain_db;
245 }
+ Here is the caller graph for this function:

◆ getLog2Interp()

qint32 SWGSDRangel::SWGFileSourceSettings::getLog2Interp ( )

Definition at line 223 of file SWGFileSourceSettings.cpp.

References log2_interp.

Referenced by FileSource::webapiSettingsPutPatch().

223  {
224  return log2_interp;
225 }
+ Here is the caller graph for this function:

◆ getLoop()

qint32 SWGSDRangel::SWGFileSourceSettings::getLoop ( )

Definition at line 213 of file SWGFileSourceSettings.cpp.

References loop.

213  {
214  return loop;
215 }

◆ getReverseApiAddress()

QString * SWGSDRangel::SWGFileSourceSettings::getReverseApiAddress ( )

Definition at line 283 of file SWGFileSourceSettings.cpp.

References reverse_api_address.

Referenced by FileSource::webapiFormatChannelSettings(), and FileSource::webapiSettingsPutPatch().

283  {
284  return reverse_api_address;
285 }
+ Here is the caller graph for this function:

◆ getReverseApiChannelIndex()

qint32 SWGSDRangel::SWGFileSourceSettings::getReverseApiChannelIndex ( )

Definition at line 313 of file SWGFileSourceSettings.cpp.

References reverse_api_channel_index.

Referenced by FileSource::webapiSettingsPutPatch().

+ Here is the caller graph for this function:

◆ getReverseApiDeviceIndex()

qint32 SWGSDRangel::SWGFileSourceSettings::getReverseApiDeviceIndex ( )

Definition at line 303 of file SWGFileSourceSettings.cpp.

References reverse_api_device_index.

Referenced by FileSource::webapiSettingsPutPatch().

303  {
305 }
+ Here is the caller graph for this function:

◆ getReverseApiPort()

qint32 SWGSDRangel::SWGFileSourceSettings::getReverseApiPort ( )

Definition at line 293 of file SWGFileSourceSettings.cpp.

References reverse_api_port.

Referenced by FileSource::webapiSettingsPutPatch().

293  {
294  return reverse_api_port;
295 }
+ Here is the caller graph for this function:

◆ getRgbColor()

qint32 SWGSDRangel::SWGFileSourceSettings::getRgbColor ( )

Definition at line 253 of file SWGFileSourceSettings.cpp.

References rgb_color.

Referenced by FileSource::webapiSettingsPutPatch().

253  {
254  return rgb_color;
255 }
+ Here is the caller graph for this function:

◆ getTitle()

QString * SWGSDRangel::SWGFileSourceSettings::getTitle ( )

Definition at line 263 of file SWGFileSourceSettings.cpp.

References title.

Referenced by FileSource::webapiFormatChannelSettings(), and FileSource::webapiSettingsPutPatch().

263  {
264  return title;
265 }
+ Here is the caller graph for this function:

◆ getUseReverseApi()

qint32 SWGSDRangel::SWGFileSourceSettings::getUseReverseApi ( )

Definition at line 273 of file SWGFileSourceSettings.cpp.

References use_reverse_api.

Referenced by FileSource::webapiSettingsPutPatch().

273  {
274  return use_reverse_api;
275 }
+ Here is the caller graph for this function:

◆ init()

void SWGSDRangel::SWGFileSourceSettings::init ( )

Definition at line 62 of file SWGFileSourceSettings.cpp.

References file_name, filter_chain_hash, gain_db, log2_interp, loop, m_file_name_isSet, m_filter_chain_hash_isSet, m_gain_db_isSet, m_log2_interp_isSet, m_loop_isSet, m_reverse_api_address_isSet, m_reverse_api_channel_index_isSet, m_reverse_api_device_index_isSet, m_reverse_api_port_isSet, m_rgb_color_isSet, m_title_isSet, m_use_reverse_api_isSet, reverse_api_address, reverse_api_channel_index, reverse_api_device_index, reverse_api_port, rgb_color, title, and use_reverse_api.

Referenced by SWGFileSourceSettings(), and FileSource::webapiSettingsGet().

62  {
63  file_name = new QString("");
64  m_file_name_isSet = false;
65  loop = 0;
66  m_loop_isSet = false;
67  log2_interp = 0;
68  m_log2_interp_isSet = false;
71  gain_db = 0;
72  m_gain_db_isSet = false;
73  rgb_color = 0;
74  m_rgb_color_isSet = false;
75  title = new QString("");
76  m_title_isSet = false;
77  use_reverse_api = 0;
79  reverse_api_address = new QString("");
81  reverse_api_port = 0;
87 }
+ Here is the caller graph for this function:

◆ isSet()

bool SWGSDRangel::SWGFileSourceSettings::isSet ( )
overridevirtual

Reimplemented from SWGSDRangel::SWGObject.

Definition at line 324 of file SWGFileSourceSettings.cpp.

References file_name, m_filter_chain_hash_isSet, m_gain_db_isSet, m_log2_interp_isSet, m_loop_isSet, m_reverse_api_channel_index_isSet, m_reverse_api_device_index_isSet, m_reverse_api_port_isSet, m_rgb_color_isSet, m_use_reverse_api_isSet, reverse_api_address, and title.

Referenced by SWGSDRangel::SWGChannelSettings::asJsonObject(), SWGSDRangel::SWGChannelSettings_2::asJsonObject(), SWGSDRangel::SWGChannelSettings_2::isSet(), and SWGSDRangel::SWGChannelSettings::isSet().

324  {
325  bool isObjectUpdated = false;
326  do{
327  if(file_name != nullptr && *file_name != QString("")){ isObjectUpdated = true; break;}
328  if(m_loop_isSet){ isObjectUpdated = true; break;}
329  if(m_log2_interp_isSet){ isObjectUpdated = true; break;}
330  if(m_filter_chain_hash_isSet){ isObjectUpdated = true; break;}
331  if(m_gain_db_isSet){ isObjectUpdated = true; break;}
332  if(m_rgb_color_isSet){ isObjectUpdated = true; break;}
333  if(title != nullptr && *title != QString("")){ isObjectUpdated = true; break;}
334  if(m_use_reverse_api_isSet){ isObjectUpdated = true; break;}
335  if(reverse_api_address != nullptr && *reverse_api_address != QString("")){ isObjectUpdated = true; break;}
336  if(m_reverse_api_port_isSet){ isObjectUpdated = true; break;}
337  if(m_reverse_api_device_index_isSet){ isObjectUpdated = true; break;}
338  if(m_reverse_api_channel_index_isSet){ isObjectUpdated = true; break;}
339  }while(false);
340  return isObjectUpdated;
341 }
+ Here is the caller graph for this function:

◆ setFileName()

void SWGSDRangel::SWGFileSourceSettings::setFileName ( QString *  file_name)

Definition at line 207 of file SWGFileSourceSettings.cpp.

References file_name, and m_file_name_isSet.

◆ setFilterChainHash()

void SWGSDRangel::SWGFileSourceSettings::setFilterChainHash ( qint32  filter_chain_hash)

◆ setGainDb()

void SWGSDRangel::SWGFileSourceSettings::setGainDb ( qint32  gain_db)

Definition at line 247 of file SWGFileSourceSettings.cpp.

References gain_db, and m_gain_db_isSet.

Referenced by FileSource::webapiFormatChannelSettings(), and FileSource::webapiReverseSendSettings().

+ Here is the caller graph for this function:

◆ setLog2Interp()

void SWGSDRangel::SWGFileSourceSettings::setLog2Interp ( qint32  log2_interp)

Definition at line 227 of file SWGFileSourceSettings.cpp.

References log2_interp, and m_log2_interp_isSet.

Referenced by FileSource::webapiFormatChannelSettings(), and FileSource::webapiReverseSendSettings().

+ Here is the caller graph for this function:

◆ setLoop()

void SWGSDRangel::SWGFileSourceSettings::setLoop ( qint32  loop)

Definition at line 217 of file SWGFileSourceSettings.cpp.

References loop, and m_loop_isSet.

217  {
218  this->loop = loop;
219  this->m_loop_isSet = true;
220 }

◆ setReverseApiAddress()

void SWGSDRangel::SWGFileSourceSettings::setReverseApiAddress ( QString *  reverse_api_address)

Definition at line 287 of file SWGFileSourceSettings.cpp.

References m_reverse_api_address_isSet, and reverse_api_address.

Referenced by FileSource::webapiFormatChannelSettings().

+ Here is the caller graph for this function:

◆ setReverseApiChannelIndex()

void SWGSDRangel::SWGFileSourceSettings::setReverseApiChannelIndex ( qint32  reverse_api_channel_index)

◆ setReverseApiDeviceIndex()

void SWGSDRangel::SWGFileSourceSettings::setReverseApiDeviceIndex ( qint32  reverse_api_device_index)

◆ setReverseApiPort()

void SWGSDRangel::SWGFileSourceSettings::setReverseApiPort ( qint32  reverse_api_port)

Definition at line 297 of file SWGFileSourceSettings.cpp.

References m_reverse_api_port_isSet, and reverse_api_port.

Referenced by FileSource::webapiFormatChannelSettings().

+ Here is the caller graph for this function:

◆ setRgbColor()

void SWGSDRangel::SWGFileSourceSettings::setRgbColor ( qint32  rgb_color)

Definition at line 257 of file SWGFileSourceSettings.cpp.

References m_rgb_color_isSet, and rgb_color.

Referenced by FileSource::webapiFormatChannelSettings(), and FileSource::webapiReverseSendSettings().

+ Here is the caller graph for this function:

◆ setTitle()

void SWGSDRangel::SWGFileSourceSettings::setTitle ( QString *  title)

Definition at line 267 of file SWGFileSourceSettings.cpp.

References m_title_isSet, and title.

Referenced by FileSource::webapiFormatChannelSettings(), and FileSource::webapiReverseSendSettings().

267  {
268  this->title = title;
269  this->m_title_isSet = true;
270 }
+ Here is the caller graph for this function:

◆ setUseReverseApi()

void SWGSDRangel::SWGFileSourceSettings::setUseReverseApi ( qint32  use_reverse_api)

Definition at line 277 of file SWGFileSourceSettings.cpp.

References m_use_reverse_api_isSet, and use_reverse_api.

Referenced by FileSource::webapiFormatChannelSettings().

+ Here is the caller graph for this function:

Member Data Documentation

◆ file_name

QString* SWGSDRangel::SWGFileSourceSettings::file_name
private

◆ filter_chain_hash

qint32 SWGSDRangel::SWGFileSourceSettings::filter_chain_hash
private

◆ gain_db

qint32 SWGSDRangel::SWGFileSourceSettings::gain_db
private

◆ log2_interp

qint32 SWGSDRangel::SWGFileSourceSettings::log2_interp
private

◆ loop

qint32 SWGSDRangel::SWGFileSourceSettings::loop
private

◆ m_file_name_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_file_name_isSet
private

Definition at line 86 of file SWGFileSourceSettings.h.

Referenced by init(), setFileName(), and SWGFileSourceSettings().

◆ m_filter_chain_hash_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_filter_chain_hash_isSet
private

◆ m_gain_db_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_gain_db_isSet
private

Definition at line 98 of file SWGFileSourceSettings.h.

Referenced by asJsonObject(), init(), isSet(), setGainDb(), and SWGFileSourceSettings().

◆ m_log2_interp_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_log2_interp_isSet
private

◆ m_loop_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_loop_isSet
private

Definition at line 89 of file SWGFileSourceSettings.h.

Referenced by asJsonObject(), init(), isSet(), setLoop(), and SWGFileSourceSettings().

◆ m_reverse_api_address_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_reverse_api_address_isSet
private

Definition at line 110 of file SWGFileSourceSettings.h.

Referenced by init(), setReverseApiAddress(), and SWGFileSourceSettings().

◆ m_reverse_api_channel_index_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_reverse_api_channel_index_isSet
private

◆ m_reverse_api_device_index_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_reverse_api_device_index_isSet
private

◆ m_reverse_api_port_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_reverse_api_port_isSet
private

◆ m_rgb_color_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_rgb_color_isSet
private

◆ m_title_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_title_isSet
private

Definition at line 104 of file SWGFileSourceSettings.h.

Referenced by init(), setTitle(), and SWGFileSourceSettings().

◆ m_use_reverse_api_isSet

bool SWGSDRangel::SWGFileSourceSettings::m_use_reverse_api_isSet
private

◆ reverse_api_address

QString* SWGSDRangel::SWGFileSourceSettings::reverse_api_address
private

◆ reverse_api_channel_index

qint32 SWGSDRangel::SWGFileSourceSettings::reverse_api_channel_index
private

◆ reverse_api_device_index

qint32 SWGSDRangel::SWGFileSourceSettings::reverse_api_device_index
private

◆ reverse_api_port

qint32 SWGSDRangel::SWGFileSourceSettings::reverse_api_port
private

◆ rgb_color

qint32 SWGSDRangel::SWGFileSourceSettings::rgb_color
private

◆ title

QString* SWGSDRangel::SWGFileSourceSettings::title
private

◆ use_reverse_api

qint32 SWGSDRangel::SWGFileSourceSettings::use_reverse_api
private

The documentation for this class was generated from the following files: