blob: d136305fca475a7d667f58edee234625f601bd27 (
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* 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
|