00001 #ifndef __ValueButton_h
00002 #define __ValueButton_h
00003
00004 #include <qpushbutton.h>
00005 #include <qtooltip.h>
00006
00007 class ValueButton : public QPushButton {
00008 Q_OBJECT
00009
00010 public:
00011 ValueButton(const QString & text, QWidget * parent, const char * name=0);
00012
00013 void setValue(char* val);
00014
00015 protected:
00016 char* value;
00017
00018 public slots:
00019 void emitValue();
00020
00021 signals:
00022 void clicked(char* val);
00023
00024
00025 };
00026
00027 #endif
00028