2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-11-13 18:14:56 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Rivo Laks <rivolaks@hot.ee>
|
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
#include "invert_config.h"
|
|
|
|
|
|
|
|
#include <kwineffects.h>
|
|
|
|
|
|
|
|
#include <klocale.h>
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <KActionCollection>
|
|
|
|
#include <kaction.h>
|
|
|
|
#include <KShortcutsEditor>
|
|
|
|
|
|
|
|
#include <QVBoxLayout>
|
2009-02-05 15:35:38 +00:00
|
|
|
|
2007-11-13 18:14:56 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2009-02-05 15:35:38 +00:00
|
|
|
KWIN_EFFECT_CONFIG_FACTORY
|
|
|
|
|
2007-11-13 18:14:56 +00:00
|
|
|
InvertEffectConfig::InvertEffectConfig(QWidget* parent, const QVariantList& args) :
|
2011-01-30 14:34:42 +00:00
|
|
|
KCModule(EffectFactory::componentData(), parent, args)
|
|
|
|
{
|
2007-11-13 18:14:56 +00:00
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
2009-02-11 00:34:09 +00:00
|
|
|
|
|
|
|
// Shortcut config. The shortcut belongs to the component "kwin"!
|
2011-01-30 14:34:42 +00:00
|
|
|
KActionCollection *actionCollection = new KActionCollection(this, KComponentData("kwin"));
|
2008-08-27 12:20:34 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KAction* a = static_cast<KAction*>(actionCollection->addAction("Invert"));
|
|
|
|
a->setText(i18n("Toggle Invert Effect"));
|
2008-05-25 20:31:33 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2008-06-06 01:06:21 +00:00
|
|
|
a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::META + Qt::Key_I));
|
2007-11-13 18:14:56 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KAction* b = static_cast<KAction*>(actionCollection->addAction("InvertWindow"));
|
|
|
|
b->setText(i18n("Toggle Invert Effect on Window"));
|
2008-08-27 12:20:34 +00:00
|
|
|
b->setProperty("isConfigurationAction", true);
|
|
|
|
b->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::META + Qt::Key_U));
|
|
|
|
|
2007-11-13 18:14:56 +00:00
|
|
|
mShortcutEditor = new KShortcutsEditor(actionCollection, this,
|
2011-01-30 14:34:42 +00:00
|
|
|
KShortcutsEditor::GlobalAction, KShortcutsEditor::LetterShortcutsDisallowed);
|
2007-11-13 18:14:56 +00:00
|
|
|
connect(mShortcutEditor, SIGNAL(keyChange()), this, SLOT(changed()));
|
|
|
|
layout->addWidget(mShortcutEditor);
|
|
|
|
|
|
|
|
load();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
InvertEffectConfig::~InvertEffectConfig()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-05-25 20:31:33 +00:00
|
|
|
// Undo (only) unsaved changes to global key shortcuts
|
|
|
|
mShortcutEditor->undoChanges();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
void InvertEffectConfig::load()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-11-13 18:14:56 +00:00
|
|
|
KCModule::load();
|
|
|
|
|
|
|
|
emit changed(false);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
void InvertEffectConfig::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-11-13 18:14:56 +00:00
|
|
|
KCModule::save();
|
|
|
|
|
2008-05-25 20:31:33 +00:00
|
|
|
mShortcutEditor->save(); // undo() will restore to this state from now on
|
|
|
|
|
2007-11-13 18:14:56 +00:00
|
|
|
emit changed(false);
|
2011-01-30 14:34:42 +00:00
|
|
|
EffectsHandler::sendReloadMessage("invert");
|
|
|
|
}
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
void InvertEffectConfig::defaults()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-11-13 18:14:56 +00:00
|
|
|
mShortcutEditor->allDefault();
|
|
|
|
emit changed(true);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 18:14:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#include "invert_config.moc"
|