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.
40 lines
955 B
40 lines
955 B
/***************************************************************** |
|
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 handling input in effects. |
|
|
|
*/ |
|
|
|
#ifndef KWIN_TEST_INPUT_H |
|
#define KWIN_TEST_INPUT_H |
|
|
|
#include <effects.h> |
|
|
|
namespace KWinInternal |
|
{ |
|
|
|
class TestInputEffect |
|
: public Effect |
|
{ |
|
public: |
|
TestInputEffect(); |
|
virtual ~TestInputEffect(); |
|
virtual void prePaintScreen( int* mask, QRegion* region, int time ); |
|
virtual void paintScreen( int mask, QRegion region, ScreenPaintData& data ); |
|
virtual void windowInputMouseEvent( Window w, QEvent* e ); |
|
private: |
|
Window input; |
|
}; |
|
|
|
} // namespace |
|
|
|
#endif
|
|
|