diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-13 09:49:11 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-13 09:49:11 +0000 |
commit | e44a7e37b6c7b5961adaffc62b9042b8d442938e (patch) | |
tree | 95b67c356e93163467db2451f2b8cce84ed5d582 /includes/js/dojox/gfx/tests/test_setPath.html | |
parent | a62b9742ee5e28bcec6872d88f50f25b820914f6 (diff) | |
download | semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.gz semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.bz2 |
New feature: basic Ajax suggestion for tags and implementation of Dojo toolkit
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/gfx/tests/test_setPath.html')
-rw-r--r-- | includes/js/dojox/gfx/tests/test_setPath.html | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/includes/js/dojox/gfx/tests/test_setPath.html b/includes/js/dojox/gfx/tests/test_setPath.html new file mode 100644 index 0000000..c8d7749 --- /dev/null +++ b/includes/js/dojox/gfx/tests/test_setPath.html @@ -0,0 +1,76 @@ +<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" > +<head> +<title>Testing setPath and curves</title> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<style type="text/css"> + @import "../../../dojo/resources/dojo.css"; + @import "../../../dijit/tests/css/dijitTests.css"; +</style> +<!-- +The next line should include Microsoft's Silverligth.js, if you plan to use the silverlight backend +<script type="text/javascript" src="Silverlight.js"></script> +--> +<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true"></script> +<!--<script type="text/javascript" src="../path.js"></script>--> +<!--<script type="text/javascript" src="../vml.js"></script>--> +<!--<script type="text/javascript" src="../svg.js"></script>--> +<!--<script type="text/javascript" src="../silverlight.js"></script>--> +<script type="text/javascript"> +dojo.require("dojox.gfx"); + +makeShapes = function(){ + var surface = dojox.gfx.createSurface("test", 500, 500); + // relative path with cubic beziers + surface + .createPath("m100 100 100 0 0 100c0 50-50 50-100 0s-50-100 0-100z") + .setStroke({color: "blue"}) + .setFill("#ddd") + .setTransform({dx: -50, dy: -50}) + ; + // absolute path with cubic bezier + surface + .createPath("M100 100 200 100 200 200C200 250 150 250 100 200S50 100 100 100z") + .setStroke({color: "blue"}) + .setFill("#ddd") + .setTransform({dx: 100, dy: -50}) + ; + // relative path with horizontal and vertical lines, and cubic beziers + surface + .createPath("m100 100h100v100c0 50-50 50-100 0s-50-100 0-100z") + .setStroke({color: "blue"}) + .setFill("#ddd") + .setTransform({dx: 250, dy: -50}) + ; + // relative path with quadratic beziers + surface + .createPath("m100 100 100 0 0 100q0 50-75-25t-25-75z") + .setStroke({color: "blue"}) + .setFill("#ddd") + .setTransform({dx: -50, dy: 150}) + ; + // absolute path with quadratic bezier + surface + .createPath("M100 100 200 100 200 200Q200 250 125 175T100 100z") + .setStroke({color: "blue"}) + .setFill("#ddd") + .setTransform({dx: 100, dy: 150}) + ; + // relative path with horizontal and vertical lines, and quadratic beziers + surface + .createPath("m100 100h100v100q0 50-75-25t-25-75z") + .setStroke({color: "blue"}) + .setFill("#ddd") + .setTransform({dx: 250, dy: 150}) + ; +}; + +dojo.addOnLoad(makeShapes); + +</script> +</head> +<body> + <h1>dojox.gfx setPath and curve test</h1> +<div id="test" style="width: 500px; height: 500px;"></div> +<p>That's all Folks!</p> +</body> +</html> |