summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/general.h
Side-by-side diff
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
@@ -25,74 +25,76 @@
#ifndef _GENERAL_H_
#define _GENERAL_H_
#include <qwidget.h>
class QSlider;
class QSpinBox;
class QCombobox;
class QLabel;
class QCheckBox;
class QComboBox;
-
-
+class PPPData;
+class InterfacePPP;
class ModemWidget : public QWidget {
Q_OBJECT
public:
- ModemWidget( QWidget *parent=0, const char *name=0 );
+ ModemWidget( InterfacePPP*, QWidget *parent=0, const char *name=0 );
private slots:
void setmodemdc(int);
void setflowcontrol(int);
void modemtimeoutchanged(int);
void modemlockfilechanged(bool);
void setenter(int);
void speed_selection(int);
private:
QComboBox *enter;
/* QLabel *label1; */
/* QLabel *label2; */
/* QLabel *labeltmp; */
/* QLabel *labelenter; */
QComboBox *modemdevice;
QComboBox *flowcontrol;
QComboBox *baud_c;
QLabel *baud_label;
QSpinBox *modemtimeout;
QCheckBox *modemlockfile;
+ InterfacePPP *_ifaceppp;
};
class ModemWidget2 : public QWidget {
Q_OBJECT
public:
- ModemWidget2( QWidget *parent=0, const char *name=0 );
+ ModemWidget2( InterfacePPP*, QWidget *parent=0, const char *name=0 );
private slots:
void waitfordtchanged(bool);
void busywaitchanged(int);
// void use_cdline_toggled(bool);
void modemcmdsbutton();
// void terminal();
void query_modem();
void volumeChanged(int);
private:
QLabel *labeltmp;
QPushButton *modemcmds;
QPushButton *modeminfo_button;
// QPushButton *terminal_button;
// QFrame *fline;
QCheckBox *waitfordt;
QSpinBox *busywait;
QCheckBox *chkbox1;
QSlider *volume;
+ InterfacePPP *_ifaceppp;
};
#endif