2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2007-05-28 11:34:12 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2007 Rivo Laks <rivolaks@hot.ee>
|
|
|
|
SPDX-FileCopyrightText: 2008 Lucas Murray <lmurray@undefinedfire.com>
|
2007-05-28 11:34:12 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
#include "presentwindows_config.h"
|
2012-09-13 06:49:13 +00:00
|
|
|
// KConfigSkeleton
|
|
|
|
#include "presentwindowsconfig.h"
|
2016-12-02 19:27:43 +00:00
|
|
|
#include <config-kwin.h>
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <kwineffects_interface.h>
|
2013-08-14 19:13:12 +00:00
|
|
|
#include <QAction>
|
2007-05-28 11:34:12 +00:00
|
|
|
|
2007-10-05 22:21:25 +00:00
|
|
|
#include <kconfiggroup.h>
|
2007-09-25 09:41:06 +00:00
|
|
|
#include <KActionCollection>
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KAboutData>
|
|
|
|
#include <KGlobalAccel>
|
2014-03-17 13:56:11 +00:00
|
|
|
#include <KLocalizedString>
|
2014-03-18 15:09:20 +00:00
|
|
|
#include <KPluginFactory>
|
2007-05-28 11:34:12 +00:00
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
#include <QVBoxLayout>
|
2007-05-28 11:34:12 +00:00
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON(PresentWindowsEffectConfigFactory,
|
|
|
|
"presentwindows_config.json",
|
|
|
|
registerPlugin<KWin::PresentWindowsEffectConfig>();)
|
|
|
|
|
2007-05-28 11:34:12 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
PresentWindowsEffectConfigForm::PresentWindowsEffectConfigForm(QWidget* parent) : QWidget(parent)
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
setupUi(this);
|
2008-08-25 09:17:15 +00:00
|
|
|
}
|
2007-09-25 09:41:06 +00:00
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
PresentWindowsEffectConfig::PresentWindowsEffectConfig(QWidget* parent, const QVariantList& args)
|
2020-10-21 17:03:07 +00:00
|
|
|
: KCModule(parent, args)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
m_ui = new PresentWindowsEffectConfigForm(this);
|
2008-08-25 09:17:15 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
2008-08-25 09:17:15 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
layout->addWidget(m_ui);
|
2008-08-25 09:17:15 +00:00
|
|
|
|
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"));
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2015-08-12 07:19:05 +00:00
|
|
|
m_actionCollection->setComponentDisplayName(i18n("KWin"));
|
2013-07-23 05:02:52 +00:00
|
|
|
m_actionCollection->setConfigGroup(QStringLiteral("PresentWindows"));
|
2011-01-30 14:34:42 +00:00
|
|
|
m_actionCollection->setConfigGlobal(true);
|
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
QAction* a = m_actionCollection->addAction(QStringLiteral("ExposeAll"));
|
2011-01-30 14:34:42 +00:00
|
|
|
a->setText(i18n("Toggle Present Windows (All desktops)"));
|
|
|
|
a->setProperty("isConfigurationAction", true);
|
2014-06-20 07:26:28 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(a, QList<QKeySequence>() << Qt::CTRL + Qt::Key_F10 << Qt::Key_LaunchC);
|
|
|
|
KGlobalAccel::self()->setShortcut(a, QList<QKeySequence>() << Qt::CTRL + Qt::Key_F10 << Qt::Key_LaunchC);
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
QAction* b = m_actionCollection->addAction(QStringLiteral("Expose"));
|
2011-01-30 14:34:42 +00:00
|
|
|
b->setText(i18n("Toggle Present Windows (Current desktop)"));
|
|
|
|
b->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(b, QList<QKeySequence>() << Qt::CTRL + Qt::Key_F9);
|
|
|
|
KGlobalAccel::self()->setShortcut(b, QList<QKeySequence>() << Qt::CTRL + Qt::Key_F9);
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2013-08-14 19:13:12 +00:00
|
|
|
QAction* c = m_actionCollection->addAction(QStringLiteral("ExposeClass"));
|
2011-01-30 14:34:42 +00:00
|
|
|
c->setText(i18n("Toggle Present Windows (Window class)"));
|
|
|
|
c->setProperty("isConfigurationAction", true);
|
2013-08-14 19:13:12 +00:00
|
|
|
KGlobalAccel::self()->setDefaultShortcut(c, QList<QKeySequence>() << Qt::CTRL + Qt::Key_F7);
|
|
|
|
KGlobalAccel::self()->setShortcut(c, QList<QKeySequence>() << Qt::CTRL + Qt::Key_F7);
|
2011-01-30 14:34:42 +00:00
|
|
|
|
|
|
|
m_ui->shortcutEditor->addCollection(m_actionCollection);
|
|
|
|
|
2019-12-02 09:03:14 +00:00
|
|
|
connect(m_ui->shortcutEditor, &KShortcutsEditor::keyChange, this, &PresentWindowsEffectConfig::markAsChanged);
|
2012-09-13 06:49:13 +00:00
|
|
|
|
2016-12-02 19:27:43 +00:00
|
|
|
PresentWindowsConfig::instance(KWIN_CONFIG);
|
2012-09-13 06:49:13 +00:00
|
|
|
addConfig(PresentWindowsConfig::self(), m_ui);
|
2007-09-22 12:14:30 +00:00
|
|
|
|
2007-05-28 11:34:12 +00:00
|
|
|
load();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
PresentWindowsEffectConfig::~PresentWindowsEffectConfig()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2020-09-21 14:14:43 +00:00
|
|
|
// If save() is called undo() has no effect
|
|
|
|
m_ui->shortcutEditor->undo();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-05-28 11:34:12 +00:00
|
|
|
KCModule::save();
|
2008-08-25 09:17:15 +00:00
|
|
|
m_ui->shortcutEditor->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("presentwindows"));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::defaults()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-08-25 09:17:15 +00:00
|
|
|
m_ui->shortcutEditor->allDefault();
|
2012-09-13 06:49:13 +00:00
|
|
|
KCModule::defaults();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2014-03-17 13:56:11 +00:00
|
|
|
#include "presentwindows_config.moc"
|