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
551 B
29 lines
551 B
#ifndef CHIASMUSKEYSELECTOR_H
|
|
#define CHIASMUSKEYSELECTOR_H
|
|
|
|
#include <kdialogbase.h>
|
|
class KListBox;
|
|
class KLineEdit;
|
|
class TQLabel;
|
|
|
|
class ChiasmusKeySelector : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
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;
|
|
KListBox* mListBox;
|
|
KLineEdit* mOptions;
|
|
};
|
|
|
|
#endif
|