author | zautrix <zautrix> | 2005-02-06 16:21:57 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-02-06 16:21:57 (UTC) |
commit | 5fd7b1cc63dc52c15e0666e023cea60700e9fdcf (patch) (side-by-side diff) | |
tree | b0bf4d7d3054679970e2ff672e50149d1089bcb1 /korganizer/koprefs.h | |
parent | 38898c49275bf27fb8c2df96d145f2a5abb62331 (diff) | |
download | kdepimpi-5fd7b1cc63dc52c15e0666e023cea60700e9fdcf.zip kdepimpi-5fd7b1cc63dc52c15e0666e023cea60700e9fdcf.tar.gz kdepimpi-5fd7b1cc63dc52c15e0666e023cea60700e9fdcf.tar.bz2 |
fix
-rw-r--r-- | korganizer/koprefs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/korganizer/koprefs.h b/korganizer/koprefs.h index dddcdca..fa69d52 100644 --- a/korganizer/koprefs.h +++ b/korganizer/koprefs.h @@ -28,78 +28,80 @@ #include <qdict.h> class KConfig; class QFont; class QColor; class QStringList; class KOPrefs : public KPimPrefs { public: enum { FormatVCalendar, FormatICalendar }; enum { MailClientKMail, MailClientSendmail }; enum { IMIPDummy, IMIPKMail }; enum { IMIPOutbox, IMIPdirectsend }; enum { neverAuto, addressbookAuto, selectedAuto }; enum { standardDestination, askDestination }; virtual ~KOPrefs(); /** Get instance of KOPrefs. It is made sure that there is only one instance. */ static KOPrefs *instance(); /** Set preferences to default values */ void usrSetDefaults(); /** Read preferences from config file */ void usrReadConfig(); /** Write preferences to config file */ void usrWriteConfig(); void setCategoryDefaults(); + void setAllDefaults(); protected: void setTimeZoneIdDefault(); /** Fill empty mail fields with default values. */ void fillMailDefaults(); private: /** Constructor disabled for public. Use instance() to create a KOPrefs object. */ KOPrefs(); static KOPrefs *mInstance; QStringList getDefaultList(); + QStringList getLocationDefaultList(); public: // preferences data KConfig* getConfig(); void setFullName(const QString &); QString fullName(); void setEmail(const QString &); QString email(); QString mAdditional; bool mEmailControlCenter; bool mBcc; bool mAutoSave; int mAutoSaveInterval; bool mConfirm; bool mEnableGroupScheduling; bool mEnableProjectView; int mDefaultFormat; int mMailClient; int mStartTime; int mDefaultDuration; int mAlarmTime; int mWorkingHoursStart; int mWorkingHoursEnd; bool mExcludeHolidays; bool mExcludeSaturdays; bool mMarcusBainsShowSeconds; |