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);
|
|
|
|
connect(m_ui->editor, SIGNAL(keyChange()), this, SLOT(changed()));
|
|
|
|
connect(m_ui->alt, SIGNAL(stateChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->control, SIGNAL(stateChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->meta, SIGNAL(stateChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->shift, SIGNAL(stateChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->alt, SIGNAL(toggled(bool)), this, SLOT(enableEditor(bool)));
|
|
|
|
connect(m_ui->control, SIGNAL(toggled(bool)), this, SLOT(enableEditor(bool)));
|
|
|
|
connect(m_ui->meta, SIGNAL(toggled(bool)), this, SLOT(enableEditor(bool)));
|
|
|
|
connect(m_ui->shift, SIGNAL(toggled(bool)), this, SLOT(enableEditor(bool)));
|
|
|
|
m_actionCollection = new KActionCollection(this, KComponentData("kwin"));
|
|
|
|
m_actionCollection->setConfigGroup("TrackMouse");
|
|
|
|
m_actionCollection->setConfigGlobal(true);
|
|
|
|
|
|
|
|
action = static_cast< KAction* >(m_actionCollection->addAction("TrackMouse"));
|
|
|
|
action->setText(i18n("Track mouse"));
|
2010-01-21 14:56:24 +00:00
|
|
|
action->setProperty("isConfigurationAction", true);
|
2011-01-30 14:34:42 +00:00
|
|
|
action->setGlobalShortcut(KShortcut());
|
2010-01-21 14:56:24 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
m_ui->editor->addCollection(m_actionCollection);
|
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
|
|
|
{
|
2010-01-21 14:56:24 +00:00
|
|
|
m_ui->editor->undoChanges();
|
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();
|
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));
|
|
|
|
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");
|
|
|
|
conf.writeEntry("Shift", m_ui->shift->isChecked());
|
|
|
|
conf.writeEntry("Alt", m_ui->alt->isChecked());
|
|
|
|
conf.writeEntry("Control", m_ui->control->isChecked());
|
|
|
|
conf.writeEntry("Meta", m_ui->meta->isChecked());
|
2010-01-21 14:56:24 +00:00
|
|
|
m_ui->editor->save();
|
|
|
|
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
|
|
|
{
|
2010-01-21 14:56:24 +00:00
|
|
|
m_ui->editor->allDefault();
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TrackMouseEffectConfig::enableEditor(bool enabled)
|
|
|
|
{
|
|
|
|
if (!enabled && !m_ui->alt->isChecked() && !m_ui->shift->isChecked() && !m_ui->meta->isChecked() && !m_ui->control->isChecked()) {
|
|
|
|
m_ui->editor->setEnabled(true);
|
|
|
|
emit changed(true);
|
|
|
|
} else if (enabled && (m_ui->alt->isChecked() || m_ui->shift->isChecked() || m_ui->meta->isChecked() || m_ui->control->isChecked())) {
|
|
|
|
m_ui->editor->setEnabled(false);
|
|
|
|
action->setGlobalShortcut(KShortcut(), KAction::ShortcutTypes(KAction::ActiveShortcut | KAction::DefaultShortcut), KAction::NoAutoloading);
|
2010-01-21 14:56:24 +00:00
|
|
|
emit changed(true);
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
emit changed(true);
|
|
|
|
}
|
2007-11-13 21:50:00 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#include "trackmouse_config.moc"
|