blob: 7039e05a7bb1d8b91d8dc547f2474dea845953b9 (
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
{
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
|