/* This file is part of the KDE project Copyright (C) 2005-2006 by Olivier Goffart This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. 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 "knotifyconfigelement.h" #include #include #include #include #include KNotifyConfigElement::KNotifyConfigElement(const QString &eventid, KConfig *config) : m_config( new KConfigGroup(config , "Event/" + eventid) ) { } KNotifyConfigElement::~KNotifyConfigElement() { delete m_config; } QString KNotifyConfigElement::readEntry( const QString & entry, bool path ) { if(m_cache.contains(entry)) return m_cache[entry]; return path ? m_config->readPathEntry(entry, QString()) : m_config->readEntry(entry, QString()); } void KNotifyConfigElement::writeEntry( const QString & entry, const QString &data ) { m_cache[entry]=data; } void KNotifyConfigElement::save( ) { QMapIterator it(m_cache); while(it.hasNext()) { it.next(); m_config->writeEntry(it.key() , it.value() ); } m_config->sync(); }