summaryrefslogtreecommitdiffstats
path: root/kwordquiz/src/prefcardappearance.h
blob: 14c1d70b551986b09d0a543fb0ffe891bbdecaff (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
//
// 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