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

Public Member Functions

int getDeviceSetIndex () const
 
int getChannelIndex () const
 
bool isTx () 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 MsgDeleteChannelcreate (int deviceSetIndex, int channelIndex, bool tx)
 
- Static Public Member Functions inherited from Message
static bool match (const Message *message)
 

Private Member Functions

 MsgDeleteChannel (int deviceSetIndex, int channelIndex, bool tx)
 

Private Attributes

int m_deviceSetIndex
 
int m_channelIndex
 
bool m_tx
 

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

Constructor & Destructor Documentation

◆ MsgDeleteChannel()

MainWindow::MsgDeleteChannel::MsgDeleteChannel ( int  deviceSetIndex,
int  channelIndex,
bool  tx 
)
inlineprivate

Definition at line 264 of file mainwindow.h.

264  :
265  Message(),
266  m_deviceSetIndex(deviceSetIndex),
267  m_channelIndex(channelIndex),
268  m_tx(tx)
269  { }
Message()
Definition: message.cpp:26

Member Function Documentation

◆ create()

static MsgDeleteChannel* MainWindow::MsgDeleteChannel::create ( int  deviceSetIndex,
int  channelIndex,
bool  tx 
)
inlinestatic

Definition at line 254 of file mainwindow.h.

Referenced by WebAPIAdapterGUI::devicesetChannelDelete().

255  {
256  return new MsgDeleteChannel(deviceSetIndex, channelIndex, tx);
257  }
MsgDeleteChannel(int deviceSetIndex, int channelIndex, bool tx)
Definition: mainwindow.h:264
+ Here is the caller graph for this function:

◆ getChannelIndex()

int MainWindow::MsgDeleteChannel::getChannelIndex ( ) const
inline

Definition at line 251 of file mainwindow.h.

Referenced by MainWindow::handleMessage().

+ Here is the caller graph for this function:

◆ getDeviceSetIndex()

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

Definition at line 250 of file mainwindow.h.

Referenced by MainWindow::handleMessage().

+ Here is the caller graph for this function:

◆ isTx()

bool MainWindow::MsgDeleteChannel::isTx ( ) const
inline

Definition at line 252 of file mainwindow.h.

252 { return m_tx; }

Member Data Documentation

◆ m_channelIndex

int MainWindow::MsgDeleteChannel::m_channelIndex
private

Definition at line 261 of file mainwindow.h.

◆ m_deviceSetIndex

int MainWindow::MsgDeleteChannel::m_deviceSetIndex
private

Definition at line 260 of file mainwindow.h.

◆ m_tx

bool MainWindow::MsgDeleteChannel::m_tx
private

Definition at line 262 of file mainwindow.h.


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