/* * Copyright 2007 Richard J. Moore * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License version 2 as * published by the Free Software Foundation * * 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 Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include "../backportglobal.h" #include "../appletinterface.h" Q_DECLARE_METATYPE(QScript::Pointer::wrapped_pointer_type) Q_DECLARE_METATYPE(QGraphicsWidget*) Q_DECLARE_METATYPE(QGraphicsGridLayout*) Q_DECLARE_METATYPE(QGraphicsLayoutItem*) DECLARE_POINTER_METATYPE(QGraphicsLinearLayout) DECLARE_VOID_NUMBER_METHOD(QGraphicsLinearLayout, removeAt) DECLARE_VOID_NUMBER_METHOD(QGraphicsLinearLayout, addStretch) DECLARE_VOID_NUMBER_NUMBER_METHOD(QGraphicsLinearLayout, insertStretch) DECLARE_VOID_NUMBER_NUMBER_METHOD(QGraphicsLinearLayout, setItemSpacing) DECLARE_VOID_QUAD_NUMBER_METHOD(QGraphicsLinearLayout, setContentsMargins) DECLARE_NUMBER_GET_SET_METHODS(QGraphicsLinearLayout, spacing, setSpacing) ///////////////////////////////////////////////////////////// QGraphicsLayoutItem *layoutItem(QScriptContext *ctx, int index = 0) { QObject *object = ctx->argument(index).toQObject(); QGraphicsLayoutItem *item = qobject_cast(object); if (!item) { item = qscriptvalue_cast(ctx->argument(index)); } if (!item) { item = qscriptvalue_cast(ctx->argument(index)); } if (!item) { AppletInterface *interface = qobject_cast(object); if (!interface) { interface = qobject_cast(ctx->engine()->globalObject().property("plasmoid").toQObject()); } if (interface) { item = interface->applet(); } } return item; } static QScriptValue ctor(QScriptContext *ctx, QScriptEngine *eng) { QGraphicsLayoutItem *parent = layoutItem(ctx); if (!parent) { return ctx->throwError(i18n("The parent must be a QGraphicsLayoutItem")); } return qScriptValueFromValue(eng, new QGraphicsLinearLayout(parent)); } BEGIN_DECLARE_METHOD(QGraphicsLinearLayout, orientation) { return QScriptValue(eng, static_cast(self->orientation())); } END_DECLARE_METHOD BEGIN_DECLARE_METHOD(QGraphicsLinearLayout, setOrientation) { self->setOrientation(static_cast(ctx->argument(0).toInt32())); return eng->undefinedValue(); } END_DECLARE_METHOD BEGIN_DECLARE_METHOD(QGraphicsLinearLayout, setAlignment) { QGraphicsLayoutItem *item = layoutItem(ctx); if (!item) { return eng->undefinedValue(); } self->setAlignment(item, static_cast(ctx->argument(1).toInt32())); return eng->undefinedValue(); } END_DECLARE_METHOD BEGIN_DECLARE_METHOD(QGraphicsLinearLayout, insertItem) { QGraphicsLayoutItem *item = layoutItem(ctx, 1); if (!item) { return eng->undefinedValue(); } self->insertItem(ctx->argument(0).toInt32(), item); return eng->undefinedValue(); } END_DECLARE_METHOD BEGIN_DECLARE_METHOD(QGraphicsLinearLayout, removeItem) { QGraphicsLayoutItem *item = layoutItem(ctx); if (!item) { return eng->undefinedValue(); } self->removeItem(item); return eng->undefinedValue(); } END_DECLARE_METHOD BEGIN_DECLARE_METHOD(QGraphicsLinearLayout, setStretchFactor) { QGraphicsLayoutItem *item = ctx->argument(0).toVariant().value(); if (!item) { return eng->undefinedValue(); } self->setStretchFactor(item, static_cast(ctx->argument(1).toInt32())); return eng->undefinedValue(); } END_DECLARE_METHOD BEGIN_DECLARE_METHOD(QGraphicsLinearLayout, addItem) { QGraphicsLayoutItem *item = layoutItem(ctx); if (!item) { return ctx->throwError(QScriptContext::TypeError, "QGraphicsLinearLayout.prototype.addItem: argument is not a GraphicsLayoutItem"); } self->addItem(item); return eng->undefinedValue(); } END_DECLARE_METHOD BEGIN_DECLARE_METHOD(QGraphicsItem, toString) { return QScriptValue(eng, "QGraphicsLinearLayout"); } END_DECLARE_METHOD ///////////////////////////////////////////////////////////// class PrototypeLinearLayout : public QGraphicsLinearLayout { public: PrototypeLinearLayout() { } }; QScriptValue constructLinearLayoutClass(QScriptEngine *eng) { // QScriptValue proto = QScript::wrapGVPointer(eng, new QGraphicsLinearLayout(), ); QScriptValue proto = QScript::wrapPointer(eng, new QGraphicsLinearLayout(), QScript::UserOwnership); ADD_GET_SET_METHODS(proto, spacing, setSpacing); ADD_GET_SET_METHODS(proto, orientation, setOrientation); ADD_METHOD(proto, removeAt); ADD_METHOD(proto, addStretch); ADD_METHOD(proto, setStretchFactor); ADD_METHOD(proto, setAlignment); ADD_METHOD(proto, insertStretch); ADD_METHOD(proto, setItemSpacing); ADD_METHOD(proto, setContentsMargins); ADD_METHOD(proto, addItem); ADD_METHOD(proto, removeItem); ADD_METHOD(proto, insertItem); ADD_METHOD(proto, toString); QScript::registerPointerMetaType(eng, proto); QScriptValue ctorFun = eng->newFunction(ctor, proto); //ADD_ENUM_VALUE(ctorFun, QGraphicsItem, ItemIsMovable); return ctorFun; }