|
Last change
on this file since 7645 was
7454,
checked in by bensch, 20 years ago
|
|
orxonox/trunk: better rebuild order
|
|
File size:
996 bytes
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | * @file multi_line_text.h |
|---|
| 3 | * @brief Definition of a text Class, that is able to render text. |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | #ifndef _MULTI_LINE_TEXT_H |
|---|
| 7 | #define _MULTI_LINE_TEXT_H |
|---|
| 8 | |
|---|
| 9 | #include "text.h" |
|---|
| 10 | |
|---|
| 11 | #include <vector> |
|---|
| 12 | |
|---|
| 13 | //! Represents one textElement. |
|---|
| 14 | class MultiLineText : public Text |
|---|
| 15 | { |
|---|
| 16 | public: |
|---|
| 17 | MultiLineText(const std::string& fontFile = "", unsigned int fontSize = TEXT_DEFAULT_SIZE); |
|---|
| 18 | |
|---|
| 19 | // Setup: |
|---|
| 20 | void setLineWidth(float lineWidth); |
|---|
| 21 | void setLineSpacing(float lineSpacing); |
|---|
| 22 | |
|---|
| 23 | // Retrieve: |
|---|
| 24 | /** @returns the LineWidth (maximum distance from the left to the right */ |
|---|
| 25 | inline float getLineWidth() const { return this->lineWidth; }; |
|---|
| 26 | /** @returns the LineSpacing */ |
|---|
| 27 | inline float getLineSpacing() const { return this->lineSpacing; }; |
|---|
| 28 | |
|---|
| 29 | virtual void draw() const; |
|---|
| 30 | |
|---|
| 31 | protected: |
|---|
| 32 | virtual void setupTextWidth(); |
|---|
| 33 | |
|---|
| 34 | private: |
|---|
| 35 | float lineWidth; |
|---|
| 36 | float lineSpacing; |
|---|
| 37 | std::vector<unsigned int> lineEnds; |
|---|
| 38 | }; |
|---|
| 39 | |
|---|
| 40 | #endif /* _MULTI_LINE_TEXT_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.