Better wording
[kdepim.git] / messageviewer / chiasmuskeyselector.h
blob709c5130d2a9dced1929f16ec3343f87e750de11
1 #ifndef CHIASMUSKEYSELECTOR_H
2 #define CHIASMUSKEYSELECTOR_H
4 #include <kdialog.h>
5 #include <QLabel>
6 #include "messageviewer_export.h"
8 class KListWidget;
9 class KLineEdit;
10 class QLabel;
12 namespace MessageViewer {
14 class MESSAGEVIEWER_EXPORT ChiasmusKeySelector : public KDialog
16 Q_OBJECT
18 public:
19 ChiasmusKeySelector( QWidget* parent, const QString& caption,
20 const QStringList& keys, const QString& currentKey,
21 const QString& lastOptions );
23 QString key() const;
24 QString options() const;
26 private Q_SLOTS:
27 void slotItemSelectionChanged();
29 private:
30 QLabel* mLabel;
31 KListWidget* mListBox;
32 KLineEdit* mOptions;
37 #endif