summaryrefslogtreecommitdiffstats
path: root/kmail/chiasmuskeyselector.h
blob: 7e0d36fb0e4753530da10b56a709d40d9a8a43b7 (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
28
#ifndef CHIASMUSKEYSELECTOR_H
#define CHIASMUSKEYSELECTOR_H

#include <kdialogbase.h>
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