diff options
Diffstat (limited to 'noatun/library/equalizerview.h')
-rw-r--r-- | noatun/library/equalizerview.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/noatun/library/equalizerview.h b/noatun/library/equalizerview.h index 98778fcc..321b5ef0 100644 --- a/noatun/library/equalizerview.h +++ b/noatun/library/equalizerview.h @@ -1,7 +1,7 @@ #ifndef EQUALIZERVIEW_H #define EQUALIZERVIEW_H -#include <qwidget.h> +#include <tqwidget.h> #include <kdialogbase.h> #include <klistview.h> @@ -18,7 +18,7 @@ class EqualizerLevel : public QWidget { Q_OBJECT public: - EqualizerLevel(QWidget *parent, VBand band); + EqualizerLevel(TQWidget *parent, VBand band); public slots: void changed(); @@ -28,8 +28,8 @@ public slots: private: VBand mBand; - QSlider *mSlider; - QLabel *mLabel; + TQSlider *mSlider; + TQLabel *mLabel; }; @@ -37,24 +37,24 @@ class PresetList : public KListView { Q_OBJECT public: - PresetList(QWidget *parent, const char *name=0); + PresetList(TQWidget *parent, const char *name=0); public: - void rename(QListViewItem *item, int c); + void rename(TQListViewItem *item, int c); }; class EqualizerView : public KDialogBase { Q_OBJECT - QPtrList<EqualizerLevel> mBands; + TQPtrList<EqualizerLevel> mBands; public: EqualizerView(); virtual void show(); - QListViewItem *itemFor(const QString &filename); - QListViewItem *itemFor(const VPreset &preset); + TQListViewItem *itemFor(const TQString &filename); + TQListViewItem *itemFor(const VPreset &preset); public slots: void setPreamp(int); @@ -71,19 +71,19 @@ private slots: void remove(); void create(); void reset(); - void rename(QListViewItem *); - void select(QListViewItem*); + void rename(TQListViewItem *); + void select(TQListViewItem*); private: bool first; EqualizerWidget *mWidget; - QHBoxLayout *bandsLayout; -// QCheckBox *mOn; -// QSlider *mPreamp; + TQHBoxLayout *bandsLayout; +// TQCheckBox *mOn; +// TQSlider *mPreamp; PresetList *mPresets; bool mGoingPreset; -// QPushButton *mRemovePreset, *mAddPreset; -// QFrame *mSliders; +// TQPushButton *mRemovePreset, *mAddPreset; +// TQFrame *mSliders; // KIntNumInput *mBandCount; }; |