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.
29 lines
567 B
29 lines
567 B
#ifndef CHIASMUSKEYSELECTOR_H |
|
#define CHIASMUSKEYSELECTOR_H |
|
|
|
#include <kdialogbase.h> |
|
//Added by qt3to4: |
|
#include <QLabel> |
|
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
|
|
|