| 562 | } |
| 563 | |
| 564 | KWin::DeclarativeScript::DeclarativeScript(int id, QString scriptName, QString pluginName, QObject *parent) |
| 565 | : AbstractScript(id, scriptName, pluginName, parent) |
| 566 | , m_context(new QQmlContext(Scripting::self()->declarativeScriptSharedContext(), this)) |
| 567 | , m_component(new QQmlComponent(Scripting::self()->qmlEngine(), this)) |
| 568 | { |
| 569 | m_context->setContextProperty(QStringLiteral("KWin"), new JSEngineGlobalMethodsWrapper(this)); |
| 570 | } |
| 571 | |
| 572 | KWin::DeclarativeScript::~DeclarativeScript() |
| 573 | { |
nothing calls this directly
no test coverage detected