~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kwin/effects/magiclamp/magiclamp_config.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/********************************************************************
 
2
 KWin - the KDE window manager
 
3
 This file is part of the KDE project.
 
4
 
 
5
 Copyright (C) 2009 Martin Gräßlin <kde@martin-graesslin.com>
 
6
 
 
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.
 
11
 
 
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.
 
16
 
 
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>
 
22
 
 
23
#include <kconfiggroup.h>
 
24
 
 
25
#include <QVBoxLayout>
 
26
 
 
27
namespace KWin
 
28
{
 
29
 
 
30
KWIN_EFFECT_CONFIG_FACTORY
 
31
 
 
32
MagicLampEffectConfigForm::MagicLampEffectConfigForm(QWidget* parent) : QWidget(parent)
 
33
{
 
34
    setupUi(this);
 
35
}
 
36
 
 
37
MagicLampEffectConfig::MagicLampEffectConfig(QWidget* parent, const QVariantList& args) :
 
38
    KCModule(EffectFactory::componentData(), parent, args)
 
39
{
 
40
    m_ui = new MagicLampEffectConfigForm(this);
 
41
 
 
42
    QVBoxLayout* layout = new QVBoxLayout(this);
 
43
 
 
44
    layout->addWidget(m_ui);
 
45
 
 
46
    connect(m_ui->animationDurationSpin, SIGNAL(valueChanged(int)), this, SLOT(changed()));
 
47
    load();
 
48
}
 
49
 
 
50
void MagicLampEffectConfig::load()
 
51
{
 
52
    KCModule::load();
 
53
 
 
54
    KConfigGroup conf = EffectsHandler::effectConfig("MagicLamp");
 
55
 
 
56
    int duration       = conf.readEntry("AnimationDuration", 0);
 
57
    m_ui->animationDurationSpin->setValue(duration);
 
58
    m_ui->animationDurationSpin->setSuffix(ki18np(" millisecond", " milliseconds"));
 
59
    emit changed(false);
 
60
}
 
61
 
 
62
void MagicLampEffectConfig::save()
 
63
{
 
64
    KConfigGroup conf = EffectsHandler::effectConfig("MagicLamp");
 
65
 
 
66
    conf.writeEntry("AnimationDuration", m_ui->animationDurationSpin->value());
 
67
 
 
68
    conf.sync();
 
69
 
 
70
    emit changed(false);
 
71
    EffectsHandler::sendReloadMessage("magiclamp");
 
72
}
 
73
 
 
74
void MagicLampEffectConfig::defaults()
 
75
{
 
76
    m_ui->animationDurationSpin->setValue(0);
 
77
    emit changed(true);
 
78
}
 
79
} // namespace
 
80
 
 
81
#include "magiclamp_config.moc"