diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:32:19 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:32:19 +0000 |
commit | 0d382a262c0638d0f572fc37193ccc5ed3dc895f (patch) | |
tree | 8578dcddfce4191f3f7a142a37769df7add48475 /src/k9prefauthor.h | |
download | k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.tar.gz k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.zip |
Added old abandoned version of k9copy
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1091546 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k9prefauthor.h')
-rw-r--r-- | src/k9prefauthor.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/k9prefauthor.h b/src/k9prefauthor.h new file mode 100644 index 0000000..be59c40 --- /dev/null +++ b/src/k9prefauthor.h @@ -0,0 +1,41 @@ +// +// C++ Interface: +// +// Description: +// +// +// Author: Jean-Michel PETIT <[email protected]>, (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 + |