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.
128 lines
3.0 KiB
128 lines
3.0 KiB
// -*- c++ -*-
|
|
|
|
/*
|
|
* Copyright (C) 2003, Richard J. Moore <rich@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <tqpainter.h>
|
|
#include <tqpixmap.h>
|
|
#include <kjsembed/global.h>
|
|
#include <tqpen.h>
|
|
#include "pen_imp.h"
|
|
#include <kjsembed/jsvalueproxy.h>
|
|
#include <kjsembed/jsbinding.h>
|
|
|
|
namespace KJSEmbed {
|
|
namespace Bindings {
|
|
|
|
Pen::Pen( KJS::ExecState *exec, int id )
|
|
: JSProxyImp(exec), mid(id)
|
|
{
|
|
}
|
|
|
|
Pen::~Pen()
|
|
{
|
|
}
|
|
void Pen::addBindings( KJS::ExecState *exec, KJS::Object &object ) {
|
|
|
|
if( !JSProxy::checkType(object, JSProxy::ValueProxy, "TQPen") ) return;
|
|
|
|
JSProxy::MethodTable methods[] = {
|
|
{ Methodwidth, "width"},
|
|
{ MethodsetWidth, "setWidth"},
|
|
{ MethodColor, "color"},
|
|
{ MethodsetColor, "setColor"},
|
|
{ 0, 0 }
|
|
};
|
|
|
|
JSProxy::addMethods<Pen>(exec, methods, object );
|
|
|
|
JSProxy::EnumTable enums[] = {
|
|
// PenStyle
|
|
{ "NoPen", 0 },
|
|
{ "SolidLine", 1 },
|
|
{ "DashLine", 2 },
|
|
{ "DotLine", 3 },
|
|
{ "DashDotLine", 4 },
|
|
{ "DashDotDotLine", 5 },
|
|
{ "MPenStyle", 6 },
|
|
// Pen Join Style
|
|
{ "MiterJoin", 7 },
|
|
{ "BevelJoin", 8 },
|
|
{ "RoundJoin", 9 },
|
|
{ "MPenJoinStyle", 10 },
|
|
// Pen Cap Style
|
|
{ "FlatCap", 11},
|
|
{ "SquareCap", 12 },
|
|
{ "RoundCap", 13 },
|
|
{ "MPenCapStyle", 14},
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|
|
JSProxy::addEnums(exec, enums, object);
|
|
}
|
|
|
|
KJS::Value Pen::call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args ) {
|
|
|
|
if( !JSProxy::checkType(self, JSProxy::ValueProxy, "TQPen") ) return KJS::Value();
|
|
JSValueProxy *op = JSProxy::toValueProxy( self.imp() );
|
|
TQPen pen = op->toVariant().toPen();
|
|
|
|
KJS::Value retValue = KJS::Value();
|
|
switch ( mid ) {
|
|
case Methodwidth:
|
|
{
|
|
return KJS::Number((int) pen.width() );
|
|
break;
|
|
}
|
|
case MethodsetWidth:
|
|
{
|
|
uint w = extractUInt(exec, args, 0);
|
|
pen.setWidth(w);
|
|
break;
|
|
}
|
|
case MethodColor:
|
|
{
|
|
return convertToValue(exec, pen.color());
|
|
break;
|
|
}
|
|
case MethodsetColor:
|
|
{
|
|
TQColor color = extractTQColor(exec, args, 0);
|
|
pen.setColor(color);
|
|
break;
|
|
}
|
|
default:
|
|
kdWarning() << "Pen has no method " << mid << endl;
|
|
break;
|
|
}
|
|
|
|
op->setValue(pen);
|
|
return retValue;
|
|
}
|
|
|
|
} // namespace Bindings
|
|
} // namespace KJSEmbed
|
|
|
|
// Local Variables:
|
|
// c-basic-offset: 4
|
|
// End:
|
|
|
|
|