docprefs.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef DOCPREFS_H
00020 #define DOCPREFS_H
00021
00022 #include <qstring.h>
00023
00024 class KSimpleConfig;
00025
00026 class DocPrefs
00027 {
00028 public:
00029 DocPrefs( const QString &type="general" );
00030 ~DocPrefs();
00031
00032 void setDoc( const QString &identifier );
00033 QString doc() const;
00034
00035 bool readBoolEntry( const QString &identifier ) const;
00036 void writeEntry( const QString &identifier, bool value );
00037
00038 private:
00039 static KSimpleConfig *mConfig;
00040
00041 QString mDocId;
00042 };
00043
00044 #endif
This file is part of the documentation for korganizer Library Version 3.2.2.