kmail
chiasmuskeyselector.h
Go to the documentation of this file.00001 #ifndef CHIASMUSKEYSELECTOR_H 00002 #define CHIASMUSKEYSELECTOR_H 00003 00004 #include <kdialogbase.h> 00005 class KListBox; 00006 class KLineEdit; 00007 class QLabel; 00008 00009 class ChiasmusKeySelector : public KDialogBase 00010 { 00011 Q_OBJECT 00012 00013 public: 00014 ChiasmusKeySelector( QWidget* parent, const QString& caption, 00015 const QStringList& keys, const QString& currentKey, 00016 const QString& lastOptions ); 00017 00018 QString key() const; 00019 QString options() const; 00020 00021 private: 00022 QLabel* mLabel; 00023 KListBox* mListBox; 00024 KLineEdit* mOptions; 00025 }; 00026 00027 #endif