Flair
Framework Libre Air
flair::gui::SendData Class Referenceabstract

Abstract class for sending datas to ground station. More...

#include <SendData.h>

+ Inheritance diagram for flair::gui::SendData:

Public Member Functions

 SendData (const LayoutPosition *position, std::string name, std::string type, uint16_t default_periodms=100, bool default_enabled=false)
 Constructor. More...
 
virtual ~SendData ()
 Destructor. More...
 
virtual void CopyDatas (char *buf) const =0
 Copy datas to specified buffer. More...
 
size_t SendSize (void) const
 
uint16_t SendPeriod (void) const
 
bool IsEnabled (void) const
 
- Public Member Functions inherited from flair::gui::Widget
 Widget (const Widget *parent, std::string name, std::string type)
 Constructor. More...
 
virtual ~Widget ()
 Destructor. More...
 
void setEnabled (bool status)
 Set enabled. More...
 
bool isEnabled (void) const
 Is enabled? More...
 
- Public Member Functions inherited from flair::core::Object
 Object (const Object *parent=NULL, std::string name="", std::string type="")
 Constructor. More...
 
virtual ~Object ()
 Destructor. More...
 
std::string ObjectName (void) const
 Name. More...
 
std::string ObjectType (void) const
 Type. More...
 
const ObjectParent (void) const
 Parent. More...
 
std::vector< const Object * > * TypeChilds (void) const
 Childs of the same type. More...
 
std::vector< const Object * > * Childs (void) const
 Childs. More...
 
void Information (const char *function, int line, const char *format,...) const
 Formatted information. More...
 
void Warning (const char *function, const char *format,...) const
 Formatted warning. More...
 
void Error (const char *function, const char *format,...) const
 Formatted error. More...
 
bool ErrorOccured (bool recursive=true) const
 Has an errror occured? More...
 

Protected Member Functions

void SetSendSize (size_t value)
 Notify that SenData's datas have changed. More...
 
virtual void ExtraXmlEvent (void)=0
 Extra Xml event. More...
 
- Protected Member Functions inherited from flair::gui::Widget
template<typename T >
void SetPersistentXmlProp (std::string prop, T value)
 Set a persistent xml property. More...
 
template<typename T >
bool GetPersistentXmlProp (std::string prop, T &value)
 Get a persistent xml property. More...
 
template<typename T >
void SetVolatileXmlProp (std::string prop, T value, xmlNodePtr node=NULL)
 Set a volatile xml property. More...
 
void SendXml (void)
 Send xml. More...
 
void UnsetPersistentXmlProp (std::string prop)
 Unset a persistent xml property. More...
 

Additional Inherited Members

- Public Types inherited from flair::core::Object
enum  color_t { Auto = 0, Red = 31, Green = 32, Orange = 33 }
 

Detailed Description

Abstract class for sending datas to ground station.

Constructor & Destructor Documentation

flair::gui::SendData::SendData ( const LayoutPosition position,
std::string  name,
std::string  type,
uint16_t  default_periodms = 100,
bool  default_enabled = false 
)

Constructor.

virtual flair::gui::SendData::~SendData ( )
virtual

Destructor.

Member Function Documentation

virtual void flair::gui::SendData::CopyDatas ( char *  buf) const
pure virtual

Copy datas to specified buffer.

This method must be reimplemented, in order to send datas to ground station.

Parameters
bufoutput buffer

Implemented in flair::gui::Map.

void flair::gui::SendData::SetSendSize ( size_t  value)
protected

Notify that SenData's datas have changed.

This method must be called when the datas have changed.
Normally, it occurs when a curve is added to a plot for example.
This method automatically blocks and unblocks the communication.

virtual void flair::gui::SendData::ExtraXmlEvent ( void  )
protectedpure virtual

Extra Xml event.

This method must be reimplemented to handle extra xml event.
It is automatically called when something changed from ground station, through XmlEvent method.