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

« back to all changes in this revision

Viewing changes to kwin/effects/resize/resize_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) 2010 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 "resize_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
ResizeEffectConfigForm::ResizeEffectConfigForm(QWidget* parent) : QWidget(parent)
 
33
{
 
34
    setupUi(this);
 
35
}
 
36
 
 
37
ResizeEffectConfig::ResizeEffectConfig(QWidget* parent, const QVariantList& args) :
 
38
    KCModule(EffectFactory::componentData(), parent, args)
 
39
{
 
40
    m_ui = new ResizeEffectConfigForm(this);
 
41
 
 
42
    QVBoxLayout* layout = new QVBoxLayout(this);
 
43
 
 
44
    layout->addWidget(m_ui);
 
45
 
 
46
    connect(m_ui->scaleBox, SIGNAL(stateChanged(int)), this, SLOT(changed()));
 
47
    connect(m_ui->outlineBox, SIGNAL(stateChanged(int)), this, SLOT(changed()));
 
48
 
 
49
    load();
 
50
}
 
51
 
 
52
void ResizeEffectConfig::load()
 
53
{
 
54
    KCModule::load();
 
55
 
 
56
    KConfigGroup conf = EffectsHandler::effectConfig("Resize");
 
57
    m_ui->scaleBox->setChecked(conf.readEntry<bool>("TextureScale", true));
 
58
    m_ui->outlineBox->setChecked(conf.readEntry<bool>("Outline" , false));
 
59
 
 
60
    emit changed(false);
 
61
}
 
62
 
 
63
void ResizeEffectConfig::save()
 
64
{
 
65
    KConfigGroup conf = EffectsHandler::effectConfig("Resize");
 
66
    conf.writeEntry("TextureScale", m_ui->scaleBox->isChecked());
 
67
    conf.writeEntry("Outline", m_ui->outlineBox->isChecked());
 
68
 
 
69
    conf.sync();
 
70
 
 
71
    emit changed(false);
 
72
    EffectsHandler::sendReloadMessage("resize");
 
73
}
 
74
 
 
75
void ResizeEffectConfig::defaults()
 
76
{
 
77
    m_ui->scaleBox->setChecked(true);
 
78
    m_ui->outlineBox->setChecked(false);
 
79
    emit changed(true);
 
80
}
 
81
 
 
82
} // namespace
 
83
 
 
84
#include "resize_config.moc"