diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /krec/ogg_export | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-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 'krec/ogg_export')
-rw-r--r-- | krec/ogg_export/krecexport_ogg.cpp | 22 | ||||
-rw-r--r-- | krec/ogg_export/krecexport_ogg.h | 10 |
2 files changed, 16 insertions, 16 deletions
diff --git a/krec/ogg_export/krecexport_ogg.cpp b/krec/ogg_export/krecexport_ogg.cpp index 6a5d5735..e2b495dd 100644 --- a/krec/ogg_export/krecexport_ogg.cpp +++ b/krec/ogg_export/krecexport_ogg.cpp @@ -22,12 +22,12 @@ #include <kdebug.h> #include <ktempfile.h> -#include <qfile.h> -#include <qtimer.h> +#include <tqfile.h> +#include <tqtimer.h> #include <kconfig.h> #include <stdlib.h> #include <time.h> -#include <qdatetime.h> +#include <tqdatetime.h> #include <kgenericfactory.h> #include <klocale.h> #include <kmessagebox.h> @@ -36,7 +36,7 @@ K_EXPORT_COMPONENT_FACTORY( libkrecexport_ogg, KGenericFactory<KRecExport_OGG> ) KRecExport_OGG krecExportOGG( 0 ); -KRecExport_OGG::KRecExport_OGG( QObject* p, const char* n, const QStringList& ) +KRecExport_OGG::KRecExport_OGG( TQObject* p, const char* n, const TQStringList& ) : KRecExportItem( p,n ) , _file( 0 ) , init_done( false ) @@ -54,14 +54,14 @@ kdDebug( 60005 ) << k_funcinfo << endl; return new KRecExport_OGG( 0 ); } -QStringList KRecExport_OGG::extensions() { +TQStringList KRecExport_OGG::extensions() { //kdDebug( 60005 ) << k_funcinfo << endl; - QStringList tmp; + TQStringList tmp; tmp << "*.ogg" << "*.OGG"; return tmp; } -bool KRecExport_OGG::initialize( const QString &filename ) { +bool KRecExport_OGG::initialize( const TQString &filename ) { kdDebug( 60005 ) << k_funcinfo << endl; if ( !_file && !( samplingRate()!=44100 && bits()!=16 && channels()!=2 && @@ -76,7 +76,7 @@ kdDebug( 60005 ) << k_funcinfo << endl; " the corresponding section of the audiocd:/ configuration. Make use" \ " of the Control Center to configure these settings." ), i18n( "Quality Configuration" ), "qualityinfo_ogg" ); - _file = new QFile( filename ); + _file = new TQFile( filename ); if ( _file->open( IO_Raw|IO_WriteOnly ) ) { if ( ! init_done ) { setOggParameters(); @@ -95,7 +95,7 @@ kdDebug( 60005 ) << k_funcinfo << endl; vorbis_comment_add_tag ( &vc, const_cast<char *>( "kde-encoder" ), const_cast<char *>( "KRec" ) ); if ( write_vorbis_comments ) { - QDateTime dt = QDateTime::currentDateTime(); + TQDateTime dt = TQDateTime::currentDateTime(); vorbis_comment_add_tag ( &vc, const_cast<char *>( "title" ), const_cast<char *>( "" ) ); vorbis_comment_add_tag ( &vc, const_cast<char *>( "artist" ), @@ -132,7 +132,7 @@ bool KRecExport_OGG::process() { //kdDebug( 60005 ) << k_funcinfo << endl; if ( _file ) { if ( running() ) { - QByteArray bytearray( 4096 ); + TQByteArray bytearray( 4096 ); emit getData( bytearray ); float **buffer = vorbis_analysis_buffer( &vd, bytearray.size() >> 2 ); @@ -169,7 +169,7 @@ bool KRecExport_OGG::process() { } } } - QTimer::singleShot( 10, this, SLOT( process() ) ); + TQTimer::singleShot( 10, this, TQT_SLOT( process() ) ); } return true; } else return false; diff --git a/krec/ogg_export/krecexport_ogg.h b/krec/ogg_export/krecexport_ogg.h index 43b79d54..15c0337d 100644 --- a/krec/ogg_export/krecexport_ogg.h +++ b/krec/ogg_export/krecexport_ogg.h @@ -28,20 +28,20 @@ class QFile; class KRecExport_OGG : public KRecExportItem { Q_OBJECT public: - KRecExport_OGG( QObject*, const char* =0, const QStringList& =0 ); + KRecExport_OGG( TQObject*, const char* =0, const TQStringList& =0 ); ~KRecExport_OGG(); KRecExport_OGG* newItem(); - QStringList extensions(); - QString exportFormat() { return QString( "OGG-Vorbis" ); } + TQStringList extensions(); + TQString exportFormat() { return TQString( "OGG-Vorbis" ); } public slots: - bool initialize( const QString & ); + bool initialize( const TQString & ); bool process(); bool finalize(); private: - QFile* _file; + TQFile* _file; bool init_done; |