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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#include "scriptedeffect.h"
|
|
|
|
#include "meta.h"
|
2012-03-25 07:59:01 +00:00
|
|
|
#include "scriptingutils.h"
|
2012-05-10 14:09:36 +00:00
|
|
|
#include "workspace_wrapper.h"
|
2013-01-21 08:04:06 +00:00
|
|
|
#ifdef KWIN_BUILD_SCREENEDGES
|
|
|
|
#include "../screenedge.h"
|
|
|
|
#endif
|
2012-01-29 16:32:56 +00:00
|
|
|
// KDE
|
2012-02-10 08:11:28 +00:00
|
|
|
#include <KDE/KConfigGroup>
|
2012-01-29 16:32:56 +00:00
|
|
|
#include <KDE/KDebug>
|
2012-02-01 13:26:54 +00:00
|
|
|
#include <KDE/KStandardDirs>
|
2012-01-29 16:32:56 +00:00
|
|
|
// Qt
|
|
|
|
#include <QtCore/QFile>
|
|
|
|
#include <QtScript/QScriptEngine>
|
|
|
|
#include <QtScript/QScriptValueIterator>
|
|
|
|
|
|
|
|
typedef KWin::EffectWindow* KEffectWindowRef;
|
2012-03-09 12:16:09 +00:00
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(KWin::AnimationData*)
|
|
|
|
Q_SCRIPT_DECLARE_QMETAOBJECT(KWin::AnimationData, QObject*)
|
|
|
|
|
2012-01-29 16:32:56 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
QScriptValue kwinEffectScriptPrint(QScriptContext *context, QScriptEngine *engine)
|
|
|
|
{
|
|
|
|
ScriptedEffect *script = qobject_cast<ScriptedEffect*>(context->callee().data().toQObject());
|
|
|
|
QString result;
|
|
|
|
for (int i = 0; i < context->argumentCount(); ++i) {
|
|
|
|
if (i > 0) {
|
|
|
|
result.append(" ");
|
|
|
|
}
|
|
|
|
result.append(context->argument(i).toString());
|
|
|
|
}
|
|
|
|
kDebug(1212) << script->scriptFile() << ":" << result;
|
|
|
|
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
|
2012-02-01 13:47:20 +00:00
|
|
|
QScriptValue kwinEffectScriptAnimationTime(QScriptContext *context, QScriptEngine *engine)
|
|
|
|
{
|
|
|
|
if (context->argumentCount() != 1) {
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
if (!context->argument(0).isNumber()) {
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
return Effect::animationTime(context->argument(0).toInteger());
|
|
|
|
}
|
|
|
|
|
2012-02-02 13:34:12 +00:00
|
|
|
QScriptValue kwinEffectDisplayWidth(QScriptContext *context, QScriptEngine *engine)
|
|
|
|
{
|
|
|
|
Q_UNUSED(context)
|
|
|
|
Q_UNUSED(engine)
|
|
|
|
return Effect::displayWidth();
|
|
|
|
}
|
|
|
|
|
|
|
|
QScriptValue kwinEffectDisplayHeight(QScriptContext *context, QScriptEngine *engine)
|
|
|
|
{
|
|
|
|
Q_UNUSED(context)
|
|
|
|
Q_UNUSED(engine)
|
|
|
|
return Effect::displayHeight();
|
|
|
|
}
|
|
|
|
|
2012-03-25 07:59:01 +00:00
|
|
|
QScriptValue kwinScriptGlobalShortcut(QScriptContext *context, QScriptEngine *engine)
|
|
|
|
{
|
|
|
|
return globalShortcut<KWin::ScriptedEffect*>(context, engine);
|
|
|
|
}
|
|
|
|
|
2012-05-10 14:09:36 +00:00
|
|
|
QScriptValue kwinScriptScreenEdge(QScriptContext *context, QScriptEngine *engine)
|
|
|
|
{
|
|
|
|
return registerScreenEdge<KWin::ScriptedEffect*>(context, engine);
|
|
|
|
}
|
|
|
|
|
Adding more declarative way to animate a window in JavaScript
The current API call to animate a window does not feel very JavaScripty.
Therefore a new method "animate" is added to the global scope, which
takes a JavaScript object of the following structure:
{
window: EffectWindow, /* the window to animate, required */
duration: int, /* duration in msec, required */
curve: QEasingCurve.Type, /* global easing curve, optional */
type: Effect.Attribute, /* for first animation, optional */
from: FPx2, /* for first animation, optional */
to: FPx2, /* for first animation, optional */
delay: int, /* for first animation, optional */
animations: [ /* additional animations, optional */
{
curve: QEasingCurve.Type, /* overrides global */
type: Effect.Attribute,
from: FPx2,
to: FPx2,
delay: int
}
]
}
At least one animation needs to be specified either on the root level
or in the array of animations. Curve is the only property on root level
which is used in the animations, if not provided.
REVIEW: 107079
2012-10-27 15:43:14 +00:00
|
|
|
struct AnimationSettings {
|
|
|
|
AnimationEffect::Attribute a;
|
2012-11-09 14:36:44 +00:00
|
|
|
QEasingCurve::Type curve;
|
Adding more declarative way to animate a window in JavaScript
The current API call to animate a window does not feel very JavaScripty.
Therefore a new method "animate" is added to the global scope, which
takes a JavaScript object of the following structure:
{
window: EffectWindow, /* the window to animate, required */
duration: int, /* duration in msec, required */
curve: QEasingCurve.Type, /* global easing curve, optional */
type: Effect.Attribute, /* for first animation, optional */
from: FPx2, /* for first animation, optional */
to: FPx2, /* for first animation, optional */
delay: int, /* for first animation, optional */
animations: [ /* additional animations, optional */
{
curve: QEasingCurve.Type, /* overrides global */
type: Effect.Attribute,
from: FPx2,
to: FPx2,
delay: int
}
]
}
At least one animation needs to be specified either on the root level
or in the array of animations. Curve is the only property on root level
which is used in the animations, if not provided.
REVIEW: 107079
2012-10-27 15:43:14 +00:00
|
|
|
bool curveSet;
|
|
|
|
FPx2 from;
|
|
|
|
FPx2 to;
|
|
|
|
int delay;
|
|
|
|
bool valid;
|
|
|
|
};
|
|
|
|
|
|
|
|
AnimationSettings animationSettingsFromObject(QScriptValue &object)
|
|
|
|
{
|
|
|
|
AnimationSettings settings;
|
2012-11-09 14:36:44 +00:00
|
|
|
settings.curve = QEasingCurve::Linear;
|
Adding more declarative way to animate a window in JavaScript
The current API call to animate a window does not feel very JavaScripty.
Therefore a new method "animate" is added to the global scope, which
takes a JavaScript object of the following structure:
{
window: EffectWindow, /* the window to animate, required */
duration: int, /* duration in msec, required */
curve: QEasingCurve.Type, /* global easing curve, optional */
type: Effect.Attribute, /* for first animation, optional */
from: FPx2, /* for first animation, optional */
to: FPx2, /* for first animation, optional */
delay: int, /* for first animation, optional */
animations: [ /* additional animations, optional */
{
curve: QEasingCurve.Type, /* overrides global */
type: Effect.Attribute,
from: FPx2,
to: FPx2,
delay: int
}
]
}
At least one animation needs to be specified either on the root level
or in the array of animations. Curve is the only property on root level
which is used in the animations, if not provided.
REVIEW: 107079
2012-10-27 15:43:14 +00:00
|
|
|
settings.valid = true;
|
|
|
|
settings.curveSet = false;
|
|
|
|
|
|
|
|
settings.to = qscriptvalue_cast<FPx2>(object.property("to"));
|
|
|
|
settings.from = qscriptvalue_cast<FPx2>(object.property("from"));
|
|
|
|
|
|
|
|
QScriptValue delay = object.property("delay");
|
|
|
|
if (delay.isValid() && delay.isNumber()) {
|
|
|
|
settings.delay = delay.toInt32();
|
|
|
|
} else {
|
|
|
|
settings.delay = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
QScriptValue curve = object.property("curve");
|
|
|
|
if (curve.isValid() && curve.isNumber()) {
|
2012-11-09 14:36:44 +00:00
|
|
|
settings.curve = static_cast<QEasingCurve::Type>(curve.toInt32());
|
Adding more declarative way to animate a window in JavaScript
The current API call to animate a window does not feel very JavaScripty.
Therefore a new method "animate" is added to the global scope, which
takes a JavaScript object of the following structure:
{
window: EffectWindow, /* the window to animate, required */
duration: int, /* duration in msec, required */
curve: QEasingCurve.Type, /* global easing curve, optional */
type: Effect.Attribute, /* for first animation, optional */
from: FPx2, /* for first animation, optional */
to: FPx2, /* for first animation, optional */
delay: int, /* for first animation, optional */
animations: [ /* additional animations, optional */
{
curve: QEasingCurve.Type, /* overrides global */
type: Effect.Attribute,
from: FPx2,
to: FPx2,
delay: int
}
]
}
At least one animation needs to be specified either on the root level
or in the array of animations. Curve is the only property on root level
which is used in the animations, if not provided.
REVIEW: 107079
2012-10-27 15:43:14 +00:00
|
|
|
settings.curveSet = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QScriptValue type = object.property("type");
|
|
|
|
if (!type.isValid() || !type.isNumber()) {
|
|
|
|
settings.valid = false;
|
|
|
|
}
|
|
|
|
settings.a = static_cast<AnimationEffect::Attribute>(type.toInt32());
|
|
|
|
|
|
|
|
return settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
QScriptValue kwinEffectAnimate(QScriptContext *context, QScriptEngine *engine)
|
|
|
|
{
|
|
|
|
ScriptedEffect *effect = qobject_cast<ScriptedEffect*>(context->callee().data().toQObject());
|
|
|
|
if (!effect) {
|
|
|
|
context->throwError(QScriptContext::ReferenceError, "Internal Scripted KWin Effect error");
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
if (context->argumentCount() != 1) {
|
|
|
|
context->throwError(QScriptContext::SyntaxError, "Exactly one argument expected");
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
if (!context->argument(0).isObject()) {
|
|
|
|
context->throwError(QScriptContext::TypeError, "Argument needs to be an object");
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
QScriptValue object = context->argument(0);
|
|
|
|
QScriptValue windowProperty = object.property("window");
|
|
|
|
if (!windowProperty.isValid() || !windowProperty.isObject()) {
|
|
|
|
context->throwError(QScriptContext::TypeError, "Window property missing in animation options");
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
EffectWindow *window = qobject_cast<EffectWindow*>(windowProperty.toQObject());
|
|
|
|
if (!window) {
|
|
|
|
context->throwError(QScriptContext::TypeError, "Window property does not contain an EffectWindow");
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
QScriptValue durationProperty = object.property("duration");
|
|
|
|
if (!durationProperty.isValid() || !durationProperty.isNumber()) {
|
|
|
|
context->throwError(QScriptContext::TypeError, "Duration property missing in animation options");
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
const int duration = durationProperty.toInt32();
|
|
|
|
|
2012-11-09 14:36:44 +00:00
|
|
|
QEasingCurve::Type curve = QEasingCurve::Linear;
|
Adding more declarative way to animate a window in JavaScript
The current API call to animate a window does not feel very JavaScripty.
Therefore a new method "animate" is added to the global scope, which
takes a JavaScript object of the following structure:
{
window: EffectWindow, /* the window to animate, required */
duration: int, /* duration in msec, required */
curve: QEasingCurve.Type, /* global easing curve, optional */
type: Effect.Attribute, /* for first animation, optional */
from: FPx2, /* for first animation, optional */
to: FPx2, /* for first animation, optional */
delay: int, /* for first animation, optional */
animations: [ /* additional animations, optional */
{
curve: QEasingCurve.Type, /* overrides global */
type: Effect.Attribute,
from: FPx2,
to: FPx2,
delay: int
}
]
}
At least one animation needs to be specified either on the root level
or in the array of animations. Curve is the only property on root level
which is used in the animations, if not provided.
REVIEW: 107079
2012-10-27 15:43:14 +00:00
|
|
|
QList<AnimationSettings> settings;
|
|
|
|
AnimationSettings globalSettings = animationSettingsFromObject(object);
|
|
|
|
if (globalSettings.valid) {
|
|
|
|
settings << globalSettings;
|
|
|
|
if (globalSettings.curveSet) {
|
|
|
|
curve = globalSettings.curve;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
QScriptValue animations = object.property("animations");
|
|
|
|
if (animations.isValid()) {
|
|
|
|
if (!animations.isArray()) {
|
|
|
|
context->throwError(QScriptContext::TypeError, "Animations provided but not an array");
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
const int length = static_cast<int>(animations.property("length").toInteger());
|
|
|
|
for (int i=0; i<length; ++i) {
|
|
|
|
QScriptValue value = animations.property(QString::number(i));
|
|
|
|
if (!value.isValid()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (value.isObject()) {
|
|
|
|
AnimationSettings s = animationSettingsFromObject(value);
|
|
|
|
if (s.valid) {
|
|
|
|
settings << s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (settings.empty()) {
|
|
|
|
context->throwError(QScriptContext::TypeError, "No animations provided");
|
|
|
|
return engine->undefinedValue();
|
|
|
|
}
|
|
|
|
foreach (const AnimationSettings &setting, settings) {
|
|
|
|
effect->animate(window,
|
|
|
|
setting.a,
|
|
|
|
duration,
|
|
|
|
setting.to,
|
|
|
|
setting.from,
|
|
|
|
NULL,
|
|
|
|
setting.curveSet ? setting.curve : curve,
|
|
|
|
setting.delay);
|
|
|
|
}
|
|
|
|
|
|
|
|
return engine->newVariant(true);
|
|
|
|
}
|
|
|
|
|
2012-01-29 16:32:56 +00:00
|
|
|
QScriptValue effectWindowToScriptValue(QScriptEngine *eng, const KEffectWindowRef &window)
|
|
|
|
{
|
|
|
|
return eng->newQObject(window, QScriptEngine::QtOwnership,
|
|
|
|
QScriptEngine::ExcludeChildObjects | QScriptEngine::ExcludeDeleteLater | QScriptEngine::PreferExistingWrapperObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
void effectWindowFromScriptValue(const QScriptValue &value, EffectWindow* &window)
|
|
|
|
{
|
|
|
|
window = qobject_cast<EffectWindow*>(value.toQObject());
|
|
|
|
}
|
|
|
|
|
2012-01-30 09:21:32 +00:00
|
|
|
QScriptValue fpx2ToScriptValue(QScriptEngine *eng, const KWin::FPx2 &fpx2)
|
|
|
|
{
|
|
|
|
QScriptValue val = eng->newObject();
|
|
|
|
val.setProperty("value1", fpx2[0]);
|
|
|
|
val.setProperty("value2", fpx2[1]);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
void fpx2FromScriptValue(const QScriptValue &value, KWin::FPx2 &fpx2)
|
|
|
|
{
|
|
|
|
if (value.isNull()) {
|
|
|
|
fpx2 = FPx2();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (value.isNumber()) {
|
|
|
|
fpx2 = FPx2(value.toNumber());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (value.isObject()) {
|
|
|
|
QScriptValue value1 = value.property("value1");
|
|
|
|
QScriptValue value2 = value.property("value2");
|
|
|
|
if (!value1.isValid() || !value2.isValid() || !value1.isNumber() || !value2.isNumber()) {
|
|
|
|
kDebug(1212) << "Cannot cast scripted FPx2 to C++";
|
|
|
|
fpx2 = FPx2();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fpx2 = FPx2(value1.toNumber(), value2.toNumber());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 13:26:54 +00:00
|
|
|
ScriptedEffect *ScriptedEffect::create(const QString& effectName, const QString& pathToScript)
|
2012-01-29 16:32:56 +00:00
|
|
|
{
|
|
|
|
ScriptedEffect *effect = new ScriptedEffect();
|
2012-02-01 13:26:54 +00:00
|
|
|
if (!effect->init(effectName, pathToScript)) {
|
2012-01-29 16:32:56 +00:00
|
|
|
delete effect;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return effect;
|
|
|
|
}
|
|
|
|
|
|
|
|
ScriptedEffect::ScriptedEffect()
|
|
|
|
: AnimationEffect()
|
|
|
|
, m_engine(new QScriptEngine(this))
|
2012-02-01 13:26:54 +00:00
|
|
|
, m_scriptFile(QString())
|
2012-01-29 16:32:56 +00:00
|
|
|
{
|
|
|
|
connect(m_engine, SIGNAL(signalHandlerException(QScriptValue)), SLOT(signalHandlerException(QScriptValue)));
|
2012-05-10 14:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ScriptedEffect::~ScriptedEffect()
|
|
|
|
{
|
2012-01-29 16:32:56 +00:00
|
|
|
}
|
|
|
|
|
2012-02-01 13:26:54 +00:00
|
|
|
bool ScriptedEffect::init(const QString &effectName, const QString &pathToScript)
|
2012-01-29 16:32:56 +00:00
|
|
|
{
|
|
|
|
QFile scriptFile(pathToScript);
|
|
|
|
if (!scriptFile.open(QIODevice::ReadOnly)) {
|
2012-02-02 13:34:59 +00:00
|
|
|
kDebug(1212) << "Could not open script file: " << pathToScript;
|
2012-01-29 16:32:56 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-02-01 13:26:54 +00:00
|
|
|
m_effectName = effectName;
|
2012-01-29 16:32:56 +00:00
|
|
|
m_scriptFile = pathToScript;
|
2012-02-01 13:26:54 +00:00
|
|
|
|
2012-01-29 16:32:56 +00:00
|
|
|
QScriptValue effectsObject = m_engine->newQObject(effects, QScriptEngine::QtOwnership, QScriptEngine::ExcludeDeleteLater);
|
|
|
|
m_engine->globalObject().setProperty("effects", effectsObject, QScriptValue::Undeletable);
|
2012-01-31 13:37:28 +00:00
|
|
|
m_engine->globalObject().setProperty("Effect", m_engine->newQMetaObject(&ScriptedEffect::staticMetaObject));
|
2012-05-10 14:09:36 +00:00
|
|
|
m_engine->globalObject().setProperty("KWin", m_engine->newQMetaObject(&WorkspaceWrapper::staticMetaObject));
|
2012-11-09 14:36:44 +00:00
|
|
|
m_engine->globalObject().setProperty("QEasingCurve", m_engine->newQMetaObject(&QEasingCurve::staticMetaObject));
|
2012-01-29 16:32:56 +00:00
|
|
|
m_engine->globalObject().setProperty("effect", m_engine->newQObject(this, QScriptEngine::QtOwnership, QScriptEngine::ExcludeDeleteLater), QScriptValue::Undeletable);
|
2012-03-09 12:16:09 +00:00
|
|
|
m_engine->globalObject().setProperty("AnimationData", m_engine->scriptValueFromQMetaObject<AnimationData>());
|
2012-01-29 16:32:56 +00:00
|
|
|
MetaScripting::registration(m_engine);
|
|
|
|
qScriptRegisterMetaType<KEffectWindowRef>(m_engine, effectWindowToScriptValue, effectWindowFromScriptValue);
|
2012-01-30 09:21:32 +00:00
|
|
|
qScriptRegisterMetaType<KWin::FPx2>(m_engine, fpx2ToScriptValue, fpx2FromScriptValue);
|
2012-02-02 17:00:07 +00:00
|
|
|
qScriptRegisterSequenceMetaType<QList< KWin::EffectWindow* > >(m_engine);
|
2012-01-29 16:32:56 +00:00
|
|
|
// add our print
|
|
|
|
QScriptValue printFunc = m_engine->newFunction(kwinEffectScriptPrint);
|
|
|
|
printFunc.setData(m_engine->newQObject(this));
|
|
|
|
m_engine->globalObject().setProperty("print", printFunc);
|
2012-02-01 13:47:20 +00:00
|
|
|
// add our animationTime
|
|
|
|
QScriptValue animationTimeFunc = m_engine->newFunction(kwinEffectScriptAnimationTime);
|
|
|
|
animationTimeFunc.setData(m_engine->newQObject(this));
|
|
|
|
m_engine->globalObject().setProperty("animationTime", animationTimeFunc);
|
2012-02-02 13:34:12 +00:00
|
|
|
// add displayWidth and displayHeight
|
|
|
|
QScriptValue displayWidthFunc = m_engine->newFunction(kwinEffectDisplayWidth);
|
|
|
|
m_engine->globalObject().setProperty("displayWidth", displayWidthFunc);
|
|
|
|
QScriptValue displayHeightFunc = m_engine->newFunction(kwinEffectDisplayHeight);
|
|
|
|
m_engine->globalObject().setProperty("displayHeight", displayHeightFunc);
|
2012-03-25 07:59:01 +00:00
|
|
|
// add global Shortcut
|
|
|
|
registerGlobalShortcutFunction(this, m_engine, kwinScriptGlobalShortcut);
|
2012-05-10 14:09:36 +00:00
|
|
|
registerScreenEdgeFunction(this, m_engine, kwinScriptScreenEdge);
|
Adding more declarative way to animate a window in JavaScript
The current API call to animate a window does not feel very JavaScripty.
Therefore a new method "animate" is added to the global scope, which
takes a JavaScript object of the following structure:
{
window: EffectWindow, /* the window to animate, required */
duration: int, /* duration in msec, required */
curve: QEasingCurve.Type, /* global easing curve, optional */
type: Effect.Attribute, /* for first animation, optional */
from: FPx2, /* for first animation, optional */
to: FPx2, /* for first animation, optional */
delay: int, /* for first animation, optional */
animations: [ /* additional animations, optional */
{
curve: QEasingCurve.Type, /* overrides global */
type: Effect.Attribute,
from: FPx2,
to: FPx2,
delay: int
}
]
}
At least one animation needs to be specified either on the root level
or in the array of animations. Curve is the only property on root level
which is used in the animations, if not provided.
REVIEW: 107079
2012-10-27 15:43:14 +00:00
|
|
|
// add the animate method
|
|
|
|
QScriptValue animateFunc = m_engine->newFunction(kwinEffectAnimate);
|
|
|
|
animateFunc.setData(m_engine->newQObject(this));
|
|
|
|
m_engine->globalObject().setProperty("animate", animateFunc);
|
2012-01-29 16:32:56 +00:00
|
|
|
|
|
|
|
QScriptValue ret = m_engine->evaluate(scriptFile.readAll());
|
|
|
|
|
|
|
|
if (ret.isError()) {
|
|
|
|
signalHandlerException(ret);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
scriptFile.close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptedEffect::signalHandlerException(const QScriptValue &value)
|
|
|
|
{
|
|
|
|
if (value.isError()) {
|
|
|
|
kDebug(1212) << "KWin Effect script encountered an error at [Line " << m_engine->uncaughtExceptionLineNumber() << "]";
|
|
|
|
kDebug(1212) << "Message: " << value.toString();
|
|
|
|
|
|
|
|
QScriptValueIterator iter(value);
|
|
|
|
while (iter.hasNext()) {
|
|
|
|
iter.next();
|
|
|
|
kDebug(1212) << " " << iter.name() << ": " << iter.value().toString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-09 14:36:44 +00:00
|
|
|
void ScriptedEffect::animate(KWin::EffectWindow* w, KWin::AnimationEffect::Attribute a, int ms, KWin::FPx2 to, KWin::FPx2 from, KWin::AnimationData* data, QEasingCurve::Type curve, int delay)
|
2012-01-29 16:32:56 +00:00
|
|
|
{
|
2012-03-09 12:16:09 +00:00
|
|
|
uint meta = 0;
|
|
|
|
if (data) {
|
|
|
|
if (data->axis() != 0) {
|
|
|
|
AnimationEffect::setMetaData(AnimationEffect::Axis, data->axis() -1, meta);
|
|
|
|
}
|
|
|
|
if (data->sourceAnchor() != 0) {
|
|
|
|
AnimationEffect::setMetaData(AnimationEffect::SourceAnchor, data->sourceAnchor(), meta);
|
|
|
|
}
|
|
|
|
if (data->targetAnchor() != 0) {
|
|
|
|
AnimationEffect::setMetaData(AnimationEffect::TargetAnchor, data->targetAnchor(), meta);
|
|
|
|
}
|
|
|
|
if (data->relativeSourceX() != 0) {
|
|
|
|
AnimationEffect::setMetaData(AnimationEffect::RelativeSourceX, data->relativeSourceX(), meta);
|
|
|
|
}
|
|
|
|
if (data->relativeSourceY() != 0) {
|
|
|
|
AnimationEffect::setMetaData(AnimationEffect::RelativeSourceY, data->relativeSourceY(), meta);
|
|
|
|
}
|
|
|
|
if (data->relativeTargetX() != 0) {
|
|
|
|
AnimationEffect::setMetaData(AnimationEffect::RelativeTargetX, data->relativeTargetX(), meta);
|
|
|
|
}
|
|
|
|
if (data->relativeTargetY() != 0) {
|
|
|
|
AnimationEffect::setMetaData(AnimationEffect::RelativeTargetY, data->relativeTargetY(), meta);
|
|
|
|
}
|
|
|
|
}
|
2012-11-09 14:36:44 +00:00
|
|
|
AnimationEffect::animate(w, a, meta, ms, to, QEasingCurve(curve), delay, from);
|
2012-01-29 16:32:56 +00:00
|
|
|
}
|
|
|
|
|
2012-01-31 13:37:28 +00:00
|
|
|
bool ScriptedEffect::isGrabbed(EffectWindow* w, ScriptedEffect::DataRole grabRole)
|
|
|
|
{
|
|
|
|
void *e = w->data(static_cast<KWin::DataRole>(grabRole)).value<void*>();
|
|
|
|
if (e) {
|
|
|
|
return e != this;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 13:26:54 +00:00
|
|
|
void ScriptedEffect::reconfigure(ReconfigureFlags flags)
|
|
|
|
{
|
|
|
|
AnimationEffect::reconfigure(flags);
|
|
|
|
emit configChanged();
|
|
|
|
}
|
|
|
|
|
2012-03-25 07:59:01 +00:00
|
|
|
void ScriptedEffect::registerShortcut(QAction *a, QScriptValue callback)
|
|
|
|
{
|
|
|
|
m_shortcutCallbacks.insert(a, callback);
|
|
|
|
connect(a, SIGNAL(triggered(bool)), SLOT(globalShortcutTriggered()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScriptedEffect::globalShortcutTriggered()
|
|
|
|
{
|
|
|
|
callGlobalShortcutCallback<KWin::ScriptedEffect*>(this, sender());
|
|
|
|
}
|
|
|
|
|
2013-01-22 11:47:06 +00:00
|
|
|
bool ScriptedEffect::borderActivated(ElectricBorder edge)
|
2012-05-10 14:09:36 +00:00
|
|
|
{
|
|
|
|
screenEdgeActivated(this, edge);
|
2013-01-22 11:47:06 +00:00
|
|
|
return true;
|
2012-05-10 14:09:36 +00:00
|
|
|
}
|
|
|
|
|
2012-02-10 08:11:28 +00:00
|
|
|
QVariant ScriptedEffect::readConfig(const QString &key, const QVariant defaultValue)
|
2012-02-01 13:26:54 +00:00
|
|
|
{
|
|
|
|
KConfigGroup cg = effects->effectConfig(m_effectName);
|
2012-02-10 08:11:28 +00:00
|
|
|
return cg.readEntry(key, defaultValue);
|
2012-02-01 13:26:54 +00:00
|
|
|
}
|
|
|
|
|
2012-03-09 12:16:09 +00:00
|
|
|
AnimationData::AnimationData (QObject* parent)
|
|
|
|
: QObject (parent)
|
|
|
|
, m_sourceAnchor((AnimationEffect::Anchor)0)
|
|
|
|
, m_targetAnchor((AnimationEffect::Anchor)0)
|
|
|
|
, m_relativeSourceX(0)
|
|
|
|
, m_relativeSourceY(0)
|
|
|
|
, m_relativeTargetX(0)
|
|
|
|
, m_relativeTargetY(0)
|
|
|
|
, m_axis((AnimationData::Axis)0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AnimationData::Axis AnimationData::axis() const
|
|
|
|
{
|
|
|
|
return m_axis;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AnimationData::relativeSourceX() const
|
|
|
|
{
|
|
|
|
return m_relativeSourceX;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AnimationData::relativeSourceY() const
|
|
|
|
{
|
|
|
|
return m_relativeSourceY;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AnimationData::relativeTargetX() const
|
|
|
|
{
|
|
|
|
return m_relativeTargetX;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AnimationData::relativeTargetY() const
|
|
|
|
{
|
|
|
|
return m_relativeTargetY;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationData::setRelativeSourceX(int relativeSourceX)
|
|
|
|
{
|
|
|
|
m_relativeSourceX = relativeSourceX;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationData::setRelativeSourceY(int relativeSourceY)
|
|
|
|
{
|
|
|
|
m_relativeSourceY = relativeSourceY;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationData::setRelativeTargetX(int relativeTargetX)
|
|
|
|
{
|
|
|
|
m_relativeTargetX = relativeTargetX;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationData::setRelativeTargetY(int relativeTargetY)
|
|
|
|
{
|
|
|
|
m_relativeTargetY = relativeTargetY;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationData::setAxis(AnimationData::Axis axis)
|
|
|
|
{
|
|
|
|
m_axis = axis;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationData::setSourceAnchor(AnimationEffect::Anchor sourceAnchor)
|
|
|
|
{
|
|
|
|
m_sourceAnchor = sourceAnchor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationData::setTargetAnchor(AnimationEffect::Anchor targetAnchor)
|
|
|
|
{
|
|
|
|
m_targetAnchor = targetAnchor;
|
|
|
|
}
|
|
|
|
|
|
|
|
AnimationEffect::Anchor AnimationData::sourceAnchor() const
|
|
|
|
{
|
|
|
|
return m_sourceAnchor;
|
|
|
|
}
|
|
|
|
|
|
|
|
AnimationEffect::Anchor AnimationData::targetAnchor() const
|
|
|
|
{
|
|
|
|
return m_targetAnchor;
|
|
|
|
}
|
|
|
|
|
2012-01-29 16:32:56 +00:00
|
|
|
} // namespace
|