summaryrefslogtreecommitdiffstats
path: root/kppp/conwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'kppp/conwindow.h')
-rw-r--r--kppp/conwindow.h60
1 files changed, 30 insertions, 30 deletions
diff --git a/kppp/conwindow.h b/kppp/conwindow.h
index d7f0bf43..fd3609de 100644
--- a/kppp/conwindow.h
+++ b/kppp/conwindow.h
@@ -26,62 +26,62 @@
#define _CONWINDOW_H_
-#include <qtimer.h>
-#include <qpushbutton.h>
-#include <qlabel.h>
-#include <qdialog.h>
-#include <qframe.h>
-#include <qevent.h>
-#include <qlayout.h>
+#include <tqtimer.h>
+#include <tqpushbutton.h>
+#include <tqlabel.h>
+#include <tqdialog.h>
+#include <tqframe.h>
+#include <tqevent.h>
+#include <tqlayout.h>
class PPPStats;
-class ConWindow : public QWidget {
+class ConWindow : public TQWidget {
Q_OBJECT
public:
- ConWindow(QWidget *parent, const char *name,QWidget *main, PPPStats *st);
+ ConWindow(TQWidget *parent, const char *name,TQWidget *main, PPPStats *st);
~ConWindow();
protected:
- void closeEvent( QCloseEvent *e );
- bool event( QEvent *e );
+ void closeEvent( TQCloseEvent *e );
+ bool event( TQEvent *e );
private slots:
void timeclick();
void dock();
public:
- void setConnectionSpeed(const QString&);
+ void setConnectionSpeed(const TQString&);
void startClock();
void stopClock();
void accounting(bool); // show/ hide accounting info
public slots:
- void slotAccounting(QString, QString);
+ void slotAccounting(TQString, TQString);
private:
- QLabel *info1;
- QLabel *info2;
- QPushButton *cancelbutton;
- QPushButton *statsbutton;
- QString prettyPrintVolume(unsigned int);
+ TQLabel *info1;
+ TQLabel *info2;
+ TQPushButton *cancelbutton;
+ TQPushButton *statsbutton;
+ TQString prettyPrintVolume(unsigned int);
int minutes;
int seconds;
int hours;
int days;
- QFrame *fline;
- QLabel *timelabel1;
- QLabel *timelabel2;
- QLabel *total_bill, *total_bill_l;
- QLabel *session_bill, *session_bill_l;
- QString caption_string;
- QString time_string2;
- QString time_string;
- QTimer *clocktimer;
- QVBoxLayout *tl1;
- QLabel *vollabel;
- QLabel *volinfo;
+ TQFrame *fline;
+ TQLabel *timelabel1;
+ TQLabel *timelabel2;
+ TQLabel *total_bill, *total_bill_l;
+ TQLabel *session_bill, *session_bill_l;
+ TQString caption_string;
+ TQString time_string2;
+ TQString time_string;
+ TQTimer *clocktimer;
+ TQVBoxLayout *tl1;
+ TQLabel *vollabel;
+ TQLabel *volinfo;
PPPStats *stats;
bool accountingEnabled;
bool volumeAccountingEnabled;