Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members Related Pages Search
fungcolorbutton.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef FUNGCOLORBUTTON_H
00019 #define FUNGCOLORBUTTON_H
00020
00021 #include <qpushbutton.h>
00022
00031 class FungColorButton : public QPushButton
00032 {
00033 Q_OBJECT
00034
00035 public:
00036 FungColorButton( QWidget *parent=0, const char *name=0, const QColor & color = Qt::white );
00037
00038 void setColor(const QColor &);
00039 inline QColor color(){return currentColor;}
00040
00041 protected:
00042 void mouseReleaseEvent(QMouseEvent *);
00043
00044 private:
00045 QColor currentColor;
00046 QPixmap p;
00047 };
00048
00049 #endif
|