5af2cb8dda
Also requires shaders and shortcut is Ctrl+F7 for now. svn path=/trunk/KDE/kdebase/workspace/; revision=683165
34 lines
708 B
C++
34 lines
708 B
C++
/*****************************************************************
|
|
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.
|
|
******************************************************************/
|
|
|
|
#ifndef KWIN_SHARPEN_H
|
|
#define KWIN_SHARPEN_H
|
|
|
|
#include <kwinshadereffect.h>
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
/**
|
|
* Sharpens the whole desktop
|
|
**/
|
|
class SharpenEffect : public QObject, public ShaderEffect
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SharpenEffect();
|
|
|
|
public slots:
|
|
void toggle();
|
|
};
|
|
|
|
} // namespace
|
|
|
|
#endif
|