summaryrefslogtreecommitdiffstats
path: root/kdat/IndexDlg.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
commitaa3a1ca934bc541bddd3fa136a85f106f7da266e (patch)
tree9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /kdat/IndexDlg.h
parentb10cf7066791a2f362495890cd50c984e8025412 (diff)
downloadtdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz
tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdat/IndexDlg.h')
-rw-r--r--kdat/IndexDlg.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/kdat/IndexDlg.h b/kdat/IndexDlg.h
index e624cf5..96556db 100644
--- a/kdat/IndexDlg.h
+++ b/kdat/IndexDlg.h
@@ -19,8 +19,8 @@
#ifndef _IndexDlg_h_
#define _IndexDlg_h_
-#include <qdialog.h>
-#include <qptrlist.h>
+#include <tqdialog.h>
+#include <tqptrlist.h>
#include "Range.h"
@@ -36,22 +36,22 @@ class TarParser;
/**
* @short Status dialog for recreating a tape index.
*/
-class IndexDlg : public QDialog {
+class IndexDlg : public TQDialog {
Q_OBJECT
TarParser* _tarParser;
Tape* _tape;
Archive* _archive;
- QString _leftover;
- QLabel* _elapsedTime;
- QLabel* _kbytesRead;
- QLabel* _transferRate;
- QLabel* _archives;
- QLabel* _files;
- QLabel* _totalFiles;
+ TQString _leftover;
+ TQLabel* _elapsedTime;
+ TQLabel* _kbytesRead;
+ TQLabel* _transferRate;
+ TQLabel* _archives;
+ TQLabel* _files;
+ TQLabel* _totalFiles;
LoggerWidget* _log;
- QPushButton* _ok;
- QPushButton* _save;
- QPushButton* _abort;
+ TQPushButton* _ok;
+ TQPushButton* _save;
+ TQPushButton* _abort;
int _startTime;
float _totalKBytes;
int _archiveCount;
@@ -63,16 +63,16 @@ class IndexDlg : public QDialog {
int _fileSize;
int _fileMTime;
int _fileStartRecord;
- QString _fileName;
+ TQString _fileName;
void updateStats();
private slots:
void slotOK();
void slotAbort();
- void slotEntry( const QString & name, int size, int mtime, int record );
+ void slotEntry( const TQString & name, int size, int mtime, int record );
protected:
void show();
- void timerEvent( QTimerEvent* e );
+ void timerEvent( TQTimerEvent* e );
public:
/**
* Create a new tape index dialog.
@@ -81,7 +81,7 @@ public:
* @param parent The parent widget for this dialog.
* @param name The name of this dialog.
*/
- IndexDlg( Tape* tape, QWidget* parent = 0, const char* name = 0 );
+ IndexDlg( Tape* tape, TQWidget* parent = 0, const char* name = 0 );
/**
* Destroy the tape index dialog.