/*************************************************************************** guitext.h - description ------------------- begin : Tue Jun 15 2004 copyright : (C) 2004 by Harald Krippel email : harald@hte-develop.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef GUITEXT_H #define GUITEXT_H /** *@author Harald Krippel */ #include class GUIText : public puText { public: GUIText( int x, int y); void setText(const char *text); ~GUIText(); private: char labeltext[256]; }; #endif