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.
87 lines
2.5 KiB
87 lines
2.5 KiB
15 years ago
|
/*
|
||
13 years ago
|
This file is part of libtdepim.
|
||
15 years ago
|
|
||
|
Copyright (c) 2002 Cornelius Schumacher <schumacher@kde.org>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to
|
||
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
#ifndef KPIMPREFS_H
|
||
|
#define KPIMPREFS_H
|
||
|
|
||
15 years ago
|
#include <tqstringlist.h>
|
||
15 years ago
|
|
||
|
#include <kconfigskeleton.h>
|
||
13 years ago
|
#include <tdepimmacros.h>
|
||
15 years ago
|
|
||
15 years ago
|
class TQString;
|
||
15 years ago
|
|
||
|
class KDE_EXPORT KPimPrefs : public KConfigSkeleton
|
||
|
{
|
||
|
public:
|
||
14 years ago
|
KPimPrefs( const TQString &name = TQString() );
|
||
15 years ago
|
|
||
|
virtual ~KPimPrefs();
|
||
|
|
||
|
/** Set preferences to default values */
|
||
|
void usrSetDefaults();
|
||
|
|
||
|
/** Read preferences from config file */
|
||
|
void usrReadConfig();
|
||
|
|
||
|
/** Write preferences to config file */
|
||
|
void usrWriteConfig();
|
||
|
|
||
|
/**
|
||
|
* Get user's timezone.
|
||
|
*
|
||
|
* This will first look for whatever timezone is stored in KOrganizer's
|
||
|
* configuration file. If no timezone is found there, it uses
|
||
|
* /etc/localtime.
|
||
|
*
|
||
|
* The value returned may be in various formats (for example,
|
||
|
* America/New_York or EST) so your program should be prepared to these
|
||
|
* formats.
|
||
|
*
|
||
|
* The Calendar class in libkcal says accepts all timezone codes that are
|
||
|
* listed in /usr/share/zoneinfo/zone.tab.
|
||
|
*
|
||
|
* @see Calendar
|
||
|
*/
|
||
15 years ago
|
static const TQString timezone();
|
||
15 years ago
|
|
||
|
/**
|
||
|
Convert time given in UTC to local time at timezone specified by given
|
||
|
timezone id.
|
||
|
*/
|
||
15 years ago
|
static TQDateTime utcToLocalTime( const TQDateTime &dt,
|
||
|
const TQString &timeZoneId );
|
||
15 years ago
|
|
||
|
/**
|
||
|
Convert time given in local time at timezone specified by given
|
||
|
timezone id to UTC.
|
||
|
*/
|
||
15 years ago
|
static TQDateTime localTimeToUtc( const TQDateTime &dt,
|
||
|
const TQString &timeZoneId );
|
||
15 years ago
|
|
||
|
public:
|
||
15 years ago
|
TQStringList mCustomCategories;
|
||
15 years ago
|
|
||
|
protected:
|
||
|
virtual void setCategoryDefaults() {}
|
||
|
};
|
||
|
|
||
|
#endif
|