blob: 54b85028c0c8af43207c177fe926731216d57913 (
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
63
64
|
/***************************************************************************
kwordquizprefs.h - description
-------------------
begin : Sun Aug 18 2002
copyright : (C) 2002-2005 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 KWORDTQUIZPREFS_H
#define KWORDTQUIZPREFS_H
#include <kconfigdialog.h>
/**
*@author Peter Hedlund
*/
class PrefEditor;
class PrefQuiz;
class PrefCharacter;
class PrefCardAppearance;
class DlgSpecChar;
class KWordQuizPrefs : public KConfigDialog
{
Q_OBJECT
public:
KWordQuizPrefs(TQWidget *parent=0, const char *name=0, KConfigSkeleton *config=0, DialogType dialogType=IconList,
int dialogButtons=Default|Ok|Apply|Cancel|Help, ButtonCode defaultButton=Ok, bool modal=false);
protected slots:
void updateSettings();
void updateWidgetsDefault();
private slots:
void slotCharListSelectionChanged();
void slotDlgSpecCharClosed();
void slotSelectSpecChar();
void slotSpecChar(TQChar);
protected:
bool hasChanged();
bool isDefault();
private:
PrefEditor *m_prefEditor;
PrefQuiz *m_prefQuiz;
PrefCharacter* m_prefCharacter;
DlgSpecChar* m_dlgSpecChar;
PrefCardAppearance* m_prefCardAppearance;
KConfigSkeleton * m_config;
};
#endif
|