Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 8972 was 8972, checked in by bensch, 19 years ago

added glgui_energywidget, the new Widget to display Energy and a Value

File size: 512 bytes
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 "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();
28
29    virtual void draw();
30
31  private:
32    void init();
33
34
35  private:
36    Text              text;
37  };
38}
39
40#endif /* _GLGUI_TEXT_H */
Note: See TracBrowser for help on using the repository browser.