summaryrefslogtreecommitdiffstats
path: root/noatun/library/noatun/effects.h
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/library/noatun/effects.h')
-rw-r--r--noatun/library/noatun/effects.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/noatun/library/noatun/effects.h b/noatun/library/noatun/effects.h
index c39cb8aa..4c014a93 100644
--- a/noatun/library/noatun/effects.h
+++ b/noatun/library/noatun/effects.h
@@ -1,10 +1,10 @@
#ifndef EFFECTS_H
#define EFFECTS_H
-#include <qptrlist.h>
-#include <qcstring.h>
-#include <qstrlist.h>
-#include <qobject.h>
+#include <tqptrlist.h>
+#include <tqcstring.h>
+#include <tqstrlist.h>
+#include <tqobject.h>
namespace Arts { class StereoEffect; }
class Engine;
@@ -48,12 +48,12 @@ public:
/**
* Get the name of the object.
**/
- QCString name() const;
+ TQCString name() const;
/**
* get the "clean" title of effect
**/
- QString title() const;
+ TQString title() const;
/**
* @return true if this effect name is invalid, false otherwise
@@ -69,7 +69,7 @@ public:
* set an icon and make it purdy. Otherwise
* create a plan widget that you can reparent.
**/
- QWidget *configure(bool friendly=true);
+ TQWidget *configure(bool friendly=true);
/**
* Does this widget have a configurable
@@ -82,12 +82,12 @@ public:
* Return an effect name that can be presented to a user
* i.e. Arts::FREEVERB will end up as FREEVERB
**/
- static QString clean(const QCString &name);
+ static TQString clean(const TQCString &name);
private:
long mId;
Arts::StereoEffect *mEffect;
- QCString mName;
- QWidget *mConfig;
+ TQCString mName;
+ TQWidget *mConfig;
};
/**
@@ -137,12 +137,12 @@ public:
* each of these can be given to the first
* argument of the Effect constructor
**/
- QStrList available() const;
+ TQStrList available() const;
/**
* A list of all available effects objects
**/
- QPtrList<Effect> effects() const;
+ TQPtrList<Effect> effects() const;
/**
* Get the Effect that has the following id
@@ -150,7 +150,7 @@ public:
Effect *findId(long id) const;
private:
- QPtrListIterator<Effect> stackPosition() const;
+ TQPtrListIterator<Effect> stackPosition() const;
signals:
/**
@@ -177,7 +177,7 @@ signals:
private:
// stored in no specific order
- QPtrList<Effect> mItems;
+ TQPtrList<Effect> mItems;
};