summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/pppconfig.h
blob: b324b6dc9bd45493d2e33b563882812654fe70e7 (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
#ifndef _PPPCONFIG_H_
#define _PPPCONFIG_H_

#include <qdialog.h>

class QTabWidget;
class Interface;
class AccountWidget;
class GeneralWidget;
class ModemWidget;
class ModemWidget2;

class PPPConfigWidget : public QDialog {
    Q_OBJECT
public:

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


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

 private:
    Interface *interface;
  QTabWidget *tabWindow;
  AccountWidget *accounts;
  GeneralWidget *general;
  ModemWidget *modem1;
  ModemWidget2 *modem2;
};


#endif