You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
530 B
28 lines
530 B
15 years ago
|
#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
|