summaryrefslogtreecommitdiffstats
path: root/noatun/library/equalizerview.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
commite654398e46e37abf457b2b1122ab898d2c51c49f (patch)
treed39ee6440f3c3663c3ead84a2d4cc2d034667e96 /noatun/library/equalizerview.h
parente4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff)
downloadtdemultimedia-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/library/equalizerview.h')
-rw-r--r--noatun/library/equalizerview.h32
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;
};