root / trunk / web / dojo / dojox / drawing / _base.js @ 12
History | View | Annotate | Download (1.4 KB)
1 |
/*
|
---|---|
2 |
Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved.
|
3 |
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
4 |
see: http://dojotoolkit.org/license for details
|
5 |
*/
|
6 |
|
7 |
|
8 |
if(!dojo._hasResource["dojox.drawing._base"]){ |
9 |
dojo._hasResource["dojox.drawing._base"]=true; |
10 |
dojo.provide("dojox.drawing._base");
|
11 |
dojo.experimental("dojox.drawing");
|
12 |
dojo.require("dojox.drawing.manager._registry");
|
13 |
dojo.require("dojox.gfx");
|
14 |
dojo.require("dojox.drawing.Drawing");
|
15 |
dojo.require("dojox.drawing.util.oo");
|
16 |
dojo.require("dojox.drawing.util.common");
|
17 |
dojo.require("dojox.drawing.defaults");
|
18 |
dojo.require("dojox.drawing.manager.Canvas");
|
19 |
dojo.require("dojox.drawing.manager.Undo");
|
20 |
dojo.require("dojox.drawing.manager.keys");
|
21 |
dojo.require("dojox.drawing.manager.Mouse");
|
22 |
dojo.require("dojox.drawing.manager.Stencil");
|
23 |
dojo.require("dojox.drawing.manager.StencilUI");
|
24 |
dojo.require("dojox.drawing.manager.Anchors");
|
25 |
dojo.require("dojox.drawing.stencil._Base");
|
26 |
dojo.require("dojox.drawing.stencil.Line");
|
27 |
dojo.require("dojox.drawing.stencil.Rect");
|
28 |
dojo.require("dojox.drawing.stencil.Ellipse");
|
29 |
dojo.require("dojox.drawing.stencil.Path");
|
30 |
dojo.require("dojox.drawing.stencil.Text");
|
31 |
dojo.require("dojox.drawing.stencil.Image");
|
32 |
dojo.require("dojox.drawing.annotations.Label");
|
33 |
dojo.require("dojox.drawing.annotations.Angle");
|
34 |
dojo.require("dojox.drawing.annotations.Arrow");
|
35 |
dojo.require("dojox.drawing.annotations.BoxShadow");
|
36 |
} |