kwin/effects/showpaint/showpaint.h

46 lines
1,002 B
C
Raw Normal View History

/********************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2007 Lubos Lunak <l.lunak@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*********************************************************************/
#ifndef KWIN_SHOWPAINT_H
#define KWIN_SHOWPAINT_H
#include <kwineffects.h>
namespace KWin
{
class ShowPaintEffect : public Effect
2011-01-30 14:34:42 +00:00
{
Q_OBJECT
2011-01-30 14:34:42 +00:00
public:
ShowPaintEffect();
void paintScreen(int mask, const QRegion &region, ScreenPaintData &data) override;
void paintWindow(EffectWindow *w, int mask, QRegion region, WindowPaintData &data) override;
bool isActive() const override;
private Q_SLOTS:
void toggle();
2011-01-30 14:34:42 +00:00
private:
void paintGL(const QMatrix4x4 &projection);
2011-01-30 14:34:42 +00:00
void paintXrender();
void paintQPainter();
bool m_active = false;
QRegion m_painted; // what's painted in one pass
int m_colorIndex = 0;
2011-01-30 14:34:42 +00:00
};
} // namespace KWin
#endif