2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-05-28 11:34:12 +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-25 09:17:15 +00:00
|
|
|
Copyright (C) 2008 Lucas Murray <lmurray@undefinedfire.com>
|
2007-05-28 11:34:12 +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-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
#include "presentwindows_config.h"
|
|
|
|
#include <kwineffects.h>
|
|
|
|
|
2007-10-05 22:21:25 +00:00
|
|
|
#include <kconfiggroup.h>
|
2007-09-25 09:41:06 +00:00
|
|
|
#include <KActionCollection>
|
|
|
|
#include <kaction.h>
|
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
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2009-02-05 15:35:38 +00:00
|
|
|
KWIN_EFFECT_CONFIG_FACTORY
|
|
|
|
|
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)
|
2011-01-30 14:34:42 +00:00
|
|
|
: KCModule(EffectFactory::componentData(), parent, args)
|
|
|
|
{
|
|
|
|
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"!
|
2011-01-30 14:34:42 +00:00
|
|
|
m_actionCollection = new KActionCollection(this, KComponentData("kwin"));
|
|
|
|
|
|
|
|
m_actionCollection->setConfigGroup("PresentWindows");
|
|
|
|
m_actionCollection->setConfigGlobal(true);
|
|
|
|
|
|
|
|
KAction* a = (KAction*) m_actionCollection->addAction("ExposeAll");
|
|
|
|
a->setText(i18n("Toggle Present Windows (All desktops)"));
|
|
|
|
a->setProperty("isConfigurationAction", true);
|
|
|
|
a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F10));
|
|
|
|
|
|
|
|
KAction* b = (KAction*) m_actionCollection->addAction("Expose");
|
|
|
|
b->setText(i18n("Toggle Present Windows (Current desktop)"));
|
|
|
|
b->setProperty("isConfigurationAction", true);
|
|
|
|
b->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F9));
|
|
|
|
|
|
|
|
KAction* c = (KAction*)m_actionCollection->addAction("ExposeClass");
|
|
|
|
c->setText(i18n("Toggle Present Windows (Window class)"));
|
|
|
|
c->setProperty("isConfigurationAction", true);
|
|
|
|
c->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F7));
|
|
|
|
|
|
|
|
m_ui->shortcutEditor->addCollection(m_actionCollection);
|
|
|
|
|
|
|
|
connect(m_ui->layoutCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->displayTitleBox, SIGNAL(stateChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->displayIconBox, SIGNAL(stateChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->allowClosing, SIGNAL(stateChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->ignoreMinimizedBox, SIGNAL(stateChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->showPanelBox, SIGNAL(stateChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->accuracySlider, SIGNAL(valueChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->fillGapsBox, SIGNAL(stateChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->shortcutEditor, SIGNAL(keyChange()), this, SLOT(changed()));
|
|
|
|
connect(m_ui->leftButtonWindowCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->middleButtonWindowCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->rightButtonWindowCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->leftButtonDesktopCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->middleButtonDesktopCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
|
|
|
connect(m_ui->rightButtonDesktopCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
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
|
|
|
{
|
2008-08-25 09:17:15 +00:00
|
|
|
// If save() is called undoChanges() has no effect
|
|
|
|
m_ui->shortcutEditor->undoChanges();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::load()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-05-28 11:34:12 +00:00
|
|
|
KCModule::load();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KConfigGroup conf = EffectsHandler::effectConfig("PresentWindows");
|
|
|
|
|
|
|
|
int layoutMode = conf.readEntry("LayoutMode", int(PresentWindowsEffect::LayoutNatural));
|
|
|
|
m_ui->layoutCombo->setCurrentIndex(layoutMode);
|
2007-05-28 11:34:12 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool displayTitle = conf.readEntry("DrawWindowCaptions", true);
|
|
|
|
m_ui->displayTitleBox->setChecked(displayTitle);
|
2008-08-25 09:17:15 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool displayIcon = conf.readEntry("DrawWindowIcons", true);
|
|
|
|
m_ui->displayIconBox->setChecked(displayIcon);
|
2008-08-25 09:17:15 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool allowClosing = conf.readEntry("AllowClosingWindows", true);
|
|
|
|
m_ui->allowClosing->setChecked(allowClosing);
|
2008-08-25 09:17:15 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool ignoreMinimized = conf.readEntry("IgnoreMinimized", false);
|
|
|
|
m_ui->ignoreMinimizedBox->setChecked(ignoreMinimized);
|
2008-10-21 07:15:35 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool showPanel = conf.readEntry("ShowPanel", false);
|
|
|
|
m_ui->showPanelBox->setChecked(showPanel);
|
2009-01-13 10:19:47 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
int accuracy = conf.readEntry("Accuracy", 1);
|
|
|
|
m_ui->accuracySlider->setSliderPosition(accuracy);
|
2008-08-25 09:17:15 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool fillGaps = conf.readEntry("FillGaps", true);
|
|
|
|
m_ui->fillGapsBox->setChecked(fillGaps);
|
2007-09-25 09:41:06 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
int leftButtonWindow = conf.readEntry("LeftButtonWindow", int(PresentWindowsEffect::WindowActivateAction));
|
|
|
|
m_ui->leftButtonWindowCombo->setCurrentIndex(leftButtonWindow);
|
|
|
|
int middleButtonWindow = conf.readEntry("MiddleButtonWindow", int(PresentWindowsEffect::WindowNoAction));
|
|
|
|
m_ui->middleButtonWindowCombo->setCurrentIndex(middleButtonWindow);
|
|
|
|
int rightButtonWindow = conf.readEntry("RightButtonWindow", int(PresentWindowsEffect::WindowExitAction));
|
|
|
|
m_ui->rightButtonWindowCombo->setCurrentIndex(rightButtonWindow);
|
2009-06-28 17:17:29 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
int leftButtonDesktop = conf.readEntry("LeftButtonDesktop", int(PresentWindowsEffect::DesktopExitAction));
|
|
|
|
m_ui->leftButtonDesktopCombo->setCurrentIndex(leftButtonDesktop);
|
|
|
|
int middleButtonDesktop = conf.readEntry("MiddleButtonDesktop", int(PresentWindowsEffect::DesktopNoAction));
|
|
|
|
m_ui->middleButtonDesktopCombo->setCurrentIndex(middleButtonDesktop);
|
|
|
|
int rightButtonDesktop = conf.readEntry("RightButtonDesktop", int(PresentWindowsEffect::DesktopNoAction));
|
|
|
|
m_ui->rightButtonDesktopCombo->setCurrentIndex(rightButtonDesktop);
|
2009-06-28 17:17:29 +00:00
|
|
|
|
2007-05-28 11:34:12 +00:00
|
|
|
emit changed(false);
|
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();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KConfigGroup conf = EffectsHandler::effectConfig("PresentWindows");
|
2007-05-28 11:34:12 +00:00
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
int layoutMode = m_ui->layoutCombo->currentIndex();
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("LayoutMode", layoutMode);
|
2007-05-28 11:34:12 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("DrawWindowCaptions", m_ui->displayTitleBox->isChecked());
|
|
|
|
conf.writeEntry("DrawWindowIcons", m_ui->displayIconBox->isChecked());
|
|
|
|
conf.writeEntry("AllowClosingWindows", m_ui->allowClosing->isChecked());
|
|
|
|
conf.writeEntry("IgnoreMinimized", m_ui->ignoreMinimizedBox->isChecked());
|
|
|
|
conf.writeEntry("ShowPanel", m_ui->showPanelBox->isChecked());
|
2008-03-28 17:26:04 +00:00
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
int accuracy = m_ui->accuracySlider->value();
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("Accuracy", accuracy);
|
2008-08-13 12:25:19 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("FillGaps", m_ui->fillGapsBox->isChecked());
|
2008-08-25 09:17:15 +00:00
|
|
|
|
2009-06-28 17:17:29 +00:00
|
|
|
int leftButtonWindow = m_ui->leftButtonWindowCombo->currentIndex();
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("LeftButtonWindow", leftButtonWindow);
|
2009-06-28 17:17:29 +00:00
|
|
|
int middleButtonWindow = m_ui->middleButtonWindowCombo->currentIndex();
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("MiddleButtonWindow", middleButtonWindow);
|
2009-06-28 17:17:29 +00:00
|
|
|
int rightButtonWindow = m_ui->rightButtonWindowCombo->currentIndex();
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("RightButtonWindow", rightButtonWindow);
|
2009-06-28 17:17:29 +00:00
|
|
|
|
|
|
|
int leftButtonDesktop = m_ui->leftButtonDesktopCombo->currentIndex();
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("LeftButtonDesktop", leftButtonDesktop);
|
2009-06-28 17:17:29 +00:00
|
|
|
int middleButtonDesktop = m_ui->middleButtonDesktopCombo->currentIndex();
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("MiddleButtonDesktop", middleButtonDesktop);
|
2009-06-28 17:17:29 +00:00
|
|
|
int rightButtonDesktop = m_ui->rightButtonDesktopCombo->currentIndex();
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("RightButtonDesktop", rightButtonDesktop);
|
2009-06-28 17:17:29 +00:00
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
m_ui->shortcutEditor->save();
|
|
|
|
|
|
|
|
conf.sync();
|
2008-05-25 20:31:33 +00:00
|
|
|
|
2007-05-28 11:34:12 +00:00
|
|
|
emit changed(false);
|
2011-01-30 14:34:42 +00:00
|
|
|
EffectsHandler::sendReloadMessage("presentwindows");
|
|
|
|
}
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::defaults()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
m_ui->layoutCombo->setCurrentIndex(int(PresentWindowsEffect::LayoutNatural));
|
|
|
|
m_ui->displayTitleBox->setChecked(true);
|
|
|
|
m_ui->displayIconBox->setChecked(true);
|
|
|
|
m_ui->allowClosing->setChecked(true);
|
|
|
|
m_ui->ignoreMinimizedBox->setChecked(false);
|
|
|
|
m_ui->showPanelBox->setChecked(false);
|
|
|
|
m_ui->accuracySlider->setSliderPosition(1);
|
|
|
|
m_ui->fillGapsBox->setChecked(true);
|
2008-08-25 09:17:15 +00:00
|
|
|
m_ui->shortcutEditor->allDefault();
|
2011-01-30 14:34:42 +00:00
|
|
|
m_ui->leftButtonWindowCombo->setCurrentIndex(int(PresentWindowsEffect::WindowActivateAction));
|
|
|
|
m_ui->middleButtonWindowCombo->setCurrentIndex(int(PresentWindowsEffect::WindowNoAction));
|
|
|
|
m_ui->rightButtonWindowCombo->setCurrentIndex(int(PresentWindowsEffect::WindowExitAction));
|
|
|
|
m_ui->leftButtonDesktopCombo->setCurrentIndex(int(PresentWindowsEffect::DesktopExitAction));
|
|
|
|
m_ui->middleButtonDesktopCombo->setCurrentIndex(int(PresentWindowsEffect::DesktopNoAction));
|
|
|
|
m_ui->rightButtonDesktopCombo->setCurrentIndex(int(PresentWindowsEffect::DesktopNoAction));
|
2007-05-28 11:34:12 +00:00
|
|
|
emit changed(true);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#include "presentwindows_config.moc"
|