kwin/effects/presentwindows/presentwindows_proxy.cpp

37 lines
907 B
C++
Raw Normal View History

/********************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2009 Lucas Murray <lmurray@undefinedfire.com>
SPDX-License-Identifier: GPL-2.0-or-later
*********************************************************************/
#include "presentwindows_proxy.h"
#include "presentwindows.h"
namespace KWin
{
2011-01-30 14:34:42 +00:00
PresentWindowsEffectProxy::PresentWindowsEffectProxy(PresentWindowsEffect* effect)
: m_effect(effect)
{
}
PresentWindowsEffectProxy::~PresentWindowsEffectProxy()
2011-01-30 14:34:42 +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);
}
void PresentWindowsEffectProxy::reCreateGrids()
{
m_effect->reCreateGrids();
}
} // namespace