summaryrefslogtreecommitdiffstats
path: root/kvoctrain/kvoctrain/query-dialogs/VerbQueryDlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'kvoctrain/kvoctrain/query-dialogs/VerbQueryDlg.h')
-rw-r--r--kvoctrain/kvoctrain/query-dialogs/VerbQueryDlg.h100
1 files changed, 100 insertions, 0 deletions
diff --git a/kvoctrain/kvoctrain/query-dialogs/VerbQueryDlg.h b/kvoctrain/kvoctrain/query-dialogs/VerbQueryDlg.h
new file mode 100644
index 00000000..e972eb2a
--- /dev/null
+++ b/kvoctrain/kvoctrain/query-dialogs/VerbQueryDlg.h
@@ -0,0 +1,100 @@
+/***************************************************************************
+
+ query dialog for verbs
+
+ -----------------------------------------------------------------------
+
+ begin : Fri Dec 3 18:28:18 1999
+
+ copyright : (C) 1999-2001 Ewald Arnold <kvoctrain@ewald-arnold.de>
+ (C) 2001 The KDE-EDU team
+ (C) 2005 Peter Hedlund <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 VerbQueryDlg_included
+#define VerbQueryDlg_included
+
+#include "VerbQueryDlgForm.h"
+#include "QueryDlgBase.h"
+
+class VerbQueryDlg : public QueryDlgBase
+{
+ Q_OBJECT
+
+public:
+
+ VerbQueryDlg(
+ QString type,
+ int entry,
+ int col,
+ int query_cycle,
+ int query_num,
+ int query_startnum,
+ kvoctrainExpr *exp,
+ kvoctrainDoc *doc,
+ const Conjugation &prefix,
+ const Conjugation &conjug);
+
+ ~VerbQueryDlg();
+
+ void setQuery(QString type,
+ int entry,
+ int col,
+ int query_cycle,
+ int query_num,
+ int query_startnum,
+ kvoctrainExpr *exp,
+ kvoctrainDoc *doc,
+ const Conjugation &prefix,
+ const Conjugation &conjug);
+
+public slots:
+ virtual void initFocus() const;
+
+protected:
+ bool next();
+ void keyPressEvent( QKeyEvent *e );
+ void resetAllFields();
+
+protected slots:
+ void slotUser2();
+ void slotP3pfChanged(const QString&);
+ void slotP3snChanged(const QString&);
+ void showAllClicked();
+ void slotReturnPressed();
+ void slotP3smChanged(const QString&);
+ void knowItClicked();
+ void dontKnowClicked();
+ void slotP3pnChanged(const QString&);
+ void slotP3sfChanged(const QString&);
+ void slotP1sChanged(const QString&);
+ void slotP2sChanged(const QString&);
+ void slotP3pmChanged(const QString&);
+ void slotP1pChanged(const QString&);
+ void slotP2pChanged(const QString&);
+ void verifyClicked();
+ void timeoutReached();
+
+protected:
+ int current;
+ Conjugation conjugations;
+ bool all_known;
+
+private:
+ VerbQueryDlgForm * mw;
+};
+
+#endif // VerbQueryDlg_included