summaryrefslogtreecommitdiffabout
path: root/kmicromail/koprefs.h
Unidiff
Diffstat (limited to 'kmicromail/koprefs.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kmicromail/koprefs.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/kmicromail/koprefs.h b/kmicromail/koprefs.h
index a47642b..f0a4463 100644
--- a/kmicromail/koprefs.h
+++ b/kmicromail/koprefs.h
@@ -14,25 +14,24 @@
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 18
19 As a special exception, permission is given to link this program 19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable, 20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution. 21 without including the source code for Qt in the source distribution.
22*/ 22*/
23#ifndef KOPREFS_H 23#ifndef KOPREFS_H
24#define KOPREFS_H 24#define KOPREFS_H
25 25
26#include <qdict.h>
27 26
28#include <libkdepim/kpimprefs.h> 27#include <libkdepim/kpimprefs.h>
29 28
30class KConfig; 29class KConfig;
31class QFont; 30class QFont;
32class QColor; 31class QColor;
33class QStringList; 32class QStringList;
34 33
35class KOPrefs : public KPimPrefs 34class KOPrefs : public KPimPrefs
36{ 35{
37 public: 36 public:
38 virtual ~KOPrefs(); 37 virtual ~KOPrefs();
@@ -53,25 +52,24 @@ class KOPrefs : public KPimPrefs
53 52
54 protected: 53 protected:
55 54
56 /** Fill empty mail fields with default values. */ 55 /** Fill empty mail fields with default values. */
57 void fillMailDefaults(); 56 void fillMailDefaults();
58 57
59 private: 58 private:
60 /** Constructor disabled for public. Use instance() to create a KOPrefs 59 /** Constructor disabled for public. Use instance() to create a KOPrefs
61 object. */ 60 object. */
62 KOPrefs(); 61 KOPrefs();
63 62
64 static KOPrefs *mInstance; 63 static KOPrefs *mInstance;
65 QDict<QString> *mLocaleDict;
66 public: 64 public:
67 // preferences data 65 // preferences data
68 KConfig* getConfig(); 66 KConfig* getConfig();
69 QFont mAppFont; 67 QFont mAppFont;
70 QFont mComposeFont; 68 QFont mComposeFont;
71 QFont mReadFont; 69 QFont mReadFont;
72 QString mName; 70 QString mName;
73 QString mEmail; 71 QString mEmail;
74 bool mSendLater, mViewAsHtml, mUseKapi; 72 bool mSendLater, mViewAsHtml, mUseKapi;
75 private: 73 private:
76 74
77}; 75};