2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2009-02-06 10:15:06 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2009 Lucas Murray <lmurray@undefinedfire.com>
|
2009-02-06 10:15:06 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2009-02-06 10:15:06 +00:00
|
|
|
|
|
|
|
#include "presentwindows_proxy.h"
|
|
|
|
#include "presentwindows.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
PresentWindowsEffectProxy::PresentWindowsEffectProxy(PresentWindowsEffect* effect)
|
|
|
|
: m_effect(effect)
|
|
|
|
{
|
|
|
|
}
|
2009-02-06 10:15:06 +00:00
|
|
|
|
|
|
|
PresentWindowsEffectProxy::~PresentWindowsEffectProxy()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
}
|
2009-02-06 10:15:06 +00:00
|
|
|
|
2009-12-18 03:34:28 +00:00
|
|
|
void PresentWindowsEffectProxy::calculateWindowTransformations(EffectWindowList windows, int screen,
|
|
|
|
WindowMotionManager& manager)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
return m_effect->calculateWindowTransformations(windows, screen, manager, true);
|
|
|
|
}
|
2009-02-06 10:15:06 +00:00
|
|
|
|
2015-08-28 05:50:20 +00:00
|
|
|
void PresentWindowsEffectProxy::reCreateGrids()
|
|
|
|
{
|
|
|
|
m_effect->reCreateGrids();
|
|
|
|
}
|
|
|
|
|
2009-02-06 10:15:06 +00:00
|
|
|
} // namespace
|