2012-01-29 16:32:56 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2012 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
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_SCRIPTEDEFFECT_H
|
|
|
|
#define KWIN_SCRIPTEDEFFECT_H
|
|
|
|
|
|
|
|
#include <kwinanimationeffect.h>
|
|
|
|
|
2013-12-16 08:27:19 +00:00
|
|
|
class KConfigLoader;
|
2015-07-06 14:50:33 +00:00
|
|
|
class KPluginMetaData;
|
2012-01-29 16:32:56 +00:00
|
|
|
class QScriptEngine;
|
|
|
|
class QScriptValue;
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
class ScriptedEffect : public KWin::AnimationEffect
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2012-01-31 13:37:28 +00:00
|
|
|
Q_ENUMS(DataRole)
|
2015-03-28 23:15:22 +00:00
|
|
|
Q_ENUMS(Qt::Axis)
|
2012-03-09 12:16:09 +00:00
|
|
|
Q_ENUMS(Anchor)
|
2012-02-10 08:41:30 +00:00
|
|
|
Q_ENUMS(MetaType)
|
2015-03-30 09:38:38 +00:00
|
|
|
Q_ENUMS(EasingCurve)
|
2012-01-29 16:32:56 +00:00
|
|
|
public:
|
2012-01-31 13:37:28 +00:00
|
|
|
// copied from kwineffects.h
|
|
|
|
enum DataRole {
|
|
|
|
// Grab roles are used to force all other animations to ignore the window.
|
|
|
|
// The value of the data is set to the Effect's `this` value.
|
|
|
|
WindowAddedGrabRole = 1,
|
|
|
|
WindowClosedGrabRole,
|
|
|
|
WindowMinimizedGrabRole,
|
|
|
|
WindowUnminimizedGrabRole,
|
|
|
|
WindowForceBlurRole, ///< For fullscreen effects to enforce blurring of windows,
|
|
|
|
WindowBlurBehindRole, ///< For single windows to blur behind
|
2013-12-03 19:20:45 +00:00
|
|
|
WindowForceBackgroundContrastRole, ///< For fullscreen effects to enforce the background contrast,
|
|
|
|
WindowBackgroundContrastRole, ///< For single windows to enable Background contrast
|
2012-01-31 13:37:28 +00:00
|
|
|
LanczosCacheRole
|
|
|
|
};
|
2015-03-30 09:38:38 +00:00
|
|
|
enum EasingCurve {
|
|
|
|
GaussianCurve = 128
|
|
|
|
};
|
2012-01-29 16:32:56 +00:00
|
|
|
const QString &scriptFile() const {
|
|
|
|
return m_scriptFile;
|
|
|
|
}
|
2012-02-01 13:26:54 +00:00
|
|
|
virtual void reconfigure(ReconfigureFlags flags);
|
2014-03-24 10:50:09 +00:00
|
|
|
int requestedEffectChainPosition() const override {
|
|
|
|
return m_chainPosition;
|
|
|
|
}
|
2012-02-01 13:26:54 +00:00
|
|
|
QString activeConfig() const;
|
|
|
|
void setActiveConfig(const QString &name);
|
2014-03-24 10:50:09 +00:00
|
|
|
static ScriptedEffect *create(const QString &effectName, const QString &pathToScript, int chainPosition);
|
2015-07-06 14:50:33 +00:00
|
|
|
static ScriptedEffect *create(const KPluginMetaData &effect);
|
2012-05-10 14:09:36 +00:00
|
|
|
virtual ~ScriptedEffect();
|
2012-01-31 13:37:28 +00:00
|
|
|
/**
|
|
|
|
* Whether another effect has grabbed the @p w with the given @p grabRole.
|
|
|
|
* @param w The window to check
|
|
|
|
* @param grabRole The grab role to check
|
|
|
|
* @returns @c true if another window has grabbed the effect, @c false otherwise
|
|
|
|
**/
|
|
|
|
Q_SCRIPTABLE bool isGrabbed(KWin::EffectWindow *w, DataRole grabRole);
|
2012-02-01 13:26:54 +00:00
|
|
|
/**
|
2012-02-10 08:11:28 +00:00
|
|
|
* Reads the value from the configuration data for the given key.
|
|
|
|
* @param key The key to search for
|
|
|
|
* @param defaultValue The value to return if the key is not found
|
2012-02-01 13:26:54 +00:00
|
|
|
* @returns The config value if present
|
|
|
|
**/
|
2012-02-10 08:11:28 +00:00
|
|
|
Q_SCRIPTABLE QVariant readConfig(const QString &key, const QVariant defaultValue = QVariant());
|
2012-03-25 07:59:01 +00:00
|
|
|
void registerShortcut(QAction *a, QScriptValue callback);
|
|
|
|
const QHash<QAction*, QScriptValue> &shortcutCallbacks() const {
|
|
|
|
return m_shortcutCallbacks;
|
|
|
|
}
|
2012-05-10 14:09:36 +00:00
|
|
|
QHash<int, QList<QScriptValue > > &screenEdgeCallbacks() {
|
|
|
|
return m_screenEdgeCallbacks;
|
|
|
|
}
|
2012-01-29 16:32:56 +00:00
|
|
|
|
|
|
|
public Q_SLOTS:
|
2015-03-28 23:15:22 +00:00
|
|
|
quint64 animate(KWin::EffectWindow *w, Attribute a, int ms, KWin::FPx2 to, KWin::FPx2 from = KWin::FPx2(), uint metaData = 0, QEasingCurve::Type curve = QEasingCurve::Linear, int delay = 0);
|
|
|
|
quint64 set(KWin::EffectWindow *w, Attribute a, int ms, KWin::FPx2 to, KWin::FPx2 from = KWin::FPx2(), uint metaData = 0, QEasingCurve::Type curve = QEasingCurve::Linear, int delay = 0);
|
2013-02-28 18:52:16 +00:00
|
|
|
bool cancel(quint64 animationId) { return AnimationEffect::cancel(animationId); }
|
2013-01-22 11:47:06 +00:00
|
|
|
virtual bool borderActivated(ElectricBorder border);
|
2012-01-29 16:32:56 +00:00
|
|
|
|
2012-02-01 13:26:54 +00:00
|
|
|
Q_SIGNALS:
|
|
|
|
/**
|
|
|
|
* Signal emitted whenever the effect's config changed.
|
|
|
|
**/
|
|
|
|
void configChanged();
|
2015-03-30 09:38:38 +00:00
|
|
|
void animationEnded(KWin::EffectWindow *w, quint64 animationId);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void animationEnded(KWin::EffectWindow *w, Attribute a, uint meta);
|
2012-02-01 13:26:54 +00:00
|
|
|
|
2012-01-29 16:32:56 +00:00
|
|
|
private Q_SLOTS:
|
|
|
|
void signalHandlerException(const QScriptValue &value);
|
2012-03-25 07:59:01 +00:00
|
|
|
void globalShortcutTriggered();
|
2012-01-29 16:32:56 +00:00
|
|
|
private:
|
|
|
|
ScriptedEffect();
|
2012-02-01 13:26:54 +00:00
|
|
|
bool init(const QString &effectName, const QString &pathToScript);
|
2012-01-29 16:32:56 +00:00
|
|
|
QScriptEngine *m_engine;
|
2012-02-01 13:26:54 +00:00
|
|
|
QString m_effectName;
|
2012-01-29 16:32:56 +00:00
|
|
|
QString m_scriptFile;
|
2012-03-25 07:59:01 +00:00
|
|
|
QHash<QAction*, QScriptValue> m_shortcutCallbacks;
|
2012-05-10 14:09:36 +00:00
|
|
|
QHash<int, QList<QScriptValue> > m_screenEdgeCallbacks;
|
2013-12-16 08:27:19 +00:00
|
|
|
KConfigLoader *m_config;
|
2014-03-24 10:50:09 +00:00
|
|
|
int m_chainPosition;
|
2012-01-29 16:32:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // KWIN_SCRIPTEDEFFECT_H
|