kmail
chiasmuskeyselector.h00001 #ifndef CHIASMUSKEYSELECTOR_H
00002 #define CHIASMUSKEYSELECTOR_H
00003
00004 #include <kdialogbase.h>
00005 class KListBox;
00006 class KLineEdit;
00007 class TQLabel;
00008
00009 class ChiasmusKeySelector : public KDialogBase
00010 {
00011 Q_OBJECT
00012
00013 public:
00014 ChiasmusKeySelector( TQWidget* parent, const TQString& caption,
00015 const TQStringList& keys, const TQString& currentKey,
00016 const TQString& lastOptions );
00017
00018 TQString key() const;
00019 TQString options() const;
00020
00021 private:
00022 TQLabel* mLabel;
00023 KListBox* mListBox;
00024 KLineEdit* mOptions;
00025 };
00026
00027 #endif
|