summaryrefslogtreecommitdiffstats
path: root/kmail/chiasmuskeyselector.h
blob: 8ee24c7134cf8cb6558b594236b8e62c0df99309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef CHIASMUSKEYSELECTOR_H
#define CHIASMUSKEYSELECTOR_H

#include <kdialogbase.h>
class KListBox;
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;
  KListBox* mListBox;
  KLineEdit* mOptions;
};

#endif