blob: 3af0ec455b360feb0ce5384015fe4d6e832317ff (
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 QLabel;
class ChiasmusKeySelector : public KDialogBase
{
Q_OBJECT
public:
ChiasmusKeySelector( QWidget* parent, const QString& caption,
const QStringList& keys, const QString& currentKey,
const QString& lastOptions );
QString key() const;
QString options() const;
private:
QLabel* mLabel;
KListBox* mListBox;
KLineEdit* mOptions;
};
#endif
|