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:
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// 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 <tqfont.h>
|
|
|
|
|
|
|
|
class k9prefAuthor : public prefAuthor
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
k9prefAuthor(TQWidget* 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$*/
|
|
|
|
TQFont m_font;
|
|
|
|
protected slots:
|
|
|
|
/*$PROTECTED_SLOTS$*/
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|