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"
|
2016-11-16 08:02:44 +00:00
|
|
|
#include "slidingpopupsconfig.h"
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2014-02-10 16:59:16 +00:00
|
|
|
#include <QApplication>
|
2017-11-08 10:23:00 +00:00
|
|
|
#include <QFontMetrics>
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2015-09-14 14:39:39 +00:00
|
|
|
#include <KWayland/Server/surface_interface.h>
|
|
|
|
#include <KWayland/Server/slide_interface.h>
|
|
|
|
#include <KWayland/Server/display.h>
|
|
|
|
|
2009-07-23 19:06:50 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
SlidingPopupsEffect::SlidingPopupsEffect()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2016-12-02 19:27:43 +00:00
|
|
|
initConfig<SlidingPopupsConfig>();
|
2015-09-14 14:39:39 +00:00
|
|
|
KWayland::Server::Display *display = effects->waylandDisplay();
|
|
|
|
if (display) {
|
|
|
|
display->createSlideManager(this)->create();
|
|
|
|
}
|
|
|
|
|
2014-02-10 16:59:16 +00:00
|
|
|
mSlideLength = QFontMetrics(qApp->font()).height() * 8;
|
|
|
|
|
2012-12-13 23:09:47 +00:00
|
|
|
mAtom = effects->announceSupportProperty("_KDE_SLIDE", this);
|
2012-01-29 11:29:24 +00:00
|
|
|
connect(effects, SIGNAL(windowAdded(KWin::EffectWindow*)), this, SLOT(slotWindowAdded(KWin::EffectWindow*)));
|
2018-07-13 12:08:31 +00:00
|
|
|
connect(effects, &EffectsHandler::windowClosed, this, &SlidingPopupsEffect::slideOut);
|
2012-01-29 11:29:24 +00:00
|
|
|
connect(effects, SIGNAL(windowDeleted(KWin::EffectWindow*)), this, SLOT(slotWindowDeleted(KWin::EffectWindow*)));
|
|
|
|
connect(effects, SIGNAL(propertyNotify(KWin::EffectWindow*,long)), this, SLOT(slotPropertyNotify(KWin::EffectWindow*,long)));
|
2018-07-13 12:08:31 +00:00
|
|
|
connect(effects, &EffectsHandler::windowShown, this, &SlidingPopupsEffect::slideIn);
|
|
|
|
connect(effects, &EffectsHandler::windowHidden, this, &SlidingPopupsEffect::slideOut);
|
2017-09-10 14:51:18 +00:00
|
|
|
connect(effects, &EffectsHandler::xcbConnectionChanged, this,
|
|
|
|
[this] {
|
|
|
|
mAtom = effects->announceSupportProperty(QByteArrayLiteral("_KDE_SLIDE"), this);
|
|
|
|
}
|
|
|
|
);
|
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
|
|
|
{
|
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2017-11-23 09:34:06 +00:00
|
|
|
bool SlidingPopupsEffect::supported()
|
|
|
|
{
|
|
|
|
return effects->animationsSupported();
|
|
|
|
}
|
|
|
|
|
2011-03-19 10:46:34 +00:00
|
|
|
void SlidingPopupsEffect::reconfigure(ReconfigureFlags flags)
|
|
|
|
{
|
|
|
|
Q_UNUSED(flags)
|
2016-11-16 08:02:44 +00:00
|
|
|
SlidingPopupsConfig::self()->read();
|
2018-07-15 07:57:35 +00:00
|
|
|
m_slideInDuration = std::chrono::milliseconds(
|
2018-06-29 20:26:48 +00:00
|
|
|
static_cast<int>(animationTime(SlidingPopupsConfig::slideInTime() != 0 ? SlidingPopupsConfig::slideInTime() : 150)));
|
2018-07-15 07:57:35 +00:00
|
|
|
m_slideOutDuration = std::chrono::milliseconds(
|
2018-06-29 20:26:48 +00:00
|
|
|
static_cast<int>(animationTime(SlidingPopupsConfig::slideOutTime() != 0 ? SlidingPopupsConfig::slideOutTime() : 250)));
|
2018-07-13 12:08:31 +00:00
|
|
|
|
|
|
|
auto animationIt = m_animations.begin();
|
|
|
|
while (animationIt != m_animations.end()) {
|
|
|
|
const auto duration = ((*animationIt).kind == AnimationKind::In)
|
2018-07-15 07:57:35 +00:00
|
|
|
? m_slideInDuration
|
|
|
|
: m_slideOutDuration;
|
2018-07-13 12:08:31 +00:00
|
|
|
(*animationIt).timeLine.setDuration(duration);
|
|
|
|
++animationIt;
|
2011-03-19 10:46:34 +00:00
|
|
|
}
|
2018-07-13 12:08:31 +00:00
|
|
|
|
2018-07-15 07:57:35 +00:00
|
|
|
auto dataIt = m_animationsData.begin();
|
|
|
|
while (dataIt != m_animationsData.end()) {
|
|
|
|
(*dataIt).slideInDuration = m_slideInDuration;
|
|
|
|
(*dataIt).slideOutDuration = m_slideOutDuration;
|
|
|
|
++dataIt;
|
2011-03-19 10:46:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void SlidingPopupsEffect::prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time)
|
|
|
|
{
|
2018-07-13 12:08:31 +00:00
|
|
|
auto animationIt = m_animations.find(w);
|
|
|
|
if (animationIt == m_animations.end()) {
|
|
|
|
effects->prePaintWindow(w, data, time);
|
|
|
|
return;
|
|
|
|
}
|
2009-07-27 13:27:16 +00:00
|
|
|
|
2018-07-13 12:08:31 +00:00
|
|
|
(*animationIt).timeLine.update(std::chrono::milliseconds(time));
|
|
|
|
data.setTransformed();
|
|
|
|
w->enablePainting(EffectWindow::PAINT_DISABLED | EffectWindow::PAINT_DISABLED_BY_DELETE);
|
2011-12-10 11:31:06 +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)
|
|
|
|
{
|
2018-07-13 12:08:31 +00:00
|
|
|
auto animationIt = m_animations.constFind(w);
|
|
|
|
if (animationIt == m_animations.constEnd()) {
|
|
|
|
effects->paintWindow(w, mask, region, data);
|
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-07-23 19:06:50 +00:00
|
|
|
|
2018-07-15 07:57:35 +00:00
|
|
|
const AnimationData &animData = m_animationsData[w];
|
|
|
|
const int slideLength = (animData.slideLength > 0) ? animData.slideLength : mSlideLength;
|
2014-02-07 14:18:45 +00:00
|
|
|
|
2018-07-13 12:08:31 +00:00
|
|
|
const QRect screenRect = effects->clientArea(FullScreenArea, w->screen(), w->desktop());
|
|
|
|
int splitPoint = 0;
|
|
|
|
const QRect geo = w->expandedGeometry();
|
|
|
|
const qreal t = (*animationIt).timeLine.value();
|
|
|
|
|
2018-07-15 07:57:35 +00:00
|
|
|
switch(animData.location) {
|
|
|
|
case Location::Left:
|
2018-07-13 12:08:31 +00:00
|
|
|
if (slideLength < geo.width()) {
|
|
|
|
data.multiplyOpacity(t);
|
|
|
|
}
|
|
|
|
data.translate(-interpolate(qMin(geo.width(), slideLength), 0.0, t));
|
2018-07-15 07:57:35 +00:00
|
|
|
splitPoint = geo.width() - (geo.x() + geo.width() - screenRect.x() - animData.offset);
|
2018-07-13 12:08:31 +00:00
|
|
|
region = QRegion(geo.x() + splitPoint, geo.y(), geo.width() - splitPoint, geo.height());
|
|
|
|
break;
|
2018-07-15 07:57:35 +00:00
|
|
|
case Location::Top:
|
2018-07-13 12:08:31 +00:00
|
|
|
if (slideLength < geo.height()) {
|
|
|
|
data.multiplyOpacity(t);
|
|
|
|
}
|
|
|
|
data.translate(0.0, -interpolate(qMin(geo.height(), slideLength), 0.0, t));
|
2018-07-15 07:57:35 +00:00
|
|
|
splitPoint = geo.height() - (geo.y() + geo.height() - screenRect.y() - animData.offset);
|
2018-07-13 12:08:31 +00:00
|
|
|
region = QRegion(geo.x(), geo.y() + splitPoint, geo.width(), geo.height() - splitPoint);
|
|
|
|
break;
|
2018-07-15 07:57:35 +00:00
|
|
|
case Location::Right:
|
2018-07-13 12:08:31 +00:00
|
|
|
if (slideLength < geo.width()) {
|
|
|
|
data.multiplyOpacity(t);
|
2009-07-23 19:06:50 +00:00
|
|
|
}
|
2018-07-13 12:08:31 +00:00
|
|
|
data.translate(interpolate(qMin(geo.width(), slideLength), 0.0, t));
|
2018-07-15 07:57:35 +00:00
|
|
|
splitPoint = screenRect.x() + screenRect.width() - geo.x() - animData.offset;
|
2018-07-13 12:08:31 +00:00
|
|
|
region = QRegion(geo.x(), geo.y(), splitPoint, geo.height());
|
|
|
|
break;
|
2018-07-15 07:57:35 +00:00
|
|
|
case Location::Bottom:
|
2018-07-13 12:08:31 +00:00
|
|
|
default:
|
|
|
|
if (slideLength < geo.height()) {
|
|
|
|
data.multiplyOpacity(t);
|
|
|
|
}
|
|
|
|
data.translate(0.0, interpolate(qMin(geo.height(), slideLength), 0.0, t));
|
2018-07-15 07:57:35 +00:00
|
|
|
splitPoint = screenRect.y() + screenRect.height() - geo.y() - animData.offset;
|
2018-07-13 12:08:31 +00:00
|
|
|
region = QRegion(geo.x(), geo.y(), geo.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)
|
|
|
|
{
|
2018-07-13 12:08:31 +00:00
|
|
|
auto animationIt = m_animations.find(w);
|
|
|
|
if (animationIt != m_animations.end()) {
|
|
|
|
if ((*animationIt).timeLine.done()) {
|
|
|
|
if (w->isDeleted()) {
|
|
|
|
w->unrefWindow();
|
|
|
|
} else {
|
|
|
|
w->setData(WindowForceBackgroundContrastRole, QVariant());
|
|
|
|
w->setData(WindowForceBlurRole, QVariant());
|
|
|
|
}
|
|
|
|
m_animations.erase(animationIt);
|
|
|
|
}
|
|
|
|
w->addRepaintFull();
|
2011-03-18 17:06:03 +00:00
|
|
|
}
|
2018-07-13 12:08:31 +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
|
|
|
{
|
2015-09-14 14:39:39 +00:00
|
|
|
//X11
|
2017-09-10 14:51:18 +00:00
|
|
|
if (mAtom != XCB_ATOM_NONE) {
|
|
|
|
slotPropertyNotify(w, mAtom);
|
|
|
|
}
|
2015-09-14 14:39:39 +00:00
|
|
|
|
|
|
|
//Wayland
|
|
|
|
if (auto surf = w->surface()) {
|
|
|
|
slotWaylandSlideOnShowChanged(w);
|
|
|
|
connect(surf, &KWayland::Server::SurfaceInterface::slideOnShowHideChanged, this, [this, surf] {
|
|
|
|
slotWaylandSlideOnShowChanged(effects->findWindow(surf));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-07-13 12:08:31 +00:00
|
|
|
slideIn(w);
|
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
|
|
|
{
|
2018-07-13 12:08:31 +00:00
|
|
|
m_animations.remove(w);
|
2018-07-15 07:57:35 +00:00
|
|
|
m_animationsData.remove(w);
|
2015-12-12 09:37:43 +00:00
|
|
|
effects->addRepaint(w->expandedGeometry());
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
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
|
|
|
{
|
2017-09-10 14:51:18 +00:00
|
|
|
if (!w || a != mAtom || mAtom == XCB_ATOM_NONE)
|
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
|
2017-03-28 15:51:00 +00:00
|
|
|
if (w->data(WindowClosedGrabRole).value<void *>() == this) {
|
|
|
|
w->setData(WindowClosedGrabRole, QVariant());
|
|
|
|
}
|
2018-07-13 12:08:31 +00:00
|
|
|
m_animations.remove(w);
|
2018-07-15 07:57:35 +00:00
|
|
|
m_animationsData.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
|
|
|
|
2013-09-25 06:54:22 +00:00
|
|
|
auto* d = reinterpret_cast< uint32_t* >(data.data());
|
2018-07-15 07:57:35 +00:00
|
|
|
AnimationData &animData = m_animationsData[w];
|
|
|
|
animData.offset = d[ 0 ];
|
|
|
|
|
|
|
|
switch (d[1]) {
|
|
|
|
case 0: // West
|
|
|
|
animData.location = Location::Left;
|
|
|
|
break;
|
|
|
|
case 1: // North
|
|
|
|
animData.location = Location::Top;
|
|
|
|
break;
|
|
|
|
case 2: // East
|
|
|
|
animData.location = Location::Right;
|
|
|
|
break;
|
|
|
|
case 3: // South
|
|
|
|
default:
|
|
|
|
animData.location = Location::Bottom;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-02-13 18:45:42 +00:00
|
|
|
//custom duration
|
2014-03-21 18:19:21 +00:00
|
|
|
animData.slideLength = 0;
|
2013-09-25 06:54:22 +00:00
|
|
|
if (data.length() >= (int)(sizeof(uint32_t) * 3)) {
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.slideInDuration = std::chrono::milliseconds(d[2]);
|
2013-09-25 06:54:22 +00:00
|
|
|
if (data.length() >= (int)(sizeof(uint32_t) * 4))
|
2014-02-13 18:45:42 +00:00
|
|
|
//custom fadein
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.slideOutDuration = std::chrono::milliseconds(d[3]);
|
2010-08-07 11:41:01 +00:00
|
|
|
else
|
2014-02-13 18:45:42 +00:00
|
|
|
//custom fadeout
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.slideOutDuration = std::chrono::milliseconds(d[2]);
|
2014-02-13 18:45:42 +00:00
|
|
|
|
|
|
|
//do we want an actual slide?
|
|
|
|
if (data.length() >= (int)(sizeof(uint32_t) * 5))
|
2018-07-13 07:01:46 +00:00
|
|
|
animData.slideLength = d[4];
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.slideInDuration = m_slideInDuration;
|
|
|
|
animData.slideOutDuration = m_slideOutDuration;
|
2009-07-23 19:06:50 +00:00
|
|
|
}
|
2018-07-15 07:57:35 +00:00
|
|
|
|
2015-09-14 14:39:39 +00:00
|
|
|
setupAnimData(w);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SlidingPopupsEffect::setupAnimData(EffectWindow *w)
|
|
|
|
{
|
2011-12-10 11:31:06 +00:00
|
|
|
const QRect screenRect = effects->clientArea(FullScreenArea, w->screen(), effects->currentDesktop());
|
2018-07-13 07:08:29 +00:00
|
|
|
const QRect windowGeo = w->geometry();
|
2018-07-15 07:57:35 +00:00
|
|
|
AnimationData &animData = m_animationsData[w];
|
|
|
|
|
|
|
|
if (animData.offset == -1) {
|
|
|
|
switch (animData.location) {
|
|
|
|
case Location::Left:
|
|
|
|
animData.offset = qMax(windowGeo.left() - screenRect.left(), 0);
|
2011-12-10 11:31:06 +00:00
|
|
|
break;
|
2018-07-15 07:57:35 +00:00
|
|
|
case Location::Top:
|
|
|
|
animData.offset = qMax(windowGeo.top() - screenRect.top(), 0);
|
2011-12-10 11:31:06 +00:00
|
|
|
break;
|
2018-07-15 07:57:35 +00:00
|
|
|
case Location::Right:
|
|
|
|
animData.offset = qMax(screenRect.right() - windowGeo.right(), 0);
|
2011-12-10 11:31:06 +00:00
|
|
|
break;
|
2018-07-15 07:57:35 +00:00
|
|
|
case Location::Bottom:
|
2011-12-10 11:31:06 +00:00
|
|
|
default:
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.offset = qMax(screenRect.bottom() - windowGeo.bottom(), 0);
|
2011-12-10 11:31:06 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// sanitize
|
2018-07-15 07:57:35 +00:00
|
|
|
switch (animData.location) {
|
|
|
|
case Location::Left:
|
|
|
|
animData.offset = qMax(windowGeo.left() - screenRect.left(), animData.offset);
|
2011-12-10 11:31:06 +00:00
|
|
|
break;
|
2018-07-15 07:57:35 +00:00
|
|
|
case Location::Top:
|
|
|
|
animData.offset = qMax(windowGeo.top() - screenRect.top(), animData.offset);
|
2011-12-10 11:31:06 +00:00
|
|
|
break;
|
2018-07-15 07:57:35 +00:00
|
|
|
case Location::Right:
|
|
|
|
animData.offset = qMax(screenRect.right() - windowGeo.right(), animData.offset);
|
2011-12-10 11:31:06 +00:00
|
|
|
break;
|
2018-07-15 07:57:35 +00:00
|
|
|
case Location::Bottom:
|
2011-12-10 11:31:06 +00:00
|
|
|
default:
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.offset = qMax(screenRect.bottom() - windowGeo.bottom(), animData.offset);
|
2011-12-10 11:31:06 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-07-13 07:08:29 +00:00
|
|
|
|
slidingpopups claim windowClosedGrabRole earlier
This seems like a more proper fix for the flickering issue in the
sliding popups effect. The problem is that slidingpopups grabs the
window in windowClosed, the fade effect checks it there, which makes
it racy.
In my tests, I've not seen this problem with the WindowAddedGrab, but
as far as I understand, the problem may well be present there as well.
(And my proposed trick doesn't work.) I've not seen this happening in my
debugging, however. The problem there is also less visible since the
transparency curves go into the same direction, and are more "in line
with each other".
So, fix: Move the setData(WindowClosedGrabRole, ...) call from
windowClosed into windowAdded, which makes sure it's set whenever the
window goes away.
REVIEW:115903
BUG:329991
2014-02-20 13:38:36 +00:00
|
|
|
// Grab the window, so other windowClosed effects will ignore it
|
|
|
|
w->setData(WindowClosedGrabRole, QVariant::fromValue(static_cast<void*>(this)));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2011-08-27 09:21:31 +00:00
|
|
|
|
2015-09-14 14:39:39 +00:00
|
|
|
void SlidingPopupsEffect::slotWaylandSlideOnShowChanged(EffectWindow* w)
|
|
|
|
{
|
|
|
|
if (!w) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
KWayland::Server::SurfaceInterface *surf = w->surface();
|
|
|
|
if (!surf) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (surf->slideOnShowHide()) {
|
2018-07-15 07:57:35 +00:00
|
|
|
AnimationData &animData = m_animationsData[w];
|
|
|
|
|
|
|
|
animData.offset = surf->slideOnShowHide()->offset();
|
2015-09-14 14:39:39 +00:00
|
|
|
|
|
|
|
switch (surf->slideOnShowHide()->location()) {
|
|
|
|
case KWayland::Server::SlideInterface::Location::Top:
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.location = Location::Top;
|
2015-09-14 14:39:39 +00:00
|
|
|
break;
|
|
|
|
case KWayland::Server::SlideInterface::Location::Left:
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.location = Location::Left;
|
2015-09-14 14:39:39 +00:00
|
|
|
break;
|
|
|
|
case KWayland::Server::SlideInterface::Location::Right:
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.location = Location::Right;
|
2015-09-14 14:39:39 +00:00
|
|
|
break;
|
|
|
|
case KWayland::Server::SlideInterface::Location::Bottom:
|
|
|
|
default:
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.location = Location::Bottom;
|
2015-09-14 14:39:39 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
animData.slideLength = 0;
|
2018-07-15 07:57:35 +00:00
|
|
|
animData.slideInDuration = m_slideInDuration;
|
|
|
|
animData.slideOutDuration = m_slideOutDuration;
|
2015-09-14 14:39:39 +00:00
|
|
|
|
|
|
|
setupAnimData(w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-13 12:08:31 +00:00
|
|
|
void SlidingPopupsEffect::slideIn(EffectWindow *w)
|
|
|
|
{
|
|
|
|
if (effects->activeFullScreenEffect()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!w->isVisible()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-15 07:57:35 +00:00
|
|
|
auto dataIt = m_animationsData.constFind(w);
|
|
|
|
if (dataIt == m_animationsData.constEnd()) {
|
2018-07-13 12:08:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Animation &animation = m_animations[w];
|
|
|
|
animation.kind = AnimationKind::In;
|
|
|
|
animation.timeLine.reset();
|
|
|
|
animation.timeLine.setDirection(TimeLine::Forward);
|
2018-07-15 07:57:35 +00:00
|
|
|
animation.timeLine.setDuration((*dataIt).slideInDuration);
|
2018-07-13 12:08:31 +00:00
|
|
|
animation.timeLine.setEasingCurve(QEasingCurve::InOutSine);
|
|
|
|
|
|
|
|
w->setData(WindowAddedGrabRole, QVariant::fromValue(static_cast<void*>(this)));
|
|
|
|
w->setData(WindowForceBackgroundContrastRole, QVariant(true));
|
|
|
|
w->setData(WindowForceBlurRole, QVariant(true));
|
|
|
|
|
|
|
|
w->addRepaintFull();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SlidingPopupsEffect::slideOut(EffectWindow *w)
|
|
|
|
{
|
|
|
|
if (effects->activeFullScreenEffect()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!w->isVisible()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-15 07:57:35 +00:00
|
|
|
auto dataIt = m_animationsData.constFind(w);
|
|
|
|
if (dataIt == m_animationsData.constEnd()) {
|
2018-07-13 12:08:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (w->isDeleted()) {
|
|
|
|
w->refWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
Animation &animation = m_animations[w];
|
|
|
|
animation.kind = AnimationKind::Out;
|
|
|
|
animation.timeLine.reset();
|
|
|
|
animation.timeLine.setDirection(TimeLine::Backward);
|
2018-07-15 07:57:35 +00:00
|
|
|
animation.timeLine.setDuration((*dataIt).slideOutDuration);
|
2018-07-13 12:08:31 +00:00
|
|
|
animation.timeLine.setEasingCurve(QEasingCurve::InOutSine);
|
|
|
|
|
|
|
|
w->setData(WindowClosedGrabRole, QVariant::fromValue(static_cast<void*>(this)));
|
|
|
|
w->setData(WindowForceBackgroundContrastRole, QVariant(true));
|
|
|
|
w->setData(WindowForceBlurRole, QVariant(true));
|
|
|
|
|
|
|
|
w->addRepaintFull();
|
|
|
|
}
|
|
|
|
|
2011-08-27 09:21:31 +00:00
|
|
|
bool SlidingPopupsEffect::isActive() const
|
|
|
|
{
|
2018-07-13 12:08:31 +00:00
|
|
|
return !m_animations.isEmpty();
|
2011-08-27 09:21:31 +00:00
|
|
|
}
|
|
|
|
|
2009-07-23 19:06:50 +00:00
|
|
|
} // namespace
|