blob: 3402fd3705fd98f149e1936ee3a1ed0c6c8aa14d (
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 KListBox;
class KLineEdit;
class TQLabel;
class ChiasmusKeySelector : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:
ChiasmusKeySelector( TQWidget* tqparent, 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
|