From 5f5ee2367157176ed223b86343eb0a9e4022e020 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:52:55 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ktimer/ktimer.cpp | 152 +++++++++++++++++++++++++++--------------------------- ktimer/ktimer.h | 22 ++++---- 2 files changed, 87 insertions(+), 87 deletions(-) (limited to 'ktimer') diff --git a/ktimer/ktimer.cpp b/ktimer/ktimer.cpp index 2b1b1c8..a5f3937 100644 --- a/ktimer/ktimer.cpp +++ b/ktimer/ktimer.cpp @@ -16,15 +16,15 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include @@ -34,20 +34,20 @@ #include #include "ktimer.h" -#include +#include -class KTimerJobItem : public QListViewItem { +class KTimerJobItem : public TQListViewItem { public: - KTimerJobItem( KTimerJob *job, QListView *parent ) - : QListViewItem( parent ) { + KTimerJobItem( KTimerJob *job, TQListView *parent ) + : TQListViewItem( parent ) { m_job = job; m_error = false; update(); }; - KTimerJobItem( KTimerJob *job, QListView *parent, QListViewItem *after ) - : QListViewItem( parent, after ) { + KTimerJobItem( KTimerJob *job, TQListView *parent, TQListViewItem *after ) + : TQListViewItem( parent, after ) { m_job = job; m_error = false; update(); @@ -65,14 +65,14 @@ public: } void update() { - setText( 0, QString::number(m_job->value()) ); + setText( 0, TQString::number(m_job->value()) ); if( m_error ) setPixmap( 0, SmallIcon("stop") ); else - setPixmap( 0, QPixmap() ); + setPixmap( 0, TQPixmap() ); - setText( 1, QString::number(m_job->delay()) ); + setText( 1, TQString::number(m_job->delay()) ); switch( m_job->state() ) { case KTimerJob::Stopped: setPixmap( 2, SmallIcon("player_stop") ); break; @@ -94,10 +94,10 @@ private: struct KTimerPrefPrivate { - QPtrList jobs; + TQPtrList jobs; }; -KTimerPref::KTimerPref( QWidget *parent, const char *name ) +KTimerPref::KTimerPref( TQWidget *parent, const char *name ) : PrefWidget( parent, name ) { d = new KTimerPrefPrivate; @@ -115,10 +115,10 @@ KTimerPref::KTimerPref( QWidget *parent, const char *name ) tray->setPixmap( SmallIcon( "ktimer" ) ); // connect - connect( m_add, SIGNAL(clicked()), SLOT(add()) ); - connect( m_remove, SIGNAL(clicked()), SLOT(remove()) ); - connect( m_list, SIGNAL(currentChanged(QListViewItem*)), - SLOT(currentChanged(QListViewItem*)) ); + connect( m_add, TQT_SIGNAL(clicked()), TQT_SLOT(add()) ); + connect( m_remove, TQT_SIGNAL(clicked()), TQT_SLOT(remove()) ); + connect( m_list, TQT_SIGNAL(currentChanged(TQListViewItem*)), + TQT_SLOT(currentChanged(TQListViewItem*)) ); loadJobs( kapp->config() ); show(); @@ -137,16 +137,16 @@ void KTimerPref::add() KTimerJob *job = new KTimerJob; KTimerJobItem *item = new KTimerJobItem( job, m_list ); - connect( job, SIGNAL(delayChanged(KTimerJob*,unsigned)), - SLOT(jobChanged(KTimerJob*)) ); - connect( job, SIGNAL(valueChanged(KTimerJob*,unsigned)), - SLOT(jobChanged(KTimerJob*)) ); - connect( job, SIGNAL(stateChanged(KTimerJob*,States)), - SLOT(jobChanged(KTimerJob*)) ); - connect( job, SIGNAL(commandChanged(KTimerJob*,const QString&)), - SLOT(jobChanged(KTimerJob*)) ); - connect( job, SIGNAL(finished(KTimerJob*,bool)), - SLOT(jobFinished(KTimerJob*,bool)) ); + connect( job, TQT_SIGNAL(delayChanged(KTimerJob*,unsigned)), + TQT_SLOT(jobChanged(KTimerJob*)) ); + connect( job, TQT_SIGNAL(valueChanged(KTimerJob*,unsigned)), + TQT_SLOT(jobChanged(KTimerJob*)) ); + connect( job, TQT_SIGNAL(stateChanged(KTimerJob*,States)), + TQT_SLOT(jobChanged(KTimerJob*)) ); + connect( job, TQT_SIGNAL(commandChanged(KTimerJob*,const TQString&)), + TQT_SLOT(jobChanged(KTimerJob*)) ); + connect( job, TQT_SIGNAL(finished(KTimerJob*,bool)), + TQT_SLOT(jobFinished(KTimerJob*,bool)) ); job->setUser( item ); @@ -166,7 +166,7 @@ void KTimerPref::remove() } -void KTimerPref::currentChanged( QListViewItem *i ) +void KTimerPref::currentChanged( TQListViewItem *i ) { KTimerJobItem *item = static_cast(i); if( item ) { @@ -185,22 +185,22 @@ void KTimerPref::currentChanged( QListViewItem *i ) m_counter->disconnect(); m_slider->disconnect(); - connect( m_commandLine->lineEdit(), SIGNAL(textChanged(const QString &)), - job, SLOT(setCommand(const QString &)) ); - connect( m_delay, SIGNAL(valueChanged(int)), - job, SLOT(setDelay(int)) ); - connect( m_loop, SIGNAL(toggled(bool)), - job, SLOT(setLoop(bool)) ); - connect( m_one, SIGNAL(toggled(bool)), - job, SLOT(setOneInstance(bool)) ); - connect( m_stop, SIGNAL(clicked()), - job, SLOT(stop()) ); - connect( m_pause, SIGNAL(clicked()), - job, SLOT(pause()) ); - connect( m_start, SIGNAL(clicked()), - job, SLOT(start()) ); - connect( m_slider, SIGNAL(valueChanged(int)), - job, SLOT(setValue(int)) ); + connect( m_commandLine->lineEdit(), TQT_SIGNAL(textChanged(const TQString &)), + job, TQT_SLOT(setCommand(const TQString &)) ); + connect( m_delay, TQT_SIGNAL(valueChanged(int)), + job, TQT_SLOT(setDelay(int)) ); + connect( m_loop, TQT_SIGNAL(toggled(bool)), + job, TQT_SLOT(setLoop(bool)) ); + connect( m_one, TQT_SIGNAL(toggled(bool)), + job, TQT_SLOT(setOneInstance(bool)) ); + connect( m_stop, TQT_SIGNAL(clicked()), + job, TQT_SLOT(stop()) ); + connect( m_pause, TQT_SIGNAL(clicked()), + job, TQT_SLOT(pause()) ); + connect( m_start, TQT_SIGNAL(clicked()), + job, TQT_SLOT(start()) ); + connect( m_slider, TQT_SIGNAL(valueChanged(int)), + job, TQT_SLOT(setValue(int)) ); m_commandLine->lineEdit()->setText( job->command() ); m_delay->setValue( job->delay() ); @@ -249,7 +249,7 @@ void KTimerPref::saveJobs( KConfig *cfg ) int num = 0; KTimerJobItem *item = static_cast(m_list->firstChild()); while( item ) { - item->job()->save( cfg, QString("Job%1").arg( num ) ); + item->job()->save( cfg, TQString("Job%1").arg( num ) ); item = static_cast(item->nextSibling()); num++; } @@ -269,18 +269,18 @@ void KTimerPref::loadJobs( KConfig *cfg ) KTimerJob *job = new KTimerJob; KTimerJobItem *item = new KTimerJobItem( job, m_list ); - connect( job, SIGNAL(delayChanged(KTimerJob*,unsigned)), - SLOT(jobChanged(KTimerJob*)) ); - connect( job, SIGNAL(valueChanged(KTimerJob*,unsigned)), - SLOT(jobChanged(KTimerJob*)) ); - connect( job, SIGNAL(stateChanged(KTimerJob*,States)), - SLOT(jobChanged(KTimerJob*)) ); - connect( job, SIGNAL(commandChanged(KTimerJob*,const QString&)), - SLOT(jobChanged(KTimerJob*)) ); - connect( job, SIGNAL(finished(KTimerJob*,bool)), - SLOT(jobFinished(KTimerJob*,bool)) ); + connect( job, TQT_SIGNAL(delayChanged(KTimerJob*,unsigned)), + TQT_SLOT(jobChanged(KTimerJob*)) ); + connect( job, TQT_SIGNAL(valueChanged(KTimerJob*,unsigned)), + TQT_SLOT(jobChanged(KTimerJob*)) ); + connect( job, TQT_SIGNAL(stateChanged(KTimerJob*,States)), + TQT_SLOT(jobChanged(KTimerJob*)) ); + connect( job, TQT_SIGNAL(commandChanged(KTimerJob*,const TQString&)), + TQT_SLOT(jobChanged(KTimerJob*)) ); + connect( job, TQT_SIGNAL(finished(KTimerJob*,bool)), + TQT_SLOT(jobFinished(KTimerJob*,bool)) ); - job->load( cfg, QString( "Job%1" ).arg(n) ); + job->load( cfg, TQString( "Job%1" ).arg(n) ); job->setUser( item ); } @@ -294,20 +294,20 @@ void KTimerPref::loadJobs( KConfig *cfg ) struct KTimerJobPrivate { unsigned delay; - QString command; + TQString command; bool loop; bool oneInstance; unsigned value; KTimerJob::States state; - QPtrList processes; + TQPtrList processes; void *user; - QTimer *timer; + TQTimer *timer; }; -KTimerJob::KTimerJob( QObject *parent, const char *name ) - : QObject( parent, name ) +KTimerJob::KTimerJob( TQObject *parent, const char *name ) + : TQObject( parent, name ) { d = new KTimerJobPrivate; @@ -319,8 +319,8 @@ KTimerJob::KTimerJob( QObject *parent, const char *name ) d->processes.setAutoDelete( true ); d->user = 0; - d->timer = new QTimer( this ); - connect( d->timer, SIGNAL(timeout()), SLOT(timeout()) ); + d->timer = new TQTimer( this ); + connect( d->timer, TQT_SIGNAL(timeout()), TQT_SLOT(timeout()) ); } @@ -330,7 +330,7 @@ KTimerJob::~KTimerJob() } -void KTimerJob::load( KConfig *cfg, const QString& grp ) +void KTimerJob::load( KConfig *cfg, const TQString& grp ) { cfg->setGroup( grp ); cfg->writeEntry( "Delay", d->delay ); @@ -341,7 +341,7 @@ void KTimerJob::load( KConfig *cfg, const QString& grp ) } -void KTimerJob::save( KConfig *cfg, const QString& grp ) +void KTimerJob::save( KConfig *cfg, const TQString& grp ) { cfg->setGroup( grp ); setDelay( cfg->readNumEntry( "Delay", 100 ) ); @@ -384,13 +384,13 @@ void KTimerJob::setDelay( unsigned sec ) } -QString KTimerJob::command() +TQString KTimerJob::command() { return d->command; } -void KTimerJob::setCommand( const QString &cmd ) +void KTimerJob::setCommand( const TQString &cmd ) { if( d->command!=cmd ) { d->command = cmd; @@ -502,8 +502,8 @@ void KTimerJob::fire() KShellProcess *proc = new KShellProcess; (*proc) << d->command; d->processes.append( proc ); - connect( proc, SIGNAL(processExited(KProcess*)), - SLOT(processExited(KProcess*)) ); + connect( proc, TQT_SIGNAL(processExited(KProcess*)), + TQT_SLOT(processExited(KProcess*)) ); bool ok = proc->start( KProcess::NotifyOnExit ); emit fired( this ); if( !ok ) { diff --git a/ktimer/ktimer.h b/ktimer/ktimer.h index 3b7c406..297eec9 100644 --- a/ktimer/ktimer.h +++ b/ktimer/ktimer.h @@ -19,25 +19,25 @@ #ifndef KTIMER_H_INCLUDED #define KTIMER_H_INCLUDED -#include -#include +#include +#include #include #include #include "prefwidget.h" -class KTimerJob : public QObject { +class KTimerJob : public TQObject { Q_OBJECT public: - KTimerJob( QObject *parent=0, const char *name=0 ); + KTimerJob( TQObject *parent=0, const char *name=0 ); virtual ~KTimerJob(); enum States { Stopped, Paused, Started }; unsigned delay(); - QString command(); + TQString command(); bool loop(); bool oneInstance(); unsigned value(); @@ -45,13 +45,13 @@ class KTimerJob : public QObject { void *user(); void setUser( void *user ); - void load( KConfig *cfg, const QString& grp ); - void save( KConfig *cfg, const QString& grp ); + void load( KConfig *cfg, const TQString& grp ); + void save( KConfig *cfg, const TQString& grp ); public slots: void setDelay( unsigned sec ); void setDelay( int sec ) { setDelay( (unsigned)sec ); }; - void setCommand( const QString &cmd ); + void setCommand( const TQString &cmd ); void setLoop( bool loop ); void setOneInstance( bool one ); void setValue( unsigned value ); @@ -65,7 +65,7 @@ class KTimerJob : public QObject { signals: void stateChanged( KTimerJob *job, States state ); void delayChanged( KTimerJob *job, unsigned sec ); - void commandChanged( KTimerJob *job, const QString &cmd ); + void commandChanged( KTimerJob *job, const TQString &cmd ); void loopChanged( KTimerJob *job, bool loop ); void oneInstanceChanged( KTimerJob *job, bool one ); void valueChanged( KTimerJob *job, unsigned value ); @@ -91,13 +91,13 @@ class KTimerPref : public PrefWidget { Q_OBJECT public: - KTimerPref( QWidget *parent=0, const char *name = 0 ); + KTimerPref( TQWidget *parent=0, const char *name = 0 ); virtual ~KTimerPref(); protected slots: void add(); void remove(); - void currentChanged( QListViewItem * ); + void currentChanged( TQListViewItem * ); void saveJobs( KConfig *cfg ); void loadJobs( KConfig *cfg ); -- cgit v1.2.1