summaryrefslogtreecommitdiffstats
path: root/src/conversionoptions.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/conversionoptions.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/conversionoptions.h')
-rwxr-xr-xsrc/conversionoptions.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/conversionoptions.h b/src/conversionoptions.h
index b1e9d9a..1f46b54 100755
--- a/src/conversionoptions.h
+++ b/src/conversionoptions.h
@@ -5,7 +5,7 @@
#include "outputdirectory.h"
-#include <qstring.h>
+#include <tqstring.h>
/**
* @short Here the options for the conversion process can be stored
@@ -16,10 +16,10 @@ class ConversionOptions
{
public:
struct EncodingOptions {
- QString sFormat; // output format
- QString sQualityMode; // which mode are we using? quality, bitrate, lossless? i18n()!!!
+ TQString sFormat; // output format
+ TQString sQualityMode; // which mode are we using? quality, bitrate, lossless? i18n()!!!
int iQuality; // the encoding quality / bitrate
- QString sBitrateMode; // when using bitrate mode, which? abr, cbr?
+ TQString sBitrateMode; // when using bitrate mode, which? abr, cbr?
bool bBitrateRange; // enable bitrate range?
int iMinBitrate, iMaxBitrate; // when using bitrate range
struct SamplingRateOptions { // special options, when sampling rate is enabled
@@ -28,17 +28,17 @@ public:
} samplingRate;
struct ChannelsOptions { // special options, when channels is enabled
bool bEnabled;
- QString sChannels;
+ TQString sChannels;
} channels;
struct ReplaygainOptions { // special options, when replaygain is enabled
bool bEnabled;
} replaygain;
- QString sInOutFiles; // could be called 'user defined parameter'
+ TQString sInOutFiles; // could be called 'user defined parameter'
// but it is analog to the in_out_files option in the plugins
};
struct OutputOptions {
OutputDirectory::Mode mode;
- QString directory;
+ TQString directory;
};
/**
@@ -56,8 +56,8 @@ public:
*/
bool nearlyEqual( const ConversionOptions& other );
- QString filePathName; // the path and name of the file
- QString outputFilePathName; // if the user wants to change the output directory/file name per file!
+ TQString filePathName; // the path and name of the file
+ TQString outputFilePathName; // if the user wants to change the output directory/file name per file!
EncodingOptions encodingOptions; // what shall we do with the file?
OutputOptions outputOptions; // where to save the file?
};