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>
|
|
|
|
#include <QColor>
|
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)
|
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
}
|
2007-09-25 09:41:06 +00:00
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
PresentWindowsEffectConfig::PresentWindowsEffectConfig(QWidget* parent, const QVariantList& args)
|
|
|
|
: KCModule( EffectFactory::componentData(), parent, args )
|
|
|
|
{
|
|
|
|
m_ui = new PresentWindowsEffectConfigForm( this );
|
|
|
|
|
|
|
|
QVBoxLayout* layout = new QVBoxLayout( this );
|
|
|
|
|
|
|
|
layout->addWidget( m_ui );
|
|
|
|
|
2009-02-11 00:34:09 +00:00
|
|
|
// Shortcut config. The shortcut belongs to the component "kwin"!
|
|
|
|
m_actionCollection = new KActionCollection( this, KComponentData("kwin") );
|
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
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 ));
|
|
|
|
|
|
|
|
m_ui->shortcutEditor->addCollection( m_actionCollection );
|
|
|
|
|
|
|
|
connect( m_ui->layoutCombo, SIGNAL( currentIndexChanged( int )), this, SLOT( changed() ));
|
|
|
|
connect( m_ui->rearrangeDurationSpin, SIGNAL( valueChanged( 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->switchingBox, SIGNAL( stateChanged( int )), this, SLOT( changed() ));
|
2008-10-21 07:15:35 +00:00
|
|
|
connect( m_ui->ignoreMinimizedBox, SIGNAL( stateChanged( int )), this, SLOT( changed() ));
|
2009-01-13 10:19:47 +00:00
|
|
|
connect( m_ui->showPanelBox, SIGNAL( stateChanged( int )), this, SLOT( changed() ));
|
2008-08-25 09:17:15 +00:00
|
|
|
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() ));
|
2009-06-28 17:17:29 +00:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
PresentWindowsEffectConfig::~PresentWindowsEffectConfig()
|
|
|
|
{
|
2008-08-25 09:17:15 +00:00
|
|
|
// If save() is called undoChanges() has no effect
|
|
|
|
m_ui->shortcutEditor->undoChanges();
|
2007-05-28 11:34:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::load()
|
|
|
|
{
|
|
|
|
KCModule::load();
|
|
|
|
|
2008-08-25 09:17:15 +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
|
|
|
|
2008-08-30 07:25:54 +00:00
|
|
|
m_ui->rearrangeDurationSpin->setValue( conf.readEntry( "RearrangeDuration", 0 ));
|
2008-08-25 09:17:15 +00:00
|
|
|
|
|
|
|
bool displayTitle = conf.readEntry( "DrawWindowCaptions", true );
|
|
|
|
m_ui->displayTitleBox->setChecked( displayTitle );
|
|
|
|
|
|
|
|
bool displayIcon = conf.readEntry( "DrawWindowIcons", true );
|
|
|
|
m_ui->displayIconBox->setChecked( displayIcon );
|
|
|
|
|
|
|
|
bool switching = conf.readEntry( "TabBox", false );
|
|
|
|
m_ui->switchingBox->setChecked( switching );
|
|
|
|
|
2008-10-21 07:15:35 +00:00
|
|
|
bool ignoreMinimized = conf.readEntry( "IgnoreMinimized", false );
|
|
|
|
m_ui->ignoreMinimizedBox->setChecked( ignoreMinimized );
|
|
|
|
|
2009-01-13 10:19:47 +00:00
|
|
|
bool showPanel = conf.readEntry( "ShowPanel", false );
|
|
|
|
m_ui->showPanelBox->setChecked( showPanel );
|
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
int accuracy = conf.readEntry( "Accuracy", 1 );
|
|
|
|
m_ui->accuracySlider->setSliderPosition( accuracy );
|
|
|
|
|
|
|
|
bool fillGaps = conf.readEntry( "FillGaps", true );
|
|
|
|
m_ui->fillGapsBox->setChecked( fillGaps );
|
2007-09-25 09:41:06 +00:00
|
|
|
|
2009-06-28 17:17:29 +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 );
|
|
|
|
|
|
|
|
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 );
|
|
|
|
|
2007-05-28 11:34:12 +00:00
|
|
|
emit changed(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::save()
|
|
|
|
{
|
|
|
|
KCModule::save();
|
|
|
|
|
2008-08-25 09:17:15 +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();
|
|
|
|
conf.writeEntry( "LayoutMode", layoutMode );
|
2007-05-28 11:34:12 +00:00
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
conf.writeEntry( "RearrangeDuration", m_ui->rearrangeDurationSpin->value() );
|
2007-09-25 09:41:06 +00:00
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
conf.writeEntry( "DrawWindowCaptions", m_ui->displayTitleBox->isChecked() );
|
|
|
|
conf.writeEntry( "DrawWindowIcons", m_ui->displayIconBox->isChecked() );
|
|
|
|
conf.writeEntry( "TabBox", m_ui->switchingBox->isChecked() );
|
2008-10-21 07:15:35 +00:00
|
|
|
conf.writeEntry( "IgnoreMinimized", m_ui->ignoreMinimizedBox->isChecked() );
|
2009-01-13 10:19:47 +00:00
|
|
|
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();
|
|
|
|
conf.writeEntry( "Accuracy", accuracy );
|
2008-08-13 12:25:19 +00:00
|
|
|
|
2008-08-25 09:17:15 +00:00
|
|
|
conf.writeEntry( "FillGaps", m_ui->fillGapsBox->isChecked() );
|
|
|
|
|
2009-06-28 17:17:29 +00:00
|
|
|
int leftButtonWindow = m_ui->leftButtonWindowCombo->currentIndex();
|
|
|
|
conf.writeEntry( "LeftButtonWindow", leftButtonWindow );
|
|
|
|
int middleButtonWindow = m_ui->middleButtonWindowCombo->currentIndex();
|
|
|
|
conf.writeEntry( "MiddleButtonWindow", middleButtonWindow );
|
|
|
|
int rightButtonWindow = m_ui->rightButtonWindowCombo->currentIndex();
|
|
|
|
conf.writeEntry( "RightButtonWindow", rightButtonWindow );
|
|
|
|
|
|
|
|
int leftButtonDesktop = m_ui->leftButtonDesktopCombo->currentIndex();
|
|
|
|
conf.writeEntry( "LeftButtonDesktop", leftButtonDesktop );
|
|
|
|
int middleButtonDesktop = m_ui->middleButtonDesktopCombo->currentIndex();
|
|
|
|
conf.writeEntry( "MiddleButtonDesktop", middleButtonDesktop );
|
|
|
|
int rightButtonDesktop = m_ui->rightButtonDesktopCombo->currentIndex();
|
|
|
|
conf.writeEntry( "RightButtonDesktop", rightButtonDesktop );
|
|
|
|
|
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);
|
2007-05-29 11:48:10 +00:00
|
|
|
EffectsHandler::sendReloadMessage( "presentwindows" );
|
2007-05-28 11:34:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PresentWindowsEffectConfig::defaults()
|
|
|
|
{
|
2008-08-25 09:17:15 +00:00
|
|
|
m_ui->layoutCombo->setCurrentIndex( int( PresentWindowsEffect::LayoutNatural ));
|
2008-08-30 07:25:54 +00:00
|
|
|
m_ui->rearrangeDurationSpin->setValue( 0 );
|
2008-08-25 09:17:15 +00:00
|
|
|
m_ui->displayTitleBox->setChecked( true );
|
|
|
|
m_ui->displayIconBox->setChecked( true );
|
|
|
|
m_ui->switchingBox->setChecked( false );
|
2008-10-21 07:15:35 +00:00
|
|
|
m_ui->ignoreMinimizedBox->setChecked( false );
|
2009-01-13 10:19:47 +00:00
|
|
|
m_ui->showPanelBox->setChecked( false );
|
2008-08-25 09:17:15 +00:00
|
|
|
m_ui->accuracySlider->setSliderPosition( 1 );
|
|
|
|
m_ui->fillGapsBox->setChecked( true );
|
|
|
|
m_ui->shortcutEditor->allDefault();
|
2009-06-28 17:17:29 +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);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#include "presentwindows_config.moc"
|