moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kverbos / kverbos / kverbosoptions.h
blob2293fac4f02c0a2350760a03a36ed60dfc6e4903
1 /***************************************************************************
2 kverbosoptions.h - description
3 -------------------
4 begin : Sat Dec 15 2001
5 copyright : (C) 2001 by Arnold Kraschinski
6 email : arnold.k67@gmx.de
7 ***************************************************************************/
9 /***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
18 #ifndef KVERBOSOPTIONS_H
19 #define KVERBOSOPTIONS_H
21 #include "qverbosoptions.h"
23 /** Eine Klasse des KVerbos Projektes. Dadurch wird der Optionendialog bereitgestellt.
24 * In diesem Dialog können die Zeitstufen, die gelernt werden sollen ausgewählt werden.
25 *@author Arnold Kraschinski
28 class KVerbosOptions : public QVerbosOptions {
29 public:
30 KVerbosOptions( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
31 ~KVerbosOptions();
33 public slots:
34 /** Wird durch den OK-Button aufgerufen und beendet den Dialog. Änderungen
35 * werden übernommen.
37 virtual void slotDlgEnde();
38 /** Wird durch den Cancel-Button aufgerufen und beendet den Dialog ohne
39 * Änderungen zu übernehmen.
41 virtual void slotCancel();
44 #endif