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.
tdepim/korganizer/stdcalendar.cpp

110 lines
3.5 KiB

/*
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 <libtdepim/kpimprefs.h>
#include <kstaticdeleter.h>
#include <tdeconfig.h>
#include <kstandarddirs.h>
#include <tdelocale.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() ) {
TDEConfig config( "korganizerrc" );
config.setGroup( "General" );
TQString fileName = config.readPathEntry( "Active Calendar" );
TQString resourceName;
TQString 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;
}