You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/kmail/chiasmuskeyselector.h

29 lines
547 B

#ifndef CHIASMUSKEYSELECTOR_H
#define CHIASMUSKEYSELECTOR_H
#include <kdialogbase.h>
class TDEListBox;
class KLineEdit;
class TQLabel;
class ChiasmusKeySelector : public KDialogBase
{
TQ_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