summaryrefslogtreecommitdiffstats
path: root/src/configbackendspage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/configbackendspage.h')
-rwxr-xr-xsrc/configbackendspage.h45
1 files changed, 23 insertions, 22 deletions
diff --git a/src/configbackendspage.h b/src/configbackendspage.h
index 27071f2..a8cef3c 100755
--- a/src/configbackendspage.h
+++ b/src/configbackendspage.h
@@ -5,17 +5,17 @@
#include <configpagebase.h>
-#include <qstringlist.h>
+#include <tqstringlist.h>
class Config;
class KComboBox;
class KScrollView;
-class QGroupBox;
-class QGridLayout;
-class QLabel;
-class QSlider;
-class QCheckBox;
-class QVBox;
+class TQGroupBox;
+class TQGridLayout;
+class TQLabel;
+class TQSlider;
+class TQCheckBox;
+class TQVBox;
/**
* @short The page for configuring the environment
@@ -25,11 +25,12 @@ class QVBox;
class ConfigBackendsPage : public ConfigPageBase
{
Q_OBJECT
+ TQ_OBJECT
public:
/**
* Default Constructor
*/
- ConfigBackendsPage( Config*, QMap<QString, QString>*, QWidget *parent=0, const char *name=0 );
+ ConfigBackendsPage( Config*, TQMap<TQString, TQString>*, TQWidget *tqparent=0, const char *name=0 );
/**
* Default Destructor
@@ -40,32 +41,32 @@ private:
struct FormatOptions
{
// TODO remove the string lists
- QString format;
- QGroupBox* group;
- QGridLayout* grid;
- QLabel* lEncoder;
+ TQString format;
+ TQGroupBox* group;
+ TQGridLayout* grid;
+ TQLabel* lEncoder;
KComboBox* cEncoder;
- QLabel* lStrength;
- QSlider* sStrength;
- QLabel* lStrengthDisplay;
- QLabel* lDecoder;
+ TQLabel* lStrength;
+ TQSlider* sStrength;
+ TQLabel* lStrengthDisplay;
+ TQLabel* lDecoder;
KComboBox* cDecoder;
- QLabel* lReplayGain;
+ TQLabel* lReplayGain;
KComboBox* cReplayGain;
- QCheckBox* cInternalReplayGain;
+ TQCheckBox* cInternalReplayGain;
};
- QValueList<FormatOptions> formatOptions;
+ TQValueList<FormatOptions> formatOptions;
- QGridLayout* grid;
+ TQGridLayout* grid;
KScrollView* scrollView;
- QVBox* box;
+ TQVBox* box;
KComboBox* cRipper;
Config* config;
- QMap<QString, QString>* binaries;
+ TQMap<TQString, TQString>* binaries;
public slots:
void resetDefaults();