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>
|
2010-02-01 07:44:27 +00:00
|
|
|
Copyright (C) 2009, 2010 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
|
|
|
|
|
|
|
#include "logout.h"
|
|
|
|
|
2007-11-14 13:48:16 +00:00
|
|
|
#include "kwinglutils.h"
|
|
|
|
|
2009-11-03 09:47:33 +00:00
|
|
|
#include <math.h>
|
2009-03-06 06:10:00 +00:00
|
|
|
#include <kconfiggroup.h>
|
2007-11-14 00:09:14 +00:00
|
|
|
#include <kdebug.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KWIN_EFFECT(logout, LogoutEffect)
|
2007-11-14 00:09:14 +00:00
|
|
|
|
|
|
|
LogoutEffect::LogoutEffect()
|
2011-01-30 14:34:42 +00:00
|
|
|
: progress(0.0)
|
|
|
|
, displayEffect(false)
|
|
|
|
, logoutWindow(NULL)
|
|
|
|
, logoutWindowClosed(true)
|
|
|
|
, logoutWindowPassed(false)
|
|
|
|
, canDoPersistent(false)
|
2010-02-01 07:44:27 +00:00
|
|
|
, ignoredWindows()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-02-01 07:44:27 +00:00
|
|
|
// Persistent effect
|
2011-01-30 14:34:42 +00:00
|
|
|
logoutAtom = XInternAtom(display(), "_KDE_LOGGING_OUT", False);
|
|
|
|
effects->registerPropertyType(logoutAtom, true);
|
2010-02-01 07:44:27 +00:00
|
|
|
|
|
|
|
// Block KSMServer's effect
|
2008-01-26 19:36:04 +00:00
|
|
|
char net_wm_cm_name[ 100 ];
|
2011-01-30 14:34:42 +00:00
|
|
|
sprintf(net_wm_cm_name, "_NET_WM_CM_S%d", DefaultScreen(display()));
|
|
|
|
Atom net_wm_cm = XInternAtom(display(), net_wm_cm_name, False);
|
|
|
|
Window sel = XGetSelectionOwner(display(), net_wm_cm);
|
|
|
|
Atom hack = XInternAtom(display(), "_KWIN_LOGOUT_EFFECT", False);
|
|
|
|
XChangeProperty(display(), sel, hack, hack, 8, PropModeReplace, (unsigned char*)&hack, 1);
|
2008-01-26 19:36:04 +00:00
|
|
|
// the atom is not removed when effect is destroyed, this is temporary anyway
|
2010-02-01 07:44:27 +00:00
|
|
|
|
2009-07-27 12:54:02 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
|
|
|
blurTexture = NULL;
|
|
|
|
blurTarget = NULL;
|
|
|
|
#endif
|
2011-01-30 14:34:42 +00:00
|
|
|
reconfigure(ReconfigureAll);
|
2011-02-25 21:06:02 +00:00
|
|
|
connect(effects, SIGNAL(windowAdded(EffectWindow*)), this, SLOT(slotWindowAdded(EffectWindow*)));
|
2011-02-27 08:25:45 +00:00
|
|
|
connect(effects, SIGNAL(windowClosed(EffectWindow*)), this, SLOT(slotWindowClosed(EffectWindow*)));
|
2011-02-27 09:47:42 +00:00
|
|
|
connect(effects, SIGNAL(windowDeleted(EffectWindow*)), this, SLOT(slotWindowDeleted(EffectWindow*)));
|
2011-03-12 18:18:19 +00:00
|
|
|
connect(effects, SIGNAL(propertyNotify(EffectWindow*,long)), this, SLOT(slotPropertyNotify(EffectWindow*,long)));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-03-06 06:10:00 +00:00
|
|
|
|
|
|
|
LogoutEffect::~LogoutEffect()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2009-03-06 06:10:00 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
|
|
|
delete blurTexture;
|
|
|
|
delete blurTarget;
|
|
|
|
#endif
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-03-06 06:10:00 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void LogoutEffect::reconfigure(ReconfigureFlags)
|
|
|
|
{
|
2009-08-09 16:04:39 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2009-10-03 07:06:51 +00:00
|
|
|
frameDelay = 0;
|
2011-01-30 14:34:42 +00:00
|
|
|
KConfigGroup conf = effects->effectConfig("Logout");
|
|
|
|
useBlur = conf.readEntry("UseBlur", true);
|
2009-07-27 12:54:02 +00:00
|
|
|
delete blurTexture;
|
2009-02-15 10:34:41 +00:00
|
|
|
blurTexture = NULL;
|
2009-07-27 12:54:02 +00:00
|
|
|
delete blurTarget;
|
2009-02-15 10:34:41 +00:00
|
|
|
blurTarget = NULL;
|
2009-07-27 12:54:02 +00:00
|
|
|
blurSupported = false;
|
2009-02-08 14:07:00 +00:00
|
|
|
#endif
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-14 00:09:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void LogoutEffect::prePaintScreen(ScreenPrePaintData& data, int time)
|
|
|
|
{
|
2009-07-27 12:54:02 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!displayEffect && progress == 0.0) {
|
|
|
|
if (blurTexture) {
|
2009-07-27 12:54:02 +00:00
|
|
|
delete blurTexture;
|
|
|
|
blurTexture = NULL;
|
|
|
|
delete blurTarget;
|
|
|
|
blurTarget = NULL;
|
|
|
|
blurSupported = false;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
} else if (!blurTexture) {
|
2009-07-27 12:54:02 +00:00
|
|
|
blurSupported = false;
|
|
|
|
delete blurTarget; // catch as we just tested the texture ;-P
|
2011-01-30 14:34:42 +00:00
|
|
|
if (effects->compositingType() == OpenGLCompositing && GLTexture::NPOTTextureSupported() && useBlur) {
|
|
|
|
// TODO: It seems that it is not possible to create a GLRenderTarget that has
|
2009-07-27 12:54:02 +00:00
|
|
|
// a different size than the display right now. Most likely a KWin core bug.
|
|
|
|
// Create texture and render target
|
2011-01-30 14:34:42 +00:00
|
|
|
blurTexture = new GLTexture(displayWidth(), displayHeight());
|
|
|
|
blurTexture->setFilter(GL_LINEAR_MIPMAP_LINEAR);
|
|
|
|
blurTexture->setWrapMode(GL_CLAMP_TO_EDGE);
|
2009-07-27 12:54:02 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
blurTarget = new GLRenderTarget(blurTexture);
|
|
|
|
if (blurTarget->valid())
|
2009-07-27 12:54:02 +00:00
|
|
|
blurSupported = true;
|
2009-10-03 07:06:51 +00:00
|
|
|
|
|
|
|
// As creating the render target takes time it can cause the first two frames of the
|
|
|
|
// blur animation to be jerky. For this reason we only start the animation after the
|
|
|
|
// third frame.
|
|
|
|
frameDelay = 2;
|
2009-07-27 12:54:02 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-07-27 12:54:02 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (frameDelay)
|
2009-10-03 07:06:51 +00:00
|
|
|
--frameDelay;
|
|
|
|
else
|
2009-10-07 15:10:15 +00:00
|
|
|
#endif
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (displayEffect)
|
|
|
|
progress = qMin(1.0, progress + time / animationTime(2000.0));
|
|
|
|
else if (progress > 0.0)
|
|
|
|
progress = qMax(0.0, progress - time / animationTime(500.0));
|
|
|
|
}
|
2009-02-08 14:07:00 +00:00
|
|
|
|
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2011-01-30 14:34:42 +00:00
|
|
|
if (blurSupported && progress > 0.0) {
|
2009-02-08 14:07:00 +00:00
|
|
|
data.mask |= PAINT_SCREEN_WITH_TRANSFORMED_WINDOWS;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-02-08 14:07:00 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->prePaintScreen(data, time);
|
|
|
|
}
|
2007-11-14 00:09:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void LogoutEffect::paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data)
|
|
|
|
{
|
|
|
|
if (progress > 0.0) {
|
2009-02-15 16:04:29 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2011-01-30 14:34:42 +00:00
|
|
|
if (effects->compositingType() == KWin::OpenGLCompositing) {
|
|
|
|
// In OpenGL mode we add vignetting and, if supported, a slight blur
|
|
|
|
if (blurSupported) {
|
|
|
|
// When using blur we render everything to an FBO and as such don't do the vignetting
|
|
|
|
// until after we render the FBO to the screen.
|
|
|
|
if (w == logoutWindow) {
|
|
|
|
// Window is rendered after the FBO
|
2009-11-20 06:48:05 +00:00
|
|
|
windowOpacity = data.opacity;
|
|
|
|
data.opacity = 0.0; // Cheat, we need the opacity for later but don't want to blur it
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
|
|
|
if (logoutWindowPassed || ignoredWindows.contains(w)) {
|
|
|
|
// Window is rendered after the FBO
|
|
|
|
windows.append(w);
|
2009-11-20 06:48:05 +00:00
|
|
|
windowsOpacities[ w ] = data.opacity;
|
|
|
|
data.opacity = 0.0;
|
2011-01-30 14:34:42 +00:00
|
|
|
} else // Window is added to the FBO
|
|
|
|
data.saturation *= (1.0 - progress * 0.2);
|
2009-02-08 16:04:02 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
|
|
|
// If we are not blurring then we are not rendering to an FBO
|
|
|
|
if (w == logoutWindow)
|
2009-11-20 06:48:05 +00:00
|
|
|
// This is the logout window don't alter it but render our vignetting now
|
|
|
|
renderVignetting();
|
2011-01-30 14:34:42 +00:00
|
|
|
else if (!logoutWindowPassed && !ignoredWindows.contains(w))
|
2009-11-20 06:48:05 +00:00
|
|
|
// Window is in the background, desaturate
|
2011-01-30 14:34:42 +00:00
|
|
|
data.saturation *= (1.0 - progress * 0.2);
|
2009-11-20 06:48:05 +00:00
|
|
|
// All other windows are unaltered
|
2007-11-14 13:48:16 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-02-15 16:04:29 +00:00
|
|
|
#endif
|
2011-01-30 14:34:42 +00:00
|
|
|
if (effects->compositingType() == KWin::XRenderCompositing) {
|
|
|
|
// Since we can't do vignetting in XRender just do a stronger desaturation and darken
|
|
|
|
if (w != logoutWindow && !logoutWindowPassed && !ignoredWindows.contains(w)) {
|
|
|
|
data.saturation *= (1.0 - progress * 0.8);
|
|
|
|
data.brightness *= (1.0 - progress * 0.3);
|
2009-11-20 06:48:05 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
if (w == logoutWindow ||
|
|
|
|
ignoredWindows.contains(w)) // HACK: All windows past the first ignored one should not be
|
|
|
|
// blurred as it affects the stacking order.
|
2009-11-20 06:48:05 +00:00
|
|
|
// All following windows are on top of the logout window and should not be altered either
|
2009-05-11 12:14:41 +00:00
|
|
|
logoutWindowPassed = true;
|
2007-11-14 00:09:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->paintWindow(w, mask, region, data);
|
|
|
|
}
|
2007-11-14 00:09:14 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void LogoutEffect::paintScreen(int mask, QRegion region, ScreenPaintData& data)
|
|
|
|
{
|
2009-05-28 11:37:02 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2011-01-30 14:34:42 +00:00
|
|
|
if (blurSupported && progress > 0.0)
|
2011-03-13 13:34:30 +00:00
|
|
|
GLRenderTarget::pushRenderTarget(blurTarget);
|
2009-05-28 11:37:02 +00:00
|
|
|
#endif
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->paintScreen(mask, region, data);
|
2009-02-08 14:07:00 +00:00
|
|
|
|
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2011-01-30 14:34:42 +00:00
|
|
|
if (effects->compositingType() == KWin::OpenGLCompositing && progress > 0.0) {
|
|
|
|
if (!blurSupported) {
|
|
|
|
if (!logoutWindowPassed)
|
2009-11-20 06:48:05 +00:00
|
|
|
// The logout window has been deleted but we still want to fade out the vignetting, thus
|
|
|
|
// render it on the top of everything if still animating. We don't check if logoutWindow
|
|
|
|
// is set as it may still be even if it wasn't rendered.
|
|
|
|
renderVignetting();
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
2011-03-13 13:34:30 +00:00
|
|
|
GLRenderTarget* target = GLRenderTarget::popRenderTarget();
|
2011-01-30 14:34:42 +00:00
|
|
|
assert(target == blurTarget);
|
|
|
|
Q_UNUSED(target);
|
2009-11-20 06:48:05 +00:00
|
|
|
|
|
|
|
//--------------------------
|
|
|
|
// Render the screen effect
|
|
|
|
|
2011-04-29 08:47:56 +00:00
|
|
|
// HACK: the GL code is still OpenGL 1, so we have to unbind the shader.
|
|
|
|
GLint shader = 0;
|
|
|
|
if (ShaderManager::instance()->isShaderBound()) {
|
|
|
|
glGetIntegerv(GL_CURRENT_PROGRAM, &shader);
|
|
|
|
glUseProgram(0);
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
glPushAttrib(GL_CURRENT_BIT | GL_ENABLE_BIT | GL_TEXTURE_BIT);
|
2009-11-20 06:48:05 +00:00
|
|
|
|
|
|
|
// Unmodified base image
|
|
|
|
blurTexture->bind();
|
2011-01-30 14:34:42 +00:00
|
|
|
glBegin(GL_QUADS);
|
|
|
|
glTexCoord2f(0.0, 0.0);
|
|
|
|
glVertex2f(0.0, displayHeight());
|
|
|
|
glTexCoord2f(1.0, 0.0);
|
|
|
|
glVertex2f(displayWidth(), displayHeight());
|
|
|
|
glTexCoord2f(1.0, 1.0);
|
|
|
|
glVertex2f(displayWidth(), 0.0);
|
|
|
|
glTexCoord2f(0.0, 1.0);
|
|
|
|
glVertex2f(0.0, 0.0);
|
2009-11-20 06:48:05 +00:00
|
|
|
glEnd();
|
2009-11-03 09:47:33 +00:00
|
|
|
|
2009-11-20 06:48:05 +00:00
|
|
|
// Blurred image
|
|
|
|
GLfloat bias[1];
|
2011-01-30 14:34:42 +00:00
|
|
|
glGetTexEnvfv(GL_TEXTURE_FILTER_CONTROL, GL_TEXTURE_LOD_BIAS, bias);
|
|
|
|
glTexEnvf(GL_TEXTURE_FILTER_CONTROL, GL_TEXTURE_LOD_BIAS, 1.75);
|
|
|
|
glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
glColor4f(1.0f, 1.0f, 1.0f, progress * 0.4);
|
|
|
|
glBegin(GL_QUADS);
|
|
|
|
glTexCoord2f(0.0, 0.0);
|
|
|
|
glVertex2f(0.0, displayHeight());
|
|
|
|
glTexCoord2f(1.0, 0.0);
|
|
|
|
glVertex2f(displayWidth(), displayHeight());
|
|
|
|
glTexCoord2f(1.0, 1.0);
|
|
|
|
glVertex2f(displayWidth(), 0.0);
|
|
|
|
glTexCoord2f(0.0, 1.0);
|
|
|
|
glVertex2f(0.0, 0.0);
|
2009-11-20 06:48:05 +00:00
|
|
|
glEnd();
|
2011-01-30 14:34:42 +00:00
|
|
|
glTexEnvf(GL_TEXTURE_FILTER_CONTROL, GL_TEXTURE_LOD_BIAS, bias[0]);
|
2009-11-20 06:48:05 +00:00
|
|
|
blurTexture->unbind();
|
2009-11-03 09:47:33 +00:00
|
|
|
|
2009-11-20 06:48:05 +00:00
|
|
|
// Vignetting (Radial gradient with transparent middle and black edges)
|
|
|
|
renderVignetting();
|
2009-11-03 09:47:33 +00:00
|
|
|
|
2009-11-20 06:48:05 +00:00
|
|
|
glPopAttrib();
|
2011-04-29 08:47:56 +00:00
|
|
|
// HACK: rebind previously bound shader
|
|
|
|
if (ShaderManager::instance()->isShaderBound()) {
|
|
|
|
glUseProgram(shader);
|
|
|
|
}
|
2009-05-11 12:14:41 +00:00
|
|
|
|
2009-11-20 06:48:05 +00:00
|
|
|
//--------------------------
|
|
|
|
|
|
|
|
// Render the logout window
|
2011-01-30 14:34:42 +00:00
|
|
|
if (logoutWindow) {
|
2009-11-20 06:48:05 +00:00
|
|
|
int winMask = logoutWindow->hasAlpha() ? PAINT_WINDOW_TRANSLUCENT : PAINT_WINDOW_OPAQUE;
|
2011-01-30 14:34:42 +00:00
|
|
|
WindowPaintData winData(logoutWindow);
|
2009-11-20 06:48:05 +00:00
|
|
|
winData.opacity = windowOpacity;
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->drawWindow(logoutWindow, winMask, region, winData);
|
|
|
|
}
|
2009-05-11 12:14:41 +00:00
|
|
|
|
2009-11-20 06:48:05 +00:00
|
|
|
// Render all windows on top of logout window
|
2011-01-30 14:34:42 +00:00
|
|
|
foreach (EffectWindow * w, windows) {
|
2009-11-20 06:48:05 +00:00
|
|
|
int winMask = w->hasAlpha() ? PAINT_WINDOW_TRANSLUCENT : PAINT_WINDOW_OPAQUE;
|
2011-01-30 14:34:42 +00:00
|
|
|
WindowPaintData winData(w);
|
2009-11-20 06:48:05 +00:00
|
|
|
winData.opacity = windowsOpacities[ w ];
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->drawWindow(w, winMask, region, winData);
|
|
|
|
}
|
2009-11-20 06:48:05 +00:00
|
|
|
|
|
|
|
windows.clear();
|
|
|
|
windowsOpacities.clear();
|
2009-02-08 14:07:00 +00:00
|
|
|
}
|
2007-11-14 00:09:14 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
#endif
|
|
|
|
}
|
2007-11-14 00:09:14 +00:00
|
|
|
|
2009-02-08 16:04:02 +00:00
|
|
|
void LogoutEffect::postPaintScreen()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2009-10-07 15:10:15 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2011-01-30 14:34:42 +00:00
|
|
|
if ((progress != 0.0 && progress != 1.0) || frameDelay)
|
2009-02-08 16:04:02 +00:00
|
|
|
effects->addRepaintFull();
|
2009-10-07 15:10:15 +00:00
|
|
|
#else
|
2011-01-30 14:34:42 +00:00
|
|
|
if (progress != 0.0 && progress != 1.0)
|
2009-10-07 15:10:15 +00:00
|
|
|
effects->addRepaintFull();
|
|
|
|
#endif
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (progress > 0.0)
|
2009-05-11 12:14:41 +00:00
|
|
|
logoutWindowPassed = false;
|
2009-02-08 16:04:02 +00:00
|
|
|
effects->postPaintScreen();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-02-08 16:04:02 +00:00
|
|
|
|
2011-02-25 21:06:02 +00:00
|
|
|
void LogoutEffect::slotWindowAdded(EffectWindow* w)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (isLogoutDialog(w)) {
|
2009-02-08 16:04:02 +00:00
|
|
|
logoutWindow = w;
|
|
|
|
logoutWindowClosed = false; // So we don't blur the window on close
|
|
|
|
progress = 0.0;
|
2010-02-01 07:44:27 +00:00
|
|
|
displayEffect = true;
|
|
|
|
ignoredWindows.clear();
|
2007-11-14 00:09:14 +00:00
|
|
|
effects->addRepaintFull();
|
2011-01-30 14:34:42 +00:00
|
|
|
} else if (canDoPersistent)
|
2010-02-01 07:44:27 +00:00
|
|
|
// TODO: Add parent
|
2011-01-30 14:34:42 +00:00
|
|
|
ignoredWindows.append(w);
|
|
|
|
}
|
2007-11-14 00:09:14 +00:00
|
|
|
|
2011-02-27 08:25:45 +00:00
|
|
|
void LogoutEffect::slotWindowClosed(EffectWindow* w)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (w == logoutWindow) {
|
2009-02-08 16:04:02 +00:00
|
|
|
logoutWindowClosed = true;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!canDoPersistent)
|
2010-02-01 07:44:27 +00:00
|
|
|
displayEffect = false; // Fade back to normal
|
2007-11-14 00:09:14 +00:00
|
|
|
effects->addRepaintFull();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-11-14 00:09:14 +00:00
|
|
|
|
2011-02-27 09:47:42 +00:00
|
|
|
void LogoutEffect::slotWindowDeleted(EffectWindow* w)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-04-25 12:11:35 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
2011-02-06 15:54:20 +00:00
|
|
|
windows.removeAll(w);
|
2011-04-25 12:11:35 +00:00
|
|
|
#endif
|
2011-04-25 12:38:13 +00:00
|
|
|
ignoredWindows.removeAll(w);
|
2011-01-30 14:34:42 +00:00
|
|
|
if (w == logoutWindow)
|
2009-02-08 16:04:02 +00:00
|
|
|
logoutWindow = NULL;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-02-08 16:04:02 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool LogoutEffect::isLogoutDialog(EffectWindow* w)
|
|
|
|
{
|
|
|
|
// TODO there should be probably a better way (window type?)
|
|
|
|
if (w->windowClass() == "ksmserver ksmserver"
|
|
|
|
&& (w->windowRole() == "logoutdialog" || w->windowRole() == "logouteffect")) {
|
2007-11-14 00:09:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
return false;
|
|
|
|
}
|
2007-11-14 00:09:14 +00:00
|
|
|
|
2009-11-20 06:48:05 +00:00
|
|
|
#ifdef KWIN_HAVE_OPENGL_COMPOSITING
|
|
|
|
void LogoutEffect::renderVignetting()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
glPushAttrib(GL_CURRENT_BIT | GL_ENABLE_BIT | GL_TEXTURE_BIT);
|
|
|
|
glEnable(GL_BLEND); // If not already (Such as when rendered straight to the screen)
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
for (int screen = 0; screen < effects->numScreens(); screen++) {
|
|
|
|
QRect screenGeom = effects->clientArea(ScreenArea, screen, 0);
|
|
|
|
glScissor(screenGeom.x(), displayHeight() - screenGeom.y() - screenGeom.height(),
|
|
|
|
screenGeom.width(), screenGeom.height()); // GL coords are flipped
|
|
|
|
glEnable(GL_SCISSOR_TEST); // Geom must be set before enable
|
2009-11-20 06:48:05 +00:00
|
|
|
const float cenX = screenGeom.x() + screenGeom.width() / 2;
|
|
|
|
const float cenY = screenGeom.y() + screenGeom.height() / 2;
|
|
|
|
const float a = M_PI / 16.0f; // Angle of increment
|
2011-01-30 14:34:42 +00:00
|
|
|
const float r = float((screenGeom.width() > screenGeom.height())
|
|
|
|
? screenGeom.width() : screenGeom.height()) * 0.8f; // Radius
|
|
|
|
glBegin(GL_TRIANGLE_FAN);
|
|
|
|
glColor4f(0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
glVertex3f(cenX, cenY, 0.0f);
|
|
|
|
glColor4f(0.0f, 0.0f, 0.0f, progress * 0.9f);
|
|
|
|
for (float i = 0.0f; i <= M_PI * 2.01f; i += a)
|
|
|
|
glVertex3f(cenX + r * cos(i), cenY + r * sin(i), 0.0f);
|
2009-11-20 06:48:05 +00:00
|
|
|
glEnd();
|
2011-01-30 14:34:42 +00:00
|
|
|
glDisable(GL_SCISSOR_TEST);
|
2009-11-20 06:48:05 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
glPopAttrib();
|
|
|
|
}
|
2009-11-20 06:48:05 +00:00
|
|
|
#endif
|
|
|
|
|
2011-03-12 18:18:19 +00:00
|
|
|
void LogoutEffect::slotPropertyNotify(EffectWindow* w, long a)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (w || a != logoutAtom)
|
2010-02-01 07:44:27 +00:00
|
|
|
return; // Not our atom
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
QByteArray byteData = effects->readRootProperty(logoutAtom, logoutAtom, 8);
|
|
|
|
if (byteData.length() < 1) {
|
|
|
|
// Property was deleted
|
2010-02-01 07:44:27 +00:00
|
|
|
displayEffect = false;
|
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-02-01 07:44:27 +00:00
|
|
|
|
|
|
|
// We are using a compatible KSMServer therefore only terminate the effect when the
|
|
|
|
// atom is deleted, not when the dialog is closed.
|
|
|
|
canDoPersistent = true;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-02-01 07:44:27 +00:00
|
|
|
|
2007-11-14 00:09:14 +00:00
|
|
|
} // namespace
|