Last change
on this file since 6584 was
5781,
checked in by rgrieder, 15 years ago
|
Reverted trunk again. We might want to find a way to delete these revisions again (x3n's changes are still available as diff in the commit mails).
|
-
Property svn:eol-style set to
native
|
File size:
926 bytes
|
Rev | Line | |
---|
[2608] | 1 | /********************************************************************* |
---|
| 2 | TextComponent |
---|
| 3 | **********************************************************************/ |
---|
| 4 | class TextComponent : public FalagardComponentBase |
---|
| 5 | { |
---|
| 6 | string getText() const; |
---|
| 7 | void setText(string text); |
---|
| 8 | string getFont() const; |
---|
| 9 | void setFont(string font); |
---|
| 10 | VerticalTextFormatting getVerticalFormatting() const; |
---|
| 11 | void setVerticalFormatting(VerticalTextFormatting fmt); |
---|
| 12 | HorizontalTextFormatting getHorizontalFormatting() const; |
---|
| 13 | void setHorizontalFormatting(HorizontalTextFormatting fmt); |
---|
| 14 | //void writeXMLToStream(OutStream& out_stream) const; |
---|
| 15 | bool isTextFetchedFromProperty() const; |
---|
| 16 | string getTextPropertySource() const; |
---|
| 17 | void setTextPropertySource(string property); |
---|
| 18 | bool isFontFetchedFromProperty() const; |
---|
| 19 | string getFontPropertySource() const; |
---|
| 20 | void setFontPropertySource(string property); |
---|
| 21 | TextComponent(); |
---|
| 22 | }; |
---|
Note: See
TracBrowser
for help on using the repository browser.