diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /noatun/modules/kjofol-skin/kjequalizer.h | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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; }; |