// // C++ Interface: // // Description: KWordQuiz flashcard appearance preferences // // // Author: Peter Hedlund , (C) 2004 // // Copyright: See COPYING file that comes with this distribution // // #ifndef PREFCARDAPPEARANCE_H #define PREFCARDAPPEARANCE_H #include /** @author Peter Hedlund */ class PrefCardAppearance : public PrefCardAppearanceBase { Q_OBJECT public: PrefCardAppearance(TQWidget *parent = 0, const char *name = 0); ~PrefCardAppearance(); public slots: void slotFlipButtonClicked(); void slotFontChanged(const TQFont &); void slotTextColorChanged(const TQColor &); void slotCardColorChanged(const TQColor &); void slotFrameColorChanged(const TQColor &); void slotAboutToShowWidget(TQWidget *); }; #endif