#ifndef ROOT_TQtBrush
#define ROOT_TQtBrush
#ifndef __CINT__
# include <qbrush.h>
# include <qcolor.h>
# include <qpixmap.h>
#else
class QColor;
class QBrush;
class QPixmap;
#endif
#include "Rtypes.h"
class TQtBrush : public QBrush
{
protected:
QColor fBackground;
int fStyle;
int fFasi;
#ifdef R__WIN32
QPixmap fCustomPixmap;
#endif
public:
TQtBrush();
TQtBrush(const TQtBrush &src):QBrush(src)
{
fBackground=src.fBackground;
fStyle=src.fStyle;
fFasi=src.fFasi;
}
virtual ~TQtBrush(){;}
void SetStyle(int style=1000){ SetStyle(style/1000,style%1000); };
void SetStyle(int style, int fasi);
void SetColor(const QColor &color);
const QColor &GetColor() const { return fBackground;}
int GetStyle() const { return 1000*fStyle + fFasi; }
ClassDef(TQtBrush,0);
};
#endif
Last update: Thu Jan 17 09:02:23 2008
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.