2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-11-13 21:50: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-01-21 14:56:24 +00:00
|
|
|
Copyright (C) 2010 Jorge Mata <matamax123@gmail.com>
|
2007-11-13 21:50: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-13 21:50:00 +00:00
|
|
|
|
|
|
|
#include <kwineffects.h>
|
|
|
|
|
|
|
|
#include <klocale.h>
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <kaction.h>
|
2010-01-21 14:56:24 +00:00
|
|
|
#include <KActionCollection>
|
2007-11-13 21:50:00 +00:00
|
|
|
#include <KShortcutsEditor>
|
|
|
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QLabel>
|
2009-02-05 15:35:38 +00:00
|
|
|
|
2010-01-21 14:56:24 +00:00
|
|
|
#include "trackmouse_config.h"
|
|
|
|
|
2007-11-13 21:50:00 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2009-02-05 15:35:38 +00:00
|
|
|
KWIN_EFFECT_CONFIG_FACTORY
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
TrackMouseEffectConfigForm::TrackMouseEffectConfigForm(QWidget* parent) : QWidget(parent)
|
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
TrackMouseEffectConfig::TrackMouseEffectConfig(QWidget* parent, const QVariantList& args) :
|
|
|
|
KCModule(EffectFactory::componentData(), parent, args)
|
|
|
|
{
|
2007-11-13 21:50:00 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
m_ui = new TrackMouseEffectConfigForm(this);
|
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
|
|
|
layout->addWidget(m_ui);
|
2012-04-19 19:06:11 +00:00
|
|
|
connect(m_ui->alt, SIGNAL(clicked(bool)), SLOT(changed()));
|
|
|
|
connect(m_ui->control, SIGNAL(clicked(bool)), SLOT(changed()));
|
|
|
|
connect(m_ui->meta, SIGNAL(clicked(bool)), SLOT(changed()));
|
|
|
|
connect(m_ui->shift, SIGNAL(clicked(bool)), SLOT(changed()));
|
|
|
|
connect(m_ui->modifierRadio, SIGNAL(clicked(bool)), SLOT(changed()));
|
|
|
|
connect(m_ui->shortcutRadio, SIGNAL(clicked(bool)), SLOT(changed()));
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
m_actionCollection = new KActionCollection(this, KComponentData("kwin"));
|
|
|
|
m_actionCollection->setConfigGroup("TrackMouse");
|
|
|
|
m_actionCollection->setConfigGlobal(true);
|
|
|
|
|
2012-04-19 19:06:11 +00:00
|
|
|
KAction *a = static_cast< KAction* >(m_actionCollection->addAction("TrackMouse"));
|
|
|
|
a->setText(i18n("Track mouse"));
|
|
|
|
a->setProperty("isConfigurationAction", true);
|
|
|
|
a->setGlobalShortcut(KShortcut());
|
|
|
|
connect(m_ui->shortcut, SIGNAL(keySequenceChanged(const QKeySequence&)),
|
|
|
|
SLOT(shortcutChanged(const QKeySequence&)));
|
2007-11-13 21:50:00 +00:00
|
|
|
|
|
|
|
load();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-13 21:50:00 +00:00
|
|
|
|
|
|
|
TrackMouseEffectConfig::~TrackMouseEffectConfig()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
}
|
2007-11-13 21:50:00 +00:00
|
|
|
|
|
|
|
void TrackMouseEffectConfig::load()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-11-13 21:50:00 +00:00
|
|
|
KCModule::load();
|
2012-04-19 19:06:11 +00:00
|
|
|
if (KAction *a = qobject_cast<KAction*>(m_actionCollection->action("TrackMouse")))
|
|
|
|
m_ui->shortcut->setKeySequence(a->globalShortcut().primary());
|
2011-01-30 14:34:42 +00:00
|
|
|
KConfigGroup conf = EffectsHandler::effectConfig("TrackMouse");
|
|
|
|
m_ui->meta->setChecked(conf.readEntry("Meta", true));
|
|
|
|
m_ui->control->setChecked(conf.readEntry("Control", true));
|
|
|
|
m_ui->alt->setChecked(conf.readEntry("Alt", false));
|
|
|
|
m_ui->shift->setChecked(conf.readEntry("Shift", false));
|
2012-04-19 19:06:11 +00:00
|
|
|
const bool modifiers = m_ui->shift->isChecked() || m_ui->alt->isChecked() ||
|
|
|
|
m_ui->control->isChecked() || m_ui->meta->isChecked();
|
|
|
|
m_ui->modifierRadio->setChecked(modifiers);
|
|
|
|
m_ui->shortcutRadio->setChecked(!modifiers);
|
2011-01-30 14:34:42 +00:00
|
|
|
emit changed(false);
|
|
|
|
}
|
2007-11-13 21:50:00 +00:00
|
|
|
|
|
|
|
void TrackMouseEffectConfig::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
KConfigGroup conf = EffectsHandler::effectConfig("TrackMouse");
|
2012-04-19 19:06:11 +00:00
|
|
|
conf.writeEntry("Shift", m_ui->modifierRadio->isChecked() && m_ui->shift->isChecked());
|
|
|
|
conf.writeEntry("Alt", m_ui->modifierRadio->isChecked() && m_ui->alt->isChecked());
|
|
|
|
conf.writeEntry("Control", m_ui->modifierRadio->isChecked() && m_ui->control->isChecked());
|
|
|
|
conf.writeEntry("Meta", m_ui->modifierRadio->isChecked() && m_ui->meta->isChecked());
|
|
|
|
m_actionCollection->writeSettings();
|
2010-01-21 14:56:24 +00:00
|
|
|
conf.sync();
|
2011-01-30 14:34:42 +00:00
|
|
|
emit changed(false);
|
|
|
|
EffectsHandler::sendReloadMessage("trackmouse");
|
|
|
|
}
|
2007-11-13 21:50:00 +00:00
|
|
|
|
|
|
|
void TrackMouseEffectConfig::defaults()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-04-19 19:06:11 +00:00
|
|
|
m_ui->shortcut->clearKeySequence();
|
2011-01-30 14:34:42 +00:00
|
|
|
m_ui->meta->setChecked(true);
|
|
|
|
m_ui->control->setChecked(true);
|
|
|
|
m_ui->alt->setChecked(false);
|
|
|
|
m_ui->shift->setChecked(false);
|
|
|
|
emit changed(true);
|
|
|
|
}
|
|
|
|
|
2012-04-19 19:06:11 +00:00
|
|
|
void TrackMouseEffectConfig::shortcutChanged(const QKeySequence &seq)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-04-19 19:06:11 +00:00
|
|
|
if (KAction *a = qobject_cast<KAction*>(m_actionCollection->action("TrackMouse")))
|
|
|
|
a->setGlobalShortcut(KShortcut(seq), KAction::ActiveShortcut, KAction::NoAutoloading);
|
|
|
|
// m_actionCollection->writeSettings();
|
2011-01-30 14:34:42 +00:00
|
|
|
emit changed(true);
|
|
|
|
}
|
2007-11-13 21:50:00 +00:00
|
|
|
|
2012-04-19 19:06:11 +00:00
|
|
|
|
2007-11-13 21:50:00 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#include "trackmouse_config.moc"
|