OSDN Git Service

Rename boardmanager.cpp and boardmanager.h
[kita/kita.git] / src / prefs / faceprefpage.h
1 /***************************************************************************
2 *   Copyright (C) 2003 by Hideki Ikemoto                                  *
3 *   ikemo@users.sourceforge.jp                                            *
4 *                                                                         *
5 *   This program is free software; you can redistribute it and/or modify  *
6 *   it under the terms of the GNU General Public License as published by  *
7 *   the Free Software Foundation; either version 2 of the License, or     *
8 *   (at your option) any later version.                                   *
9 ***************************************************************************/
10
11 #ifndef KITAFACEPREFPAGE_H
12 #define KITAFACEPREFPAGE_H
13
14 #include "abstractprefpage.h"
15 #include "ui_faceprefbase.h"
16
17 namespace Kita
18 {
19     class FacePrefPage : public AbstractPrefPage, public Ui::FacePrefBase
20     {
21         Q_OBJECT
22     public:
23         FacePrefPage(QWidget* parent = 0);
24         virtual void apply();
25         virtual void load();
26         virtual void reset();
27
28     private slots:
29         void slotFontButtonClicked();
30         void slotPopupFontButtonClicked();
31         void slotThreadFontButtonClicked();
32
33     signals:
34         void fontChanged(const QFont&);
35     };
36 }
37
38 #endif // KITAFACEPREFPAGE_H