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.
31 lines
600 B
31 lines
600 B
#ifndef CHIASMUSKEYSELECTOR_H |
|
#define CHIASMUSKEYSELECTOR_H |
|
|
|
#include <kdialog.h> |
|
#include <QLabel> |
|
class KListWidget; |
|
class KLineEdit; |
|
class QLabel; |
|
|
|
class ChiasmusKeySelector : public KDialog |
|
{ |
|
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 Q_SLOTS: |
|
void slotItemSelectionChanged(); |
|
|
|
private: |
|
QLabel* mLabel; |
|
KListWidget* mListBox; |
|
KLineEdit* mOptions; |
|
}; |
|
|
|
#endif
|
|
|