Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem3/src/ceguilua/ceguilua-0.5.0/package/falagard/TextComponent.pkg @ 2664

Last change on this file since 2664 was 2664, checked in by rgrieder, 16 years ago

Merged buildsystem2 to buildsystem3.

Note: Bare merge, just resolved conflicts. To testing, no nothing.

  • Property svn:eol-style set to native
File size: 926 bytes
RevLine 
[2608]1/*********************************************************************
2 TextComponent
3**********************************************************************/
4class 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.