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 | Static Public Member Functions | Private Member Functions | Private Attributes | List of all members
RemoteSource::MsgConfigureRemoteSource Class Reference

#include <remotesource.h>

+ Inheritance diagram for RemoteSource::MsgConfigureRemoteSource:
+ Collaboration diagram for RemoteSource::MsgConfigureRemoteSource:

Public Member Functions

const RemoteSourceSettingsgetSettings () const
 
bool getForce () const
 
- Public Member Functions inherited from Message
 Message ()
 
virtual ~Message ()
 
virtual const char * getIdentifier () const
 
virtual bool matchIdentifier (const char *identifier) const
 
void * getDestination () const
 
void setDestination (void *destination)
 

Static Public Member Functions

static MsgConfigureRemoteSourcecreate (const RemoteSourceSettings &settings, bool force)
 
- Static Public Member Functions inherited from Message
static bool match (const Message *message)
 

Private Member Functions

 MsgConfigureRemoteSource (const RemoteSourceSettings &settings, bool force)
 

Private Attributes

RemoteSourceSettings m_settings
 
bool m_force
 

Additional Inherited Members

- Protected Attributes inherited from Message
void * m_destination
 
- Static Protected Attributes inherited from Message
static const char * m_identifier = 0
 

Detailed Description

Definition at line 48 of file remotesource.h.

Constructor & Destructor Documentation

◆ MsgConfigureRemoteSource()

RemoteSource::MsgConfigureRemoteSource::MsgConfigureRemoteSource ( const RemoteSourceSettings settings,
bool  force 
)
inlineprivate

Definition at line 64 of file remotesource.h.

Referenced by create().

64  :
65  Message(),
66  m_settings(settings),
67  m_force(force)
68  { }
Message()
Definition: message.cpp:26
+ Here is the caller graph for this function:

Member Function Documentation

◆ create()

static MsgConfigureRemoteSource* RemoteSource::MsgConfigureRemoteSource::create ( const RemoteSourceSettings settings,
bool  force 
)
inlinestatic

Definition at line 55 of file remotesource.h.

References MsgConfigureRemoteSource().

Referenced by RemoteSourceGUI::applySettings(), RemoteSource::deserialize(), RemoteSource::setDataLink(), and RemoteSource::webapiSettingsPutPatch().

56  {
57  return new MsgConfigureRemoteSource(settings, force);
58  }
MsgConfigureRemoteSource(const RemoteSourceSettings &settings, bool force)
Definition: remotesource.h:64
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getForce()

bool RemoteSource::MsgConfigureRemoteSource::getForce ( ) const
inline

Definition at line 53 of file remotesource.h.

References m_force.

Referenced by RemoteSource::handleMessage().

+ Here is the caller graph for this function:

◆ getSettings()

const RemoteSourceSettings& RemoteSource::MsgConfigureRemoteSource::getSettings ( ) const
inline

Definition at line 52 of file remotesource.h.

References m_settings.

Referenced by RemoteSourceGUI::handleMessage(), and RemoteSource::handleMessage().

52 { return m_settings; }
+ Here is the caller graph for this function:

Member Data Documentation

◆ m_force

bool RemoteSource::MsgConfigureRemoteSource::m_force
private

Definition at line 62 of file remotesource.h.

Referenced by getForce().

◆ m_settings

RemoteSourceSettings RemoteSource::MsgConfigureRemoteSource::m_settings
private

Definition at line 61 of file remotesource.h.

Referenced by getSettings(), and RemoteSource::getTitle().


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