diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:48:06 +0000 |
commit | 47c8a359c5276062c4bc17f0e82410f29081b502 (patch) | |
tree | 2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kppp/conwindow.h | |
parent | 6f82532777a35e0e60bbd2b290b2e93e646f349b (diff) | |
download | tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kppp/conwindow.h')
-rw-r--r-- | kppp/conwindow.h | 60 |
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; |