1 /********************************************************************
2 KWin - the KDE window manager
3 This file is part of the KDE project.
5 Copyright (C) 2009 Martin Gräßlin <kde@martin-graesslin.com>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 *********************************************************************/
20 #include "magiclamp_config.h"
21 #include <kwineffects.h>
23 #include <kconfiggroup.h>
25 #include <QVBoxLayout>
27 KWIN_EFFECT_CONFIG_FACTORY
33 MagicLampEffectConfigForm::MagicLampEffectConfigForm(QWidget
* parent
) : QWidget(parent
)
38 MagicLampEffectConfig::MagicLampEffectConfig(QWidget
* parent
, const QVariantList
& args
) :
39 KCModule(EffectFactory::componentData(), parent
, args
)
41 m_ui
= new MagicLampEffectConfigForm(this);
43 QVBoxLayout
* layout
= new QVBoxLayout(this);
45 layout
->addWidget(m_ui
);
47 connect(m_ui
->animationDurationSpin
, SIGNAL(valueChanged(int)), this, SLOT(changed()));
51 void MagicLampEffectConfig::load()
55 KConfigGroup conf
= EffectsHandler::effectConfig( "MagicLamp" );
57 int duration
= conf
.readEntry( "AnimationDuration", 0 );
58 m_ui
->animationDurationSpin
->setValue( duration
);
62 void MagicLampEffectConfig::save()
64 KConfigGroup conf
= EffectsHandler::effectConfig( "MagicLamp" );
66 conf
.writeEntry( "AnimationDuration", m_ui
->animationDurationSpin
->value() );
71 EffectsHandler::sendReloadMessage( "magiclamp" );
74 void MagicLampEffectConfig::defaults()
76 m_ui
->animationDurationSpin
->setValue( 0 );
81 #include "magiclamp_config.moc"