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
MainWindow::MsgSetDevice Class Reference
+ Inheritance diagram for MainWindow::MsgSetDevice:
+ Collaboration diagram for MainWindow::MsgSetDevice:

Public Member Functions

int getDeviceSetIndex () const
 
int getDeviceIndex () const
 
int getDeviceType () 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 MsgSetDevicecreate (int deviceSetIndex, int deviceIndex, bool tx)
 
- Static Public Member Functions inherited from Message
static bool match (const Message *message)
 

Private Member Functions

 MsgSetDevice (int deviceSetIndex, int deviceIndex, int deviceType)
 

Private Attributes

int m_deviceSetIndex
 
int m_deviceIndex
 
int m_deviceType
 

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 194 of file mainwindow.h.

Constructor & Destructor Documentation

◆ MsgSetDevice()

MainWindow::MsgSetDevice::MsgSetDevice ( int  deviceSetIndex,
int  deviceIndex,
int  deviceType 
)
inlineprivate

Definition at line 212 of file mainwindow.h.

212  :
213  Message(),
214  m_deviceSetIndex(deviceSetIndex),
215  m_deviceIndex(deviceIndex),
216  m_deviceType(deviceType)
217  { }
Message()
Definition: message.cpp:26

Member Function Documentation

◆ create()

static MsgSetDevice* MainWindow::MsgSetDevice::create ( int  deviceSetIndex,
int  deviceIndex,
bool  tx 
)
inlinestatic

Definition at line 202 of file mainwindow.h.

Referenced by WebAPIAdapterGUI::devicesetDevicePut().

203  {
204  return new MsgSetDevice(deviceSetIndex, deviceIndex, tx);
205  }
MsgSetDevice(int deviceSetIndex, int deviceIndex, int deviceType)
Definition: mainwindow.h:212
+ Here is the caller graph for this function:

◆ getDeviceIndex()

int MainWindow::MsgSetDevice::getDeviceIndex ( ) const
inline

Definition at line 199 of file mainwindow.h.

Referenced by MainWindow::handleMessage().

199 { return m_deviceIndex; }
+ Here is the caller graph for this function:

◆ getDeviceSetIndex()

int MainWindow::MsgSetDevice::getDeviceSetIndex ( ) const
inline

Definition at line 198 of file mainwindow.h.

Referenced by MainWindow::handleMessage().

198 { return m_deviceSetIndex; }
+ Here is the caller graph for this function:

◆ getDeviceType()

int MainWindow::MsgSetDevice::getDeviceType ( ) const
inline

Definition at line 200 of file mainwindow.h.

Referenced by MainWindow::handleMessage().

200 { return m_deviceType; }
+ Here is the caller graph for this function:

Member Data Documentation

◆ m_deviceIndex

int MainWindow::MsgSetDevice::m_deviceIndex
private

Definition at line 209 of file mainwindow.h.

◆ m_deviceSetIndex

int MainWindow::MsgSetDevice::m_deviceSetIndex
private

Definition at line 208 of file mainwindow.h.

◆ m_deviceType

int MainWindow::MsgSetDevice::m_deviceType
private

Definition at line 210 of file mainwindow.h.


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