summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/pppconfig.h
blob: 4d7912feacf1ab118c6e569b555eea3cad5bd884 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef _PPPCONFIG_H_
#define _PPPCONFIG_H_

#include <qdialog.h>

class QTabWidget;
//class Interface;
class InterfacePPP;
class AccountWidget;
class GeneralWidget;
class DevicesWidget;

//OLD:
class ModemWidget;
class ModemWidget2;

class PPPConfigWidget : public QDialog {
    Q_OBJECT
public:

    PPPConfigWidget( InterfacePPP*, QWidget *parent=0, const char *name=0, 
		     bool modal = false, WFlags fl = 0 );
    ~PPPConfigWidget();	


protected slots:
    virtual void accept();
    virtual void reject();

 private:
  InterfacePPP *interface;
  QTabWidget *tabWindow;
  AccountWidget *accounts;
  GeneralWidget *general;
  DevicesWidget* devices;

  //OLD:
  ModemWidget *modem1;
  ModemWidget2 *modem2;
};


#endif