2009-07-23 19:06:50 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2009 Marco Martin notmart@gmail.com
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#include "slidingpopups.h"
|
|
|
|
|
|
|
|
#include <kdebug.h>
|
2011-02-17 18:35:08 +00:00
|
|
|
#include <KDE/KConfigGroup>
|
2011-03-14 21:50:05 +00:00
|
|
|
#include <QtCore/QTimeLine>
|
2009-07-23 19:06:50 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KWIN_EFFECT(slidingpopups, SlidingPopupsEffect)
|
2009-07-23 19:06:50 +00:00
|
|
|
|
|
|
|
SlidingPopupsEffect::SlidingPopupsEffect()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
mAtom = XInternAtom(display(), "_KDE_SLIDE", False);
|
|
|
|
effects->registerPropertyType(mAtom, true);
|
2009-07-23 19:06:50 +00:00
|
|
|
// TODO hackish way to announce support, make better after 4.0
|
|
|
|
unsigned char dummy = 0;
|
2011-01-30 14:34:42 +00:00
|
|
|
XChangeProperty(display(), rootWindow(), mAtom, mAtom, 8, PropModeReplace, &dummy, 1);
|
2012-01-29 11:29:24 +00:00
|
|
|
connect(effects, SIGNAL(windowAdded(KWin::EffectWindow*)), this, SLOT(slotWindowAdded(KWin::EffectWindow*)));
|
|
|
|
connect(effects, SIGNAL(windowClosed(KWin::EffectWindow*)), this, SLOT(slotWindowClosed(KWin::EffectWindow*)));
|
|
|
|
connect(effects, SIGNAL(windowDeleted(KWin::EffectWindow*)), this, SLOT(slotWindowDeleted(KWin::EffectWindow*)));
|
|
|
|
connect(effects, SIGNAL(propertyNotify(KWin::EffectWindow*,long)), this, SLOT(slotPropertyNotify(KWin::EffectWindow*,long)));
|
2011-03-19 10:46:34 +00:00
|
|
|
reconfigure(ReconfigureAll);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
|
|
|
SlidingPopupsEffect::~SlidingPopupsEffect()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
XDeleteProperty(display(), rootWindow(), mAtom);
|
|
|
|
effects->registerPropertyType(mAtom, false);
|
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2011-03-19 10:46:34 +00:00
|
|
|
void SlidingPopupsEffect::reconfigure(ReconfigureFlags flags)
|
|
|
|
{
|
|
|
|
Q_UNUSED(flags)
|
|
|
|
KConfigGroup conf = effects->effectConfig("SlidingPopups");
|
|
|
|
mFadeInTime = animationTime(conf, "SlideInTime", 250);
|
|
|
|
mFadeOutTime = animationTime(conf, "SlideOutTime", 250);
|
|
|
|
QHash< const EffectWindow*, QTimeLine* >::iterator it = mAppearingWindows.begin();
|
|
|
|
while (it != mAppearingWindows.end()) {
|
|
|
|
it.value()->setDuration(animationTime(mFadeInTime));
|
2011-08-02 15:21:56 +00:00
|
|
|
++it;
|
2011-03-19 10:46:34 +00:00
|
|
|
}
|
|
|
|
it = mDisappearingWindows.begin();
|
|
|
|
while (it != mDisappearingWindows.end()) {
|
|
|
|
it.value()->setDuration(animationTime(mFadeOutTime));
|
2011-08-02 15:21:56 +00:00
|
|
|
++it;
|
2011-03-19 10:46:34 +00:00
|
|
|
}
|
|
|
|
QHash< const EffectWindow*, Data >::iterator wIt = mWindowsData.begin();
|
|
|
|
while (wIt != mWindowsData.end()) {
|
|
|
|
wIt.value().fadeInDuration = mFadeInTime;
|
|
|
|
wIt.value().fadeOutDuration = mFadeOutTime;
|
2011-08-02 15:21:56 +00:00
|
|
|
++wIt;
|
2011-03-19 10:46:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void SlidingPopupsEffect::prePaintScreen(ScreenPrePaintData& data, int time)
|
|
|
|
{
|
|
|
|
effects->prePaintScreen(data, time);
|
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void SlidingPopupsEffect::prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time)
|
|
|
|
{
|
2011-12-10 11:31:06 +00:00
|
|
|
qreal progress = 1.0;
|
|
|
|
bool appearing = false;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (mAppearingWindows.contains(w)) {
|
2011-03-14 21:50:05 +00:00
|
|
|
mAppearingWindows[ w ]->setCurrentTime(mAppearingWindows[ w ]->currentTime() + time);
|
2011-12-10 11:31:06 +00:00
|
|
|
if (mAppearingWindows[ w ]->currentValue() < 1) {
|
2009-07-23 19:06:50 +00:00
|
|
|
data.setTransformed();
|
2011-12-10 11:31:06 +00:00
|
|
|
progress = mAppearingWindows[ w ]->currentValue();
|
|
|
|
appearing = true;
|
2011-12-10 21:32:47 +00:00
|
|
|
} else {
|
2011-03-14 21:50:05 +00:00
|
|
|
delete mAppearingWindows.take(w);
|
2011-12-10 21:32:47 +00:00
|
|
|
w->setData(WindowForceBlurRole, false);
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
} else if (mDisappearingWindows.contains(w)) {
|
2009-07-27 13:27:16 +00:00
|
|
|
|
2011-03-14 21:50:05 +00:00
|
|
|
mDisappearingWindows[ w ]->setCurrentTime(mDisappearingWindows[ w ]->currentTime() + time);
|
2011-12-10 11:31:06 +00:00
|
|
|
progress = mDisappearingWindows[ w ]->currentValue();
|
|
|
|
|
|
|
|
if (progress != 1.0) {
|
|
|
|
data.setTransformed();
|
|
|
|
w->enablePainting(EffectWindow::PAINT_DISABLED_BY_DELETE);
|
|
|
|
} else {
|
|
|
|
delete mDisappearingWindows.take(w);
|
|
|
|
w->unrefWindow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (progress != 1.0) {
|
|
|
|
const int start = mWindowsData[ w ].start;
|
|
|
|
if (start != 0) {
|
|
|
|
const QRect screenRect = effects->clientArea(FullScreenArea, w->screen(), effects->currentDesktop());
|
|
|
|
// filter out window quads, but only if the window does not start from the edge
|
|
|
|
switch(mWindowsData[ w ].from) {
|
|
|
|
case West: {
|
|
|
|
const double splitPoint = w->width() - (w->x() + w->width() - screenRect.x() - start) + w->width() * (appearing ? 1.0 - progress : progress);
|
|
|
|
data.quads = data.quads.splitAtX(splitPoint);
|
|
|
|
WindowQuadList filtered;
|
|
|
|
foreach (const WindowQuad &quad, data.quads) {
|
|
|
|
if (quad.left() >= splitPoint) {
|
|
|
|
filtered << quad;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data.quads = filtered;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case North: {
|
|
|
|
const double splitPoint = w->height() - (w->y() + w->height() - screenRect.y() - start) + w->height() * (appearing ? 1.0 - progress : progress);
|
|
|
|
data.quads = data.quads.splitAtY(splitPoint);
|
|
|
|
WindowQuadList filtered;
|
|
|
|
foreach (const WindowQuad &quad, data.quads) {
|
|
|
|
if (quad.top() >= splitPoint) {
|
|
|
|
filtered << quad;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data.quads = filtered;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case East: {
|
|
|
|
const double splitPoint = screenRect.x() + screenRect.width() - w->x() - start - w->width() * (appearing ? 1.0 - progress : progress);
|
|
|
|
data.quads = data.quads.splitAtX(splitPoint);
|
|
|
|
WindowQuadList filtered;
|
|
|
|
foreach (const WindowQuad &quad, data.quads) {
|
|
|
|
if (quad.right() <= splitPoint) {
|
|
|
|
filtered << quad;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data.quads = filtered;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case South:
|
|
|
|
default: {
|
|
|
|
const double splitPoint = screenRect.y() + screenRect.height() - w->y() - start - w->height() * (appearing ? 1.0 - progress : progress);
|
|
|
|
data.quads = data.quads.splitAtY(splitPoint);
|
|
|
|
WindowQuadList filtered;
|
|
|
|
foreach (const WindowQuad &quad, data.quads) {
|
|
|
|
if (quad.bottom() <= splitPoint) {
|
|
|
|
filtered << quad;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data.quads = filtered;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->prePaintWindow(w, data, time);
|
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void SlidingPopupsEffect::paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data)
|
|
|
|
{
|
2009-07-23 19:06:50 +00:00
|
|
|
bool animating = false;
|
|
|
|
bool appearing = false;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (mAppearingWindows.contains(w)) {
|
2009-07-23 19:06:50 +00:00
|
|
|
appearing = true;
|
|
|
|
animating = true;
|
2011-01-30 14:34:42 +00:00
|
|
|
} else if (mDisappearingWindows.contains(w) && w->isDeleted()) {
|
2009-07-23 19:06:50 +00:00
|
|
|
appearing = false;
|
|
|
|
animating = true;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (animating) {
|
2009-10-19 05:04:35 +00:00
|
|
|
qreal progress;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (appearing)
|
2011-03-14 21:50:05 +00:00
|
|
|
progress = 1.0 - mAppearingWindows[ w ]->currentValue();
|
2011-01-30 14:34:42 +00:00
|
|
|
else {
|
|
|
|
if (mDisappearingWindows.contains(w))
|
2011-03-14 21:50:05 +00:00
|
|
|
progress = mDisappearingWindows[ w ]->currentValue();
|
2009-10-19 05:04:35 +00:00
|
|
|
else
|
|
|
|
progress = 1.0;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
const int start = mWindowsData[ w ].start;
|
|
|
|
|
2011-12-10 11:31:06 +00:00
|
|
|
const QRect screenRect = effects->clientArea(FullScreenArea, w->screen(), w->desktop());
|
2011-12-10 21:32:47 +00:00
|
|
|
int splitPoint = 0;
|
2011-01-30 14:34:42 +00:00
|
|
|
switch(mWindowsData[ w ].from) {
|
|
|
|
case West:
|
2011-12-10 11:31:06 +00:00
|
|
|
data.xTranslate -= w->width() * progress;
|
2011-12-10 21:32:47 +00:00
|
|
|
splitPoint = w->width() - (w->x() + w->width() - screenRect.x() - start);
|
|
|
|
region = QRegion(w->x() + splitPoint, w->y(), w->width() - splitPoint, w->height());
|
2011-01-30 14:34:42 +00:00
|
|
|
break;
|
|
|
|
case North:
|
2011-12-10 11:31:06 +00:00
|
|
|
data.yTranslate -= w->height() * progress;
|
2011-12-10 21:32:47 +00:00
|
|
|
splitPoint = w->height() - (w->y() + w->height() - screenRect.y() - start);
|
|
|
|
region = QRegion(w->x(), w->y() + splitPoint, w->width(), w->height() - splitPoint);
|
2011-01-30 14:34:42 +00:00
|
|
|
break;
|
|
|
|
case East:
|
2011-12-10 11:31:06 +00:00
|
|
|
data.xTranslate += w->width() * progress;
|
2011-12-10 21:32:47 +00:00
|
|
|
splitPoint = screenRect.x() + screenRect.width() - w->x() - start;
|
|
|
|
region = QRegion(w->x(), w->y(), splitPoint, w->height());
|
2011-01-30 14:34:42 +00:00
|
|
|
break;
|
|
|
|
case South:
|
|
|
|
default:
|
2011-12-10 11:31:06 +00:00
|
|
|
data.yTranslate += w->height() * progress;
|
2011-12-10 21:32:47 +00:00
|
|
|
splitPoint = screenRect.y() + screenRect.height() - w->y() - start;
|
|
|
|
region = QRegion(w->x(), w->y(), w->width(), splitPoint);
|
2009-07-23 19:06:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-10 11:31:06 +00:00
|
|
|
effects->paintWindow(w, mask, region, data);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SlidingPopupsEffect::postPaintWindow(EffectWindow* w)
|
|
|
|
{
|
2011-03-18 17:06:03 +00:00
|
|
|
if (mAppearingWindows.contains(w) || mDisappearingWindows.contains(w)) {
|
2009-07-23 19:06:50 +00:00
|
|
|
w->addRepaintFull(); // trigger next animation repaint
|
2011-03-18 17:06:03 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->postPaintWindow(w);
|
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2011-02-25 21:06:02 +00:00
|
|
|
void SlidingPopupsEffect::slotWindowAdded(EffectWindow *w)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-03-12 18:18:19 +00:00
|
|
|
slotPropertyNotify(w, mAtom);
|
2011-01-30 14:34:42 +00:00
|
|
|
if (w->isOnCurrentDesktop() && mWindowsData.contains(w)) {
|
2011-03-14 21:50:05 +00:00
|
|
|
mAppearingWindows.insert(w, new QTimeLine(mWindowsData[ w ].fadeInDuration, this));
|
|
|
|
mAppearingWindows[ w ]->setCurveShape(QTimeLine::EaseInOutCurve);
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2010-01-11 04:52:19 +00:00
|
|
|
// Tell other windowAdded() effects to ignore this window
|
2011-01-30 14:34:42 +00:00
|
|
|
w->setData(WindowAddedGrabRole, QVariant::fromValue(static_cast<void*>(this)));
|
2011-12-10 21:32:47 +00:00
|
|
|
w->setData(WindowForceBlurRole, true);
|
2009-09-08 20:42:45 +00:00
|
|
|
|
2009-07-23 19:06:50 +00:00
|
|
|
w->addRepaintFull();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2011-02-27 08:25:45 +00:00
|
|
|
void SlidingPopupsEffect::slotWindowClosed(EffectWindow* w)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-03-12 18:18:19 +00:00
|
|
|
slotPropertyNotify(w, mAtom);
|
2011-01-30 14:34:42 +00:00
|
|
|
if (w->isOnCurrentDesktop() && !w->isMinimized() && mWindowsData.contains(w)) {
|
2009-07-23 19:06:50 +00:00
|
|
|
w->refWindow();
|
2011-03-14 21:50:05 +00:00
|
|
|
delete mAppearingWindows.take(w);
|
|
|
|
mDisappearingWindows.insert(w, new QTimeLine(mWindowsData[ w ].fadeOutDuration, this));
|
|
|
|
mDisappearingWindows[ w ]->setCurveShape(QTimeLine::EaseInOutCurve);
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2010-01-11 04:52:19 +00:00
|
|
|
// Tell other windowClosed() effects to ignore this window
|
2011-01-30 14:34:42 +00:00
|
|
|
w->setData(WindowClosedGrabRole, QVariant::fromValue(static_cast<void*>(this)));
|
2011-12-10 21:32:47 +00:00
|
|
|
w->setData(WindowForceBlurRole, true);
|
2010-01-11 04:52:19 +00:00
|
|
|
|
2009-07-23 19:06:50 +00:00
|
|
|
w->addRepaintFull();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2011-02-27 09:47:42 +00:00
|
|
|
void SlidingPopupsEffect::slotWindowDeleted(EffectWindow* w)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-03-14 21:50:05 +00:00
|
|
|
delete mAppearingWindows.take(w);
|
|
|
|
delete mDisappearingWindows.take(w);
|
2011-01-30 14:34:42 +00:00
|
|
|
mWindowsData.remove(w);
|
|
|
|
effects->addRepaint(w->geometry());
|
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2011-03-12 18:18:19 +00:00
|
|
|
void SlidingPopupsEffect::slotPropertyNotify(EffectWindow* w, long a)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (!w || a != mAtom)
|
2009-07-23 19:06:50 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
QByteArray data = w->readProperty(mAtom, mAtom, 32);
|
2009-07-27 13:27:16 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (data.length() < 1) {
|
2010-11-30 20:03:03 +00:00
|
|
|
// Property was removed, thus also remove the effect for window
|
2011-03-14 21:50:05 +00:00
|
|
|
delete mAppearingWindows.take(w);
|
|
|
|
delete mDisappearingWindows.take(w);
|
2011-01-30 14:34:42 +00:00
|
|
|
mWindowsData.remove(w);
|
2009-07-23 19:06:50 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-09-09 10:05:52 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
long* d = reinterpret_cast< long* >(data.data());
|
2009-07-23 19:06:50 +00:00
|
|
|
Data animData;
|
|
|
|
animData.start = d[ 0 ];
|
|
|
|
animData.from = (Position)d[ 1 ];
|
2011-01-30 14:34:42 +00:00
|
|
|
if (data.length() >= (int)(sizeof(long) * 3)) {
|
2010-08-07 11:41:01 +00:00
|
|
|
animData.fadeInDuration = d[2];
|
2011-01-30 14:34:42 +00:00
|
|
|
if (data.length() >= (int)(sizeof(long) * 4))
|
2010-08-07 11:41:01 +00:00
|
|
|
animData.fadeOutDuration = d[3];
|
|
|
|
else
|
|
|
|
animData.fadeOutDuration = d[2];
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
|
|
|
animData.fadeInDuration = animationTime(mFadeInTime);
|
|
|
|
animData.fadeOutDuration = animationTime(mFadeOutTime);
|
2009-07-23 19:06:50 +00:00
|
|
|
}
|
2011-12-10 11:31:06 +00:00
|
|
|
const QRect screenRect = effects->clientArea(FullScreenArea, w->screen(), effects->currentDesktop());
|
|
|
|
if (animData.start == -1) {
|
|
|
|
switch (animData.from) {
|
|
|
|
case West:
|
|
|
|
animData.start = qMax(w->x() - screenRect.x(), 0);
|
|
|
|
break;
|
|
|
|
case North:
|
|
|
|
animData.start = qMax(w->y() - screenRect.y(), 0);
|
|
|
|
break;
|
|
|
|
case East:
|
|
|
|
animData.start = qMax(screenRect.x() + screenRect.width() - (w->x() + w->width()), 0);
|
|
|
|
break;
|
|
|
|
case South:
|
|
|
|
default:
|
|
|
|
animData.start = qMax(screenRect.y() + screenRect.height() - (w->y() + w->height()), 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// sanitize
|
|
|
|
int difference = 0;
|
|
|
|
switch (animData.from) {
|
|
|
|
case West:
|
|
|
|
difference = w->x() - screenRect.x();
|
|
|
|
break;
|
|
|
|
case North:
|
|
|
|
difference = w->y() - screenRect.y();
|
|
|
|
break;
|
|
|
|
case East:
|
|
|
|
difference = w->x() + w->width() - (screenRect.x() + screenRect.width());
|
|
|
|
break;
|
|
|
|
case South:
|
|
|
|
default:
|
|
|
|
difference = w->y() + w->height() - (screenRect.y() + screenRect.height());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
animData.start = qMax<int>(animData.start, difference);
|
2011-01-30 14:34:42 +00:00
|
|
|
mWindowsData[ w ] = animData;
|
|
|
|
}
|
2011-08-27 09:21:31 +00:00
|
|
|
|
|
|
|
bool SlidingPopupsEffect::isActive() const
|
|
|
|
{
|
|
|
|
return !mAppearingWindows.isEmpty() || !mDisappearingWindows.isEmpty();
|
|
|
|
}
|
|
|
|
|
2009-07-23 19:06:50 +00:00
|
|
|
} // namespace
|