2006-07-04 20:51:01 +00:00
|
|
|
/*****************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2006 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.
|
|
|
|
******************************************************************/
|
|
|
|
|
2006-07-05 12:56:04 +00:00
|
|
|
// TODO MIT or some other licence, perhaps move to some lib
|
|
|
|
|
2006-07-04 20:51:01 +00:00
|
|
|
#ifndef KWIN_EFFECTS_H
|
|
|
|
#define KWIN_EFFECTS_H
|
|
|
|
|
2006-10-16 10:12:48 +00:00
|
|
|
#include "scene.h"
|
|
|
|
|
2006-07-04 20:51:01 +00:00
|
|
|
namespace KWinInternal
|
|
|
|
{
|
|
|
|
|
|
|
|
class Toplevel;
|
|
|
|
class Workspace;
|
|
|
|
|
2006-10-16 10:12:48 +00:00
|
|
|
class WindowPaintData
|
2006-07-05 12:56:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2006-10-16 10:12:48 +00:00
|
|
|
WindowPaintData();
|
|
|
|
double opacity;
|
|
|
|
double xScale;
|
|
|
|
double yScale;
|
|
|
|
int xTranslate;
|
|
|
|
int yTranslate;
|
2006-11-07 23:33:23 +00:00
|
|
|
float saturation;
|
2006-07-05 12:56:04 +00:00
|
|
|
};
|
|
|
|
|
2006-10-16 10:12:48 +00:00
|
|
|
class ScreenPaintData
|
2006-07-05 12:56:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2006-10-16 10:12:48 +00:00
|
|
|
ScreenPaintData();
|
|
|
|
int xTranslate;
|
|
|
|
int yTranslate;
|
2006-07-05 12:56:04 +00:00
|
|
|
};
|
|
|
|
|
2006-07-04 20:51:01 +00:00
|
|
|
class Effect
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~Effect();
|
2006-10-24 19:17:48 +00:00
|
|
|
virtual void prePaintScreen( int* mask, QRegion* region, int time );
|
2006-10-16 10:12:48 +00:00
|
|
|
virtual void paintScreen( int mask, QRegion region, ScreenPaintData& data );
|
2006-10-29 19:07:10 +00:00
|
|
|
virtual void postPaintScreen();
|
2006-10-24 19:17:48 +00:00
|
|
|
virtual void prePaintWindow( Scene::Window* w, int* mask, QRegion* region, int time );
|
2006-10-16 18:46:07 +00:00
|
|
|
virtual void paintWindow( Scene::Window* w, int mask, QRegion region, WindowPaintData& data );
|
2006-10-29 19:07:10 +00:00
|
|
|
virtual void postPaintWindow( Scene::Window* w );
|
2006-07-06 13:17:44 +00:00
|
|
|
// called when moved/resized or once after it's finished
|
|
|
|
virtual void windowUserMovedResized( Toplevel* c, bool first, bool last );
|
2006-10-16 10:12:48 +00:00
|
|
|
virtual void windowAdded( Toplevel* c );
|
2006-07-06 13:17:44 +00:00
|
|
|
virtual void windowDeleted( Toplevel* c );
|
2006-10-30 22:49:59 +00:00
|
|
|
virtual void windowActivated( Toplevel* c );
|
2006-07-04 20:51:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class EffectsHandler
|
|
|
|
{
|
|
|
|
public:
|
2006-07-06 19:02:14 +00:00
|
|
|
EffectsHandler( Workspace* ws );
|
2006-07-10 18:34:57 +00:00
|
|
|
~EffectsHandler();
|
2006-10-16 10:12:48 +00:00
|
|
|
// for use by effects
|
2006-10-29 19:06:32 +00:00
|
|
|
void prePaintScreen( int* mask, QRegion* region, int time );
|
|
|
|
void paintScreen( int mask, QRegion region, ScreenPaintData& data );
|
2006-10-29 19:07:10 +00:00
|
|
|
void postPaintScreen();
|
2006-10-29 19:06:32 +00:00
|
|
|
void prePaintWindow( Scene::Window* w, int* mask, QRegion* region, int time );
|
|
|
|
void paintWindow( Scene::Window* w, int mask, QRegion region, WindowPaintData& data );
|
2006-10-29 19:07:10 +00:00
|
|
|
void postPaintWindow( Scene::Window* w );
|
2006-10-16 10:12:48 +00:00
|
|
|
// internal (used by kwin core or compositing code)
|
2006-10-29 19:06:32 +00:00
|
|
|
void startPaint();
|
2006-07-06 13:17:44 +00:00
|
|
|
void windowUserMovedResized( Toplevel* c, bool first, bool last );
|
2006-10-16 10:12:48 +00:00
|
|
|
void windowAdded( Toplevel* c );
|
2006-07-06 13:17:44 +00:00
|
|
|
void windowDeleted( Toplevel* c );
|
2006-10-30 22:49:59 +00:00
|
|
|
void windowActivated( Toplevel* c );
|
2006-10-16 10:12:48 +00:00
|
|
|
private:
|
|
|
|
QVector< Effect* > effects;
|
|
|
|
int current_paint_window;
|
|
|
|
int current_paint_screen;
|
2006-07-04 20:51:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern EffectsHandler* effects;
|
|
|
|
|
2006-10-16 10:12:48 +00:00
|
|
|
inline
|
|
|
|
WindowPaintData::WindowPaintData()
|
|
|
|
: opacity( 1.0 )
|
|
|
|
, xScale( 1 )
|
|
|
|
, yScale( 1 )
|
|
|
|
, xTranslate( 0 )
|
|
|
|
, yTranslate( 0 )
|
2006-11-07 23:33:23 +00:00
|
|
|
, saturation( 1 )
|
2006-10-16 10:12:48 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
ScreenPaintData::ScreenPaintData()
|
|
|
|
: xTranslate( 0 )
|
|
|
|
, yTranslate( 0 )
|
|
|
|
{
|
|
|
|
}
|
2006-07-06 19:02:14 +00:00
|
|
|
|
2006-07-04 20:51:01 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|