00001 #ifndef STUMBLERSETTINGS_H 00002 #define STUMBLERSETTINGS_H 00003 00004 #include <qdialog.h> 00005 00006 class Config; 00007 class QLineEdit; 00008 00009 class StumblerSettings: public QDialog { 00010 00011 public: 00012 StumblerSettings(QWidget* parent = 0, const char* name = 0, bool modal = false, WFlags f = 0); 00013 ~StumblerSettings(); 00014 00015 protected slots: 00016 void accept(); 00017 protected: 00018 Config *m_config; 00019 QLineEdit *m_interface; 00020 }; 00021 00022 #endif
1.4.2