Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / workspace / kwin / effects / mousemark_config.cpp
blob58ea7d26b4b86383f54eba320a42d42ea4b85b33
1 /********************************************************************
2 KWin - the KDE window manager
3 This file is part of the KDE project.
5 Copyright (C) 2007 Christian Nitschkowski <christian.nitschkowski@kdemail.net>
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 *********************************************************************/
21 #include "mousemark_config.h"
23 #include <kwineffects.h>
25 #include <klocale.h>
26 #include <kdebug.h>
27 #include <kconfiggroup.h>
28 #include <KActionCollection>
29 #include <kaction.h>
30 #include <KShortcutsEditor>
31 #include <KGlobalAccel>
33 #include <QWidget>
34 #include <QGridLayout>
35 #include <QLabel>
36 #include <QComboBox>
38 KWIN_EFFECT_CONFIG_FACTORY
40 namespace KWin
43 MouseMarkEffectConfigForm::MouseMarkEffectConfigForm(QWidget* parent) : QWidget(parent)
45 setupUi(this);
48 MouseMarkEffectConfig::MouseMarkEffectConfig(QWidget* parent, const QVariantList& args) :
49 KCModule(EffectFactory::componentData(), parent, args)
51 kDebug() ;
53 m_ui = new MouseMarkEffectConfigForm(this);
55 QGridLayout* layout = new QGridLayout(this);
57 layout->addWidget(m_ui, 0, 0);
59 connect(m_ui->editor, SIGNAL(keyChange()), this, SLOT(changed()));
60 connect(m_ui->spinWidth, SIGNAL(valueChanged(int)), this, SLOT(changed()));
61 connect(m_ui->comboColors, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
63 // Shortcut config
64 KGlobalAccel::self()->overrideMainComponentData(componentData());
65 m_actionCollection = new KActionCollection( this, componentData() );
67 KAction* a = static_cast< KAction* >( m_actionCollection->addAction( "ClearMouseMarks" ));
68 a->setText( i18n( "Clear Mouse Marks" ));
69 a->setGlobalShortcut( KShortcut( Qt::SHIFT + Qt::META + Qt::Key_F11 ));
70 a = static_cast< KAction* >( m_actionCollection->addAction( "ClearLastMouseMark" ));
71 a->setText( i18n( "Clear Last Mouse Mark" ));
72 a->setGlobalShortcut( KShortcut( Qt::SHIFT + Qt::META + Qt::Key_F12 ));
73 m_ui->editor->addCollection(m_actionCollection);
75 load();
78 void MouseMarkEffectConfig::load()
80 kDebug() ;
81 KCModule::load();
83 KConfigGroup conf = EffectsHandler::effectConfig("MouseMark");
85 int width = conf.readEntry("LineWidth", 3);
86 QColor color = conf.readEntry("Color", QColor(Qt::red));
87 m_ui->spinWidth->setValue(width);
88 m_ui->comboColors->setColor(color);
90 emit changed(false);
93 void MouseMarkEffectConfig::save()
95 kDebug() << "Saving config of MouseMark" ;
96 //KCModule::save();
98 KConfigGroup conf = EffectsHandler::effectConfig("MouseMark");
100 conf.writeEntry("LineWidth", m_ui->spinWidth->value());
101 conf.writeEntry("Color", m_ui->comboColors->color());
103 conf.sync();
105 emit changed(false);
106 EffectsHandler::sendReloadMessage( "mousemark" );
109 void MouseMarkEffectConfig::defaults()
111 kDebug() ;
112 m_ui->spinWidth->setValue(3);
113 m_ui->comboColors->setColor(Qt::red);
114 emit changed(true);
118 } // namespace
120 #include "mousemark_config.moc"