2010-10-16 08:50:38 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2013-03-12 12:17:53 +00:00
|
|
|
Copyright (C) 2010 Martin Gräßlin <mgraesslin@kde.org>
|
2010-10-16 08:50:38 +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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#ifndef KWIN_STARTUPFEEDBACK_H
|
|
|
|
#define KWIN_STARTUPFEEDBACK_H
|
|
|
|
#include <QObject>
|
|
|
|
#include <kwineffects.h>
|
|
|
|
#include <KDE/KStartupInfo>
|
|
|
|
|
|
|
|
class KSelectionOwner;
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
class GLTexture;
|
|
|
|
|
|
|
|
class StartupFeedbackEffect
|
2011-02-25 19:25:21 +00:00
|
|
|
: public Effect
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-10-16 08:50:38 +00:00
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
StartupFeedbackEffect();
|
|
|
|
virtual ~StartupFeedbackEffect();
|
2010-10-16 08:50:38 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual void reconfigure(ReconfigureFlags flags);
|
|
|
|
virtual void prePaintScreen(ScreenPrePaintData& data, int time);
|
|
|
|
virtual void paintScreen(int mask, QRegion region, ScreenPaintData& data);
|
|
|
|
virtual void postPaintScreen();
|
2011-08-27 09:21:31 +00:00
|
|
|
virtual bool isActive() const;
|
2010-10-16 08:50:38 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
static bool supported();
|
2010-10-16 08:50:38 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private Q_SLOTS:
|
|
|
|
void gotNewStartup(const KStartupInfoId& id, const KStartupInfoData& data);
|
|
|
|
void gotRemoveStartup(const KStartupInfoId& id, const KStartupInfoData& data);
|
|
|
|
void gotStartupChange(const KStartupInfoId& id, const KStartupInfoData& data);
|
2011-03-12 13:37:30 +00:00
|
|
|
void slotMouseChanged(const QPoint& pos, const QPoint& oldpos, Qt::MouseButtons buttons, Qt::MouseButtons oldbuttons, Qt::KeyboardModifiers modifiers, Qt::KeyboardModifiers oldmodifiers);
|
2010-10-16 08:50:38 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
enum FeedbackType {
|
|
|
|
NoFeedback,
|
|
|
|
BouncingFeedback,
|
|
|
|
BlinkingFeedback,
|
|
|
|
PassiveFeedback
|
2010-10-16 08:50:38 +00:00
|
|
|
};
|
2011-01-30 14:34:42 +00:00
|
|
|
void start(const QString& icon);
|
|
|
|
void stop();
|
|
|
|
QImage scalePixmap(const QPixmap& pm, const QSize& size) const;
|
|
|
|
void prepareTextures(const QPixmap& pix);
|
|
|
|
QRect feedbackRect() const;
|
|
|
|
|
2012-08-27 09:14:03 +00:00
|
|
|
qreal m_bounceSizesRatio;
|
2011-01-30 14:34:42 +00:00
|
|
|
KStartupInfo* m_startupInfo;
|
|
|
|
KSelectionOwner* m_selection;
|
|
|
|
KStartupInfoId m_currentStartup;
|
|
|
|
QMap< KStartupInfoId, QString > m_startups; // QString == pixmap
|
|
|
|
bool m_active;
|
|
|
|
int m_frame;
|
|
|
|
int m_progress;
|
|
|
|
GLTexture* m_bouncingTextures[5];
|
|
|
|
GLTexture* m_texture; // for passive and blinking
|
|
|
|
FeedbackType m_type;
|
2012-06-28 16:12:13 +00:00
|
|
|
QRect m_currentGeometry, m_dirtyRect;
|
2011-01-30 14:34:42 +00:00
|
|
|
GLShader *m_blinkingShader;
|
|
|
|
};
|
2010-10-16 08:50:38 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|