2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Lubos Lunak <l.lunak@kde.org>
|
2007-11-13 16:20:52 +00:00
|
|
|
Copyright (C) 2007 Christian Nitschkowski <christian.nitschkowski@kdemail.net>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Testing of painting a window more than once.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KWIN_THUMBNAILASIDE_H
|
|
|
|
#define KWIN_THUMBNAILASIDE_H
|
|
|
|
|
|
|
|
#include <kwineffects.h>
|
|
|
|
|
|
|
|
#include <qhash.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class ThumbnailAsideEffect
|
2011-02-25 19:25:21 +00:00
|
|
|
: public Effect
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
ThumbnailAsideEffect();
|
|
|
|
virtual void reconfigure(ReconfigureFlags);
|
|
|
|
virtual void paintScreen(int mask, QRegion region, ScreenPaintData& data);
|
|
|
|
private slots:
|
|
|
|
void toggleCurrentThumbnail();
|
2012-01-29 11:29:24 +00:00
|
|
|
void slotWindowClosed(KWin::EffectWindow *w);
|
|
|
|
void slotWindowGeometryShapeChanged(KWin::EffectWindow *w, const QRect &old);
|
|
|
|
void slotWindowDamaged(KWin::EffectWindow* w, const QRect& damage);
|
2011-08-27 09:21:31 +00:00
|
|
|
virtual bool isActive() const;
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
void addThumbnail(EffectWindow* w);
|
|
|
|
void removeThumbnail(EffectWindow* w);
|
|
|
|
void arrange();
|
|
|
|
void repaintAll();
|
|
|
|
struct Data {
|
|
|
|
EffectWindow* window; // the same like the key in the hash (makes code simpler)
|
|
|
|
int index;
|
|
|
|
QRect rect;
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
2011-01-30 14:34:42 +00:00
|
|
|
QHash< EffectWindow*, Data > windows;
|
|
|
|
int maxwidth;
|
|
|
|
int spacing;
|
|
|
|
double opacity;
|
|
|
|
int screen;
|
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|