00001 #ifndef OPIE_CONFIG_DIALOG_H 00002 #define OPIE_CONFIG_DIALOG_H 00003 00004 #include <qdialog.h> 00005 00006 #include "configurebase.h" 00007 #include "profile.h" 00008 00009 class MetaFactory; 00010 class ConfigDialog : public ConfigureBase { 00011 Q_OBJECT 00012 public: 00013 ConfigDialog( const Profile::ValueList&, MetaFactory*, QWidget* parent = 0l); 00014 ~ConfigDialog(); 00015 00016 Profile::ValueList list()const; 00017 protected slots: 00018 void slotRemove(); 00019 void slotEdit(); 00020 void slotAdd(); 00021 private: 00022 MetaFactory* m_fact; 00023 00024 }; 00025 00026 #endif
1.4.2