2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-11-14 00:09:14 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Lubos Lunak <l.lunak@kde.org>
|
2009-02-08 16:04:02 +00:00
|
|
|
Copyright (C) 2009 Martin Gräßlin <kde@martin-graesslin.com>
|
2009-02-08 14:07:00 +00:00
|
|
|
Copyright (C) 2009 Lucas Murray <lmurray@undefinedfire.com>
|
2007-11-14 00:09:14 +00:00
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-11-14 00:09:14 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_LOGOUT_H
|
|
|
|
#define KWIN_LOGOUT_H
|
|
|
|
|
|
|
|
#include <kwineffects.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2009-02-08 14:07:00 +00:00
|
|
|
class GLRenderTarget;
|
|
|
|
class GLTexture;
|
|
|
|
|
2007-11-14 00:09:14 +00:00
|
|
|
class LogoutEffect
|
|
|
|
: public Effect
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LogoutEffect();
|
2009-02-08 14:07:00 +00:00
|
|
|
~LogoutEffect();
|
2009-03-06 06:10:00 +00:00
|
|
|
virtual void reconfigure( ReconfigureFlags );
|
2007-11-14 00:09:14 +00:00
|
|
|
virtual void prePaintScreen( ScreenPrePaintData& data, int time );
|
2009-02-08 16:04:02 +00:00
|
|
|
virtual void paintScreen( int mask, QRegion region, ScreenPaintData& data );
|
2007-11-14 00:28:41 +00:00
|
|
|
virtual void postPaintScreen();
|
2007-11-14 00:09:14 +00:00
|
|
|
virtual void paintWindow( EffectWindow* w, int mask, QRegion region, WindowPaintData& data );
|
|
|
|
virtual void windowAdded( EffectWindow* w );
|
|
|
|
virtual void windowClosed( EffectWindow* w );
|
2009-02-08 16:04:02 +00:00
|
|
|
virtual void windowDeleted( EffectWindow* w );
|
2007-11-14 00:09:14 +00:00
|
|
|
private:
|
|
|
|
bool isLogoutDialog( EffectWindow* w );
|
|
|
|
double progress; // 0-1
|
2009-02-08 16:04:02 +00:00
|
|
|
EffectWindow* logoutWindow;
|
|
|
|
bool logoutWindowClosed;
|
2009-05-11 12:14:41 +00:00
|
|
|
bool logoutWindowPassed;
|
2009-02-08 14:07:00 +00:00
|
|
|
|
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
|
|
|
bool blurSupported;
|
|
|
|
GLTexture* blurTexture;
|
|
|
|
GLRenderTarget* blurTarget;
|
2009-02-08 16:04:02 +00:00
|
|
|
double windowOpacity;
|
2009-05-11 12:14:41 +00:00
|
|
|
EffectWindowList windows;
|
|
|
|
QHash< EffectWindow*, double > windowsOpacities;
|
2009-02-08 14:07:00 +00:00
|
|
|
#endif
|
2007-11-14 00:09:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|