00001 #include "pppdata.h" 00002 #include "PPPGUI.h" 00003 00004 class PPPAuthEdit; 00005 class PPPIPEdit; 00006 class PPPDNSEdit; 00007 class PPPRunEdit; 00008 class PPPDialingEdit; 00009 00010 class PPPEdit : public PPPGUI { 00011 00012 public : 00013 00014 PPPEdit( QWidget * parent ); 00015 QString acceptable( void ); 00016 bool commit( PPPData & Data ); 00017 void showData( PPPData & Data ); 00018 00019 public slots : 00020 00021 void SLOT_SelectTopic( int ); 00022 00023 private : 00024 00025 PPPAuthEdit * Auth; 00026 PPPDNSEdit * DNS; 00027 PPPIPEdit * IP; 00028 PPPRunEdit * Run; 00029 PPPDialingEdit * Dialing; 00030 00031 };
1.4.2