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
RemoteInput::MsgConfigureRemoteInput Class Reference

#include <remoteinput.h>

+ Inheritance diagram for RemoteInput::MsgConfigureRemoteInput:
+ Collaboration diagram for RemoteInput::MsgConfigureRemoteInput:

Public Member Functions

const RemoteInputSettingsgetSettings () 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 MsgConfigureRemoteInputcreate (const RemoteInputSettings &settings, bool force=false)
 
- Static Public Member Functions inherited from Message
static bool match (const Message *message)
 

Private Member Functions

 MsgConfigureRemoteInput (const RemoteInputSettings &settings, bool force)
 

Private Attributes

RemoteInputSettings 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 43 of file remoteinput.h.

Constructor & Destructor Documentation

◆ MsgConfigureRemoteInput()

RemoteInput::MsgConfigureRemoteInput::MsgConfigureRemoteInput ( const RemoteInputSettings settings,
bool  force 
)
inlineprivate

Definition at line 59 of file remoteinput.h.

Referenced by create().

59  :
60  Message(),
61  m_settings(settings),
62  m_force(force)
63  { }
Message()
Definition: message.cpp:26
+ Here is the caller graph for this function:

Member Function Documentation

◆ create()

static MsgConfigureRemoteInput* RemoteInput::MsgConfigureRemoteInput::create ( const RemoteInputSettings settings,
bool  force = false 
)
inlinestatic

Definition at line 50 of file remoteinput.h.

References MsgConfigureRemoteInput().

Referenced by RemoteInput::deserialize(), RemoteInputGui::updateHardware(), and RemoteInput::webapiSettingsPutPatch().

51  {
52  return new MsgConfigureRemoteInput(settings, force);
53  }
MsgConfigureRemoteInput(const RemoteInputSettings &settings, bool force)
Definition: remoteinput.h:59
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getForce()

bool RemoteInput::MsgConfigureRemoteInput::getForce ( ) const
inline

Definition at line 48 of file remoteinput.h.

References m_force.

Referenced by RemoteInput::handleMessage().

+ Here is the caller graph for this function:

◆ getSettings()

const RemoteInputSettings& RemoteInput::MsgConfigureRemoteInput::getSettings ( ) const
inline

Definition at line 47 of file remoteinput.h.

References m_settings.

Referenced by RemoteInputGui::handleMessage(), and RemoteInput::handleMessage().

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

Member Data Documentation

◆ m_force

bool RemoteInput::MsgConfigureRemoteInput::m_force
private

Definition at line 57 of file remoteinput.h.

Referenced by getForce().

◆ m_settings

RemoteInputSettings RemoteInput::MsgConfigureRemoteInput::m_settings
private

Definition at line 56 of file remoteinput.h.

Referenced by getSettings().


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