diff --git a/kcal/resourcecalendar.cpp b/kcal/resourcecalendar.cpp index 5529b4890..e6533b260 100644 --- a/kcal/resourcecalendar.cpp +++ b/kcal/resourcecalendar.cpp @@ -1,140 +1,151 @@ /* This file is part of libkdepim. Copyright (c) 1998 Preston Brown Copyright (c) 2001-2004 Cornelius Schumacher Copyright (c) 2002 Jan-Pascal van Best 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #include "calendar.h" #include "resourcecalendar.h" using namespace KCal; ResourceCalendar::ResourceCalendar( const KConfig *config ) : KRES::Resource( config ) { } ResourceCalendar::~ResourceCalendar() { } QString ResourceCalendar::infoText() const { QString txt; txt += "" + resourceName() + ""; txt += "
"; KRES::Factory *factory = KRES::Factory::self( "calendar" ); QString t = factory->typeName( type() ); txt += i18n("Type: %1").arg( t ); addInfoText( txt ); return txt; } void ResourceCalendar::writeConfig( KConfig* config ) { // kdDebug(5800) << "ResourceCalendar::writeConfig()" << endl; KRES::Resource::writeConfig( config ); } bool ResourceCalendar::addIncidence( Incidence *incidence ) { Incidence::AddVisitor v( this ); return incidence->accept( v ); } Incidence::List ResourceCalendar::rawIncidences() { return Calendar::mergeIncidenceList( rawEvents(), rawTodos(), journals() ); } void ResourceCalendar::setSubresourceActive( const QString &, bool ) { } bool ResourceCalendar::load() { kdDebug(5800) << "Loading resource " + resourceName() << endl; // FIXME: test if resource is opened and remove this test from concrete // resources mReceivedLoadError = false; bool success = true; if ( !isOpen() ) success = open(); if ( success ) { success = doLoad(); } if ( !success && !mReceivedLoadError ) loadError(); + + // If the resource is read-only, we need to set its incidences to read-only, + // too. This can't be done at a lower-level, since the read-only setting + // happens at this level + if ( readOnly() ) { + Incidence::List incidences( rawIncidences() ); + Incidence::List::Iterator it; + for ( it = incidences.begin(); it != incidences.end(); ++it ) { + (*it)->setReadOnly( true ); + } + } kdDebug(5800) << "Done loading resource " + resourceName() << endl; return success; } void ResourceCalendar::loadError( const QString &err ) { kdDebug(5800) << "Error loading resource: " << err << endl; mReceivedLoadError = true; QString msg = i18n("Error while loading %1.\n") .arg( resourceName() ); if ( !err.isEmpty() ) { msg += err; } emit resourceLoadError( this, msg ); } bool ResourceCalendar::save() { kdDebug(5800) << "Save resource " + resourceName() << endl; mReceivedSaveError = false; bool success = doSave(); if ( !success && !mReceivedSaveError ) saveError(); return success; } void ResourceCalendar::saveError( const QString &err ) { kdDebug(5800) << "Error saving resource: " << err << endl; mReceivedSaveError = true; QString msg = i18n("Error while saving %1.\n") .arg( resourceName() ); if ( !err.isEmpty() ) { msg += err; } emit resourceSaveError( this, msg ); } #include "resourcecalendar.moc"