2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-11-13 16:20:52 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Christian Nitschkowski <christian.nitschkowski@kdemail.net>
|
|
|
|
|
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 16:20:52 +00:00
|
|
|
|
|
|
|
#include "magnifier_config.h"
|
2012-09-13 20:25:18 +00:00
|
|
|
// KConfigSkeleton
|
|
|
|
#include "magnifierconfig.h"
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <kwineffects_interface.h>
|
2007-11-13 16:20:52 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
#include <QAction>
|
2007-11-13 16:20:52 +00:00
|
|
|
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KGlobalAccel>
|
|
|
|
#include <KLocalizedString>
|
2007-11-13 16:20:52 +00:00
|
|
|
#include <kconfiggroup.h>
|
|
|
|
#include <KActionCollection>
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KAboutData>
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <KPluginFactory>
|
2007-11-13 16:20:52 +00:00
|
|
|
|
2013-09-02 09:03:29 +00:00
|
|
|
#include <QDebug>
|
2007-11-13 16:20:52 +00:00
|
|
|
#include <QWidget>
|
2008-09-16 07:41:39 +00:00
|
|
|
#include <QVBoxLayout>
|
2007-11-13 16:20:52 +00:00
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON(MagnifierEffectConfigFactory,
|
|
|
|
"magnifier_config.json",
|
|
|
|
registerPlugin<KWin::MagnifierEffectConfig>();)
|
|
|
|
|
2007-11-13 16:20:52 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
MagnifierEffectConfigForm::MagnifierEffectConfigForm(QWidget* parent) : QWidget(parent)
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
setupUi(this);
|
2007-11-13 16:20:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MagnifierEffectConfig::MagnifierEffectConfig(QWidget* parent, const QVariantList& args) :
|
2013-07-24 05:41:10 +00:00
|
|
|
KCModule(KAboutData::pluginData(QStringLiteral("magnifier")), parent, args)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-11-13 16:20:52 +00:00
|
|
|
m_ui = new MagnifierEffectConfigForm(this);
|
|
|
|
|
2008-09-16 07:41:39 +00:00
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
2007-11-13 16:20:52 +00:00
|
|
|
|
2008-09-16 07:41:39 +00:00
|
|
|
layout->addWidget(m_ui);
|
2007-11-13 16:20:52 +00:00
|
|
|
|
2012-09-13 20:25:18 +00:00
|
|
|
addConfig(MagnifierConfig::self(), m_ui);
|
|
|
|
|
2007-11-13 16:20:52 +00:00
|
|
|
connect(m_ui->editor, SIGNAL(keyChange()), this, SLOT(changed()));
|
|
|
|
|
2009-02-11 00:34:09 +00:00
|
|
|
// Shortcut config. The shortcut belongs to the component "kwin"!
|
2013-08-14 19:13:12 +00:00
|
|
|
m_actionCollection = new KActionCollection(this, QStringLiteral("kwin"));
|
2009-02-11 00:34:09 +00:00
|
|
|
|
2013-07-23 05:02:52 +00:00
|
|
|
m_actionCollection->setConfigGroup(QStringLiteral("Magnifier"));
|
2007-11-13 16:20:52 +00:00
|
|
|
m_actionCollection->setConfigGlobal(true);
|
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
QAction* a;
|
|
|
|
a = m_actionCollection->addAction(KStandardAction::ZoomIn);
|
2008-05-25 20:31:33 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Equal);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Equal);
|
2008-05-25 20:31:33 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
a = m_actionCollection->addAction(KStandardAction::ZoomOut);
|
2008-05-25 20:31:33 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Minus);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Minus);
|
2008-05-25 20:31:33 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
a = m_actionCollection->addAction(KStandardAction::ActualSize);
|
2008-05-25 20:31:33 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_0);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_0);
|
2007-11-13 16:20:52 +00:00
|
|
|
|
2008-06-01 17:33:23 +00:00
|
|
|
m_ui->editor->addCollection(m_actionCollection);
|
2013-08-14 19:13:12 +00:00
|
|
|
|
2012-09-13 20:25:18 +00:00
|
|
|
load();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 16:20:52 +00:00
|
|
|
|
2008-05-25 20:31:33 +00:00
|
|
|
MagnifierEffectConfig::~MagnifierEffectConfig()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-05-25 20:31:33 +00:00
|
|
|
// Undo (only) unsaved changes to global key shortcuts
|
|
|
|
m_ui->editor->undoChanges();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2008-05-25 20:31:33 +00:00
|
|
|
|
2007-11-13 16:20:52 +00:00
|
|
|
void MagnifierEffectConfig::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2013-09-02 09:03:29 +00:00
|
|
|
qDebug() << "Saving config of Magnifier" ;
|
2007-11-13 16:20:52 +00:00
|
|
|
|
2008-05-25 20:31:33 +00:00
|
|
|
m_ui->editor->save(); // undo() will restore to this state from now on
|
2012-09-13 20:25:18 +00:00
|
|
|
KCModule::save();
|
2014-03-18 15:09:20 +00:00
|
|
|
OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.kwin.Effects"),
|
|
|
|
QStringLiteral("/Effects"),
|
|
|
|
QDBusConnection::sessionBus());
|
|
|
|
interface.reconfigureEffect(QStringLiteral("kwin4_effect_magnifier"));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 16:20:52 +00:00
|
|
|
|
|
|
|
void MagnifierEffectConfig::defaults()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-06-01 17:42:18 +00:00
|
|
|
m_ui->editor->allDefault();
|
2012-09-13 20:25:18 +00:00
|
|
|
KCModule::defaults();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 16:20:52 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
#include "magnifier_config.moc"
|