summaryrefslogtreecommitdiffstats
path: root/src/progressindicator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/progressindicator.h')
-rwxr-xr-xsrc/progressindicator.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/progressindicator.h b/src/progressindicator.h
index 873a4f9..5bf4d3d 100755
--- a/src/progressindicator.h
+++ b/src/progressindicator.h
@@ -3,11 +3,11 @@
#ifndef PROGRESSINDICATOR_H
#define PROGRESSINDICATOR_H
-#include <qwidget.h>
-#include <qdatetime.h>
+#include <tqwidget.h>
+#include <tqdatetime.h>
-class QProgressBar;
-class QLabel;
+class TQProgressBar;
+class TQLabel;
class KSystemTray;
/**
@@ -15,14 +15,15 @@ class KSystemTray;
* @author Daniel Faust <[email protected]>
* @version 0.3
*/
-class ProgressIndicator : public QWidget
+class ProgressIndicator : public TQWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
/**
* Constructor
*/
- ProgressIndicator( KSystemTray* _systemTray, QWidget* parent = 0, const char* name = 0 );
+ ProgressIndicator( KSystemTray* _systemTray, TQWidget* tqparent = 0, const char* name = 0 );
/**
* Destructor
@@ -42,20 +43,20 @@ public slots:
//private slots:
private:
- QProgressBar* pBar;
- QLabel* lSpeed;
- QLabel* lTime;
+ TQProgressBar* pBar;
+ TQLabel* lSpeed;
+ TQLabel* lTime;
KSystemTray* systemTray;
- QTime elapsedTime;
- QTime speedTime;
+ TQTime elapsedTime;
+ TQTime speedTime;
float speedProcessedTime;
float time;
float processedTime;
signals:
- void setTitle( const QString& );
+ void setTitle( const TQString& );
};
#endif // PROGRESSINDICATOR_H