diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /korganizer/stdcalendar.cpp | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korganizer/stdcalendar.cpp')
-rw-r--r-- | korganizer/stdcalendar.cpp | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/korganizer/stdcalendar.cpp b/korganizer/stdcalendar.cpp new file mode 100644 index 000000000..55b47d56e --- /dev/null +++ b/korganizer/stdcalendar.cpp @@ -0,0 +1,109 @@ +/* + This file is part of libkcal. + + Copyright (c) 2004 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. +*/ + +#include "stdcalendar.h" + +#include <libkcal/resourcecalendar.h> +#include <libkdepim/kpimprefs.h> + +#include <kstaticdeleter.h> +#include <kconfig.h> +#include <kstandarddirs.h> +#include <klocale.h> +#include <kurl.h> + +using namespace KOrg; + +static KStaticDeleter<StdCalendar> selfDeleter; + +StdCalendar *StdCalendar::mSelf = 0; + +StdCalendar *StdCalendar::self() +{ + if ( !mSelf ) { + selfDeleter.setObject( mSelf, new StdCalendar() ); + } + return mSelf; +} + +StdCalendar::StdCalendar() + : CalendarResources( KPimPrefs::timezone() ) +{ + readConfig(); + + KCal::CalendarResourceManager *manager = resourceManager(); + if ( manager->isEmpty() ) { + KConfig config( "korganizerrc" ); + config.setGroup( "General" ); + QString fileName = config.readPathEntry( "Active Calendar" ); + + QString resourceName; + QString resoruceType; + KCal::ResourceCalendar *defaultResource = 0; + if ( !fileName.isEmpty() ) { + KURL url( fileName ); + if ( url.isLocalFile() ) { + kdDebug(5850) << "Local resource at " << url << endl; + defaultResource = manager->createResource( "file" ); + if ( defaultResource ) + defaultResource->setValue( "File", url.path() ); + } else { + kdDebug(5850) << "Remote Resource at " << url << endl; + defaultResource = manager->createResource( "remote" ); + if ( defaultResource ) + defaultResource->setValue( "URL", url.url() ); + } + resourceName = i18n( "Active Calendar" ); + } + // No resource created, i.e. no path found in config => use default path + if ( !defaultResource ) { + fileName = locateLocal( "data", "korganizer/std.ics" ); + kdDebug(5850) << "Creating new default local resource at " << fileName << endl; + defaultResource = manager->createResource( "file" ); + if ( defaultResource ) + defaultResource->setValue( "File", fileName ); + resourceName = i18n( "Default Calendar" ); + } + + if ( defaultResource ) { + defaultResource->setTimeZoneId( KPimPrefs::timezone() ); + defaultResource->setResourceName( resourceName ); + manager->add( defaultResource ); + manager->setStandardResource( defaultResource ); + } + + // By default, also create a birthday resource + KCal::ResourceCalendar *bdayResource = manager->createResource( "birthdays" ); + if ( bdayResource ) { + kdDebug(5850) << "Adding Birthdays resource" << endl; + bdayResource->setTimeZoneId( KPimPrefs::timezone() ); + bdayResource->setResourceName( i18n("Birthdays") ); + manager->add( bdayResource ); + } else { + kdDebug(5850) << "Unable to add a Birthdays resource" << endl; + } + } +} + +StdCalendar::~StdCalendar() +{ + mSelf = 0; +} |