diff options
Diffstat (limited to 'deco/config/aquariusbutton.h')
-rw-r--r-- | deco/config/aquariusbutton.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/deco/config/aquariusbutton.h b/deco/config/aquariusbutton.h index 04fec0d..3632408 100644 --- a/deco/config/aquariusbutton.h +++ b/deco/config/aquariusbutton.h @@ -1,32 +1,32 @@ #ifndef AQUARIUSBUTTON_H #define AQUARIUSBUTTON_H -//#include <qvariant.h> -#include <qwidget.h> -#include <qimage.h> +//#include <tqvariant.h> +#include <tqwidget.h> +#include <tqimage.h> -class QPixmap; -class QColor; +class TQPixmap; +class TQColor; -class AquariusButton : public QWidget +class AquariusButton : public TQWidget { Q_OBJECT public: - AquariusButton( QPixmap &pixmap, QWidget* parent = 0, const char* name = 0); + AquariusButton( TQPixmap &pixmap, TQWidget* parent = 0, const char* name = 0); ~AquariusButton(); - QColor Color(); + TQColor Color(); public slots: - void setColor(QColor c); + void setColor(TQColor c); protected: - QPixmap pixmap; - QImage image; - QColor color; - void tint(QColor &c); - void mousePressEvent( QMouseEvent *e ); - void paintEvent( QPaintEvent *e); + TQPixmap pixmap; + TQImage image; + TQColor color; + void tint(TQColor &c); + void mousePressEvent( TQMouseEvent *e ); + void paintEvent( TQPaintEvent *e); signals: |