#include <BALL/VIEW/PRIMITIVES/label.h>
Public Member Functions | |
Constructors | |
| Label () | |
| Label (const Label &label) | |
Destructors | |
| virtual | ~Label () |
| virtual void | clear () |
Assignment methods | |
| void | set (const Label &label) |
| const Label & | operator= (const Label &label) |
| void | swap (Label &label) |
Inspectors, Mutators, Accessors | |
| void | setText (const String &text) |
| String | getText () const |
| String | getExpandedText () const |
| const QFont & | getFont () const |
| void | setFont (const QFont &font) |
| void | setFontSize (Size size) |
debuggers and diagnostics | |
| String | text_ |
| QFont | font_ |
| virtual bool | isValid () const |
| virtual void | dump (std::ostream &s=std::cout, Size depth=0) const |
| virtual void | getVertices (vector< Vector3 > &vertices) const |
Label class. An instance of Label represents an instance of the geometric representation "label". A label is an information text that can be pinned to another Composite or GeometricObject. A label is both visible in the dynamic and static render mode of the Scene. A label has the following properties.
| BALL::VIEW::Label::Label | ( | ) |
Default Constructor. Construct new label. The properties of this label are set to:
| BALL::VIEW::Label::Label | ( | const Label & | label | ) |
Copy constructor with cloning facility.
| label | the label to be copied (cloned) |
| virtual BALL::VIEW::Label::~Label | ( | ) | [virtual] |
Destructor.
| virtual void BALL::VIEW::Label::clear | ( | ) | [virtual] |
Explicit default initialization. Calls GeometricObject::clear Calls Vertex::clear
Reimplemented from BALL::VIEW::Vertex.
| virtual void BALL::VIEW::Label::dump | ( | std::ostream & | s = std::cout, |
|
| Size | depth = 0 | |||
| ) | const [virtual] |
Internal value dump. Dump the current value of this label to the output ostream s with dumping depth depth. Calls GeometricObject::dump. Calls Vertex::dump.
| s | output stream where to output the value of this label | |
| depth | the dumping depth |
Reimplemented from BALL::VIEW::Vertex.
| String BALL::VIEW::Label::getExpandedText | ( | ) | const |
Inspection of the expanded text of the label.
| const QFont& BALL::VIEW::Label::getFont | ( | ) | const [inline] |
| String BALL::VIEW::Label::getText | ( | ) | const [inline] |
Inspection of the text of the label.
| virtual void BALL::VIEW::Label::getVertices | ( | vector< Vector3 > & | vertices | ) | const [virtual] |
Reimplemented from BALL::VIEW::GeometricObject.
| virtual bool BALL::VIEW::Label::isValid | ( | ) | const [virtual] |
Internal state and consistency self-validation. Initiate self-validation of the internal state and data structure consistencies of this label. If the internal state of this label is correct (self-validated) and consistent true is returned, false otherwise. Calls GeometricObject::isValid. Calls Vertex::isValid.
true if the internal state of this label is correct (self-validated) and consistent, false otherwise Reimplemented from BALL::VIEW::Vertex.
| void BALL::VIEW::Label::set | ( | const Label & | label | ) |
Assignment. Assign the label label to this label.
| label | the label to be copied |
| void BALL::VIEW::Label::setFont | ( | const QFont & | font | ) | [inline] |
| void BALL::VIEW::Label::setFontSize | ( | Size | size | ) | [inline] |
| void BALL::VIEW::Label::setText | ( | const String & | text | ) | [inline] |
Change the text of the label.
| void BALL::VIEW::Label::swap | ( | Label & | label | ) |
Swapping of label's.
QFont BALL::VIEW::Label::font_ [protected] |
String BALL::VIEW::Label::text_ [protected] |