summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/pppconfig.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/ppp/pppconfig.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/pppconfig.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/noncore/settings/networksettings/ppp/pppconfig.h b/noncore/settings/networksettings/ppp/pppconfig.h
index 9bab6fe..4d7912f 100644
--- a/noncore/settings/networksettings/ppp/pppconfig.h
+++ b/noncore/settings/networksettings/ppp/pppconfig.h
@@ -1,37 +1,43 @@
1#ifndef _PPPCONFIG_H_ 1#ifndef _PPPCONFIG_H_
2#define _PPPCONFIG_H_ 2#define _PPPCONFIG_H_
3 3
4#include <qdialog.h> 4#include <qdialog.h>
5 5
6class QTabWidget; 6class QTabWidget;
7//class Interface; 7//class Interface;
8class InterfacePPP; 8class InterfacePPP;
9class AccountWidget; 9class AccountWidget;
10class GeneralWidget; 10class GeneralWidget;
11class DevicesWidget;
12
13//OLD:
11class ModemWidget; 14class ModemWidget;
12class ModemWidget2; 15class ModemWidget2;
13 16
14class PPPConfigWidget : public QDialog { 17class PPPConfigWidget : public QDialog {
15 Q_OBJECT 18 Q_OBJECT
16public: 19public:
17 20
18 PPPConfigWidget( InterfacePPP*, QWidget *parent=0, const char *name=0, 21 PPPConfigWidget( InterfacePPP*, QWidget *parent=0, const char *name=0,
19 bool modal = false, WFlags fl = 0 ); 22 bool modal = false, WFlags fl = 0 );
20 ~PPPConfigWidget(); 23 ~PPPConfigWidget();
21 24
22 25
23protected slots: 26protected slots:
24 virtual void accept(); 27 virtual void accept();
25 virtual void reject(); 28 virtual void reject();
26 29
27 private: 30 private:
28 InterfacePPP *interface; 31 InterfacePPP *interface;
29 QTabWidget *tabWindow; 32 QTabWidget *tabWindow;
30 AccountWidget *accounts; 33 AccountWidget *accounts;
31 GeneralWidget *general; 34 GeneralWidget *general;
35 DevicesWidget* devices;
36
37 //OLD:
32 ModemWidget *modem1; 38 ModemWidget *modem1;
33 ModemWidget2 *modem2; 39 ModemWidget2 *modem2;
34}; 40};
35 41
36 42
37#endif 43#endif