diff options
Diffstat (limited to 'noatun/modules/kjofol-skin/kjequalizer.h')
-rw-r--r-- | noatun/modules/kjofol-skin/kjequalizer.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/noatun/modules/kjofol-skin/kjequalizer.h b/noatun/modules/kjofol-skin/kjequalizer.h index f3f13bd5..be5535eb 100644 --- a/noatun/modules/kjofol-skin/kjequalizer.h +++ b/noatun/modules/kjofol-skin/kjequalizer.h @@ -6,20 +6,20 @@ class KJLoader; class VInterpolation; -#include <qobject.h> +#include <tqobject.h> -class KJEqualizer : public QObject, public KJWidget +class KJEqualizer : public TQObject, public KJWidget { Q_OBJECT public: - KJEqualizer(const QStringList &, KJLoader *parent); + KJEqualizer(const TQStringList &, KJLoader *parent); ~KJEqualizer(void); - virtual void mouseMove(const QPoint &pos, bool); - virtual bool mousePress(const QPoint&); - virtual void paint(QPainter *p, const QRect &rect); - int barNum(const QPoint &pos) const; - int level(const QPoint &pos) const; + virtual void mouseMove(const TQPoint &pos, bool); + virtual bool mousePress(const TQPoint&); + virtual void paint(TQPainter *p, const TQRect &rect); + int barNum(const TQPoint &pos) const; + int level(const TQPoint &pos) const; public slots: void slotUpdateBuffer(); @@ -30,9 +30,9 @@ private: int mBandWidth; int mBandHalfHeight; - QPixmap mBars; // holds all slider images - QPixmap *mBack; // holds background of EQ for easy repaint - QPixmap *mView; // holds prepared img of all sliders + TQPixmap mBars; // holds all slider images + TQPixmap *mBack; // holds background of EQ for easy repaint + TQPixmap *mView; // holds prepared img of all sliders VInterpolation *mInterpEq; }; |