00001
00002
00003
00004
00005 #ifndef SAMPLE_H
00006 #define SAMPLE_H
00007
00008 #include <qpixmap.h>
00009 #include <qstring.h>
00010 #include <qsize.h>
00011 #include <qframe.h>
00012
00013 #include "rcolor.h"
00014
00015 class QPainter;
00016
00017 class Sample : public QFrame
00018 {
00019 Q_OBJECT
00020
00021 QSize frSize, txtSize;
00022 QString text;
00023 QPixmap bg, fg, txt;
00024 public:
00025 Sample( QWidget* parent = 0, const char* name = 0, WFlags f = 0 );
00026 ~Sample();
00027 void setColor( const rColor& );
00028
00029 };
00030
00031 #endif // SAMPLE_H