You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.0 KiB
65 lines
2.0 KiB
/***************************************************************************
|
|
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 KWORDQUIZPREFS_H
|
|
#define KWORDQUIZPREFS_H
|
|
|
|
#include <tdeconfigdialog.h>
|
|
|
|
/**
|
|
*@author Peter Hedlund
|
|
*/
|
|
|
|
class PrefEditor;
|
|
class PrefQuiz;
|
|
class PrefCharacter;
|
|
class PrefCardAppearance;
|
|
class DlgSpecChar;
|
|
|
|
class KWordQuizPrefs : public TDEConfigDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KWordQuizPrefs(TQWidget *parent=0, const char *name=0, TDEConfigSkeleton *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;
|
|
TDEConfigSkeleton * m_config;
|
|
};
|
|
|
|
#endif
|