00001 #ifndef _PPPCONFIG_H_ 00002 #define _PPPCONFIG_H_ 00003 00004 #include <qdialog.h> 00005 00006 class QTabWidget; 00007 //class Interface; 00008 class InterfacePPP; 00009 class AccountWidget; 00010 class GeneralWidget; 00011 class DevicesWidget; 00012 00013 //OLD: 00014 class ModemWidget; 00015 class ModemWidget2; 00016 00017 class PPPConfigWidget : public QDialog { 00018 Q_OBJECT 00019 public: 00020 00021 PPPConfigWidget( InterfacePPP*, QWidget *parent=0, const char *name=0, 00022 bool modal = false, WFlags fl = 0 ); 00023 ~PPPConfigWidget(); 00024 00025 00026 protected slots: 00027 virtual void accept(); 00028 virtual void reject(); 00029 00030 private: 00031 InterfacePPP *interface; 00032 QTabWidget *tabWindow; 00033 AccountWidget *accounts; 00034 GeneralWidget *general; 00035 DevicesWidget* devices; 00036 00037 //OLD: 00038 ModemWidget *modem1; 00039 ModemWidget2 *modem2; 00040 }; 00041 00042 00043 #endif
1.4.2