You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
4.2 KiB
133 lines
4.2 KiB
/***************************************************************** |
|
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 "shadow_config.h" |
|
|
|
#include <kwineffects.h> |
|
|
|
#include <klocale.h> |
|
#include <kdebug.h> |
|
#include <kconfiggroup.h> |
|
|
|
#include <QWidget> |
|
#include <QGridLayout> |
|
#include <QLabel> |
|
#include <QSpinBox> |
|
#include <QCheckBox> |
|
|
|
#ifndef KDE_USE_FINAL |
|
KWIN_EFFECT_CONFIG_FACTORY |
|
#endif |
|
|
|
namespace KWin |
|
{ |
|
|
|
ShadowEffectConfig::ShadowEffectConfig(QWidget* parent, const QVariantList& args) : |
|
KCModule(EffectFactory::componentData(), parent, args) |
|
{ |
|
kDebug() ; |
|
|
|
QGridLayout* layout = new QGridLayout(this); |
|
|
|
layout->addWidget(new QLabel(i18n("X offset:"), this), 0, 0); |
|
mShadowXOffset = new QSpinBox(this); |
|
mShadowXOffset->setRange(-20, 20); |
|
connect(mShadowXOffset, SIGNAL(valueChanged(int)), this, SLOT(changed())); |
|
layout->addWidget(mShadowXOffset, 0, 1); |
|
|
|
layout->addWidget(new QLabel(i18n("Y offset:"), this), 1, 0); |
|
mShadowYOffset = new QSpinBox(this); |
|
mShadowYOffset->setRange(-20, 20); |
|
connect(mShadowYOffset, SIGNAL(valueChanged(int)), this, SLOT(changed())); |
|
layout->addWidget(mShadowYOffset, 1, 1); |
|
|
|
layout->addWidget(new QLabel(i18n("Shadow opacity:"), this), 2, 0); |
|
mShadowOpacity = new QSpinBox(this); |
|
mShadowOpacity->setRange(0, 100); |
|
mShadowOpacity->setSuffix("%"); |
|
connect(mShadowOpacity, SIGNAL(valueChanged(int)), this, SLOT(changed())); |
|
layout->addWidget(mShadowOpacity, 2, 1); |
|
|
|
layout->addWidget(new QLabel(i18n("Shadow fuzzyness:"), this), 3, 0); |
|
mShadowFuzzyness = new QSpinBox(this); |
|
mShadowFuzzyness->setRange(0, 20); |
|
connect(mShadowFuzzyness, SIGNAL(valueChanged(int)), this, SLOT(changed())); |
|
layout->addWidget(mShadowFuzzyness, 3, 1); |
|
|
|
layout->addWidget(new QLabel(i18n("Shadow size (relative to window):"), this), 4, 0); |
|
mShadowSize = new QSpinBox(this); |
|
mShadowSize->setRange(0, 20); |
|
connect(mShadowSize, SIGNAL(valueChanged(int)), this, SLOT(changed())); |
|
layout->addWidget(mShadowSize, 4, 1); |
|
|
|
mIntensifyActiveShadow = new QCheckBox(i18n("Active window has stronger shadow"), this); |
|
connect(mIntensifyActiveShadow, SIGNAL(toggled(bool)), this, SLOT(changed())); |
|
layout->addWidget(mIntensifyActiveShadow, 5, 0, 1, 2); |
|
|
|
layout->addItem(new QSpacerItem(10, 10, QSizePolicy::Minimum, QSizePolicy::Expanding), 6, 0, 1, 2); |
|
|
|
load(); |
|
} |
|
|
|
ShadowEffectConfig::~ShadowEffectConfig() |
|
{ |
|
kDebug() ; |
|
} |
|
|
|
void ShadowEffectConfig::load() |
|
{ |
|
kDebug() ; |
|
KCModule::load(); |
|
|
|
KConfigGroup conf = EffectsHandler::effectConfig("Shadow"); |
|
mShadowXOffset->setValue( conf.readEntry( "XOffset", 0 ) ); |
|
mShadowYOffset->setValue( conf.readEntry( "YOffset", 3 ) ); |
|
mShadowOpacity->setValue( (int)( conf.readEntry( "Opacity", 0.25 ) * 100 ) ); |
|
mShadowFuzzyness->setValue( conf.readEntry( "Fuzzyness", 10 ) ); |
|
mShadowSize->setValue( conf.readEntry( "Size", 5 ) ); |
|
mIntensifyActiveShadow->setChecked( conf.readEntry( "IntensifyActiveShadow", true ) ); |
|
|
|
emit changed(false); |
|
} |
|
|
|
void ShadowEffectConfig::save() |
|
{ |
|
kDebug() ; |
|
KCModule::save(); |
|
|
|
KConfigGroup conf = EffectsHandler::effectConfig("Shadow"); |
|
conf.writeEntry( "XOffset", mShadowXOffset->value() ); |
|
conf.writeEntry( "YOffset", mShadowYOffset->value() ); |
|
conf.writeEntry( "Opacity", mShadowOpacity->value() / 100.0 ); |
|
conf.writeEntry( "Fuzzyness", mShadowFuzzyness->value() ); |
|
conf.writeEntry( "Size", mShadowSize->value() ); |
|
conf.writeEntry( "IntensifyActiveShadow", mIntensifyActiveShadow->isChecked() ); |
|
conf.sync(); |
|
|
|
emit changed(false); |
|
EffectsHandler::sendReloadMessage( "shadow" ); |
|
} |
|
|
|
void ShadowEffectConfig::defaults() |
|
{ |
|
kDebug() ; |
|
mShadowXOffset->setValue( 0 ); |
|
mShadowYOffset->setValue( 3 ); |
|
mShadowOpacity->setValue( 25 ); |
|
mShadowFuzzyness->setValue( 10 ); |
|
mShadowSize->setValue( 5 ); |
|
mIntensifyActiveShadow->setChecked( true ); |
|
emit changed(true); |
|
} |
|
|
|
|
|
} // namespace |
|
|
|
#include "shadow_config.moc"
|
|
|