calabel.h

00001 #ifndef CALABEL_H
00002 #define CALABEL_H
00003 
00004 #include "cawidget.h"
00005 
00009 class CALabel : public CAWidget  {
00010 public:
00011     CALabel( char* text, Alignment alignment, CL_Font* font );
00012     ~CALabel();
00013 
00014     virtual void display( bool active=true );
00016     void setText( const char* text ) {
00017         this->text = text;
00018     }
00019 
00020 private:
00022 
00023     CL_String text;
00025     CL_Font* font;
00026 };
00027 
00028 #endif

Generated on Tue Nov 28 06:48:28 2006 by  doxygen 1.5.0