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.
|
|
|
//
|
|
|
|
// 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(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
|