Flair
Framework Libre Air
|
Abstract class to display a layout on the ground station. More...
#include <Layout.h>
Public Member Functions | |
Layout (const Widget *parent, std::string name, std::string type) | |
Constructor. More... | |
~Layout () | |
Destructor. More... | |
LayoutPosition * | LastRowLastCol (void) const |
Last Row and Col LayoutPosition. More... | |
LayoutPosition * | NewRow (void) const |
New Row LayoutPosition. More... | |
LayoutPosition * | At (uint16_t row, uint16_t col) const |
LayoutPosition at specified position. More... | |
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 Object * | Parent (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... | |
Additional Inherited Members | |
Public Types inherited from flair::core::Object | |
enum | color_t { Auto = 0, Red = 31, Green = 32, Orange = 33 } |
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... | |
virtual void | XmlEvent (void) |
Xml event. More... | |
void | UnsetPersistentXmlProp (std::string prop) |
Unset a persistent xml property. More... | |
Abstract class to display a layout on the ground station.
This is an abstract class to display layouts (like GridLayout, GroupBox, etc).
A layout can contains Widgets (Box, DataPlot, Picture, etc).
Layout holds a Mutex, which can be used to protect access to Box's value for example.
flair::gui::Layout::Layout | ( | const Widget * | parent, |
std::string | name, | ||
std::string | type | ||
) |
Constructor.
Construct a Layout. Type is a predifined one, and will be interpreted by the ground station.
parent | parent |
name | name |
type | type of layout |
flair::gui::Layout::~Layout | ( | ) |
Destructor.
LayoutPosition* flair::gui::Layout::LastRowLastCol | ( | void | ) | const |
Last Row and Col LayoutPosition.
Get a LayoutPosition at the last row and col.
LayoutPosition* flair::gui::Layout::NewRow | ( | void | ) | const |
New Row LayoutPosition.
Get a LayoutPosition at a new row and first col. This new row will be at the last position.
LayoutPosition* flair::gui::Layout::At | ( | uint16_t | row, |
uint16_t | col | ||
) | const |
LayoutPosition at specified position.
Get a LayoutPosition at specified row and col.
row | row |
col | col |