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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
|
""" raphael.py
This Python module is a Pyjamas wrapper around the Raphael SVG graphics
library.
The Raphael wrapper was written by Erik Westra (ewestra at gmail dot com).
"""
from pyjamas.ui.Widget import Widget
from pyjamas import DOM
from pyjamas import Window
from __pyjamas__ import JS
#############################################################################
class Raphael(Widget):
""" A Pyjamas wrapper around the Raphael canvas object.
"""
def __init__(self, width, height):
""" Standard initialiser.
'width' and 'height' are the dimensions to use for the canvas, in
pixels.
"""
Widget.__init__(self)
element = DOM.createDiv()
self.setElement(element)
self.setPixelSize(width, height)
JS("""
this._canvas = $wnd.Raphael(element, width, height);
""")
def getCanvas(self):
""" Return our Raphael canvas object.
This can be used to directly access any Raphael functionality which
has not been implemented by this wrapper module. You'll probably
never need to use it, but it's here just in case.
"""
return self._canvas
def setSize(self, width, height):
""" Change the dimensions of the canvas.
"""
JS("""
this._canvas.setSize(width, height);
""")
def getColor(self, brightness=None):
""" Return the next colour to use in the spectrum.
"""
JS("""
colour = this._canvas.getColor();
""")
return colour
def resetColor(self):
""" Reset getColor() so that it will start from the beginning.
"""
JS("""
this._canvas.getColor().reset();
""")
def circle(self, x, y, radius):
""" Create and return a circle element.
The circle will be centred around (x,y), and will have the given
radius.
We return a RaphaelElement object representing the circle.
"""
JS("""
this._element = this._canvas.circle(x, y, radius);
""")
return RaphaelElement(self._element)
def rect(self, x, y, width, height, cornerRadius=0):
""" Create and return a rectangle element.
The rectangle will have its top-left corner at (x,y), and have the
given width and height. If 'cornerRadius' is specified, the
rectangle will have rounded corners with the given radius.
We return a RaphaelElement object representing the rectangle.
"""
JS("""
this._element = this._canvas.rect(x, y, width, height,
cornerRadius);
""")
return RaphaelElement(self._element)
def ellipse(self, x, y, xRadius, yRadius):
""" Create and return an ellipse element.
The ellipse will be centred around (x,y), and will have the given
horizontal and vertical radius.
We return a RaphaelElement object representing the ellipse.
"""
JS("""
this._element = this._canvas.ellipse(x, y, xRadius, yRadius);
""")
return RaphaelElement(self._element)
def image(self, src, x, y, width, height):
""" Create and return an image element.
The image will use 'src' as the URI to read the image data from.
The top-left corner of the image will be at (x,y), and the image
element will have the given width and height.
We return a RaphaelElement object representing the image.
"""
JS("""
this._element = this._canvas.image(src, x, y, width, height);
""")
return RaphaelElement(self._element)
def set(self):
""" Create and return a set element.
This can be used to group elements together and operate on these
elements as a unit.
We return a RaphaelSetElement representing the set.
"""
JS("""
self._element = this._canvas.set();
""")
return RaphaelSetElement(self._element)
def text(self, x, y, text):
""" Create and return a text element.
The element will be placed at (x,y), and will display the given
text. Note that you can embed newline ("\n") characters into the
text to force line breaks.
We return a RaphaelElement representing the text.
"""
JS("""
this._element = this._canvas.text(x, y, text);
""")
return RaphaelElement(self._element)
def path(self, attrs=None, data=None):
""" Create and return a path object.
If 'attrs' is defined, it should be a dictionary mapping attribute
names to values for the new path object. If 'data' is not None, it
should be a string containing the path data, in SVG path string
format.
We return a RaphaelPathElement representing the path.
"""
if data != None:
JS("""
this._element = this._canvas.path({});
""")
else:
JS("""
this._element = this._canvas.path({}, data);
""")
if attrs != None:
for attr in attrs.keys():
value = attrs[attr]
JS("""
this._element.attr(attr, value);
""")
return RaphaelPathElement(self._element)
#############################################################################
class RaphaelElement:
""" Wrapper object for a Raphael element.
Note that these objects are created by the appropriate methods within
the Raphael object; you should never need to initialise one of these
objects yourself.
"""
def __init__(self, raphaelElement):
""" Standard initialiser.
'raphaelElement' is the raphael element that we are wrapping.
"""
self._element = raphaelElement
self._listeners = {'click' : [],
'mousedown' : [],
'mouseup' : [],
'mousemove' : [],
'mouseenter' : [],
'mouseleave' : []}
onClick = getattr(self, "_onClick")
onMouseDown = getattr(self, "_onMouseDown")
onMouseUp = getattr(self, "_onMouseUp")
onMouseMove = getattr(self, "_onMouseMove")
onMouseEnter = getattr(self, "_onMouseEnter")
onMouseLeave = getattr(self, "_onMouseLeave")
JS("""
this._element.node.onclick = onClick;
this._element.node.onmousedown = onMouseDown;
this._element.node.onmouseup = onMouseUp;
this._element.node.onmousemove = onMouseMove;
this._element.node.onmouseenter = onMouseEnter;
this._element.node.onmouseleave = onMouseLeave;
""")
def addListener(self, type, listener):
""" Add a listener function to this element.
The parameters are as follows:
'type'
The type of event to listen out for. One of:
"click"
"mousedown"
"mouseup"
"mousemove"
"mouseenter"
"mouseleave"
'listener'
A Python callable object which accepts two parameters: the
RaphaelElement object that was clicked on, and the event
object.
The given listener function will be called whenever an event of the
given type occurs.
"""
self._listeners[type].append(listener)
def removeListener(self, type, listener):
""" Remove a previously-defined listener function.
"""
self._listeners[type].remove(listener)
def getElement(self):
""" Return the DOM element we are wrapping.
"""
return self._element
def remove(self):
""" Remove this element from the canvas.
You can't use the element after you call this method.
"""
JS("""
this._element.remove();
""")
def hide(self):
""" Make this element invisible.
"""
JS("""
this._element.hide();
""")
def show(self):
""" Make this element visible.
"""
JS("""
this._element.show();
""")
def rotate(self, angle, cx, cy=None):
""" Rotate the element by the given angle.
This can be called in two different ways:
element.rotate(angle, isAbsolute)
where 'angle' is the angle to rotate the element by, in
degrees, and 'isAbsolute' specifies it the angle is relative
to the previous position (False) or if it is the absolute
angle to rotate the element by (True).
or:
element.rotate(angle, cx, cy):
where 'angle' is the angle to rotate the element by, in
degrees, and 'cx' and 'cy' define the origin around which
to rotate the element.
"""
if cy == None:
isAbsolute = cx
JS("""
this._element.rotate(angle, isAbsolute);
""")
else:
JS("""
this._element.rotate(angle, cx, cy);
""")
def translate(self, dx, dy):
""" Move the element around the canvas by the given number of pixels.
"""
JS("""
this._element.translate(dx, dy);
""")
def scale(self, xtimes, ytimes):
""" Resize the element by the given horizontal and vertical multiplier.
"""
JS("""
this._element.scale(xtimes, ytimes);
""")
def setAttr(self, attr, value):
""" Set the value of a single attribute for this element.
The following attributes are currently supported:
cx number
cy number
fill colour
fill-opacity number
font string
font-family string
font-size number
font-weight string
gradient object|string
"‹angle›-‹colour›[-‹colour›[:‹offset›]]*-‹colour›"
height number
opacity number
path pathString
r number
rotation number
rx number
ry number
scale CSV
src string (URL)
stroke colour
stroke-dasharray string [“-”, “.”, “-.”, “-..”, “. ”, “- ”,
“--”, “- .”, “--.”, “--..”]
stroke-linecap string [“butt”, “square”, “round”, “miter”]
stroke-linejoin string [“butt”, “square”, “round”, “miter”]
stroke-miterlimit number
stroke-opacity number
stroke-width number
translation CSV
width number
x number
y number
Please refer to the SVG specification for an explanation of these
attributes and how to use them.
"""
JS("""
this._element.attr(attr, value);
""")
def setAttrs(self, attrs):
""" Set the value of multiple attributes at once.
'attrs' should be a dictionary mapping attribute names to values.
The available attributes are listed in the description of the
setAttr() method, above.
"""
for attr,value in attrs.items():
JS("""
this._element.attr(attr, value);
""")
def getAttr(self, attr):
""" Return the current value for the given attribute.
"""
JS("""
var value = this._element.attr(attr);
""")
return value
def animate(self, attrs, duration):
""" Linearly change one or more attributes over a given timeframe.
'attrs' should be a dictionary mapping attribute names to values,
and 'duration' should be how long to run the animation for (in
milliseconds).
Only the following attributes can be animated:
cx number
cy number
fill colour
fill-opacity number
font-size number
height number
opacity number
path pathString
r number
rotation number
rx number
ry number
scale CSV
stroke colour
stroke-opacity number
stroke-width number
translation CSV
width number
x number
y number
Note that the use of a callback function is not yet supported
within the Raphael wrapper, even though Raphael itself supports it.
"""
JS("""
var jsAttrs = {};
""")
for attr,value in attrs.items():
JS("""
jsAttrs[attr] = value;
""")
JS("""
this._element.animate(jsAttrs, duration);
""")
def getBBox(self):
""" Return the bounding box for this element.
We return a dictionary with 'x', 'y', 'width' and 'height'
elements.
"""
JS("""
var bounds = this._element.getBBox();
var x = bounds.x;
var y = bounds.y;
var width = bounds.width;
var height = bounds.height;
""")
return {'x' : x,
'y' : y,
'width' : width,
'height' : height}
def toFront(self):
""" Move the element in front of all other elements on the canvas.
"""
JS("""
this._element.toFront();
""")
def toBack(self):
""" Move the element behind all the other elements on the canvas.
"""
JS("""
this._element.toBack();
""")
def insertBefore(self, element):
""" Move this element so that it appears in front of the given element.
'element' should be a RaphaelElement object.
"""
otherElement = element.getElement()
JS("""
this._element.insertBefore(otherElement);
""")
def insertAfter(self, element):
""" Move this element so that it appears behind the given element.
"""
otherElement = element.getElement()
JS("""
this._element.insertAfter(otherElement);
""")
# =====================
# == PRIVATE METHODS ==
# =====================
def _onClick(self, event):
""" Respond to a mouse-click event.
"""
listeners = self._listeners['click']
for listener in listeners:
listener(self, event)
def _onMouseDown(self, event):
""" Respond to a mouse-down event.
"""
listeners = self._listeners['mousedown']
for listener in listeners:
listener(self, event)
def _onMouseUp(self, event):
""" Respond to a mouse-up event.
"""
listeners = self._listeners['mouseup']
for listener in listeners:
listener(self, event)
def _onMouseMove(self, event):
""" Respond to a mouse-move event.
"""
listeners = self._listeners['mousemove']
for listener in listeners:
listener(self, event)
def _onMouseEnter(self, event):
""" Respond to a mouse-enter event.
"""
listeners = self._listeners['mouseenter']
for listener in listeners:
listener(self, event)
def _onMouseLeave(self, event):
""" Respond to a mouse-leave event.
"""
listeners = self._listeners['mouseleave']
for listener in listeners:
listener(self, event)
#############################################################################
class RaphaelSetElement(RaphaelElement):
""" A RaphaelElement that represents a set of elements.
"""
def add(self, element):
""" Add an element to this set.
"""
otherElement = element.getElement()
JS("""
this._element.push(otherElement);
""")
#############################################################################
class RaphaelPathElement(RaphaelElement):
""" A RaphaelElement that represents a path.
Note that the RaphaelPathElement object is returned by each of the
methods defined in this calss, allowing method calls to be chained
together.
"""
def absolutely(self):
""" Tell the path to treat all subsequent units as absolute ones.
Coordinates are absolute by default.
"""
JS("""
this._element.absolutely();
""")
return self
def relatively(self):
""" Tell the path to treat all subsequent units as relative ones.
Coordinates are absolute by default.
"""
JS("""
this._element.relatively();
""")
return self
def moveTo(self, x, y):
""" Move the drawing point to the given coordinates.
"""
JS("""
this._element.moveTo(x, y);
""")
return self
def lineTo(self, x, y):
""" Draw a straight line to the given coordinates.
"""
JS("""
this._element.lineTo(x, y);
""")
return self
def cplineTo(self, x, y, width=None):
""" Draw a curved line to the given coordinates.
'x' and 'y' define the ending coordinates, and 'width' defines how
much of a curve to give to the line. The line will have horizontal
anchors at the start and finish points.
"""
if width != None:
JS("""
this._element.cplineTo(x, y, width);
""")
else:
JS("""
this._element.cplineTo(x, y);
""")
return self
def curveTo(self, x1, y1, x2, y2, x3, y3):
""" Draw a bicubic curve to the given coordinates.
"""
JS("""
this._element.curveTo(x1, y1, x, y2, x3, y3);
""")
return self
def qcurveTo(self, x1, y1, x2, y2):
""" Draw a quadratic curve to the given coordinates.
"""
JS("""
this._element.qcurveTo(x1, y1, x2, y2);
""")
return self
def addRoundedCorner(self, radius, direction):
""" Draw a quarter of a circle from the current drawing point.
'radius' should be the radius of the circle, and 'direction' should
be one of the following strings:
"lu" Left up.
"ld" Left down.
"ru" Right up.
"rd" Right down.
"ur" Up right.
"ul" Up left.
"dr" Down right.
"dl" Down left.
"""
JS("""
this._element.addRoundedCorner(radius, direction);
""")
return self
def andClose(self):
""" Close the path being drawn.
"""
JS("""
this._element.andClose();
""")
return self
|