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.
42 lines
1.1 KiB
42 lines
1.1 KiB
/***************************************************************** |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
Copyright (C) 2007 Lubos Lunak <l.lunak@kde.org> |
|
|
|
You can Freely distribute this program under the GNU General Public |
|
License. See the file "COPYING" for the exact licensing terms. |
|
******************************************************************/ |
|
|
|
/* |
|
|
|
Testing of painting a window more than once. |
|
|
|
*/ |
|
|
|
#ifndef KWIN_TEST_THUMBNAIL_H |
|
#define KWIN_TEST_THUMBNAIL_H |
|
|
|
#include <kwineffects.h> |
|
|
|
namespace KWin |
|
{ |
|
|
|
class TestThumbnailEffect |
|
: public Effect |
|
{ |
|
public: |
|
TestThumbnailEffect(); |
|
virtual void paintScreen( int mask, QRegion region, ScreenPaintData& data ); |
|
virtual void windowActivated( EffectWindow* w ); |
|
virtual void windowDamaged( EffectWindow* w, const QRect& damage ); |
|
virtual void windowGeometryShapeChanged( EffectWindow* w, const QRect& old ); |
|
virtual void windowClosed( EffectWindow* w ); |
|
private: |
|
QRect thumbnailRect() const; |
|
EffectWindow* active_window; |
|
}; |
|
|
|
} // namespace |
|
|
|
#endif
|
|
|