2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-11-12 15:11:00 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Rivo Laks <rivolaks@hot.ee>
|
2010-08-11 11:55:26 +00:00
|
|
|
Copyright (C) 2010 Sebastian Sauer <sebsauer@kdab.com>
|
2007-11-12 15:11:00 +00:00
|
|
|
|
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-12 15:11:00 +00:00
|
|
|
|
|
|
|
#include "zoom_config.h"
|
2012-09-09 16:01:07 +00:00
|
|
|
// KConfigSkeleton
|
|
|
|
#include "zoomconfig.h"
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <kwineffects_interface.h>
|
2007-11-12 15:11:00 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
#include <QAction>
|
2007-11-12 15:11:00 +00:00
|
|
|
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KGlobalAccel>
|
|
|
|
#include <KLocalizedString>
|
2007-11-12 15:11:00 +00:00
|
|
|
#include <KActionCollection>
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KAboutData>
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <KPluginFactory>
|
2007-11-12 15:11:00 +00:00
|
|
|
|
|
|
|
#include <QVBoxLayout>
|
2009-02-05 15:35:38 +00:00
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON(ZoomEffectConfigFactory,
|
|
|
|
"zoom_config.json",
|
|
|
|
registerPlugin<KWin::ZoomEffectConfig>();)
|
|
|
|
|
2007-11-12 15:11:00 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2010-08-11 11:55:26 +00:00
|
|
|
ZoomEffectConfigForm::ZoomEffectConfigForm(QWidget* parent) : QWidget(parent)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-08-11 11:55:26 +00:00
|
|
|
setupUi(this);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-08-11 11:55:26 +00:00
|
|
|
|
2007-11-12 15:11:00 +00:00
|
|
|
ZoomEffectConfig::ZoomEffectConfig(QWidget* parent, const QVariantList& args) :
|
2013-07-24 05:41:10 +00:00
|
|
|
KCModule(KAboutData::pluginData(QStringLiteral("zoom")), parent, args)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-08-11 11:55:26 +00:00
|
|
|
m_ui = new ZoomEffectConfigForm(this);
|
|
|
|
|
2007-11-12 15:11:00 +00:00
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
2010-08-11 11:55:26 +00:00
|
|
|
layout->addWidget(m_ui);
|
|
|
|
|
2012-09-09 16:01:07 +00:00
|
|
|
addConfig(ZoomConfig::self(), m_ui);
|
2009-02-11 00:34:09 +00:00
|
|
|
|
2013-07-17 14:51:00 +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
|
|
|
KActionCollection *actionCollection = new KActionCollection(this, QStringLiteral("kwin"));
|
2013-07-23 05:02:52 +00:00
|
|
|
actionCollection->setConfigGroup(QStringLiteral("Zoom"));
|
2010-08-11 11:55:26 +00:00
|
|
|
actionCollection->setConfigGlobal(true);
|
2009-02-11 00:34:09 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
QAction* a;
|
|
|
|
a = 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 = 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 = 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-12 15:11:00 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
a = actionCollection->addAction(QStringLiteral("MoveZoomLeft"));
|
2013-09-05 08:29:33 +00:00
|
|
|
a->setIcon(QIcon::fromTheme(QStringLiteral("go-previous")));
|
2011-01-30 14:34:42 +00:00
|
|
|
a->setText(i18n("Move Left"));
|
2010-08-11 11:55:26 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Left);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Left);
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
a = actionCollection->addAction(QStringLiteral("MoveZoomRight"));
|
2013-09-05 08:29:33 +00:00
|
|
|
a->setIcon(QIcon::fromTheme(QStringLiteral("go-next")));
|
2011-01-30 14:34:42 +00:00
|
|
|
a->setText(i18n("Move Right"));
|
2010-08-11 11:55:26 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Right);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Right);
|
2007-11-12 15:11:00 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
a = actionCollection->addAction(QStringLiteral("MoveZoomUp"));
|
2013-09-05 08:29:33 +00:00
|
|
|
a->setIcon(QIcon::fromTheme(QStringLiteral("go-up")));
|
2011-01-30 14:34:42 +00:00
|
|
|
a->setText(i18n("Move Up"));
|
2010-08-11 11:55:26 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Up);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Up);
|
2007-11-12 15:11:00 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
a = actionCollection->addAction(QStringLiteral("MoveZoomDown"));
|
2013-09-05 08:29:33 +00:00
|
|
|
a->setIcon(QIcon::fromTheme(QStringLiteral("go-down")));
|
2011-01-30 14:34:42 +00:00
|
|
|
a->setText(i18n("Move Down"));
|
2010-08-11 11:55:26 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Down);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_Down);
|
2010-08-11 11:55:26 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
a = actionCollection->addAction(QStringLiteral("MoveMouseToFocus"));
|
2013-09-05 08:29:33 +00:00
|
|
|
a->setIcon(QIcon::fromTheme(QStringLiteral("view-restore")));
|
2011-01-30 14:34:42 +00:00
|
|
|
a->setText(i18n("Move Mouse to Focus"));
|
2010-08-11 11:55:26 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_F5);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_F5);
|
2010-08-11 11:55:26 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
a = actionCollection->addAction(QStringLiteral("MoveMouseToCenter"));
|
2013-09-05 08:29:33 +00:00
|
|
|
a->setIcon(QIcon::fromTheme(QStringLiteral("view-restore")));
|
2011-01-30 14:34:42 +00:00
|
|
|
a->setText(i18n("Move Mouse to Center"));
|
2010-08-11 11:55:26 +00:00
|
|
|
a->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_F6);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::META + Qt::Key_F6);
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2010-08-11 11:55:26 +00:00
|
|
|
m_ui->editor->addCollection(actionCollection);
|
2013-08-14 19:13:12 +00:00
|
|
|
|
2007-11-12 15:11:00 +00:00
|
|
|
load();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-12 15:11:00 +00:00
|
|
|
|
|
|
|
ZoomEffectConfig::~ZoomEffectConfig()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-05-25 20:31:33 +00:00
|
|
|
// Undo (only) unsaved changes to global key shortcuts
|
2010-08-11 11:55:26 +00:00
|
|
|
m_ui->editor->undoChanges();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-12 15:11:00 +00:00
|
|
|
|
|
|
|
void ZoomEffectConfig::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-08-11 11:55:26 +00:00
|
|
|
m_ui->editor->save(); // undo() will restore to this state from now on
|
2012-09-09 16:01:07 +00:00
|
|
|
KCModule::save();
|
2014-05-15 06:39:42 +00:00
|
|
|
OrgKdeKwinEffectsInterface interface(QStringLiteral("org.kde.KWin"),
|
2014-03-18 15:09:20 +00:00
|
|
|
QStringLiteral("/Effects"),
|
|
|
|
QDBusConnection::sessionBus());
|
2014-04-04 09:49:31 +00:00
|
|
|
interface.reconfigureEffect(QStringLiteral("zoom"));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-12 15:11:00 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
#include "zoom_config.moc"
|