|
CARMA C++
|
A static component that provides spacing inside of boxes (with BoxLayout). More...
#include <carma/ui/rtd/common/RtDisplay.h>
Public Member Functions | |
| RtSpring (int minWidth, int prefWidth, double springiness) | |
| Constructor. More... | |
| RtSpring (int minWidth, double springiness) | |
| Constructor. More... | |
| RtSpring (int minWidth, int prefWidth) | |
| Constructor. More... | |
| RtSpring (int minWidth) | |
| Constructor. More... | |
| RtSpring (double springiness) | |
| Constructor. More... | |
| RtSpring () | |
| Constructor. More... | |
| virtual void | serialize (bool initialize, int fontSize,::rtdproto::RtObject *rtobj) |
| Describe this component to stdout. More... | |
Public Member Functions inherited from carma::ui::rtd::RtStatic | |
| virtual void | update () |
| A null update routine. More... | |
Public Member Functions inherited from carma::ui::rtd::RtObject | |
| void | appendToolTipText (const std::string &text) |
| Append more text to the existing tool tip text. More... | |
| Layout | getLayout () const |
| Get the layout for this object. More... | |
| std::string | getToolTipText () |
| void | setFontSize (int fontSize) |
| Set the absolute font size for this object. More... | |
| void | setLayout (Layout layout) |
| Set the layout for this object. More... | |
| void | setToolTipText (const std::string &text) |
| Set the tool tip text for this RtObject. More... | |
| virtual | ~RtObject () |
| Destructor. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from carma::ui::rtd::RtStatic | |
| RtStatic () | |
| Constructor. More... | |
Protected Member Functions inherited from carma::ui::rtd::RtObject | |
| int | getFontSize (int parentFontSize) const |
| Get the absolute font size for this object. More... | |
| int | getFontSize () const |
| Get the absolute font size for this object. More... | |
| RtObject () | |
| Constructor. More... | |
A static component that provides spacing inside of boxes (with BoxLayout).
Definition at line 2092 of file RtDisplay.h.
| carma::ui::rtd::RtSpring::RtSpring | ( | int | minWidth, |
| int | prefWidth, | ||
| double | springiness | ||
| ) |
Constructor.
| minWidth | minimum width for the spring, in pixels |
| prefWidth | preferred width for the spring, in pixels |
| springiness | weight to use when splitting space with other springs |
| carma::ui::rtd::RtSpring::RtSpring | ( | int | minWidth, |
| double | springiness | ||
| ) |
Constructor.
Preferred width defaults to minimum width.
| minWidth | minimum width for the spring, in pixels |
| springiness | weight to use when splitting space with other springs |
| carma::ui::rtd::RtSpring::RtSpring | ( | int | minWidth, |
| int | prefWidth | ||
| ) |
Constructor.
Springiness defaults to 1.
| minWidth | minimum width for the spring, in pixels |
| prefWidth | preferred width for the spring, in pixels |
| carma::ui::rtd::RtSpring::RtSpring | ( | int | minWidth | ) |
Constructor.
Preferred width defaults to minimum width and springiness default to 1.
| minWidth | minimum width for the spring, in pixels |
| carma::ui::rtd::RtSpring::RtSpring | ( | double | springiness | ) |
Constructor.
Mimimum and preferred width both set to zero.
| springiness | weight to use when splitting space with other springs |
| carma::ui::rtd::RtSpring::RtSpring | ( | ) |
Constructor.
Mimimum and preferred width both set to zero and springiness set to one.
|
virtual |
Describe this component to stdout.
Implements carma::ui::rtd::RtStatic.