summaryrefslogtreecommitdiffstats
path: root/kmail/chiasmuskeyselector.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/chiasmuskeyselector.h')
-rw-r--r--kmail/chiasmuskeyselector.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/kmail/chiasmuskeyselector.h b/kmail/chiasmuskeyselector.h
new file mode 100644
index 000000000..3af0ec455
--- /dev/null
+++ b/kmail/chiasmuskeyselector.h
@@ -0,0 +1,27 @@
+#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