2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2006 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
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-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#include "scalein.h"
|
2011-03-14 21:50:05 +00:00
|
|
|
#include <QtCore/QTimeLine>
|
2012-05-28 10:00:31 +00:00
|
|
|
#include <QtGui/QVector2D>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KWIN_EFFECT(scalein, ScaleInEffect)
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-02-25 21:06:02 +00:00
|
|
|
ScaleInEffect::ScaleInEffect()
|
|
|
|
: Effect()
|
|
|
|
{
|
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*)));
|
2011-02-25 21:06:02 +00:00
|
|
|
}
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void ScaleInEffect::prePaintScreen(ScreenPrePaintData& data, int time)
|
|
|
|
{
|
|
|
|
if (!mTimeLineWindows.isEmpty())
|
2007-07-07 14:01:32 +00:00
|
|
|
data.mask |= PAINT_SCREEN_WITH_TRANSFORMED_WINDOWS;
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->prePaintScreen(data, time);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void ScaleInEffect::prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time)
|
|
|
|
{
|
|
|
|
if (mTimeLineWindows.contains(w)) {
|
2011-03-14 21:50:05 +00:00
|
|
|
mTimeLineWindows[ w ]->setCurveShape(QTimeLine::EaseInOutCurve);
|
|
|
|
mTimeLineWindows[ w ]->setCurrentTime(mTimeLineWindows[ w ]->currentTime() + time);
|
|
|
|
if (mTimeLineWindows[ w ]->currentValue() < 1)
|
2007-07-19 14:05:59 +00:00
|
|
|
data.setTransformed();
|
2007-04-29 17:35:43 +00:00
|
|
|
else
|
2011-03-14 21:50:05 +00:00
|
|
|
delete mTimeLineWindows.take(w);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->prePaintWindow(w, data, time);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void ScaleInEffect::paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data)
|
|
|
|
{
|
|
|
|
if (mTimeLineWindows.contains(w) && isScaleWindow(w)) {
|
2011-03-14 21:50:05 +00:00
|
|
|
const qreal value = mTimeLineWindows[ w ]->currentValue();
|
2012-07-12 15:20:17 +00:00
|
|
|
data.multiplyOpacity(value);
|
2012-05-28 10:00:31 +00:00
|
|
|
data *= QVector2D(value, value);
|
2012-05-28 12:45:46 +00:00
|
|
|
data += QPoint(int(w->width() / 2 * (1 - value)), int(w->height() / 2 * (1 - value)));
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->paintWindow(w, mask, region, data);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool ScaleInEffect::isScaleWindow(EffectWindow* w)
|
|
|
|
{
|
|
|
|
const void* e = w->data(WindowAddedGrabRole).value<void*>();
|
2008-04-29 16:20:48 +00:00
|
|
|
// TODO: isSpecialWindow is rather generic, maybe tell windowtypes separately?
|
2011-01-30 14:34:42 +00:00
|
|
|
if (w->isPopupMenu() || w->isSpecialWindow() || w->isUtility() || (e && e != this))
|
2008-04-29 16:20:48 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2008-04-29 16:20:48 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void ScaleInEffect::postPaintWindow(EffectWindow* w)
|
|
|
|
{
|
|
|
|
if (mTimeLineWindows.contains(w))
|
2007-04-29 17:35:43 +00:00
|
|
|
w->addRepaintFull(); // trigger next animation repaint
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->postPaintWindow(w);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-02-25 21:06:02 +00:00
|
|
|
void ScaleInEffect::slotWindowAdded(EffectWindow* c)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (c->isOnCurrentDesktop()) {
|
2011-03-14 21:50:05 +00:00
|
|
|
mTimeLineWindows.insert(c, new QTimeLine(animationTime(250), this));
|
2007-04-29 17:35:43 +00:00
|
|
|
c->addRepaintFull();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-02-27 08:25:45 +00:00
|
|
|
void ScaleInEffect::slotWindowClosed(EffectWindow* c)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-03-14 21:50:05 +00:00
|
|
|
delete mTimeLineWindows.take(c);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-08-27 09:21:31 +00:00
|
|
|
bool ScaleInEffect::isActive() const
|
|
|
|
{
|
|
|
|
return !mTimeLineWindows.isEmpty();
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
} // namespace
|