You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
369 lines
8.0 KiB
369 lines
8.0 KiB
|
|
|
|
|
|
#include <tqcstring.h>
|
|
#include <tqimage.h>
|
|
#include <tqpainter.h>
|
|
#include <tqpalette.h>
|
|
#include <tqpixmap.h>
|
|
#include <tqfont.h>
|
|
|
|
#include <kjs/object.h>
|
|
|
|
#include <kjsembed/global.h>
|
|
#include <kjsembed/jsobjectproxy.h>
|
|
#include <kjsembed/jsopaqueproxy.h>
|
|
#include <kjsembed/jsbinding.h>
|
|
|
|
#include <tqcanvas.h>
|
|
#include "qcanvasellipse_imp.h"
|
|
|
|
/**
|
|
* Namespace containing the KJSEmbed library.
|
|
*/
|
|
namespace KJSEmbed {
|
|
|
|
TQCanvasEllipseImp::TQCanvasEllipseImp( KJS::ExecState *exec, int mid, bool constructor )
|
|
: JSProxyImp(exec), id(mid), cons(constructor)
|
|
{
|
|
}
|
|
|
|
TQCanvasEllipseImp::~TQCanvasEllipseImp()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Adds bindings for static methods and enum constants to the specified Object.
|
|
*/
|
|
void TQCanvasEllipseImp::addStaticBindings( KJS::ExecState *exec, KJS::Object &object )
|
|
{
|
|
JSProxy::MethodTable methods[] = {
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|
|
int idx = 0;
|
|
TQCString lastName;
|
|
|
|
while( methods[idx].name ) {
|
|
if ( lastName != methods[idx].name ) {
|
|
TQCanvasEllipseImp *meth = new TQCanvasEllipseImp( exec, methods[idx].id );
|
|
object.put( exec , methods[idx].name, KJS::Object(meth) );
|
|
lastName = methods[idx].name;
|
|
}
|
|
++idx;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
/**
|
|
* Adds bindings for instance methods to the specified Object.
|
|
*/
|
|
void TQCanvasEllipseImp::addBindings( KJS::ExecState *exec, KJS::Object &object )
|
|
{
|
|
JSProxy::MethodTable methods[] = {
|
|
|
|
{ Method_width_5, "width" },
|
|
{ Method_height_6, "height" },
|
|
{ Method_setSize_7, "setSize" },
|
|
{ Method_setAngles_8, "setAngles" },
|
|
{ Method_angleStart_9, "angleStart" },
|
|
{ Method_angleLength_10, "angleLength" },
|
|
{ Method_areaPoints_11, "areaPoints" },
|
|
{ Method_collidesWith_12, "collidesWith" },
|
|
{ Method_rtti_13, "rtti" },
|
|
{ 0, 0 }
|
|
};
|
|
|
|
int idx = 0;
|
|
TQCString lastName;
|
|
|
|
while( methods[idx].name ) {
|
|
if ( lastName != methods[idx].name ) {
|
|
TQCanvasEllipseImp *meth = new TQCanvasEllipseImp( exec, methods[idx].id );
|
|
object.put( exec , methods[idx].name, KJS::Object(meth) );
|
|
lastName = methods[idx].name;
|
|
}
|
|
++idx;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Extract a TQCanvasEllipse pointer from an Object.
|
|
*/
|
|
TQCanvasEllipse *TQCanvasEllipseImp::toTQCanvasEllipse( KJS::Object &self )
|
|
{
|
|
JSObjectProxy *ob = JSProxy::toObjectProxy( self.imp() );
|
|
if ( ob ) {
|
|
TQObject *obj = ob->object();
|
|
if ( obj )
|
|
return dynamic_cast<TQCanvasEllipse *>( obj );
|
|
}
|
|
|
|
JSOpaqueProxy *op = JSProxy::toOpaqueProxy( self.imp() );
|
|
if ( !op )
|
|
return 0;
|
|
|
|
if ( op->typeName() != "TQCanvasEllipse" )
|
|
return 0;
|
|
|
|
return op->toNative<TQCanvasEllipse>();
|
|
}
|
|
|
|
/**
|
|
* Select and invoke the correct constructor.
|
|
*/
|
|
KJS::Object TQCanvasEllipseImp::construct( KJS::ExecState *exec, const KJS::List &args )
|
|
{
|
|
switch( id ) {
|
|
|
|
case Constructor_QCanvasEllipse_1:
|
|
return TQCanvasEllipse_1( exec, args );
|
|
break;
|
|
|
|
case Constructor_QCanvasEllipse_2:
|
|
return TQCanvasEllipse_2( exec, args );
|
|
break;
|
|
|
|
case Constructor_QCanvasEllipse_3:
|
|
return TQCanvasEllipse_3( exec, args );
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
TQString msg = i18n("TQCanvasEllipseCons has no constructor with id '%1'.").arg(id);
|
|
return throwError(exec, msg,KJS::ReferenceError);
|
|
}
|
|
|
|
|
|
KJS::Object TQCanvasEllipseImp::TQCanvasEllipse_1( KJS::ExecState *exec, const KJS::List &args )
|
|
{
|
|
|
|
// Unsupported parameter TQCanvas *
|
|
return KJS::Object();
|
|
|
|
TQCanvas * arg0; // Dummy
|
|
|
|
|
|
// We should now create an instance of the TQCanvasEllipse object
|
|
|
|
TQCanvasEllipse *ret = new TQCanvasEllipse(
|
|
|
|
arg0 );
|
|
|
|
|
|
}
|
|
|
|
KJS::Object TQCanvasEllipseImp::TQCanvasEllipse_2( KJS::ExecState *exec, const KJS::List &args )
|
|
{
|
|
|
|
int arg0 = extractInt(exec, args, 0);
|
|
|
|
int arg1 = extractInt(exec, args, 1);
|
|
|
|
// Unsupported parameter TQCanvas *
|
|
return KJS::Object();
|
|
|
|
TQCanvas * arg2; // Dummy
|
|
|
|
|
|
// We should now create an instance of the TQCanvasEllipse object
|
|
|
|
TQCanvasEllipse *ret = new TQCanvasEllipse(
|
|
|
|
arg0,
|
|
arg1,
|
|
arg2 );
|
|
|
|
|
|
}
|
|
|
|
KJS::Object TQCanvasEllipseImp::TQCanvasEllipse_3( KJS::ExecState *exec, const KJS::List &args )
|
|
{
|
|
|
|
int arg0 = extractInt(exec, args, 0);
|
|
|
|
int arg1 = extractInt(exec, args, 1);
|
|
|
|
int arg2 = extractInt(exec, args, 2);
|
|
|
|
int arg3 = extractInt(exec, args, 3);
|
|
|
|
// Unsupported parameter TQCanvas *
|
|
return KJS::Object();
|
|
|
|
TQCanvas * arg4; // Dummy
|
|
|
|
|
|
// We should now create an instance of the TQCanvasEllipse object
|
|
|
|
TQCanvasEllipse *ret = new TQCanvasEllipse(
|
|
|
|
arg0,
|
|
arg1,
|
|
arg2,
|
|
arg3,
|
|
arg4 );
|
|
|
|
|
|
}
|
|
|
|
KJS::Value TQCanvasEllipseImp::call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args )
|
|
{
|
|
instance = TQCanvasEllipseImp::toTQCanvasEllipse( self );
|
|
|
|
switch( id ) {
|
|
|
|
case Method_width_5:
|
|
return width_5( exec, self, args );
|
|
break;
|
|
|
|
case Method_height_6:
|
|
return height_6( exec, self, args );
|
|
break;
|
|
|
|
case Method_setSize_7:
|
|
return setSize_7( exec, self, args );
|
|
break;
|
|
|
|
case Method_setAngles_8:
|
|
return setAngles_8( exec, self, args );
|
|
break;
|
|
|
|
case Method_angleStart_9:
|
|
return angleStart_9( exec, self, args );
|
|
break;
|
|
|
|
case Method_angleLength_10:
|
|
return angleLength_10( exec, self, args );
|
|
break;
|
|
|
|
case Method_areaPoints_11:
|
|
return areaPoints_11( exec, self, args );
|
|
break;
|
|
|
|
case Method_collidesWith_12:
|
|
return collidesWith_12( exec, self, args );
|
|
break;
|
|
|
|
case Method_rtti_13:
|
|
return rtti_13( exec, self, args );
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
TQString msg = i18n( "TQCanvasEllipseImp has no method with id '%1'." ).arg( id );
|
|
return throwError(exec, msg,KJS::ReferenceError);
|
|
}
|
|
|
|
|
|
KJS::Value TQCanvasEllipseImp::width_5( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int ret;
|
|
ret = instance->width( );
|
|
return KJS::Number( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQCanvasEllipseImp::height_6( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int ret;
|
|
ret = instance->height( );
|
|
return KJS::Number( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQCanvasEllipseImp::setSize_7( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int arg0 = extractInt(exec, args, 0);
|
|
|
|
int arg1 = extractInt(exec, args, 1);
|
|
|
|
instance->setSize(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Value(); // Returns void
|
|
|
|
}
|
|
|
|
KJS::Value TQCanvasEllipseImp::setAngles_8( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int arg0 = extractInt(exec, args, 0);
|
|
|
|
int arg1 = extractInt(exec, args, 1);
|
|
|
|
instance->setAngles(
|
|
arg0,
|
|
arg1 );
|
|
return KJS::Value(); // Returns void
|
|
|
|
}
|
|
|
|
KJS::Value TQCanvasEllipseImp::angleStart_9( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int ret;
|
|
ret = instance->angleStart( );
|
|
return KJS::Number( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQCanvasEllipseImp::angleLength_10( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int ret;
|
|
ret = instance->angleLength( );
|
|
return KJS::Number( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQCanvasEllipseImp::areaPoints_11( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
instance->areaPoints( );
|
|
return KJS::Value(); // Returns 'TQPointArray'
|
|
|
|
}
|
|
|
|
KJS::Value TQCanvasEllipseImp::collidesWith_12( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
// Unsupported parameter const TQCanvasItem *
|
|
return KJS::Value();
|
|
|
|
const TQCanvasItem * arg0; // Dummy
|
|
|
|
bool ret;
|
|
ret = instance->collidesWith(
|
|
arg0 );
|
|
return KJS::Boolean( ret );
|
|
|
|
}
|
|
|
|
KJS::Value TQCanvasEllipseImp::rtti_13( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
|
|
{
|
|
|
|
int ret;
|
|
ret = instance->rtti( );
|
|
return KJS::Number( ret );
|
|
|
|
}
|
|
|
|
|
|
} // namespace KJSEmbed
|
|
|
|
// Local Variables:
|
|
// c-basic-offset: 4
|
|
// End:
|
|
|
|
|