Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl/glgui_text.h @ 8980

Last change on this file since 8980 was 8980, checked in by bensch, 18 years ago

trunk: more gui in the Hud

File size: 1.1 KB
Line 
1/*!
2 * @file glgui_text.h
3 * The gl_TEXT widget of th openglGUI
4 *
5 */
6
7#ifndef _GLGUI_TEXT_H
8#define _GLGUI_TEXT_H
9
10#include "glgui_widget.h"
11#include "limited_width_text.h"
12// FORWARD DECLARATION
13namespace OrxGui
14{
15
16  //! This is part of the openglGUI class
17  /**
18   *
19   */
20  class GLGuiText : public GLGuiWidget
21  {
22
23  public:
24    GLGuiText();
25    virtual ~GLGuiText();
26
27    void setText(const std::string& text);
28    void append(const std::string& appendText);
29    void appendCharacter(char character);
30    void removeCharacters(unsigned int chars);
31    void clear();
32
33    void setDotsPosition(LimitedWidthText::DotsPosition dotsPosition) { this->_text.setDotsPosition(dotsPosition); };
34
35    const std::string& text() const { return _text.text(); };
36
37
38    virtual void draw() const;
39
40    DeclareSignal1(textChanged, const std::string&);
41
42  protected:
43    virtual void updateFrontColor();
44    virtual void hiding();
45    virtual void showing();
46    virtual void resize();
47
48  private:
49    void init();
50    void changedText();
51
52
53  private:
54    LimitedWidthText    _text;
55  };
56}
57
58#endif /* _GLGUI_TEXT_H */
Note: See TracBrowser for help on using the repository browser.