summaryrefslogtreecommitdiffstats
path: root/kwordquiz/src/dlgsort.h
diff options
context:
space:
mode:
Diffstat (limited to 'kwordquiz/src/dlgsort.h')
-rw-r--r--kwordquiz/src/dlgsort.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/kwordquiz/src/dlgsort.h b/kwordquiz/src/dlgsort.h
new file mode 100644
index 00000000..8642eb62
--- /dev/null
+++ b/kwordquiz/src/dlgsort.h
@@ -0,0 +1,44 @@
+/***************************************************************************
+ dlglsort.h - description
+ -------------------
+ copyright : (C) 2003 by Peter Hedlund
+ email : peter.hedlund@kdemail.net
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#ifndef DLGSORT_H
+#define DLGSORT_H
+
+#include <kdialogbase.h>
+
+#include "dlgsortbase.h"
+
+/**
+@author Peter Hedlund
+*/
+class DlgSort : public KDialogBase
+{
+Q_OBJECT
+public:
+
+ DlgSort(QWidget *parent = 0, const char *name = 0, bool modal=true);
+ ~DlgSort();
+
+ bool base();
+ bool ascending();
+ void setLanguage(int index, const QString &lang);
+
+private:
+ DlgSortBase *dlgBase;
+
+};
+
+#endif