#ifndef CHIASMUSKEYSELECTOR_H #define CHIASMUSKEYSELECTOR_H #include class TDEListBox; class KLineEdit; class TQLabel; class ChiasmusKeySelector : public KDialogBase { Q_OBJECT public: ChiasmusKeySelector( TQWidget* parent, const TQString& caption, const TQStringList& keys, const TQString& currentKey, const TQString& lastOptions ); TQString key() const; TQString options() const; private: TQLabel* mLabel; TDEListBox* mListBox; KLineEdit* mOptions; }; #endif