summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/ppp/PPPedit.h
blob: f674b17f24bfd718390109ec424c6109cb5ad748 (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
#include "pppdata.h"
#include "PPPGUI.h"

class PPPAuthEdit;
class PPPIPEdit;
class PPPDNSEdit;
class PPPRunEdit;
class PPPDialingEdit;

class PPPEdit  : public PPPGUI {

public :

    PPPEdit( QWidget * parent );
    QString acceptable( void );
    bool commit( PPPData & Data );
    void showData( PPPData & Data );

public slots :

    void SLOT_SelectTopic( int );

private :

    PPPAuthEdit *     Auth;
    PPPDNSEdit *      DNS;
    PPPIPEdit *       IP;
    PPPRunEdit *      Run;
    PPPDialingEdit *  Dialing;

};