mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 2005-2006 by Olivier Goffart <ogoffart at 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 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 <kconfiggroup.h>
|
|
#include <kconfig.h>
|
|
#include <kdebug.h>
|
|
#include <kstandarddirs.h>
|
|
#include <kservice.h>
|
|
|
|
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<QString, QString> it(m_cache);
|
|
while(it.hasNext())
|
|
{
|
|
it.next();
|
|
m_config->writeEntry(it.key() , it.value() );
|
|
}
|
|
m_config->sync();
|
|
}
|
|
|
|
|
|
bool KNotifyConfigElement::have_kttsd() //[static]
|
|
{
|
|
static bool val = KService::serviceByDesktopName("kttsd");
|
|
return val;
|
|
}
|