diff options
Diffstat (limited to 'kwordquiz/src/prefcardappearance.h')
-rw-r--r-- | kwordquiz/src/prefcardappearance.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/kwordquiz/src/prefcardappearance.h b/kwordquiz/src/prefcardappearance.h new file mode 100644 index 00000000..14c1d70b --- /dev/null +++ b/kwordquiz/src/prefcardappearance.h @@ -0,0 +1,36 @@ +// +// C++ Interface: +// +// Description: KWordQuiz flashcard appearance preferences +// +// +// Author: Peter Hedlund <peter.hedlund@kdemail.net>, (C) 2004 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#ifndef PREFCARDAPPEARANCE_H +#define PREFCARDAPPEARANCE_H + +#include <prefcardappearancebase.h> + +/** +@author Peter Hedlund +*/ +class PrefCardAppearance : public PrefCardAppearanceBase +{ +Q_OBJECT +public: + PrefCardAppearance(QWidget *parent = 0, const char *name = 0); + ~PrefCardAppearance(); + +public slots: + void slotFlipButtonClicked(); + void slotFontChanged(const QFont &); + void slotTextColorChanged(const QColor &); + void slotCardColorChanged(const QColor &); + void slotFrameColorChanged(const QColor &); + void slotAboutToShowWidget(QWidget *); +}; + +#endif |