From 00bb99ac80741fc50ef8a289719373032f2391eb Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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/kdeaccessibility@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksayit/src/effectstack.cpp | 65 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 ksayit/src/effectstack.cpp (limited to 'ksayit/src/effectstack.cpp') diff --git a/ksayit/src/effectstack.cpp b/ksayit/src/effectstack.cpp new file mode 100644 index 0000000..7497847 --- /dev/null +++ b/ksayit/src/effectstack.cpp @@ -0,0 +1,65 @@ +// +// C++ Implementation: effectstack +// +// Description: +// +// +// Author: Robert Vogl , (C) 2004 +// +// Copyright: See COPYING file that comes with this distribution +// +// + +// Qt includes +#include + +// KDE includes +#include + +// App specific includes +#include "effectstack.h" +#include "fxpluginhandler.h" + +EffectStack::EffectStack(FXPluginHandler *pluginhandler, KConfig *config) + : + dispatcher(), server(), + m_pluginhandler(pluginhandler), + m_config(config) +{ +} + + +EffectStack::~EffectStack() +{ +} + +bool EffectStack::loadEffects() +{ + kdDebug(100200) << "EffectStack::loadEffects()" << endl; + + QStringList c_active; + QStringList::Iterator fx_it; + + // create filterstack + FX_Stack = server.server().outstack(); + + m_config->setGroup("Effect Stack Configuration"); + c_active = m_config->readListEntry("Activated"); + for(fx_it=c_active.begin(); fx_it!=c_active.end(); ++fx_it){ + + m_pluginhandler->activateEffect(*fx_it, &server, &FX_Stack); + + } + return true; +} + + +bool EffectStack::unloadEffects() +{ + kdDebug(100200) << "EffectStack::unloadEffects()" << endl; + // remove all effects + m_pluginhandler->deactivateEffects(&FX_Stack); + + return true; +} + -- cgit v1.2.1