summaryrefslogtreecommitdiffstats
path: root/src/configbackendspage.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-01 23:15:51 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-01 23:15:51 +0000
commit6b1b516f42036cf9eff691dba3fd6e9eab82a7e1 (patch)
tree6830f75fd57d0fac7e33c097ee98b210e90c5239 /src/configbackendspage.h
parent6318b8bb3ef964cfa99ba454a2630779cc9ac3ec (diff)
downloadsoundkonverter-6b1b516f42036cf9eff691dba3fd6e9eab82a7e1.tar.gz
soundkonverter-6b1b516f42036cf9eff691dba3fd6e9eab82a7e1.zip
TQt4 port soundkonverter
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/soundkonverter@1239038 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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();