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 | Protected Member Functions | Protected Attributes | List of all members
ATVMod::MsgReportCameraData Class Reference

#include <atvmod.h>

+ Inheritance diagram for ATVMod::MsgReportCameraData:
+ Collaboration diagram for ATVMod::MsgReportCameraData:

Public Member Functions

int getdeviceNumber () const
 
float getFPS () const
 
float getFPSManual () const
 
bool getFPSManualEnable () const
 
int getWidth () const
 
int getHeight () const
 
int getStatus () 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 MsgReportCameraDatacreate (int deviceNumber, float fps, float fpsManual, bool fpsManualEnable, int width, int height, int status)
 
- Static Public Member Functions inherited from Message
static bool match (const Message *message)
 

Protected Member Functions

 MsgReportCameraData (int deviceNumber, float fps, float fpsManual, bool fpsManualEnable, int width, int height, int status)
 

Protected Attributes

int m_deviceNumber
 
float m_fps
 
float m_fpsManual
 
bool m_fpsManualEnable
 
int m_width
 
int m_height
 
int m_status
 
- Protected Attributes inherited from Message
void * m_destination
 

Additional Inherited Members

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

Detailed Description

Definition at line 273 of file atvmod.h.

Constructor & Destructor Documentation

◆ MsgReportCameraData()

ATVMod::MsgReportCameraData::MsgReportCameraData ( int  deviceNumber,
float  fps,
float  fpsManual,
bool  fpsManualEnable,
int  width,
int  height,
int  status 
)
inlineprotected

Definition at line 313 of file atvmod.h.

320  :
321  Message(),
322  m_deviceNumber(deviceNumber),
323  m_fps(fps),
324  m_fpsManual(fpsManual),
325  m_fpsManualEnable(fpsManualEnable),
326  m_width(width),
327  m_height(height),
328  m_status(status)
329  { }
Message()
Definition: message.cpp:26

Member Function Documentation

◆ create()

static MsgReportCameraData* ATVMod::MsgReportCameraData::create ( int  deviceNumber,
float  fps,
float  fpsManual,
bool  fpsManualEnable,
int  width,
int  height,
int  status 
)
inlinestatic

Definition at line 285 of file atvmod.h.

Referenced by ATVMod::getCameraNumbers(), ATVMod::handleMessage(), and ATVMod::pullVideo().

293  {
294  return new MsgReportCameraData(
295  deviceNumber,
296  fps,
297  fpsManual,
298  fpsManualEnable,
299  width,
300  height,
301  status);
302  }
MsgReportCameraData(int deviceNumber, float fps, float fpsManual, bool fpsManualEnable, int width, int height, int status)
Definition: atvmod.h:313
+ Here is the caller graph for this function:

◆ getdeviceNumber()

int ATVMod::MsgReportCameraData::getdeviceNumber ( ) const
inline

Definition at line 277 of file atvmod.h.

Referenced by ATVModGUI::handleMessage().

277 { return m_deviceNumber; }
+ Here is the caller graph for this function:

◆ getFPS()

float ATVMod::MsgReportCameraData::getFPS ( ) const
inline

Definition at line 278 of file atvmod.h.

References ATVMod::m_fps.

Referenced by ATVModGUI::handleMessage().

278 { return m_fps; }
+ Here is the caller graph for this function:

◆ getFPSManual()

float ATVMod::MsgReportCameraData::getFPSManual ( ) const
inline

Definition at line 279 of file atvmod.h.

Referenced by ATVModGUI::handleMessage().

279 { return m_fpsManual; }
+ Here is the caller graph for this function:

◆ getFPSManualEnable()

bool ATVMod::MsgReportCameraData::getFPSManualEnable ( ) const
inline

Definition at line 280 of file atvmod.h.

Referenced by ATVModGUI::handleMessage().

280 { return m_fpsManualEnable; }
+ Here is the caller graph for this function:

◆ getHeight()

int ATVMod::MsgReportCameraData::getHeight ( ) const
inline

Definition at line 282 of file atvmod.h.

Referenced by ATVModGUI::handleMessage().

282 { return m_height; }
+ Here is the caller graph for this function:

◆ getStatus()

int ATVMod::MsgReportCameraData::getStatus ( ) const
inline

Definition at line 283 of file atvmod.h.

Referenced by ATVModGUI::handleMessage().

283 { return m_status; }
+ Here is the caller graph for this function:

◆ getWidth()

int ATVMod::MsgReportCameraData::getWidth ( ) const
inline

Definition at line 281 of file atvmod.h.

Referenced by ATVModGUI::handleMessage().

281 { return m_width; }
+ Here is the caller graph for this function:

Member Data Documentation

◆ m_deviceNumber

int ATVMod::MsgReportCameraData::m_deviceNumber
protected

Definition at line 305 of file atvmod.h.

◆ m_fps

float ATVMod::MsgReportCameraData::m_fps
protected

Definition at line 306 of file atvmod.h.

◆ m_fpsManual

float ATVMod::MsgReportCameraData::m_fpsManual
protected

Definition at line 307 of file atvmod.h.

◆ m_fpsManualEnable

bool ATVMod::MsgReportCameraData::m_fpsManualEnable
protected

Definition at line 308 of file atvmod.h.

◆ m_height

int ATVMod::MsgReportCameraData::m_height
protected

Definition at line 310 of file atvmod.h.

◆ m_status

int ATVMod::MsgReportCameraData::m_status
protected

Definition at line 311 of file atvmod.h.

◆ m_width

int ATVMod::MsgReportCameraData::m_width
protected

Definition at line 309 of file atvmod.h.


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