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
|
|
|
|
|
|
|
#ifndef KWIN_PRESENTWINDOWS_PROXY_H
|
|
|
|
#define KWIN_PRESENTWINDOWS_PROXY_H
|
2009-11-15 12:38:26 +00:00
|
|
|
#include <kwineffects.h>
|
2009-02-06 10:15:06 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class PresentWindowsEffect;
|
|
|
|
|
|
|
|
class PresentWindowsEffectProxy
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
public:
|
2012-12-29 06:34:38 +00:00
|
|
|
explicit PresentWindowsEffectProxy(PresentWindowsEffect* effect);
|
2011-01-30 14:34:42 +00:00
|
|
|
~PresentWindowsEffectProxy();
|
2009-02-06 10:15:06 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void calculateWindowTransformations(EffectWindowList windows, int screen, WindowMotionManager& manager);
|
2009-02-06 10:15:06 +00:00
|
|
|
|
2015-08-28 05:50:20 +00:00
|
|
|
void reCreateGrids();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
PresentWindowsEffect* m_effect;
|
|
|
|
};
|
2009-02-06 10:15:06 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|