1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
#include <QtScript/QScriptEngine>
#include <QtScript/QScriptContext>
#include <QtScript/QScriptValue>
#include <QtCore/QStringList>
#include <QtCore/QDebug>
#include <qmetaobject.h>
#include <qgraphicsitem.h>
#include <QVariant>
#include <qbrush.h>
#include <qcoreevent.h>
#include <qcursor.h>
#include <qevent.h>
#include <qgraphicsitem.h>
#include <qgraphicsscene.h>
#include <qgraphicssceneevent.h>
#include <qgraphicswidget.h>
#include <qlist.h>
#include <qpainter.h>
#include <qpainterpath.h>
#include <qpen.h>
#include <qpoint.h>
#include <qpolygon.h>
#include <qrect.h>
#include <qregion.h>
#include <qsize.h>
#include <qstyleoption.h>
#include <qtransform.h>
#include <qwidget.h>
#include "qtscriptshell_QAbstractGraphicsShapeItem.h"
static const char * const qtscript_QAbstractGraphicsShapeItem_function_names[] = {
"QAbstractGraphicsShapeItem"
// static
// prototype
, "brush"
, "pen"
, "setBrush"
, "setPen"
, "toString"
};
static const char * const qtscript_QAbstractGraphicsShapeItem_function_signatures[] = {
"QGraphicsItem parent, QGraphicsScene scene"
// static
// prototype
, ""
, ""
, "QBrush brush"
, "QPen pen"
""
};
static QScriptValue qtscript_QAbstractGraphicsShapeItem_throw_ambiguity_error_helper(
QScriptContext *context, const char *functionName, const char *signatures)
{
QStringList lines = QString::fromLatin1(signatures).split(QLatin1Char('\n'));
QStringList fullSignatures;
for (int i = 0; i < lines.size(); ++i)
fullSignatures.append(QString::fromLatin1("%0(%1)").arg(functionName).arg(lines.at(i)));
return context->throwError(QString::fromLatin1("QAbstractGraphicsShapeItem::%0(): could not find a function match; candidates are:\n%1")
.arg(functionName).arg(fullSignatures.join(QLatin1String("\n"))));
}
Q_DECLARE_METATYPE(QAbstractGraphicsShapeItem*)
Q_DECLARE_METATYPE(QtScriptShell_QAbstractGraphicsShapeItem*)
//
// QAbstractGraphicsShapeItem
//
static QScriptValue qtscript_QAbstractGraphicsShapeItem_prototype_call(QScriptContext *context, QScriptEngine *)
{
#if QT_VERSION > 0x040400
Q_ASSERT(context->callee().isFunction());
uint _id = context->callee().data().toUInt32();
#else
uint _id;
if (context->callee().isFunction())
_id = context->callee().data().toUInt32();
else
_id = 0xBABE0000 + 4;
#endif
Q_ASSERT((_id & 0xFFFF0000) == 0xBABE0000);
_id &= 0x0000FFFF;
QAbstractGraphicsShapeItem* _q_self = qscriptvalue_cast<QAbstractGraphicsShapeItem*>(context->thisObject());
if (!_q_self) {
return context->throwError(QScriptContext::TypeError,
QString::fromLatin1("QAbstractGraphicsShapeItem.%0(): this object is not a QAbstractGraphicsShapeItem")
.arg(qtscript_QAbstractGraphicsShapeItem_function_names[_id+1]));
}
switch (_id) {
case 0:
if (context->argumentCount() == 0) {
QBrush _q_result = _q_self->brush();
return qScriptValueFromValue(context->engine(), _q_result);
}
break;
case 1:
if (context->argumentCount() == 0) {
QPen _q_result = _q_self->pen();
return qScriptValueFromValue(context->engine(), _q_result);
}
break;
case 2:
if (context->argumentCount() == 1) {
QBrush _q_arg0 = qscriptvalue_cast<QBrush>(context->argument(0));
_q_self->setBrush(_q_arg0);
return context->engine()->undefinedValue();
}
break;
case 3:
if (context->argumentCount() == 1) {
QPen _q_arg0 = qscriptvalue_cast<QPen>(context->argument(0));
_q_self->setPen(_q_arg0);
return context->engine()->undefinedValue();
}
break;
case 4: {
QString result = QString::fromLatin1("QAbstractGraphicsShapeItem");
return QScriptValue(context->engine(), result);
}
default:
Q_ASSERT(false);
}
return qtscript_QAbstractGraphicsShapeItem_throw_ambiguity_error_helper(context,
qtscript_QAbstractGraphicsShapeItem_function_names[_id+1],
qtscript_QAbstractGraphicsShapeItem_function_signatures[_id+1]);
}
static QScriptValue qtscript_QAbstractGraphicsShapeItem_static_call(QScriptContext *context, QScriptEngine *)
{
uint _id = context->callee().data().toUInt32();
Q_ASSERT((_id & 0xFFFF0000) == 0xBABE0000);
_id &= 0x0000FFFF;
switch (_id) {
case 0:
if (context->thisObject().strictlyEquals(context->engine()->globalObject())) {
return context->throwError(QString::fromLatin1("QAbstractGraphicsShapeItem(): Did you forget to construct with 'new'?"));
}
if (context->argumentCount() == 0) {
QtScriptShell_QAbstractGraphicsShapeItem* _q_cpp_result = new QtScriptShell_QAbstractGraphicsShapeItem();
QScriptValue _q_result = context->engine()->newVariant(context->thisObject(), qVariantFromValue((QAbstractGraphicsShapeItem*)_q_cpp_result));
_q_cpp_result->__qtscript_self = _q_result;
return _q_result;
} else if (context->argumentCount() == 1) {
QGraphicsItem* _q_arg0 = qscriptvalue_cast<QGraphicsItem*>(context->argument(0));
QtScriptShell_QAbstractGraphicsShapeItem* _q_cpp_result = new QtScriptShell_QAbstractGraphicsShapeItem(_q_arg0);
QScriptValue _q_result = context->engine()->newVariant(context->thisObject(), qVariantFromValue((QAbstractGraphicsShapeItem*)_q_cpp_result));
_q_cpp_result->__qtscript_self = _q_result;
return _q_result;
} else if (context->argumentCount() == 2) {
QGraphicsItem* _q_arg0 = qscriptvalue_cast<QGraphicsItem*>(context->argument(0));
QGraphicsScene* _q_arg1 = qscriptvalue_cast<QGraphicsScene*>(context->argument(1));
QtScriptShell_QAbstractGraphicsShapeItem* _q_cpp_result = new QtScriptShell_QAbstractGraphicsShapeItem(_q_arg0, _q_arg1);
QScriptValue _q_result = context->engine()->newVariant(context->thisObject(), qVariantFromValue((QAbstractGraphicsShapeItem*)_q_cpp_result));
_q_cpp_result->__qtscript_self = _q_result;
return _q_result;
}
break;
default:
Q_ASSERT(false);
}
return qtscript_QAbstractGraphicsShapeItem_throw_ambiguity_error_helper(context,
qtscript_QAbstractGraphicsShapeItem_function_names[_id],
qtscript_QAbstractGraphicsShapeItem_function_signatures[_id]);
}
QScriptValue qtscript_create_QAbstractGraphicsShapeItem_class(QScriptEngine *engine)
{
static const int function_lengths[] = {
2
// static
// prototype
, 0
, 0
, 1
, 1
, 0
};
engine->setDefaultPrototype(qMetaTypeId<QAbstractGraphicsShapeItem*>(), QScriptValue());
QScriptValue proto = engine->newVariant(qVariantFromValue((QAbstractGraphicsShapeItem*)0));
proto.setPrototype(engine->defaultPrototype(qMetaTypeId<QGraphicsItem*>()));
for (int i = 0; i < 5; ++i) {
QScriptValue fun = engine->newFunction(qtscript_QAbstractGraphicsShapeItem_prototype_call, function_lengths[i+1]);
fun.setData(QScriptValue(engine, uint(0xBABE0000 + i)));
proto.setProperty(QString::fromLatin1(qtscript_QAbstractGraphicsShapeItem_function_names[i+1]),
fun, QScriptValue::SkipInEnumeration);
}
engine->setDefaultPrototype(qMetaTypeId<QAbstractGraphicsShapeItem*>(), proto);
QScriptValue ctor = engine->newFunction(qtscript_QAbstractGraphicsShapeItem_static_call, proto, function_lengths[0]);
ctor.setData(QScriptValue(engine, uint(0xBABE0000 + 0)));
return ctor;
}
|