Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / source / widgets / layout / AnchorLayout.js
diff --git a/source/widgets/layout/AnchorLayout.js b/source/widgets/layout/AnchorLayout.js
deleted file mode 100644 (file)
index 83bcea1..0000000
+++ /dev/null
@@ -1,148 +0,0 @@
-/*\r
- * Ext JS Library 2.2.1\r
- * Copyright(c) 2006-2009, Ext JS, LLC.\r
- * licensing@extjs.com\r
- * \r
- * http://extjs.com/license\r
- */\r
-\r
-/**\r
- * @class Ext.layout.AnchorLayout\r
- * @extends Ext.layout.ContainerLayout\r
- * <p>This is a layout that enables anchoring of contained elements relative to the container's dimensions.  If\r
- * the container is resized, all anchored items are automatically rerendered according to their anchor rules.\r
- * This class is intended to be extended or created via the layout:'anchor' {@link Ext.Container#layout} config,\r
- * and should generally not need to be created directly via the new keyword.</p>\r
- * <p>AnchorLayout does not have any direct config options (other than inherited ones).  However, the container\r
- * using the AnchorLayout can supply an anchoring-specific config property of <b>anchorSize</b>.  By default,\r
- * AnchorLayout will calculate anchor measurements based on the size of the container itself.  However, if\r
- * anchorSize is specifed, the layout will use it as a virtual container for the purposes of calculating anchor\r
- * measurements based on it instead, allowing the container to be sized independently of the anchoring logic if necessary.</p>\r
- * <p>The items added to an AnchorLayout can also supply an anchoring-specific config property of <b>anchor</b> which\r
- * is a string containing two values: the horizontal anchor value and the vertical anchor value (for example, '100% 50%').\r
- * This value is what tells the layout how the item should be anchored to the container.  The following types of\r
- * anchor values are supported:\r
- * <ul>\r
- * <li><b>Percentage</b>: Any value between 1 and 100, expressed as a percentage.  The first anchor is the percentage\r
- * width that the item should take up within the container, and the second is the percentage height.  Example: '100% 50%'\r
- * would render an item the complete width of the container and 1/2 its height.  If only one anchor value is supplied\r
- * it is assumed to be the width value and the height will default to auto.</li>\r
- * <li><b>Offsets</b>: Any positive or negative integer value.  The first anchor is the offset from the right edge of\r
- * the container, and the second is the offset from the bottom edge.  Example: '-50 -100' would render an item the\r
- * complete width of the container minus 50 pixels and the complete height minus 100 pixels.  If only one anchor value\r
- * is supplied it is assumed to be the right offset value and the bottom offset will default to 0.</li>\r
- * <li><b>Sides</b>: Valid values are 'right' (or 'r') and 'bottom' (or 'b').  Either the container must have a fixed\r
- * size or an anchorSize config value defined at render time in order for these to have any effect.</li>\r
- * </ul>\r
- * <p>Anchor values can also be mixed as needed.  For example, '-50 75%' would render the width offset from the\r
- * container right edge by 50 pixels and 75% of the container's height.</p>\r
- */\r
-Ext.layout.AnchorLayout = Ext.extend(Ext.layout.ContainerLayout, {\r
-    // private\r
-    monitorResize:true,\r
-\r
-    // private\r
-    getAnchorViewSize : function(ct, target){\r
-        return target.dom == document.body ?\r
-                   target.getViewSize() : target.getStyleSize();\r
-    },\r
-\r
-    // private\r
-    onLayout : function(ct, target){\r
-        Ext.layout.AnchorLayout.superclass.onLayout.call(this, ct, target);\r
-\r
-        var size = this.getAnchorViewSize(ct, target);\r
-\r
-        var w = size.width, h = size.height;\r
-\r
-        if(w < 20 || h < 20){\r
-            return;\r
-        }\r
-\r
-        // find the container anchoring size\r
-        var aw, ah;\r
-        if(ct.anchorSize){\r
-            if(typeof ct.anchorSize == 'number'){\r
-                aw = ct.anchorSize;\r
-            }else{\r
-                aw = ct.anchorSize.width;\r
-                ah = ct.anchorSize.height;\r
-            }\r
-        }else{\r
-            aw = ct.initialConfig.width;\r
-            ah = ct.initialConfig.height;\r
-        }\r
-\r
-        var cs = ct.items.items, len = cs.length, i, c, a, cw, ch;\r
-        for(i = 0; i < len; i++){\r
-            c = cs[i];\r
-            if(c.anchor){\r
-                a = c.anchorSpec;\r
-                if(!a){ // cache all anchor values\r
-                    var vs = c.anchor.split(' ');\r
-                    c.anchorSpec = a = {\r
-                        right: this.parseAnchor(vs[0], c.initialConfig.width, aw),\r
-                        bottom: this.parseAnchor(vs[1], c.initialConfig.height, ah)\r
-                    };\r
-                }\r
-                cw = a.right ? this.adjustWidthAnchor(a.right(w), c) : undefined;\r
-                ch = a.bottom ? this.adjustHeightAnchor(a.bottom(h), c) : undefined;\r
-\r
-                if(cw || ch){\r
-                    c.setSize(cw || undefined, ch || undefined);\r
-                }\r
-            }\r
-        }\r
-    },\r
-\r
-    // private\r
-    parseAnchor : function(a, start, cstart){\r
-        if(a && a != 'none'){\r
-            var last;\r
-            if(/^(r|right|b|bottom)$/i.test(a)){   // standard anchor\r
-                var diff = cstart - start;\r
-                return function(v){\r
-                    if(v !== last){\r
-                        last = v;\r
-                        return v - diff;\r
-                    }\r
-                }\r
-            }else if(a.indexOf('%') != -1){\r
-                var ratio = parseFloat(a.replace('%', ''))*.01;   // percentage\r
-                return function(v){\r
-                    if(v !== last){\r
-                        last = v;\r
-                        return Math.floor(v*ratio);\r
-                    }\r
-                }\r
-            }else{\r
-                a = parseInt(a, 10);\r
-                if(!isNaN(a)){                            // simple offset adjustment\r
-                    return function(v){\r
-                        if(v !== last){\r
-                            last = v;\r
-                            return v + a;\r
-                        }\r
-                    }\r
-                }\r
-            }\r
-        }\r
-        return false;\r
-    },\r
-\r
-    // private\r
-    adjustWidthAnchor : function(value, comp){\r
-        return value;\r
-    },\r
-\r
-    // private\r
-    adjustHeightAnchor : function(value, comp){\r
-        return value;\r
-    }\r
-    \r
-    /**\r
-     * @property activeItem\r
-     * @hide\r
-     */\r
-});\r
-Ext.Container.LAYOUTS['anchor'] = Ext.layout.AnchorLayout;
\ No newline at end of file