aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/gfx/tests/test_resize.html
blob: 3870ab0fc38baf6ca9db99fde5fdef3d91708035 (plain)
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
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" >
<head>
<title>Testing surface resizing</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="../_base.js"></script>
<script type="text/javascript" src="../shape.js"></script>
<script type="text/javascript" src="../path.js"></script>
<script type="text/javascript" src="../arc.js"></script>
<!--<script type="text/javascript" src="../vml.js"></script>-->
<!--<script type="text/javascript" src="../svg.js"></script>-->
<!--<script type="text/javascript" src="../canvas.js"></script>-->
<!--<script type="text/javascript" src="../silverlight.js"></script>-->
<script type="text/javascript">
dojo.require("dojox.gfx");

var surface;

makeShapes = function(){
	surface = dojox.gfx.createSurface("test", 500, 500);
	surface.createRect({width: 300, height: 300}).setFill([255, 0, 0, 0.3]).setStroke("red");
	surface.createRect({x: 200, y: 200, width: 300, height: 300}).setFill([0, 0, 255, 0.3]).setStroke("green");
};

getDim = function(){
	var t = surface.getDimensions();
	alert("dimensions: " + t.width + " by " + t.height);
};

make500x500 = function(){ surface.setDimensions(500, 500); };
make400x400 = function(){ surface.setDimensions(400, 400); };
make300x300 = function(){ surface.setDimensions(300, 300); };

dojo.addOnLoad(makeShapes);

</script>
</head>
<body>
<h1>Testing surface resizing</h1>
<!--<p><button onclick="makeShapes();">Go</button></p>-->
<p>
	<button onclick="getDim();">getDimensions</button>
	&nbsp;
	<button onclick="make300x300();">Make 300x300</button>
	&nbsp;
	<button onclick="make400x400();">Make 400x400</button>
	&nbsp;
	<button onclick="make500x500();">Make 500x500</button>
</p>
<div id="test" style="width: 500px; height: 500px;"></div>
<p>That's all Folks!</p>
</body>
</html>