diff options
Diffstat (limited to 'noatun-plugins/ffrs/ffrs.h')
-rw-r--r-- | noatun-plugins/ffrs/ffrs.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/noatun-plugins/ffrs/ffrs.h b/noatun-plugins/ffrs/ffrs.h index b97c576..a29a1c2 100644 --- a/noatun-plugins/ffrs/ffrs.h +++ b/noatun-plugins/ffrs/ffrs.h @@ -9,26 +9,26 @@ class View : public QWidget { Q_OBJECT public: - View(int width, int height, int block, int unblock, QColor front, QColor back, int channel); + View(int width, int height, int block, int unblock, TQColor front, TQColor back, int channel); ~View(); void draw(float intensity); - virtual void mouseMoveEvent(QMouseEvent *e); - virtual void mousePressEvent(QMouseEvent *e); - virtual void mouseReleaseEvent(QMouseEvent *e); + virtual void mouseMoveEvent(TQMouseEvent *e); + virtual void mousePressEvent(TQMouseEvent *e); + virtual void mouseReleaseEvent(TQMouseEvent *e); private: int units; - QColor fg, bg; + TQColor fg, bg; bool moving; - QPoint mMousePoint; + TQPoint mMousePoint; int mChannel; }; class FFRSPrefs; -class FFRS : public QObject, public Plugin, public StereoScope +class FFRS : public TQObject, public Plugin, public StereoScope { Q_OBJECT @@ -55,7 +55,7 @@ class FFRSPrefs : public CModule Q_OBJECT public: - FFRSPrefs( QObject *parent ); + FFRSPrefs( TQObject *parent ); virtual void save(); int width(); @@ -64,8 +64,8 @@ public: int bgblock(); int rate(); - QColor bgcolor(); - QColor fgcolor(); + TQColor bgcolor(); + TQColor fgcolor(); signals: void changed(); |