00001 #ifndef ACCOUNTEDITOR_H 00002 #define ACCOUNTEDITOR_H 00003 00004 #include "accounteditorbase.h" 00005 #include "configfile.h" 00006 00007 class AccountEditor : public AccountEditorBase 00008 { 00009 Q_OBJECT 00010 00011 public: 00012 AccountEditor(Account account = Account(), QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags fl = 0); 00013 00014 Account _account; 00015 00016 protected slots: 00017 void accept(); 00018 void showPasswdToggled(bool toggled); 00019 00020 protected: 00021 void fillValues(); 00022 00023 }; 00024 00025 #endif
1.4.2