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
|
// -*- 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 <qpainter.h>
#include <qpixmap.h>
#include <kjsembed/global.h>
#include <qpen.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, "QPen") ) 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, "QPen") ) return KJS::Value();
JSValueProxy *op = JSProxy::toValueProxy( self.imp() );
QPen 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:
{
QColor color = extractQColor(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:
|