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>
|
|
|
|
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
|
|
License. See the file "COPYING" for the exact licensing terms.
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
#include "presentwindows_config.h"
|
|
|
|
|
|
|
|
#include <kwineffects.h>
|
|
|
|
|
|
|
|
#include <klocale.h>
|
|
|
|
#include <kdebug.h>
|
2007-09-25 09:41:06 +00:00
|
|
|
#include <KActionCollection>
|
|
|
|
#include <kaction.h>
|
|
|
|
#include <KShortcutsEditor>
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QGridLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QComboBox>
|
|
|
|
|
2007-09-20 18:06:36 +00:00
|
|
|
KWIN_EFFECT_CONFIG_FACTORY
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2007-09-20 17:48:27 +00:00
|
|
|
PresentWindowsEffectConfig::PresentWindowsEffectConfig(QWidget* parent, const QVariantList& args) :
|
|
|
|
KCModule(EffectFactory::componentData(), parent, args)
|
2007-05-28 11:34:12 +00:00
|
|
|
{
|
2007-08-20 21:33:48 +00:00
|
|
|
kDebug() ;
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
QGridLayout* layout = new QGridLayout(this);
|
|
|
|
|
|
|
|
layout->addWidget(new QLabel(i18n("Activate when cursor is at a specific edge "
|
2007-09-22 12:00:23 +00:00
|
|
|
"or corner of the screen:"), this), 0, 0, 1, 3);
|
2007-05-28 11:34:12 +00:00
|
|
|
layout->addItem(new QSpacerItem(20, 20, QSizePolicy::Fixed), 1, 0, 2, 1);
|
|
|
|
|
2007-09-22 12:00:23 +00:00
|
|
|
layout->addWidget(new QLabel(i18n("for windows on current desktop: "), this), 1, 1);
|
2007-05-28 11:34:12 +00:00
|
|
|
mActivateCombo = new QComboBox;
|
|
|
|
addItems(mActivateCombo);
|
|
|
|
connect(mActivateCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
|
|
|
layout->addWidget(mActivateCombo, 1, 2);
|
|
|
|
|
2007-09-22 12:14:30 +00:00
|
|
|
layout->addWidget(new QLabel(i18n("for windows on all desktops: "), this), 2, 1);
|
2007-05-28 11:34:12 +00:00
|
|
|
mActivateAllCombo = new QComboBox;
|
|
|
|
addItems(mActivateAllCombo);
|
|
|
|
connect(mActivateAllCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(changed()));
|
|
|
|
layout->addWidget(mActivateAllCombo, 2, 2);
|
|
|
|
|
2007-09-22 12:14:30 +00:00
|
|
|
layout->addItem(new QSpacerItem(10, 10, QSizePolicy::Fixed, QSizePolicy::Expanding), 3, 0, 1, 3);
|
|
|
|
|
2007-09-25 09:41:06 +00:00
|
|
|
// Shortcut config
|
|
|
|
mActionCollection = new KActionCollection( this );
|
|
|
|
KAction* a = (KAction*)mActionCollection->addAction( "Expose" );
|
|
|
|
a->setText( i18n("Toggle Expose effect" ));
|
|
|
|
a->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F10));
|
|
|
|
KAction* b = (KAction*)mActionCollection->addAction( "ExposeAll" );
|
|
|
|
b->setText( i18n("Toggle Expose effect (incl other desktops)" ));
|
|
|
|
b->setGlobalShortcut(KShortcut(Qt::CTRL + Qt::Key_F11));
|
|
|
|
KShortcutsEditor* shortcutEditor = new KShortcutsEditor(mActionCollection, this,
|
|
|
|
KShortcutsEditor::GlobalAction, KShortcutsEditor::LetterShortcutsDisallowed);
|
|
|
|
connect(shortcutEditor, SIGNAL(keyChange()), this, SLOT(changed()));
|
|
|
|
layout->addWidget(shortcutEditor, 4, 0, 1, 3);
|
|
|
|
|
|
|
|
layout->addItem(new QSpacerItem(10, 10, QSizePolicy::Minimum, QSizePolicy::Expanding), 5, 0, 1, 3);
|
2007-09-22 12:14:30 +00:00
|
|
|
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
load();
|
|
|
|
}
|
|
|
|
|
|
|
|
PresentWindowsEffectConfig::~PresentWindowsEffectConfig()
|
|
|
|
{
|
2007-08-20 21:33:48 +00:00
|
|
|
kDebug() ;
|
2007-05-28 11:34:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::addItems(QComboBox* combo)
|
|
|
|
{
|
|
|
|
combo->addItem(i18n("Top"));
|
|
|
|
combo->addItem(i18n("Top-right"));
|
|
|
|
combo->addItem(i18n("Right"));
|
|
|
|
combo->addItem(i18n("Bottom-right"));
|
|
|
|
combo->addItem(i18n("Bottom"));
|
|
|
|
combo->addItem(i18n("Bottom-left"));
|
|
|
|
combo->addItem(i18n("Left"));
|
|
|
|
combo->addItem(i18n("Top-left"));
|
|
|
|
combo->addItem(i18n("None"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::load()
|
|
|
|
{
|
2007-08-20 21:33:48 +00:00
|
|
|
kDebug() ;
|
2007-05-28 11:34:12 +00:00
|
|
|
KCModule::load();
|
|
|
|
|
2007-05-29 11:48:10 +00:00
|
|
|
KConfigGroup conf = EffectsHandler::effectConfig("PresentWindows");
|
2007-05-28 11:34:12 +00:00
|
|
|
int activateBorder = conf.readEntry("BorderActivate", (int)ElectricTopRight);
|
|
|
|
if(activateBorder == (int)ElectricNone)
|
|
|
|
activateBorder--;
|
|
|
|
mActivateCombo->setCurrentIndex(activateBorder);
|
|
|
|
|
|
|
|
int activateAllBorder = conf.readEntry("BorderActivateAll", (int)ElectricNone);
|
|
|
|
if(activateAllBorder == (int)ElectricNone)
|
|
|
|
activateAllBorder--;
|
|
|
|
mActivateAllCombo->setCurrentIndex(activateAllBorder);
|
2007-09-25 09:41:06 +00:00
|
|
|
|
|
|
|
mActionCollection->readSettings(&conf);
|
|
|
|
|
2007-05-28 11:34:12 +00:00
|
|
|
emit changed(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::save()
|
|
|
|
{
|
2007-08-20 21:33:48 +00:00
|
|
|
kDebug() ;
|
2007-05-28 11:34:12 +00:00
|
|
|
KCModule::save();
|
|
|
|
|
2007-05-29 11:48:10 +00:00
|
|
|
KConfigGroup conf = EffectsHandler::effectConfig("PresentWindows");
|
2007-05-28 11:34:12 +00:00
|
|
|
|
|
|
|
int activateBorder = mActivateCombo->currentIndex();
|
|
|
|
if(activateBorder == (int)ELECTRIC_COUNT)
|
|
|
|
activateBorder = (int)ElectricNone;
|
|
|
|
conf.writeEntry("BorderActivate", activateBorder);
|
|
|
|
|
|
|
|
int activateAllBorder = mActivateAllCombo->currentIndex();
|
|
|
|
if(activateAllBorder == (int)ELECTRIC_COUNT)
|
|
|
|
activateAllBorder = (int)ElectricNone;
|
|
|
|
conf.writeEntry("BorderActivateAll", activateAllBorder);
|
2007-09-25 09:41:06 +00:00
|
|
|
|
|
|
|
mActionCollection->writeSettings(&conf);
|
|
|
|
|
2007-05-28 11:34:12 +00:00
|
|
|
conf.sync();
|
|
|
|
|
|
|
|
emit changed(false);
|
2007-05-29 11:48:10 +00:00
|
|
|
EffectsHandler::sendReloadMessage( "presentwindows" );
|
2007-05-28 11:34:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::defaults()
|
|
|
|
{
|
2007-08-20 21:33:48 +00:00
|
|
|
kDebug() ;
|
2007-05-28 11:34:12 +00:00
|
|
|
mActivateCombo->setCurrentIndex( (int)ElectricTopRight );
|
|
|
|
mActivateAllCombo->setCurrentIndex( (int)ElectricNone - 1 );
|
|
|
|
emit changed(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#include "presentwindows_config.moc"
|