2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-09-25 17:52:19 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Rivo Laks <rivolaks@hot.ee>
|
2008-08-12 15:22:06 +00:00
|
|
|
Copyright (C) 2008 Lucas Murray <lmurray@undefinedfire.com>
|
2007-09-25 17:52:19 +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-09-25 17:52:19 +00:00
|
|
|
|
|
|
|
#include "desktopgrid_config.h"
|
2012-09-14 12:34:40 +00:00
|
|
|
// KConfigSkeleton
|
|
|
|
#include "desktopgridconfig.h"
|
|
|
|
|
2007-09-25 17:52:19 +00:00
|
|
|
#include <kwineffects.h>
|
|
|
|
|
2008-08-12 15:22:06 +00:00
|
|
|
#include <kconfiggroup.h>
|
2007-09-25 17:52:19 +00:00
|
|
|
#include <KActionCollection>
|
|
|
|
#include <kaction.h>
|
|
|
|
|
|
|
|
#include <QVBoxLayout>
|
2008-08-12 15:22:06 +00:00
|
|
|
|
2007-09-25 17:52:19 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2009-02-05 15:35:38 +00:00
|
|
|
KWIN_EFFECT_CONFIG_FACTORY
|
|
|
|
|
2008-08-12 15:22:06 +00:00
|
|
|
DesktopGridEffectConfigForm::DesktopGridEffectConfigForm(QWidget* parent) : QWidget(parent)
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
setupUi(this);
|
2008-08-12 15:22:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DesktopGridEffectConfig::DesktopGridEffectConfig(QWidget* parent, const QVariantList& args)
|
2011-01-30 14:34:42 +00:00
|
|
|
: KCModule(EffectFactory::componentData(), parent, args)
|
|
|
|
{
|
|
|
|
m_ui = new DesktopGridEffectConfigForm(this);
|
2008-08-12 15:22:06 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
2008-08-12 15:22:06 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
layout->addWidget(m_ui);
|
2008-08-12 15:22:06 +00:00
|
|
|
|
2009-02-11 00:34:09 +00:00
|
|
|
// Shortcut config. The shortcut belongs to the component "kwin"!
|
2011-01-30 14:34:42 +00:00
|
|
|
m_actionCollection = new KActionCollection(this, KComponentData("kwin"));
|
|
|
|
|
|
|
|
m_actionCollection->setConfigGroup("DesktopGrid");
|
|
|
|
m_actionCollection->setConfigGlobal(true);
|
|
|
|
|
|
|
|
KAction* a = (KAction*) m_actionCollection->addAction("ShowDesktopGrid");
|
|
|
|
a->setText(i18n("Show Desktop Grid"));
|
|
|
|
a->setProperty("isConfigurationAction", true);
|
|
|
|
a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F8));
|
|
|
|
|
|
|
|
m_ui->shortcutEditor->addCollection(m_actionCollection);
|
|
|
|
|
2012-09-14 12:34:40 +00:00
|
|
|
m_ui->desktopNameAlignmentCombo->addItem(i18nc("Desktop name alignment:", "Disabled"), QVariant(Qt::Alignment(0)));
|
|
|
|
m_ui->desktopNameAlignmentCombo->addItem(i18n("Top"), QVariant(Qt::AlignHCenter | Qt::AlignTop));
|
|
|
|
m_ui->desktopNameAlignmentCombo->addItem(i18n("Top-Right"), QVariant(Qt::AlignRight | Qt::AlignTop));
|
|
|
|
m_ui->desktopNameAlignmentCombo->addItem(i18n("Right"), QVariant(Qt::AlignRight | Qt::AlignVCenter));
|
|
|
|
m_ui->desktopNameAlignmentCombo->addItem(i18n("Bottom-Right"), QVariant(Qt::AlignRight | Qt::AlignBottom));
|
|
|
|
m_ui->desktopNameAlignmentCombo->addItem(i18n("Bottom"), QVariant(Qt::AlignHCenter | Qt::AlignBottom));
|
|
|
|
m_ui->desktopNameAlignmentCombo->addItem(i18n("Bottom-Left"), QVariant(Qt::AlignLeft | Qt::AlignBottom));
|
|
|
|
m_ui->desktopNameAlignmentCombo->addItem(i18n("Left"), QVariant(Qt::AlignLeft | Qt::AlignVCenter));
|
|
|
|
m_ui->desktopNameAlignmentCombo->addItem(i18n("Top-Left"), QVariant(Qt::AlignLeft | Qt::AlignTop));
|
|
|
|
m_ui->desktopNameAlignmentCombo->addItem(i18n("Center"), QVariant(Qt::AlignCenter));
|
|
|
|
|
|
|
|
addConfig(DesktopGridConfig::self(), m_ui);
|
|
|
|
connect(m_ui->kcfg_LayoutMode, SIGNAL(currentIndexChanged(int)), this, SLOT(layoutSelectionChanged()));
|
2011-01-30 14:34:42 +00:00
|
|
|
connect(m_ui->desktopNameAlignmentCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
2008-08-12 15:22:06 +00:00
|
|
|
|
|
|
|
load();
|
2012-09-14 12:34:40 +00:00
|
|
|
layoutSelectionChanged();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-09-25 17:52:19 +00:00
|
|
|
|
|
|
|
DesktopGridEffectConfig::~DesktopGridEffectConfig()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-08-12 15:22:06 +00:00
|
|
|
// If save() is called undoChanges() has no effect
|
|
|
|
m_ui->shortcutEditor->undoChanges();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-09-25 17:52:19 +00:00
|
|
|
|
|
|
|
void DesktopGridEffectConfig::save()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-09-14 12:34:40 +00:00
|
|
|
DesktopGridConfig::setDesktopNameAlignment(m_ui->desktopNameAlignmentCombo->itemData(m_ui->desktopNameAlignmentCombo->currentIndex()).toInt());
|
2007-09-25 17:52:19 +00:00
|
|
|
KCModule::save();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KConfigGroup conf = EffectsHandler::effectConfig("DesktopGrid");
|
2012-09-14 12:34:40 +00:00
|
|
|
conf.writeEntry("DesktopNameAlignment", DesktopGridConfig::desktopNameAlignment());
|
2008-08-12 15:22:06 +00:00
|
|
|
conf.sync();
|
2008-05-25 20:31:33 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
EffectsHandler::sendReloadMessage("desktopgrid");
|
|
|
|
}
|
2007-09-25 17:52:19 +00:00
|
|
|
|
2012-09-14 12:34:40 +00:00
|
|
|
void DesktopGridEffectConfig::load()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-09-14 12:34:40 +00:00
|
|
|
KCModule::load();
|
|
|
|
m_ui->desktopNameAlignmentCombo->setCurrentIndex(m_ui->desktopNameAlignmentCombo->findData(QVariant(DesktopGridConfig::desktopNameAlignment())));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-09-25 17:52:19 +00:00
|
|
|
|
2008-08-12 15:22:06 +00:00
|
|
|
void DesktopGridEffectConfig::layoutSelectionChanged()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-09-14 12:34:40 +00:00
|
|
|
if (m_ui->kcfg_LayoutMode->currentIndex() == DesktopGridEffect::LayoutCustom) {
|
2011-01-30 14:34:42 +00:00
|
|
|
m_ui->layoutRowsLabel->setEnabled(true);
|
2012-09-14 12:34:40 +00:00
|
|
|
m_ui->kcfg_CustomLayoutRows->setEnabled(true);
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
|
|
|
m_ui->layoutRowsLabel->setEnabled(false);
|
2012-09-14 12:34:40 +00:00
|
|
|
m_ui->kcfg_CustomLayoutRows->setEnabled(false);
|
2008-08-12 15:22:06 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2008-08-12 15:22:06 +00:00
|
|
|
|
2012-09-14 12:34:40 +00:00
|
|
|
void DesktopGridEffectConfig::defaults()
|
|
|
|
{
|
|
|
|
KCModule::defaults();
|
|
|
|
m_ui->desktopNameAlignmentCombo->setCurrentIndex(0);
|
|
|
|
}
|
|
|
|
|
2007-09-25 17:52:19 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#include "desktopgrid_config.moc"
|