Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / examples / layout-browser / layouts / custom.js
index 0a96e30..2b7f3fe 100644 (file)
@@ -1,50 +1,41 @@
-/*!
- * Ext JS Library 3.3.1
- * Copyright(c) 2006-2010 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
 /*
- * CenterLayout demo panel
- */
-var centerLayout = {
-       id: 'center-panel',
-    layout: 'ux.center',
-    items: {
-        title: 'Centered Panel: 75% of container width and fit height',
-        layout: 'ux.center',
-        autoScroll: true,
-        width: '75%',
-        bodyStyle: 'padding:20px 0;',
-        items: [{
-               title: 'Inner Centered Panel',
-               html: 'Fixed 300px wide and auto height. The container panel will also autoscroll if narrower than 300px.',
-               width: 300,
-               frame: true,
-               autoHeight: true,
-               bodyStyle: 'padding:10px 20px;'
-        }]
-    }
-};
 
-/*
- * RowLayout demo panel
- */
-var rowLayout = {
-       id: 'row-panel',
-       bodyStyle: 'padding:5px',
-       layout: 'ux.row',
-    title: 'Row Layout',
-    items: [{
-        title: 'Height = 25%, Width = 50%',
-        rowHeight: 0.25,
-        width: '50%'
-    },{
-        title: 'Height = 100px, Width = 300px',
-        height: 100,
-        width: 300
-    },{
-       title: 'Height = 75%, Width = fit',
-       rowHeight: 0.75
-    }]
-};
\ No newline at end of file
+This file is part of Ext JS 4
+
+Copyright (c) 2011 Sencha Inc
+
+Contact:  http://www.sencha.com/contact
+
+GNU General Public License Usage
+This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
+
+If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
+
+*/
+function getCustomLayouts() {
+    return {
+        /*
+         * CenterLayout demo panel
+         */
+        centerLayout: {
+            id: 'center-panel',
+            layout: 'ux.center',
+            items: {
+                title: 'Centered Panel: 75% of container width and fit height',
+                layout: 'ux.center',
+                autoScroll: true,
+                widthRatio: 0.75,
+                bodyStyle: 'padding:20px 0;',
+                items: [{
+                    title: 'Inner Centered Panel',
+                    html: 'Fixed 300px wide and auto height. The container panel will also autoscroll if narrower than 300px.',
+                    width: 300,
+                    frame: true,
+                    autoHeight: true,
+                    bodyStyle: 'padding:10px 20px;'
+                }]
+            }
+        }
+    };
+
+}