2009-10-22 07:06:44 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2020-08-02 22:10:35 +00:00
|
|
|
SPDX-FileCopyrightText: 2009 Martin Gräßlin <mgraesslin@kde.org>
|
2009-10-22 07:06:44 +00:00
|
|
|
|
2020-08-02 22:10:35 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
2009-10-22 07:06:44 +00:00
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#ifndef KWIN_CUBE_PROXY_H
|
|
|
|
#define KWIN_CUBE_PROXY_H
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class CubeEffect;
|
|
|
|
class CubeInsideEffect;
|
|
|
|
|
|
|
|
class CubeEffectProxy
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
2012-12-29 06:34:38 +00:00
|
|
|
explicit CubeEffectProxy(CubeEffect* effect);
|
2011-01-30 14:34:42 +00:00
|
|
|
~CubeEffectProxy();
|
2009-10-22 07:06:44 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void registerCubeInsideEffect(CubeInsideEffect* effect);
|
|
|
|
void unregisterCubeInsideEffect(CubeInsideEffect* effect);
|
2009-10-22 07:06:44 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
CubeEffect* m_effect;
|
2009-10-22 07:06:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif // KWIN_CUBE_PROXY_H
|