kmail

chiasmuskeyselector.h

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