summaryrefslogtreecommitdiffstats
path: root/kppp/general.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kppp/general.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-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/general.h')
-rw-r--r--kppp/general.h78
1 files changed, 39 insertions, 39 deletions
diff --git a/kppp/general.h b/kppp/general.h
index 9fc22105..29d77738 100644
--- a/kppp/general.h
+++ b/kppp/general.h
@@ -25,22 +25,22 @@
#ifndef _GENERAL_H_
#define _GENERAL_H_
-#include <qwidget.h>
-#include <qcombobox.h>
-#include <qlabel.h>
-#include <qcheckbox.h>
-#include <qgroupbox.h>
-#include <qpushbutton.h>
+#include <tqwidget.h>
+#include <tqcombobox.h>
+#include <tqlabel.h>
+#include <tqcheckbox.h>
+#include <tqgroupbox.h>
+#include <tqpushbutton.h>
#include <kcolorbutton.h>
class QSlider;
class KIntNumInput;
class ModemCommands;
-class GeneralWidget : public QWidget {
+class GeneralWidget : public TQWidget {
Q_OBJECT
public:
- GeneralWidget( QWidget *parent=0, const char *name=0 );
+ GeneralWidget( TQWidget *parent=0, const char *name=0 );
private slots:
void pppdtimeoutchanged(int);
@@ -55,39 +55,39 @@ private slots:
};
-class ModemWidget : public QWidget {
+class ModemWidget : public TQWidget {
Q_OBJECT
public:
- ModemWidget(QWidget *parent=0, bool isnewmodem=true, const char *name=0);
+ ModemWidget(TQWidget *parent=0, bool isnewmodem=true, const char *name=0);
bool save();
- QLineEdit *connectName() { return connectname_l;}
+ TQLineEdit *connectName() { return connectname_l;}
private slots:
private:
- QLineEdit *connectname_l;
- QLabel *connect_label;
+ TQLineEdit *connectname_l;
+ TQLabel *connect_label;
- QComboBox *enter;
- QLabel *label1;
- QLabel *label2;
- QLabel *labeltmp;
- QLabel *labelenter;
- QComboBox *modemdevice;
- QComboBox *flowcontrol;
+ TQComboBox *enter;
+ TQLabel *label1;
+ TQLabel *label2;
+ TQLabel *labeltmp;
+ TQLabel *labelenter;
+ TQComboBox *modemdevice;
+ TQComboBox *flowcontrol;
- QComboBox *baud_c;
- QLabel *baud_label;
+ TQComboBox *baud_c;
+ TQLabel *baud_label;
KIntNumInput *modemtimeout;
- QCheckBox *modemlockfile;
- QStringList flowListItem;
+ TQCheckBox *modemlockfile;
+ TQStringList flowListItem;
};
-class ModemWidget2 : public QWidget {
+class ModemWidget2 : public TQWidget {
Q_OBJECT
public:
- ModemWidget2(QWidget *parent=0, const char *name=0);
+ ModemWidget2(TQWidget *parent=0, const char *name=0);
bool save();
private slots:
@@ -97,33 +97,33 @@ private slots:
void query_modem();
private:
- QLabel *labeltmp;
- QPushButton *modemcmds;
- QPushButton *modeminfo_button;
- QPushButton *terminal_button;
- QFrame *fline;
- QCheckBox *waitfordt;
+ TQLabel *labeltmp;
+ TQPushButton *modemcmds;
+ TQPushButton *modeminfo_button;
+ TQPushButton *terminal_button;
+ TQFrame *fline;
+ TQCheckBox *waitfordt;
KIntNumInput *busywait;
- QCheckBox *chkbox1;
- QSlider *volume;
+ TQCheckBox *chkbox1;
+ TQSlider *volume;
ModemCommands* mc;
};
-class GraphSetup : public QWidget {
+class GraphSetup : public TQWidget {
Q_OBJECT
public:
- GraphSetup(QWidget *parent = 0, const char *name = 0);
+ GraphSetup(TQWidget *parent = 0, const char *name = 0);
private slots:
void enableToggled(bool);
- void colorChanged(const QColor &);
+ void colorChanged(const TQColor &);
private:
void save();
- QGroupBox *grpColor;
- QCheckBox *enable_check;
+ TQGroupBox *grpColor;
+ TQCheckBox *enable_check;
KColorButton *bg_color;
KColorButton *text_color;