Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl_gui/glgui_textfield.h @ 5365

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

orxonox/trunk: more-gui-definition

File size: 486 bytes
RevLine 
[4838]1/*!
[5365]2 * @file glgui_textfield.h
[5360]3 * The gl_ widget of th openglGUI
4 *
5 */
[1853]6
[5365]7#ifndef _GLGUI_TEXTFIELD_H
8#define _GLGUI_TEXTFIELD_H
[1853]9
[5365]10#include "glgui_widget.h"
[1853]11
[4838]12// FORWARD DECLARATION
[5365]13class Text;
14template<class T> class tList;
[3543]15
[5360]16//! This is part of the openglGUI class
17/**
18 *
19 */
[5365]20class GLGuiTextfield : public GLGuiWidget {
[3543]21
[5360]22 public:
[5365]23  GLGuiTextfield();
24  virtual ~GLGuiTextfield();
[2036]25
[5360]26  void init();
[1853]27
[5360]28  virtual void draw();
[1853]29
[3245]30 private:
[5365]31  tList<Text>*      textLines;
[3245]32
[1853]33};
34
[5360]35#endif /* _GLGUI__H */
Note: See TracBrowser for help on using the repository browser.