summaryrefslogtreecommitdiffstats
path: root/keduca/keduca/keducaprefs.h
blob: b149379860f8debb89e587e775df522c6a301565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/***************************************************************************
                          keducaprefs.h  -  description
                             -------------------
    begin                : Sat Jun 2 2001
    copyright            : (C) 2001 by Javier Campos
    email                : javi@asyris.org
***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 KEDUCAPREFS_H
#define KEDUCAPREFS_H

#include <kdialogbase.h>

#include <qradiobutton.h>
#include <qcheckbox.h>

/** Preferences for KEduca TestMaster (class KEduca)
 *@author Javier Campos
 */

class KEducaPrefs : public KDialogBase  {
    Q_OBJECT

public:
    KEducaPrefs(QWidget *parent=0, const char *name=0, bool modal=true);
    ~KEducaPrefs();

private:

    // Private methods

    /** Set page general */
    void setPageGeneral();
    /** Write settings */
    void configWrite();
    /** Read settings */
    void configRead();

    // Private attributes

    /** Show result after next */
    QRadioButton *_resultAfterNext;
    /** Show results after finish */
    QRadioButton *_resultAfterFinish;
    QCheckBox *_randomQuestions;
    QCheckBox *_randomAnswers;

private slots:
    /** Push ok button */
    void slotOk();
};

#endif