File indexing completed on 2023-05-30 10:45:27

0001 /*
0002     SPDX-FileCopyrightText: 2004-2007 Peter Hedlund <peter.hedlund@kdemail.net>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef PREFCARDAPPEARANCE_H
0007 #define PREFCARDAPPEARANCE_H
0008 
0009 #include <ui_prefcardappearancebase.h>
0010 
0011 /**
0012 @author Peter Hedlund
0013 */
0014 class PrefCardAppearance : public QWidget, public Ui::PrefCardAppearanceBase
0015 {
0016 Q_OBJECT
0017 public:
0018   explicit PrefCardAppearance(QWidget *parent);
0019 
0020 public Q_SLOTS:
0021   void slotFlipButtonClicked();
0022   void slotFontChanged(const QFont &);
0023   void slotTextColorChanged(const QColor &);
0024   void slotCardColorChanged(const QColor &);
0025   void slotFrameColorChanged(const QColor &);
0026   void slotCurrentChanged(int);
0027 };
0028 
0029 #endif