summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/general.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/ppp/general.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/general.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/noncore/settings/networksettings/ppp/general.h b/noncore/settings/networksettings/ppp/general.h
index 4869f6c..3e59b46 100644
--- a/noncore/settings/networksettings/ppp/general.h
+++ b/noncore/settings/networksettings/ppp/general.h
@@ -31,19 +31,19 @@
31class QSlider; 31class QSlider;
32class QSpinBox; 32class QSpinBox;
33class QCombobox; 33class QCombobox;
34class QLabel; 34class QLabel;
35class QCheckBox; 35class QCheckBox;
36class QComboBox; 36class QComboBox;
37 37class PPPData;
38 38class InterfacePPP;
39 39
40class ModemWidget : public QWidget { 40class ModemWidget : public QWidget {
41 Q_OBJECT 41 Q_OBJECT
42public: 42public:
43 ModemWidget( QWidget *parent=0, const char *name=0 ); 43 ModemWidget( InterfacePPP*, QWidget *parent=0, const char *name=0 );
44 44
45private slots: 45private slots:
46 void setmodemdc(int); 46 void setmodemdc(int);
47 void setflowcontrol(int); 47 void setflowcontrol(int);
48 void modemtimeoutchanged(int); 48 void modemtimeoutchanged(int);
49 void modemlockfilechanged(bool); 49 void modemlockfilechanged(bool);
@@ -61,19 +61,20 @@ private:
61 61
62 QComboBox *baud_c; 62 QComboBox *baud_c;
63 QLabel *baud_label; 63 QLabel *baud_label;
64 64
65 QSpinBox *modemtimeout; 65 QSpinBox *modemtimeout;
66 QCheckBox *modemlockfile; 66 QCheckBox *modemlockfile;
67 InterfacePPP *_ifaceppp;
67}; 68};
68 69
69 70
70class ModemWidget2 : public QWidget { 71class ModemWidget2 : public QWidget {
71 Q_OBJECT 72 Q_OBJECT
72public: 73public:
73 ModemWidget2( QWidget *parent=0, const char *name=0 ); 74 ModemWidget2( InterfacePPP*, QWidget *parent=0, const char *name=0 );
74 75
75private slots: 76private slots:
76 void waitfordtchanged(bool); 77 void waitfordtchanged(bool);
77 void busywaitchanged(int); 78 void busywaitchanged(int);
78 // void use_cdline_toggled(bool); 79 // void use_cdline_toggled(bool);
79 void modemcmdsbutton(); 80 void modemcmdsbutton();
@@ -88,11 +89,12 @@ private:
88 // QPushButton *terminal_button; 89 // QPushButton *terminal_button;
89 // QFrame *fline; 90 // QFrame *fline;
90 QCheckBox *waitfordt; 91 QCheckBox *waitfordt;
91 QSpinBox *busywait; 92 QSpinBox *busywait;
92 QCheckBox *chkbox1; 93 QCheckBox *chkbox1;
93 QSlider *volume; 94 QSlider *volume;
95 InterfacePPP *_ifaceppp;
94}; 96};
95 97
96#endif 98#endif
97 99
98 100