blob: be59c408b752b80d1f562056d1592db2476f38f2 (
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
37
38
39
40
41
|
//
// C++ Interface:
//
// Description:
//
//
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef K9PREFAUTHOR_H
#define K9PREFAUTHOR_H
#include "k9common.h"
#include "prefAuthor.h"
#include <qfont.h>
class k9prefAuthor : public prefAuthor
{
Q_OBJECT
public:
k9prefAuthor(QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
~k9prefAuthor();
/*$PUBLIC_FUNCTIONS$*/
void load();
public slots:
/*$PUBLIC_SLOTS$*/
virtual void bButtonFontClicked();
virtual void save();
protected:
/*$PROTECTED_FUNCTIONS$*/
QFont m_font;
protected slots:
/*$PROTECTED_SLOTS$*/
};
#endif
|