kwin/effects/presentwindows/presentwindows_proxy.h

36 lines
706 B
C
Raw Normal View History

2020-08-02 22:22:19 +00:00
/*
KWin - the KDE window manager
This file is part of the KDE project.
2020-08-02 22:22:19 +00:00
SPDX-FileCopyrightText: 2009 Lucas Murray <lmurray@undefinedfire.com>
2020-08-02 22:22:19 +00:00
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KWIN_PRESENTWINDOWS_PROXY_H
#define KWIN_PRESENTWINDOWS_PROXY_H
#include <kwineffects.h>
namespace KWin
{
class PresentWindowsEffect;
class PresentWindowsEffectProxy
2011-01-30 14:34:42 +00:00
{
public:
explicit PresentWindowsEffectProxy(PresentWindowsEffect* effect);
2011-01-30 14:34:42 +00:00
~PresentWindowsEffectProxy();
2011-01-30 14:34:42 +00:00
void calculateWindowTransformations(EffectWindowList windows, int screen, WindowMotionManager& manager);
void reCreateGrids();
2011-01-30 14:34:42 +00:00
private:
PresentWindowsEffect* m_effect;
};
} // namespace
#endif