roojs-core.js
[roojs1] / roojs-core-debug.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13
14
15
16 // for old browsers
17 window["undefined"] = window["undefined"];
18
19 /**
20  * @class Roo
21  * Roo core utilities and functions.
22  * @singleton
23  */
24 var Roo = {}; 
25 /**
26  * Copies all the properties of config to obj.
27  * @param {Object} obj The receiver of the properties
28  * @param {Object} config The source of the properties
29  * @param {Object} defaults A different object that will also be applied for default values
30  * @return {Object} returns obj
31  * @member Roo apply
32  */
33
34  
35 Roo.apply = function(o, c, defaults){
36     if(defaults){
37         // no "this" reference for friendly out of scope calls
38         Roo.apply(o, defaults);
39     }
40     if(o && c && typeof c == 'object'){
41         for(var p in c){
42             o[p] = c[p];
43         }
44     }
45     return o;
46 };
47
48
49 (function(){
50     var idSeed = 0;
51     var ua = navigator.userAgent.toLowerCase();
52
53     var isStrict = document.compatMode == "CSS1Compat",
54         isOpera = ua.indexOf("opera") > -1,
55         isSafari = (/webkit|khtml/).test(ua),
56         isFirefox = ua.indexOf("firefox") > -1,
57         isIE = ua.indexOf("msie") > -1,
58         isIE7 = ua.indexOf("msie 7") > -1,
59         isIE11 = /trident.*rv\:11\./.test(ua),
60         isGecko = !isSafari && ua.indexOf("gecko") > -1,
61         isBorderBox = isIE && !isStrict,
62         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
63         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
64         isLinux = (ua.indexOf("linux") != -1),
65         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
66         isIOS = /iphone|ipad/.test(ua),
67         isTouch =  (function() {
68             try {
69                 if (ua.indexOf('chrome') != -1 && ua.indexOf('android') == -1) {
70                     window.addEventListener('touchstart', function __set_has_touch__ () {
71                         Roo.isTouch = true;
72                         window.removeEventListener('touchstart', __set_has_touch__);
73                     });
74                     return false; // no touch on chrome!?
75                 }
76                 document.createEvent("TouchEvent");  
77                 return true;  
78             } catch (e) {  
79                 return false;  
80             } 
81             
82         })();
83     // remove css image flicker
84         if(isIE && !isIE7){
85         try{
86             document.execCommand("BackgroundImageCache", false, true);
87         }catch(e){}
88     }
89     
90     Roo.apply(Roo, {
91         /**
92          * True if the browser is in strict mode
93          * @type Boolean
94          */
95         isStrict : isStrict,
96         /**
97          * True if the page is running over SSL
98          * @type Boolean
99          */
100         isSecure : isSecure,
101         /**
102          * True when the document is fully initialized and ready for action
103          * @type Boolean
104          */
105         isReady : false,
106         /**
107          * Turn on debugging output (currently only the factory uses this)
108          * @type Boolean
109          */
110         
111         debug: false,
112
113         /**
114          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
115          * @type Boolean
116          */
117         enableGarbageCollector : true,
118
119         /**
120          * True to automatically purge event listeners after uncaching an element (defaults to false).
121          * Note: this only happens if enableGarbageCollector is true.
122          * @type Boolean
123          */
124         enableListenerCollection:false,
125
126         /**
127          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
128          * the IE insecure content warning (defaults to javascript:false).
129          * @type String
130          */
131         SSL_SECURE_URL : "javascript:false",
132
133         /**
134          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
135          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
136          * @type String
137          */
138         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
139
140         emptyFn : function(){},
141         
142         /**
143          * Copies all the properties of config to obj if they don't already exist.
144          * @param {Object} obj The receiver of the properties
145          * @param {Object} config The source of the properties
146          * @return {Object} returns obj
147          */
148         applyIf : function(o, c){
149             if(o && c){
150                 for(var p in c){
151                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
152                 }
153             }
154             return o;
155         },
156
157         /**
158          * Applies event listeners to elements by selectors when the document is ready.
159          * The event name is specified with an @ suffix.
160 <pre><code>
161 Roo.addBehaviors({
162    // add a listener for click on all anchors in element with id foo
163    '#foo a@click' : function(e, t){
164        // do something
165    },
166
167    // add the same listener to multiple selectors (separated by comma BEFORE the @)
168    '#foo a, #bar span.some-class@mouseover' : function(){
169        // do something
170    }
171 });
172 </code></pre>
173          * @param {Object} obj The list of behaviors to apply
174          */
175         addBehaviors : function(o){
176             if(!Roo.isReady){
177                 Roo.onReady(function(){
178                     Roo.addBehaviors(o);
179                 });
180                 return;
181             }
182             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
183             for(var b in o){
184                 var parts = b.split('@');
185                 if(parts[1]){ // for Object prototype breakers
186                     var s = parts[0];
187                     if(!cache[s]){
188                         cache[s] = Roo.select(s);
189                     }
190                     cache[s].on(parts[1], o[b]);
191                 }
192             }
193             cache = null;
194         },
195
196         /**
197          * Generates unique ids. If the element already has an id, it is unchanged
198          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
199          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
200          * @return {String} The generated Id.
201          */
202         id : function(el, prefix){
203             prefix = prefix || "roo-gen";
204             el = Roo.getDom(el);
205             var id = prefix + (++idSeed);
206             return el ? (el.id ? el.id : (el.id = id)) : id;
207         },
208          
209        
210         /**
211          * Extends one class with another class and optionally overrides members with the passed literal. This class
212          * also adds the function "override()" to the class that can be used to override
213          * members on an instance.
214          * @param {Object} subclass The class inheriting the functionality
215          * @param {Object} superclass The class being extended
216          * @param {Object} overrides (optional) A literal with members
217          * @method extend
218          */
219         extend : function(){
220             // inline overrides
221             var io = function(o){
222                 for(var m in o){
223                     this[m] = o[m];
224                 }
225             };
226             return function(sb, sp, overrides){
227                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
228                     overrides = sp;
229                     sp = sb;
230                     sb = function(){sp.apply(this, arguments);};
231                 }
232                 var F = function(){}, sbp, spp = sp.prototype;
233                 F.prototype = spp;
234                 sbp = sb.prototype = new F();
235                 sbp.constructor=sb;
236                 sb.superclass=spp;
237                 
238                 if(spp.constructor == Object.prototype.constructor){
239                     spp.constructor=sp;
240                    
241                 }
242                 
243                 sb.override = function(o){
244                     Roo.override(sb, o);
245                 };
246                 sbp.override = io;
247                 Roo.override(sb, overrides);
248                 return sb;
249             };
250         }(),
251
252         /**
253          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
254          * Usage:<pre><code>
255 Roo.override(MyClass, {
256     newMethod1: function(){
257         // etc.
258     },
259     newMethod2: function(foo){
260         // etc.
261     }
262 });
263  </code></pre>
264          * @param {Object} origclass The class to override
265          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
266          * containing one or more methods.
267          * @method override
268          */
269         override : function(origclass, overrides){
270             if(overrides){
271                 var p = origclass.prototype;
272                 for(var method in overrides){
273                     p[method] = overrides[method];
274                 }
275             }
276         },
277         /**
278          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
279          * <pre><code>
280 Roo.namespace('Company', 'Company.data');
281 Company.Widget = function() { ... }
282 Company.data.CustomStore = function(config) { ... }
283 </code></pre>
284          * @param {String} namespace1
285          * @param {String} namespace2
286          * @param {String} etc
287          * @method namespace
288          */
289         namespace : function(){
290             var a=arguments, o=null, i, j, d, rt;
291             for (i=0; i<a.length; ++i) {
292                 d=a[i].split(".");
293                 rt = d[0];
294                 /** eval:var:o */
295                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
296                 for (j=1; j<d.length; ++j) {
297                     o[d[j]]=o[d[j]] || {};
298                     o=o[d[j]];
299                 }
300             }
301         },
302         /**
303          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
304          * <pre><code>
305 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
306 Roo.factory(conf, Roo.data);
307 </code></pre>
308          * @param {String} classname
309          * @param {String} namespace (optional)
310          * @method factory
311          */
312          
313         factory : function(c, ns)
314         {
315             // no xtype, no ns or c.xns - or forced off by c.xns
316             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
317                 return c;
318             }
319             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
320             if (c.constructor == ns[c.xtype]) {// already created...
321                 return c;
322             }
323             if (ns[c.xtype]) {
324                 if (Roo.debug) { Roo.log("Roo.Factory(" + c.xtype + ")"); }
325                 var ret = new ns[c.xtype](c);
326                 ret.xns = false;
327                 return ret;
328             }
329             c.xns = false; // prevent recursion..
330             return c;
331         },
332          /**
333          * Logs to console if it can.
334          *
335          * @param {String|Object} string
336          * @method log
337          */
338         log : function(s)
339         {
340             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
341                 return; // alerT?
342             }
343             console.log(s);
344             
345         },
346         /**
347          * Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value.
348          * @param {Object} o
349          * @return {String}
350          */
351         urlEncode : function(o){
352             if(!o){
353                 return "";
354             }
355             var buf = [];
356             for(var key in o){
357                 var ov = o[key], k = Roo.encodeURIComponent(key);
358                 var type = typeof ov;
359                 if(type == 'undefined'){
360                     buf.push(k, "=&");
361                 }else if(type != "function" && type != "object"){
362                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
363                 }else if(ov instanceof Array){
364                     if (ov.length) {
365                             for(var i = 0, len = ov.length; i < len; i++) {
366                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
367                             }
368                         } else {
369                             buf.push(k, "=&");
370                         }
371                 }
372             }
373             buf.pop();
374             return buf.join("");
375         },
376          /**
377          * Safe version of encodeURIComponent
378          * @param {String} data 
379          * @return {String} 
380          */
381         
382         encodeURIComponent : function (data)
383         {
384             try {
385                 return encodeURIComponent(data);
386             } catch(e) {} // should be an uri encode error.
387             
388             if (data == '' || data == null){
389                return '';
390             }
391             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
392             function nibble_to_hex(nibble){
393                 var chars = '0123456789ABCDEF';
394                 return chars.charAt(nibble);
395             }
396             data = data.toString();
397             var buffer = '';
398             for(var i=0; i<data.length; i++){
399                 var c = data.charCodeAt(i);
400                 var bs = new Array();
401                 if (c > 0x10000){
402                         // 4 bytes
403                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
404                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
405                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
406                     bs[3] = 0x80 | (c & 0x3F);
407                 }else if (c > 0x800){
408                          // 3 bytes
409                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
410                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
411                     bs[2] = 0x80 | (c & 0x3F);
412                 }else if (c > 0x80){
413                        // 2 bytes
414                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
415                     bs[1] = 0x80 | (c & 0x3F);
416                 }else{
417                         // 1 byte
418                     bs[0] = c;
419                 }
420                 for(var j=0; j<bs.length; j++){
421                     var b = bs[j];
422                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
423                             + nibble_to_hex(b &0x0F);
424                     buffer += '%'+hex;
425                }
426             }
427             return buffer;    
428              
429         },
430
431         /**
432          * Takes an encoded URL and and converts it to an object. e.g. Roo.urlDecode("foo=1&bar=2"); would return {foo: 1, bar: 2} or Roo.urlDecode("foo=1&bar=2&bar=3&bar=4", true); would return {foo: 1, bar: [2, 3, 4]}.
433          * @param {String} string
434          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
435          * @return {Object} A literal with members
436          */
437         urlDecode : function(string, overwrite){
438             if(!string || !string.length){
439                 return {};
440             }
441             var obj = {};
442             var pairs = string.split('&');
443             var pair, name, value;
444             for(var i = 0, len = pairs.length; i < len; i++){
445                 pair = pairs[i].split('=');
446                 name = decodeURIComponent(pair[0]);
447                 value = decodeURIComponent(pair[1]);
448                 if(overwrite !== true){
449                     if(typeof obj[name] == "undefined"){
450                         obj[name] = value;
451                     }else if(typeof obj[name] == "string"){
452                         obj[name] = [obj[name]];
453                         obj[name].push(value);
454                     }else{
455                         obj[name].push(value);
456                     }
457                 }else{
458                     obj[name] = value;
459                 }
460             }
461             return obj;
462         },
463
464         /**
465          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
466          * passed array is not really an array, your function is called once with it.
467          * The supplied function is called with (Object item, Number index, Array allItems).
468          * @param {Array/NodeList/Mixed} array
469          * @param {Function} fn
470          * @param {Object} scope
471          */
472         each : function(array, fn, scope){
473             if(typeof array.length == "undefined" || typeof array == "string"){
474                 array = [array];
475             }
476             for(var i = 0, len = array.length; i < len; i++){
477                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
478             }
479         },
480
481         // deprecated
482         combine : function(){
483             var as = arguments, l = as.length, r = [];
484             for(var i = 0; i < l; i++){
485                 var a = as[i];
486                 if(a instanceof Array){
487                     r = r.concat(a);
488                 }else if(a.length !== undefined && !a.substr){
489                     r = r.concat(Array.prototype.slice.call(a, 0));
490                 }else{
491                     r.push(a);
492                 }
493             }
494             return r;
495         },
496
497         /**
498          * Escapes the passed string for use in a regular expression
499          * @param {String} str
500          * @return {String}
501          */
502         escapeRe : function(s) {
503             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
504         },
505
506         // internal
507         callback : function(cb, scope, args, delay){
508             if(typeof cb == "function"){
509                 if(delay){
510                     cb.defer(delay, scope, args || []);
511                 }else{
512                     cb.apply(scope, args || []);
513                 }
514             }
515         },
516
517         /**
518          * Return the dom node for the passed string (id), dom node, or Roo.Element
519          * @param {String/HTMLElement/Roo.Element} el
520          * @return HTMLElement
521          */
522         getDom : function(el){
523             if(!el){
524                 return null;
525             }
526             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
527         },
528
529         /**
530         * Shorthand for {@link Roo.ComponentMgr#get}
531         * @param {String} id
532         * @return Roo.Component
533         */
534         getCmp : function(id){
535             return Roo.ComponentMgr.get(id);
536         },
537          
538         num : function(v, defaultValue){
539             if(typeof v != 'number'){
540                 return defaultValue;
541             }
542             return v;
543         },
544
545         destroy : function(){
546             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
547                 var as = a[i];
548                 if(as){
549                     if(as.dom){
550                         as.removeAllListeners();
551                         as.remove();
552                         continue;
553                     }
554                     if(typeof as.purgeListeners == 'function'){
555                         as.purgeListeners();
556                     }
557                     if(typeof as.destroy == 'function'){
558                         as.destroy();
559                     }
560                 }
561             }
562         },
563
564         // inpired by a similar function in mootools library
565         /**
566          * Returns the type of object that is passed in. If the object passed in is null or undefined it
567          * return false otherwise it returns one of the following values:<ul>
568          * <li><b>string</b>: If the object passed is a string</li>
569          * <li><b>number</b>: If the object passed is a number</li>
570          * <li><b>boolean</b>: If the object passed is a boolean value</li>
571          * <li><b>function</b>: If the object passed is a function reference</li>
572          * <li><b>object</b>: If the object passed is an object</li>
573          * <li><b>array</b>: If the object passed is an array</li>
574          * <li><b>regexp</b>: If the object passed is a regular expression</li>
575          * <li><b>element</b>: If the object passed is a DOM Element</li>
576          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
577          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
578          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
579          * @param {Mixed} object
580          * @return {String}
581          */
582         type : function(o){
583             if(o === undefined || o === null){
584                 return false;
585             }
586             if(o.htmlElement){
587                 return 'element';
588             }
589             var t = typeof o;
590             if(t == 'object' && o.nodeName) {
591                 switch(o.nodeType) {
592                     case 1: return 'element';
593                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
594                 }
595             }
596             if(t == 'object' || t == 'function') {
597                 switch(o.constructor) {
598                     case Array: return 'array';
599                     case RegExp: return 'regexp';
600                 }
601                 if(typeof o.length == 'number' && typeof o.item == 'function') {
602                     return 'nodelist';
603                 }
604             }
605             return t;
606         },
607
608         /**
609          * Returns true if the passed value is null, undefined or an empty string (optional).
610          * @param {Mixed} value The value to test
611          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
612          * @return {Boolean}
613          */
614         isEmpty : function(v, allowBlank){
615             return v === null || v === undefined || (!allowBlank ? v === '' : false);
616         },
617         
618         /** @type Boolean */
619         isOpera : isOpera,
620         /** @type Boolean */
621         isSafari : isSafari,
622         /** @type Boolean */
623         isFirefox : isFirefox,
624         /** @type Boolean */
625         isIE : isIE,
626         /** @type Boolean */
627         isIE7 : isIE7,
628         /** @type Boolean */
629         isIE11 : isIE11,
630         /** @type Boolean */
631         isGecko : isGecko,
632         /** @type Boolean */
633         isBorderBox : isBorderBox,
634         /** @type Boolean */
635         isWindows : isWindows,
636         /** @type Boolean */
637         isLinux : isLinux,
638         /** @type Boolean */
639         isMac : isMac,
640         /** @type Boolean */
641         isIOS : isIOS,
642         /** @type Boolean */
643         isTouch : isTouch,
644
645         /**
646          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
647          * you may want to set this to true.
648          * @type Boolean
649          */
650         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
651         
652         
653                 
654         /**
655          * Selects a single element as a Roo Element
656          * This is about as close as you can get to jQuery's $('do crazy stuff')
657          * @param {String} selector The selector/xpath query
658          * @param {Node} root (optional) The start of the query (defaults to document).
659          * @return {Roo.Element}
660          */
661         selectNode : function(selector, root) 
662         {
663             var node = Roo.DomQuery.selectNode(selector,root);
664             return node ? Roo.get(node) : new Roo.Element(false);
665         }
666         
667     });
668
669
670 })();
671
672 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
673                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
674                 "Roo.app", "Roo.ux",
675                 "Roo.bootstrap",
676                 "Roo.bootstrap.dash");
677 /*
678  * Based on:
679  * Ext JS Library 1.1.1
680  * Copyright(c) 2006-2007, Ext JS, LLC.
681  *
682  * Originally Released Under LGPL - original licence link has changed is not relivant.
683  *
684  * Fork - LGPL
685  * <script type="text/javascript">
686  */
687
688 (function() {    
689     // wrappedn so fnCleanup is not in global scope...
690     if(Roo.isIE) {
691         function fnCleanUp() {
692             var p = Function.prototype;
693             delete p.createSequence;
694             delete p.defer;
695             delete p.createDelegate;
696             delete p.createCallback;
697             delete p.createInterceptor;
698
699             window.detachEvent("onunload", fnCleanUp);
700         }
701         window.attachEvent("onunload", fnCleanUp);
702     }
703 })();
704
705
706 /**
707  * @class Function
708  * These functions are available on every Function object (any JavaScript function).
709  */
710 Roo.apply(Function.prototype, {
711      /**
712      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
713      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
714      * Will create a function that is bound to those 2 args.
715      * @return {Function} The new function
716     */
717     createCallback : function(/*args...*/){
718         // make args available, in function below
719         var args = arguments;
720         var method = this;
721         return function() {
722             return method.apply(window, args);
723         };
724     },
725
726     /**
727      * Creates a delegate (callback) that sets the scope to obj.
728      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
729      * Will create a function that is automatically scoped to this.
730      * @param {Object} obj (optional) The object for which the scope is set
731      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
732      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
733      *                                             if a number the args are inserted at the specified position
734      * @return {Function} The new function
735      */
736     createDelegate : function(obj, args, appendArgs){
737         var method = this;
738         return function() {
739             var callArgs = args || arguments;
740             if(appendArgs === true){
741                 callArgs = Array.prototype.slice.call(arguments, 0);
742                 callArgs = callArgs.concat(args);
743             }else if(typeof appendArgs == "number"){
744                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
745                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
746                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
747             }
748             return method.apply(obj || window, callArgs);
749         };
750     },
751
752     /**
753      * Calls this function after the number of millseconds specified.
754      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
755      * @param {Object} obj (optional) The object for which the scope is set
756      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
757      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
758      *                                             if a number the args are inserted at the specified position
759      * @return {Number} The timeout id that can be used with clearTimeout
760      */
761     defer : function(millis, obj, args, appendArgs){
762         var fn = this.createDelegate(obj, args, appendArgs);
763         if(millis){
764             return setTimeout(fn, millis);
765         }
766         fn();
767         return 0;
768     },
769     /**
770      * Create a combined function call sequence of the original function + the passed function.
771      * The resulting function returns the results of the original function.
772      * The passed fcn is called with the parameters of the original function
773      * @param {Function} fcn The function to sequence
774      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
775      * @return {Function} The new function
776      */
777     createSequence : function(fcn, scope){
778         if(typeof fcn != "function"){
779             return this;
780         }
781         var method = this;
782         return function() {
783             var retval = method.apply(this || window, arguments);
784             fcn.apply(scope || this || window, arguments);
785             return retval;
786         };
787     },
788
789     /**
790      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
791      * The resulting function returns the results of the original function.
792      * The passed fcn is called with the parameters of the original function.
793      * @addon
794      * @param {Function} fcn The function to call before the original
795      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
796      * @return {Function} The new function
797      */
798     createInterceptor : function(fcn, scope){
799         if(typeof fcn != "function"){
800             return this;
801         }
802         var method = this;
803         return function() {
804             fcn.target = this;
805             fcn.method = method;
806             if(fcn.apply(scope || this || window, arguments) === false){
807                 return;
808             }
809             return method.apply(this || window, arguments);
810         };
811     }
812 });
813 /*
814  * Based on:
815  * Ext JS Library 1.1.1
816  * Copyright(c) 2006-2007, Ext JS, LLC.
817  *
818  * Originally Released Under LGPL - original licence link has changed is not relivant.
819  *
820  * Fork - LGPL
821  * <script type="text/javascript">
822  */
823
824 Roo.applyIf(String, {
825     
826     /** @scope String */
827     
828     /**
829      * Escapes the passed string for ' and \
830      * @param {String} string The string to escape
831      * @return {String} The escaped string
832      * @static
833      */
834     escape : function(string) {
835         return string.replace(/('|\\)/g, "\\$1");
836     },
837
838     /**
839      * Pads the left side of a string with a specified character.  This is especially useful
840      * for normalizing number and date strings.  Example usage:
841      * <pre><code>
842 var s = String.leftPad('123', 5, '0');
843 // s now contains the string: '00123'
844 </code></pre>
845      * @param {String} string The original string
846      * @param {Number} size The total length of the output string
847      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
848      * @return {String} The padded string
849      * @static
850      */
851     leftPad : function (val, size, ch) {
852         var result = new String(val);
853         if(ch === null || ch === undefined || ch === '') {
854             ch = " ";
855         }
856         while (result.length < size) {
857             result = ch + result;
858         }
859         return result;
860     },
861
862     /**
863      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
864      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
865      * <pre><code>
866 var cls = 'my-class', text = 'Some text';
867 var s = String.format('<div class="{0}">{1}</div>', cls, text);
868 // s now contains the string: '<div class="my-class">Some text</div>'
869 </code></pre>
870      * @param {String} string The tokenized string to be formatted
871      * @param {String} value1 The value to replace token {0}
872      * @param {String} value2 Etc...
873      * @return {String} The formatted string
874      * @static
875      */
876     format : function(format){
877         var args = Array.prototype.slice.call(arguments, 1);
878         return format.replace(/\{(\d+)\}/g, function(m, i){
879             return Roo.util.Format.htmlEncode(args[i]);
880         });
881     }
882 });
883
884 /**
885  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
886  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
887  * they are already different, the first value passed in is returned.  Note that this method returns the new value
888  * but does not change the current string.
889  * <pre><code>
890 // alternate sort directions
891 sort = sort.toggle('ASC', 'DESC');
892
893 // instead of conditional logic:
894 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
895 </code></pre>
896  * @param {String} value The value to compare to the current string
897  * @param {String} other The new value to use if the string already equals the first value passed in
898  * @return {String} The new value
899  */
900  
901 String.prototype.toggle = function(value, other){
902     return this == value ? other : value;
903 };/*
904  * Based on:
905  * Ext JS Library 1.1.1
906  * Copyright(c) 2006-2007, Ext JS, LLC.
907  *
908  * Originally Released Under LGPL - original licence link has changed is not relivant.
909  *
910  * Fork - LGPL
911  * <script type="text/javascript">
912  */
913
914  /**
915  * @class Number
916  */
917 Roo.applyIf(Number.prototype, {
918     /**
919      * Checks whether or not the current number is within a desired range.  If the number is already within the
920      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
921      * exceeded.  Note that this method returns the constrained value but does not change the current number.
922      * @param {Number} min The minimum number in the range
923      * @param {Number} max The maximum number in the range
924      * @return {Number} The constrained value if outside the range, otherwise the current value
925      */
926     constrain : function(min, max){
927         return Math.min(Math.max(this, min), max);
928     }
929 });/*
930  * Based on:
931  * Ext JS Library 1.1.1
932  * Copyright(c) 2006-2007, Ext JS, LLC.
933  *
934  * Originally Released Under LGPL - original licence link has changed is not relivant.
935  *
936  * Fork - LGPL
937  * <script type="text/javascript">
938  */
939  /**
940  * @class Array
941  */
942 Roo.applyIf(Array.prototype, {
943     /**
944      * 
945      * Checks whether or not the specified object exists in the array.
946      * @param {Object} o The object to check for
947      * @return {Number} The index of o in the array (or -1 if it is not found)
948      */
949     indexOf : function(o){
950        for (var i = 0, len = this.length; i < len; i++){
951               if(this[i] == o) { return i; }
952        }
953            return -1;
954     },
955
956     /**
957      * Removes the specified object from the array.  If the object is not found nothing happens.
958      * @param {Object} o The object to remove
959      */
960     remove : function(o){
961        var index = this.indexOf(o);
962        if(index != -1){
963            this.splice(index, 1);
964        }
965     },
966     /**
967      * Map (JS 1.6 compatibility)
968      * @param {Function} function  to call
969      */
970     map : function(fun )
971     {
972         var len = this.length >>> 0;
973         if (typeof fun != "function") {
974             throw new TypeError();
975         }
976         var res = new Array(len);
977         var thisp = arguments[1];
978         for (var i = 0; i < len; i++)
979         {
980             if (i in this) {
981                 res[i] = fun.call(thisp, this[i], i, this);
982             }
983         }
984
985         return res;
986     }
987     
988 });
989
990
991  
992 /*
993  * Based on:
994  * Ext JS Library 1.1.1
995  * Copyright(c) 2006-2007, Ext JS, LLC.
996  *
997  * Originally Released Under LGPL - original licence link has changed is not relivant.
998  *
999  * Fork - LGPL
1000  * <script type="text/javascript">
1001  */
1002
1003 /**
1004  * @class Date
1005  *
1006  * The date parsing and format syntax is a subset of
1007  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1008  * supported will provide results equivalent to their PHP versions.
1009  *
1010  * Following is the list of all currently supported formats:
1011  *<pre>
1012 Sample date:
1013 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1014
1015 Format  Output      Description
1016 ------  ----------  --------------------------------------------------------------
1017   d      10         Day of the month, 2 digits with leading zeros
1018   D      Wed        A textual representation of a day, three letters
1019   j      10         Day of the month without leading zeros
1020   l      Wednesday  A full textual representation of the day of the week
1021   S      th         English ordinal day of month suffix, 2 chars (use with j)
1022   w      3          Numeric representation of the day of the week
1023   z      9          The julian date, or day of the year (0-365)
1024   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1025   F      January    A full textual representation of the month
1026   m      01         Numeric representation of a month, with leading zeros
1027   M      Jan        Month name abbreviation, three letters
1028   n      1          Numeric representation of a month, without leading zeros
1029   t      31         Number of days in the given month
1030   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1031   Y      2007       A full numeric representation of a year, 4 digits
1032   y      07         A two digit representation of a year
1033   a      pm         Lowercase Ante meridiem and Post meridiem
1034   A      PM         Uppercase Ante meridiem and Post meridiem
1035   g      3          12-hour format of an hour without leading zeros
1036   G      15         24-hour format of an hour without leading zeros
1037   h      03         12-hour format of an hour with leading zeros
1038   H      15         24-hour format of an hour with leading zeros
1039   i      05         Minutes with leading zeros
1040   s      01         Seconds, with leading zeros
1041   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1042   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1043   T      CST        Timezone setting of the machine running the code
1044   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1045 </pre>
1046  *
1047  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1048  * <pre><code>
1049 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1050 document.write(dt.format('Y-m-d'));                         //2007-01-10
1051 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1052 document.write(dt.format('l, \\t\\he dS of F Y h:i:s A'));  //Wednesday, the 10th of January 2007 03:05:01 PM
1053  </code></pre>
1054  *
1055  * Here are some standard date/time patterns that you might find helpful.  They
1056  * are not part of the source of Date.js, but to use them you can simply copy this
1057  * block of code into any script that is included after Date.js and they will also become
1058  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1059  * <pre><code>
1060 Date.patterns = {
1061     ISO8601Long:"Y-m-d H:i:s",
1062     ISO8601Short:"Y-m-d",
1063     ShortDate: "n/j/Y",
1064     LongDate: "l, F d, Y",
1065     FullDateTime: "l, F d, Y g:i:s A",
1066     MonthDay: "F d",
1067     ShortTime: "g:i A",
1068     LongTime: "g:i:s A",
1069     SortableDateTime: "Y-m-d\\TH:i:s",
1070     UniversalSortableDateTime: "Y-m-d H:i:sO",
1071     YearMonth: "F, Y"
1072 };
1073 </code></pre>
1074  *
1075  * Example usage:
1076  * <pre><code>
1077 var dt = new Date();
1078 document.write(dt.format(Date.patterns.ShortDate));
1079  </code></pre>
1080  */
1081
1082 /*
1083  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1084  * They generate precompiled functions from date formats instead of parsing and
1085  * processing the pattern every time you format a date.  These functions are available
1086  * on every Date object (any javascript function).
1087  *
1088  * The original article and download are here:
1089  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1090  *
1091  */
1092  
1093  
1094  // was in core
1095 /**
1096  Returns the number of milliseconds between this date and date
1097  @param {Date} date (optional) Defaults to now
1098  @return {Number} The diff in milliseconds
1099  @member Date getElapsed
1100  */
1101 Date.prototype.getElapsed = function(date) {
1102         return Math.abs((date || new Date()).getTime()-this.getTime());
1103 };
1104 // was in date file..
1105
1106
1107 // private
1108 Date.parseFunctions = {count:0};
1109 // private
1110 Date.parseRegexes = [];
1111 // private
1112 Date.formatFunctions = {count:0};
1113
1114 // private
1115 Date.prototype.dateFormat = function(format) {
1116     if (Date.formatFunctions[format] == null) {
1117         Date.createNewFormat(format);
1118     }
1119     var func = Date.formatFunctions[format];
1120     return this[func]();
1121 };
1122
1123
1124 /**
1125  * Formats a date given the supplied format string
1126  * @param {String} format The format string
1127  * @return {String} The formatted date
1128  * @method
1129  */
1130 Date.prototype.format = Date.prototype.dateFormat;
1131
1132 // private
1133 Date.createNewFormat = function(format) {
1134     var funcName = "format" + Date.formatFunctions.count++;
1135     Date.formatFunctions[format] = funcName;
1136     var code = "Date.prototype." + funcName + " = function(){return ";
1137     var special = false;
1138     var ch = '';
1139     for (var i = 0; i < format.length; ++i) {
1140         ch = format.charAt(i);
1141         if (!special && ch == "\\") {
1142             special = true;
1143         }
1144         else if (special) {
1145             special = false;
1146             code += "'" + String.escape(ch) + "' + ";
1147         }
1148         else {
1149             code += Date.getFormatCode(ch);
1150         }
1151     }
1152     /** eval:var:zzzzzzzzzzzzz */
1153     eval(code.substring(0, code.length - 3) + ";}");
1154 };
1155
1156 // private
1157 Date.getFormatCode = function(character) {
1158     switch (character) {
1159     case "d":
1160         return "String.leftPad(this.getDate(), 2, '0') + ";
1161     case "D":
1162         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1163     case "j":
1164         return "this.getDate() + ";
1165     case "l":
1166         return "Date.dayNames[this.getDay()] + ";
1167     case "S":
1168         return "this.getSuffix() + ";
1169     case "w":
1170         return "this.getDay() + ";
1171     case "z":
1172         return "this.getDayOfYear() + ";
1173     case "W":
1174         return "this.getWeekOfYear() + ";
1175     case "F":
1176         return "Date.monthNames[this.getMonth()] + ";
1177     case "m":
1178         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1179     case "M":
1180         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1181     case "n":
1182         return "(this.getMonth() + 1) + ";
1183     case "t":
1184         return "this.getDaysInMonth() + ";
1185     case "L":
1186         return "(this.isLeapYear() ? 1 : 0) + ";
1187     case "Y":
1188         return "this.getFullYear() + ";
1189     case "y":
1190         return "('' + this.getFullYear()).substring(2, 4) + ";
1191     case "a":
1192         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1193     case "A":
1194         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1195     case "g":
1196         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1197     case "G":
1198         return "this.getHours() + ";
1199     case "h":
1200         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1201     case "H":
1202         return "String.leftPad(this.getHours(), 2, '0') + ";
1203     case "i":
1204         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1205     case "s":
1206         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1207     case "O":
1208         return "this.getGMTOffset() + ";
1209     case "P":
1210         return "this.getGMTColonOffset() + ";
1211     case "T":
1212         return "this.getTimezone() + ";
1213     case "Z":
1214         return "(this.getTimezoneOffset() * -60) + ";
1215     default:
1216         return "'" + String.escape(character) + "' + ";
1217     }
1218 };
1219
1220 /**
1221  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1222  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1223  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1224  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1225  * string or the parse operation will fail.
1226  * Example Usage:
1227 <pre><code>
1228 //dt = Fri May 25 2007 (current date)
1229 var dt = new Date();
1230
1231 //dt = Thu May 25 2006 (today's month/day in 2006)
1232 dt = Date.parseDate("2006", "Y");
1233
1234 //dt = Sun Jan 15 2006 (all date parts specified)
1235 dt = Date.parseDate("2006-1-15", "Y-m-d");
1236
1237 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1238 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1239 </code></pre>
1240  * @param {String} input The unparsed date as a string
1241  * @param {String} format The format the date is in
1242  * @return {Date} The parsed date
1243  * @static
1244  */
1245 Date.parseDate = function(input, format) {
1246     if (Date.parseFunctions[format] == null) {
1247         Date.createParser(format);
1248     }
1249     var func = Date.parseFunctions[format];
1250     return Date[func](input);
1251 };
1252 /**
1253  * @private
1254  */
1255
1256 Date.createParser = function(format) {
1257     var funcName = "parse" + Date.parseFunctions.count++;
1258     var regexNum = Date.parseRegexes.length;
1259     var currentGroup = 1;
1260     Date.parseFunctions[format] = funcName;
1261
1262     var code = "Date." + funcName + " = function(input){\n"
1263         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1264         + "var d = new Date();\n"
1265         + "y = d.getFullYear();\n"
1266         + "m = d.getMonth();\n"
1267         + "d = d.getDate();\n"
1268         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1269         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1270         + "if (results && results.length > 0) {";
1271     var regex = "";
1272
1273     var special = false;
1274     var ch = '';
1275     for (var i = 0; i < format.length; ++i) {
1276         ch = format.charAt(i);
1277         if (!special && ch == "\\") {
1278             special = true;
1279         }
1280         else if (special) {
1281             special = false;
1282             regex += String.escape(ch);
1283         }
1284         else {
1285             var obj = Date.formatCodeToRegex(ch, currentGroup);
1286             currentGroup += obj.g;
1287             regex += obj.s;
1288             if (obj.g && obj.c) {
1289                 code += obj.c;
1290             }
1291         }
1292     }
1293
1294     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1295         + "{v = new Date(y, m, d, h, i, s);}\n"
1296         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1297         + "{v = new Date(y, m, d, h, i);}\n"
1298         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1299         + "{v = new Date(y, m, d, h);}\n"
1300         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1301         + "{v = new Date(y, m, d);}\n"
1302         + "else if (y >= 0 && m >= 0)\n"
1303         + "{v = new Date(y, m);}\n"
1304         + "else if (y >= 0)\n"
1305         + "{v = new Date(y);}\n"
1306         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1307         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1308         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1309         + ";}";
1310
1311     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1312     /** eval:var:zzzzzzzzzzzzz */
1313     eval(code);
1314 };
1315
1316 // private
1317 Date.formatCodeToRegex = function(character, currentGroup) {
1318     switch (character) {
1319     case "D":
1320         return {g:0,
1321         c:null,
1322         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1323     case "j":
1324         return {g:1,
1325             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1326             s:"(\\d{1,2})"}; // day of month without leading zeroes
1327     case "d":
1328         return {g:1,
1329             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1330             s:"(\\d{2})"}; // day of month with leading zeroes
1331     case "l":
1332         return {g:0,
1333             c:null,
1334             s:"(?:" + Date.dayNames.join("|") + ")"};
1335     case "S":
1336         return {g:0,
1337             c:null,
1338             s:"(?:st|nd|rd|th)"};
1339     case "w":
1340         return {g:0,
1341             c:null,
1342             s:"\\d"};
1343     case "z":
1344         return {g:0,
1345             c:null,
1346             s:"(?:\\d{1,3})"};
1347     case "W":
1348         return {g:0,
1349             c:null,
1350             s:"(?:\\d{2})"};
1351     case "F":
1352         return {g:1,
1353             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1354             s:"(" + Date.monthNames.join("|") + ")"};
1355     case "M":
1356         return {g:1,
1357             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1358             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1359     case "n":
1360         return {g:1,
1361             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1362             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1363     case "m":
1364         return {g:1,
1365             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1366             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1367     case "t":
1368         return {g:0,
1369             c:null,
1370             s:"\\d{1,2}"};
1371     case "L":
1372         return {g:0,
1373             c:null,
1374             s:"(?:1|0)"};
1375     case "Y":
1376         return {g:1,
1377             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1378             s:"(\\d{4})"};
1379     case "y":
1380         return {g:1,
1381             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1382                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1383             s:"(\\d{1,2})"};
1384     case "a":
1385         return {g:1,
1386             c:"if (results[" + currentGroup + "] == 'am') {\n"
1387                 + "if (h == 12) { h = 0; }\n"
1388                 + "} else { if (h < 12) { h += 12; }}",
1389             s:"(am|pm)"};
1390     case "A":
1391         return {g:1,
1392             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1393                 + "if (h == 12) { h = 0; }\n"
1394                 + "} else { if (h < 12) { h += 12; }}",
1395             s:"(AM|PM)"};
1396     case "g":
1397     case "G":
1398         return {g:1,
1399             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1400             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1401     case "h":
1402     case "H":
1403         return {g:1,
1404             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1405             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1406     case "i":
1407         return {g:1,
1408             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1409             s:"(\\d{2})"};
1410     case "s":
1411         return {g:1,
1412             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1413             s:"(\\d{2})"};
1414     case "O":
1415         return {g:1,
1416             c:[
1417                 "o = results[", currentGroup, "];\n",
1418                 "var sn = o.substring(0,1);\n", // get + / - sign
1419                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1420                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1421                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1422                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1423             ].join(""),
1424             s:"([+\-]\\d{2,4})"};
1425     
1426     
1427     case "P":
1428         return {g:1,
1429                 c:[
1430                    "o = results[", currentGroup, "];\n",
1431                    "var sn = o.substring(0,1);\n",
1432                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1433                    "var mn = o.substring(4,6) % 60;\n",
1434                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1435                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1436             ].join(""),
1437             s:"([+\-]\\d{4})"};
1438     case "T":
1439         return {g:0,
1440             c:null,
1441             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1442     case "Z":
1443         return {g:1,
1444             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1445                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1446             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1447     default:
1448         return {g:0,
1449             c:null,
1450             s:String.escape(character)};
1451     }
1452 };
1453
1454 /**
1455  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1456  * @return {String} The abbreviated timezone name (e.g. 'CST')
1457  */
1458 Date.prototype.getTimezone = function() {
1459     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1460 };
1461
1462 /**
1463  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1464  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1465  */
1466 Date.prototype.getGMTOffset = function() {
1467     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1468         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1469         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1470 };
1471
1472 /**
1473  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1474  * @return {String} 2-characters representing hours and 2-characters representing minutes
1475  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1476  */
1477 Date.prototype.getGMTColonOffset = function() {
1478         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1479                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1480                 + ":"
1481                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1482 }
1483
1484 /**
1485  * Get the numeric day number of the year, adjusted for leap year.
1486  * @return {Number} 0 through 364 (365 in leap years)
1487  */
1488 Date.prototype.getDayOfYear = function() {
1489     var num = 0;
1490     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1491     for (var i = 0; i < this.getMonth(); ++i) {
1492         num += Date.daysInMonth[i];
1493     }
1494     return num + this.getDate() - 1;
1495 };
1496
1497 /**
1498  * Get the string representation of the numeric week number of the year
1499  * (equivalent to the format specifier 'W').
1500  * @return {String} '00' through '52'
1501  */
1502 Date.prototype.getWeekOfYear = function() {
1503     // Skip to Thursday of this week
1504     var now = this.getDayOfYear() + (4 - this.getDay());
1505     // Find the first Thursday of the year
1506     var jan1 = new Date(this.getFullYear(), 0, 1);
1507     var then = (7 - jan1.getDay() + 4);
1508     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1509 };
1510
1511 /**
1512  * Whether or not the current date is in a leap year.
1513  * @return {Boolean} True if the current date is in a leap year, else false
1514  */
1515 Date.prototype.isLeapYear = function() {
1516     var year = this.getFullYear();
1517     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1518 };
1519
1520 /**
1521  * Get the first day of the current month, adjusted for leap year.  The returned value
1522  * is the numeric day index within the week (0-6) which can be used in conjunction with
1523  * the {@link #monthNames} array to retrieve the textual day name.
1524  * Example:
1525  *<pre><code>
1526 var dt = new Date('1/10/2007');
1527 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1528 </code></pre>
1529  * @return {Number} The day number (0-6)
1530  */
1531 Date.prototype.getFirstDayOfMonth = function() {
1532     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1533     return (day < 0) ? (day + 7) : day;
1534 };
1535
1536 /**
1537  * Get the last day of the current month, adjusted for leap year.  The returned value
1538  * is the numeric day index within the week (0-6) which can be used in conjunction with
1539  * the {@link #monthNames} array to retrieve the textual day name.
1540  * Example:
1541  *<pre><code>
1542 var dt = new Date('1/10/2007');
1543 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1544 </code></pre>
1545  * @return {Number} The day number (0-6)
1546  */
1547 Date.prototype.getLastDayOfMonth = function() {
1548     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1549     return (day < 0) ? (day + 7) : day;
1550 };
1551
1552
1553 /**
1554  * Get the first date of this date's month
1555  * @return {Date}
1556  */
1557 Date.prototype.getFirstDateOfMonth = function() {
1558     return new Date(this.getFullYear(), this.getMonth(), 1);
1559 };
1560
1561 /**
1562  * Get the last date of this date's month
1563  * @return {Date}
1564  */
1565 Date.prototype.getLastDateOfMonth = function() {
1566     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1567 };
1568 /**
1569  * Get the number of days in the current month, adjusted for leap year.
1570  * @return {Number} The number of days in the month
1571  */
1572 Date.prototype.getDaysInMonth = function() {
1573     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1574     return Date.daysInMonth[this.getMonth()];
1575 };
1576
1577 /**
1578  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1579  * @return {String} 'st, 'nd', 'rd' or 'th'
1580  */
1581 Date.prototype.getSuffix = function() {
1582     switch (this.getDate()) {
1583         case 1:
1584         case 21:
1585         case 31:
1586             return "st";
1587         case 2:
1588         case 22:
1589             return "nd";
1590         case 3:
1591         case 23:
1592             return "rd";
1593         default:
1594             return "th";
1595     }
1596 };
1597
1598 // private
1599 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1600
1601 /**
1602  * An array of textual month names.
1603  * Override these values for international dates, for example...
1604  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1605  * @type Array
1606  * @static
1607  */
1608 Date.monthNames =
1609    ["January",
1610     "February",
1611     "March",
1612     "April",
1613     "May",
1614     "June",
1615     "July",
1616     "August",
1617     "September",
1618     "October",
1619     "November",
1620     "December"];
1621
1622 /**
1623  * An array of textual day names.
1624  * Override these values for international dates, for example...
1625  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1626  * @type Array
1627  * @static
1628  */
1629 Date.dayNames =
1630    ["Sunday",
1631     "Monday",
1632     "Tuesday",
1633     "Wednesday",
1634     "Thursday",
1635     "Friday",
1636     "Saturday"];
1637
1638 // private
1639 Date.y2kYear = 50;
1640 // private
1641 Date.monthNumbers = {
1642     Jan:0,
1643     Feb:1,
1644     Mar:2,
1645     Apr:3,
1646     May:4,
1647     Jun:5,
1648     Jul:6,
1649     Aug:7,
1650     Sep:8,
1651     Oct:9,
1652     Nov:10,
1653     Dec:11};
1654
1655 /**
1656  * Creates and returns a new Date instance with the exact same date value as the called instance.
1657  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1658  * variable will also be changed.  When the intention is to create a new variable that will not
1659  * modify the original instance, you should create a clone.
1660  *
1661  * Example of correctly cloning a date:
1662  * <pre><code>
1663 //wrong way:
1664 var orig = new Date('10/1/2006');
1665 var copy = orig;
1666 copy.setDate(5);
1667 document.write(orig);  //returns 'Thu Oct 05 2006'!
1668
1669 //correct way:
1670 var orig = new Date('10/1/2006');
1671 var copy = orig.clone();
1672 copy.setDate(5);
1673 document.write(orig);  //returns 'Thu Oct 01 2006'
1674 </code></pre>
1675  * @return {Date} The new Date instance
1676  */
1677 Date.prototype.clone = function() {
1678         return new Date(this.getTime());
1679 };
1680
1681 /**
1682  * Clears any time information from this date
1683  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1684  @return {Date} this or the clone
1685  */
1686 Date.prototype.clearTime = function(clone){
1687     if(clone){
1688         return this.clone().clearTime();
1689     }
1690     this.setHours(0);
1691     this.setMinutes(0);
1692     this.setSeconds(0);
1693     this.setMilliseconds(0);
1694     return this;
1695 };
1696
1697 // private
1698 // safari setMonth is broken -- check that this is only donw once...
1699 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1700     Date.brokenSetMonth = Date.prototype.setMonth;
1701         Date.prototype.setMonth = function(num){
1702                 if(num <= -1){
1703                         var n = Math.ceil(-num);
1704                         var back_year = Math.ceil(n/12);
1705                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1706                         this.setFullYear(this.getFullYear() - back_year);
1707                         return Date.brokenSetMonth.call(this, month);
1708                 } else {
1709                         return Date.brokenSetMonth.apply(this, arguments);
1710                 }
1711         };
1712 }
1713
1714 /** Date interval constant 
1715 * @static 
1716 * @type String */
1717 Date.MILLI = "ms";
1718 /** Date interval constant 
1719 * @static 
1720 * @type String */
1721 Date.SECOND = "s";
1722 /** Date interval constant 
1723 * @static 
1724 * @type String */
1725 Date.MINUTE = "mi";
1726 /** Date interval constant 
1727 * @static 
1728 * @type String */
1729 Date.HOUR = "h";
1730 /** Date interval constant 
1731 * @static 
1732 * @type String */
1733 Date.DAY = "d";
1734 /** Date interval constant 
1735 * @static 
1736 * @type String */
1737 Date.MONTH = "mo";
1738 /** Date interval constant 
1739 * @static 
1740 * @type String */
1741 Date.YEAR = "y";
1742
1743 /**
1744  * Provides a convenient method of performing basic date arithmetic.  This method
1745  * does not modify the Date instance being called - it creates and returns
1746  * a new Date instance containing the resulting date value.
1747  *
1748  * Examples:
1749  * <pre><code>
1750 //Basic usage:
1751 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1752 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1753
1754 //Negative values will subtract correctly:
1755 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1756 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1757
1758 //You can even chain several calls together in one line!
1759 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1760 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1761  </code></pre>
1762  *
1763  * @param {String} interval   A valid date interval enum value
1764  * @param {Number} value      The amount to add to the current date
1765  * @return {Date} The new Date instance
1766  */
1767 Date.prototype.add = function(interval, value){
1768   var d = this.clone();
1769   if (!interval || value === 0) { return d; }
1770   switch(interval.toLowerCase()){
1771     case Date.MILLI:
1772       d.setMilliseconds(this.getMilliseconds() + value);
1773       break;
1774     case Date.SECOND:
1775       d.setSeconds(this.getSeconds() + value);
1776       break;
1777     case Date.MINUTE:
1778       d.setMinutes(this.getMinutes() + value);
1779       break;
1780     case Date.HOUR:
1781       d.setHours(this.getHours() + value);
1782       break;
1783     case Date.DAY:
1784       d.setDate(this.getDate() + value);
1785       break;
1786     case Date.MONTH:
1787       var day = this.getDate();
1788       if(day > 28){
1789           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1790       }
1791       d.setDate(day);
1792       d.setMonth(this.getMonth() + value);
1793       break;
1794     case Date.YEAR:
1795       d.setFullYear(this.getFullYear() + value);
1796       break;
1797   }
1798   return d;
1799 };
1800 /*
1801  * Based on:
1802  * Ext JS Library 1.1.1
1803  * Copyright(c) 2006-2007, Ext JS, LLC.
1804  *
1805  * Originally Released Under LGPL - original licence link has changed is not relivant.
1806  *
1807  * Fork - LGPL
1808  * <script type="text/javascript">
1809  */
1810
1811 /**
1812  * @class Roo.lib.Dom
1813  * @static
1814  * 
1815  * Dom utils (from YIU afaik)
1816  * 
1817  **/
1818 Roo.lib.Dom = {
1819     /**
1820      * Get the view width
1821      * @param {Boolean} full True will get the full document, otherwise it's the view width
1822      * @return {Number} The width
1823      */
1824      
1825     getViewWidth : function(full) {
1826         return full ? this.getDocumentWidth() : this.getViewportWidth();
1827     },
1828     /**
1829      * Get the view height
1830      * @param {Boolean} full True will get the full document, otherwise it's the view height
1831      * @return {Number} The height
1832      */
1833     getViewHeight : function(full) {
1834         return full ? this.getDocumentHeight() : this.getViewportHeight();
1835     },
1836
1837     getDocumentHeight: function() {
1838         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1839         return Math.max(scrollHeight, this.getViewportHeight());
1840     },
1841
1842     getDocumentWidth: function() {
1843         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1844         return Math.max(scrollWidth, this.getViewportWidth());
1845     },
1846
1847     getViewportHeight: function() {
1848         var height = self.innerHeight;
1849         var mode = document.compatMode;
1850
1851         if ((mode || Roo.isIE) && !Roo.isOpera) {
1852             height = (mode == "CSS1Compat") ?
1853                      document.documentElement.clientHeight :
1854                      document.body.clientHeight;
1855         }
1856
1857         return height;
1858     },
1859
1860     getViewportWidth: function() {
1861         var width = self.innerWidth;
1862         var mode = document.compatMode;
1863
1864         if (mode || Roo.isIE) {
1865             width = (mode == "CSS1Compat") ?
1866                     document.documentElement.clientWidth :
1867                     document.body.clientWidth;
1868         }
1869         return width;
1870     },
1871
1872     isAncestor : function(p, c) {
1873         p = Roo.getDom(p);
1874         c = Roo.getDom(c);
1875         if (!p || !c) {
1876             return false;
1877         }
1878
1879         if (p.contains && !Roo.isSafari) {
1880             return p.contains(c);
1881         } else if (p.compareDocumentPosition) {
1882             return !!(p.compareDocumentPosition(c) & 16);
1883         } else {
1884             var parent = c.parentNode;
1885             while (parent) {
1886                 if (parent == p) {
1887                     return true;
1888                 }
1889                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1890                     return false;
1891                 }
1892                 parent = parent.parentNode;
1893             }
1894             return false;
1895         }
1896     },
1897
1898     getRegion : function(el) {
1899         return Roo.lib.Region.getRegion(el);
1900     },
1901
1902     getY : function(el) {
1903         return this.getXY(el)[1];
1904     },
1905
1906     getX : function(el) {
1907         return this.getXY(el)[0];
1908     },
1909
1910     getXY : function(el) {
1911         var p, pe, b, scroll, bd = document.body;
1912         el = Roo.getDom(el);
1913         var fly = Roo.lib.AnimBase.fly;
1914         if (el.getBoundingClientRect) {
1915             b = el.getBoundingClientRect();
1916             scroll = fly(document).getScroll();
1917             return [b.left + scroll.left, b.top + scroll.top];
1918         }
1919         var x = 0, y = 0;
1920
1921         p = el;
1922
1923         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1924
1925         while (p) {
1926
1927             x += p.offsetLeft;
1928             y += p.offsetTop;
1929
1930             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1931                 hasAbsolute = true;
1932             }
1933
1934             if (Roo.isGecko) {
1935                 pe = fly(p);
1936
1937                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1938                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1939
1940
1941                 x += bl;
1942                 y += bt;
1943
1944
1945                 if (p != el && pe.getStyle('overflow') != 'visible') {
1946                     x += bl;
1947                     y += bt;
1948                 }
1949             }
1950             p = p.offsetParent;
1951         }
1952
1953         if (Roo.isSafari && hasAbsolute) {
1954             x -= bd.offsetLeft;
1955             y -= bd.offsetTop;
1956         }
1957
1958         if (Roo.isGecko && !hasAbsolute) {
1959             var dbd = fly(bd);
1960             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
1961             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
1962         }
1963
1964         p = el.parentNode;
1965         while (p && p != bd) {
1966             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
1967                 x -= p.scrollLeft;
1968                 y -= p.scrollTop;
1969             }
1970             p = p.parentNode;
1971         }
1972         return [x, y];
1973     },
1974  
1975   
1976
1977
1978     setXY : function(el, xy) {
1979         el = Roo.fly(el, '_setXY');
1980         el.position();
1981         var pts = el.translatePoints(xy);
1982         if (xy[0] !== false) {
1983             el.dom.style.left = pts.left + "px";
1984         }
1985         if (xy[1] !== false) {
1986             el.dom.style.top = pts.top + "px";
1987         }
1988     },
1989
1990     setX : function(el, x) {
1991         this.setXY(el, [x, false]);
1992     },
1993
1994     setY : function(el, y) {
1995         this.setXY(el, [false, y]);
1996     }
1997 };
1998 /*
1999  * Portions of this file are based on pieces of Yahoo User Interface Library
2000  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2001  * YUI licensed under the BSD License:
2002  * http://developer.yahoo.net/yui/license.txt
2003  * <script type="text/javascript">
2004  *
2005  */
2006
2007 Roo.lib.Event = function() {
2008     var loadComplete = false;
2009     var listeners = [];
2010     var unloadListeners = [];
2011     var retryCount = 0;
2012     var onAvailStack = [];
2013     var counter = 0;
2014     var lastError = null;
2015
2016     return {
2017         POLL_RETRYS: 200,
2018         POLL_INTERVAL: 20,
2019         EL: 0,
2020         TYPE: 1,
2021         FN: 2,
2022         WFN: 3,
2023         OBJ: 3,
2024         ADJ_SCOPE: 4,
2025         _interval: null,
2026
2027         startInterval: function() {
2028             if (!this._interval) {
2029                 var self = this;
2030                 var callback = function() {
2031                     self._tryPreloadAttach();
2032                 };
2033                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2034
2035             }
2036         },
2037
2038         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2039             onAvailStack.push({ id:         p_id,
2040                 fn:         p_fn,
2041                 obj:        p_obj,
2042                 override:   p_override,
2043                 checkReady: false    });
2044
2045             retryCount = this.POLL_RETRYS;
2046             this.startInterval();
2047         },
2048
2049
2050         addListener: function(el, eventName, fn) {
2051             el = Roo.getDom(el);
2052             if (!el || !fn) {
2053                 return false;
2054             }
2055
2056             if ("unload" == eventName) {
2057                 unloadListeners[unloadListeners.length] =
2058                 [el, eventName, fn];
2059                 return true;
2060             }
2061
2062             var wrappedFn = function(e) {
2063                 return fn(Roo.lib.Event.getEvent(e));
2064             };
2065
2066             var li = [el, eventName, fn, wrappedFn];
2067
2068             var index = listeners.length;
2069             listeners[index] = li;
2070
2071             this.doAdd(el, eventName, wrappedFn, false);
2072             return true;
2073
2074         },
2075
2076
2077         removeListener: function(el, eventName, fn) {
2078             var i, len;
2079
2080             el = Roo.getDom(el);
2081
2082             if(!fn) {
2083                 return this.purgeElement(el, false, eventName);
2084             }
2085
2086
2087             if ("unload" == eventName) {
2088
2089                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2090                     var li = unloadListeners[i];
2091                     if (li &&
2092                         li[0] == el &&
2093                         li[1] == eventName &&
2094                         li[2] == fn) {
2095                         unloadListeners.splice(i, 1);
2096                         return true;
2097                     }
2098                 }
2099
2100                 return false;
2101             }
2102
2103             var cacheItem = null;
2104
2105
2106             var index = arguments[3];
2107
2108             if ("undefined" == typeof index) {
2109                 index = this._getCacheIndex(el, eventName, fn);
2110             }
2111
2112             if (index >= 0) {
2113                 cacheItem = listeners[index];
2114             }
2115
2116             if (!el || !cacheItem) {
2117                 return false;
2118             }
2119
2120             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2121
2122             delete listeners[index][this.WFN];
2123             delete listeners[index][this.FN];
2124             listeners.splice(index, 1);
2125
2126             return true;
2127
2128         },
2129
2130
2131         getTarget: function(ev, resolveTextNode) {
2132             ev = ev.browserEvent || ev;
2133             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2134             var t = ev.target || ev.srcElement;
2135             return this.resolveTextNode(t);
2136         },
2137
2138
2139         resolveTextNode: function(node) {
2140             if (Roo.isSafari && node && 3 == node.nodeType) {
2141                 return node.parentNode;
2142             } else {
2143                 return node;
2144             }
2145         },
2146
2147
2148         getPageX: function(ev) {
2149             ev = ev.browserEvent || ev;
2150             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2151             var x = ev.pageX;
2152             if (!x && 0 !== x) {
2153                 x = ev.clientX || 0;
2154
2155                 if (Roo.isIE) {
2156                     x += this.getScroll()[1];
2157                 }
2158             }
2159
2160             return x;
2161         },
2162
2163
2164         getPageY: function(ev) {
2165             ev = ev.browserEvent || ev;
2166             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2167             var y = ev.pageY;
2168             if (!y && 0 !== y) {
2169                 y = ev.clientY || 0;
2170
2171                 if (Roo.isIE) {
2172                     y += this.getScroll()[0];
2173                 }
2174             }
2175
2176
2177             return y;
2178         },
2179
2180
2181         getXY: function(ev) {
2182             ev = ev.browserEvent || ev;
2183             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2184             return [this.getPageX(ev), this.getPageY(ev)];
2185         },
2186
2187
2188         getRelatedTarget: function(ev) {
2189             ev = ev.browserEvent || ev;
2190             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2191             var t = ev.relatedTarget;
2192             if (!t) {
2193                 if (ev.type == "mouseout") {
2194                     t = ev.toElement;
2195                 } else if (ev.type == "mouseover") {
2196                     t = ev.fromElement;
2197                 }
2198             }
2199
2200             return this.resolveTextNode(t);
2201         },
2202
2203
2204         getTime: function(ev) {
2205             ev = ev.browserEvent || ev;
2206             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2207             if (!ev.time) {
2208                 var t = new Date().getTime();
2209                 try {
2210                     ev.time = t;
2211                 } catch(ex) {
2212                     this.lastError = ex;
2213                     return t;
2214                 }
2215             }
2216
2217             return ev.time;
2218         },
2219
2220
2221         stopEvent: function(ev) {
2222             this.stopPropagation(ev);
2223             this.preventDefault(ev);
2224         },
2225
2226
2227         stopPropagation: function(ev) {
2228             ev = ev.browserEvent || ev;
2229             if (ev.stopPropagation) {
2230                 ev.stopPropagation();
2231             } else {
2232                 ev.cancelBubble = true;
2233             }
2234         },
2235
2236
2237         preventDefault: function(ev) {
2238             ev = ev.browserEvent || ev;
2239             if(ev.preventDefault) {
2240                 ev.preventDefault();
2241             } else {
2242                 ev.returnValue = false;
2243             }
2244         },
2245
2246
2247         getEvent: function(e) {
2248             var ev = e || window.event;
2249             if (!ev) {
2250                 var c = this.getEvent.caller;
2251                 while (c) {
2252                     ev = c.arguments[0];
2253                     if (ev && Event == ev.constructor) {
2254                         break;
2255                     }
2256                     c = c.caller;
2257                 }
2258             }
2259             return ev;
2260         },
2261
2262
2263         getCharCode: function(ev) {
2264             ev = ev.browserEvent || ev;
2265             return ev.charCode || ev.keyCode || 0;
2266         },
2267
2268
2269         _getCacheIndex: function(el, eventName, fn) {
2270             for (var i = 0,len = listeners.length; i < len; ++i) {
2271                 var li = listeners[i];
2272                 if (li &&
2273                     li[this.FN] == fn &&
2274                     li[this.EL] == el &&
2275                     li[this.TYPE] == eventName) {
2276                     return i;
2277                 }
2278             }
2279
2280             return -1;
2281         },
2282
2283
2284         elCache: {},
2285
2286
2287         getEl: function(id) {
2288             return document.getElementById(id);
2289         },
2290
2291
2292         clearCache: function() {
2293         },
2294
2295
2296         _load: function(e) {
2297             loadComplete = true;
2298             var EU = Roo.lib.Event;
2299
2300
2301             if (Roo.isIE) {
2302                 EU.doRemove(window, "load", EU._load);
2303             }
2304         },
2305
2306
2307         _tryPreloadAttach: function() {
2308
2309             if (this.locked) {
2310                 return false;
2311             }
2312
2313             this.locked = true;
2314
2315
2316             var tryAgain = !loadComplete;
2317             if (!tryAgain) {
2318                 tryAgain = (retryCount > 0);
2319             }
2320
2321
2322             var notAvail = [];
2323             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2324                 var item = onAvailStack[i];
2325                 if (item) {
2326                     var el = this.getEl(item.id);
2327
2328                     if (el) {
2329                         if (!item.checkReady ||
2330                             loadComplete ||
2331                             el.nextSibling ||
2332                             (document && document.body)) {
2333
2334                             var scope = el;
2335                             if (item.override) {
2336                                 if (item.override === true) {
2337                                     scope = item.obj;
2338                                 } else {
2339                                     scope = item.override;
2340                                 }
2341                             }
2342                             item.fn.call(scope, item.obj);
2343                             onAvailStack[i] = null;
2344                         }
2345                     } else {
2346                         notAvail.push(item);
2347                     }
2348                 }
2349             }
2350
2351             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2352
2353             if (tryAgain) {
2354
2355                 this.startInterval();
2356             } else {
2357                 clearInterval(this._interval);
2358                 this._interval = null;
2359             }
2360
2361             this.locked = false;
2362
2363             return true;
2364
2365         },
2366
2367
2368         purgeElement: function(el, recurse, eventName) {
2369             var elListeners = this.getListeners(el, eventName);
2370             if (elListeners) {
2371                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2372                     var l = elListeners[i];
2373                     this.removeListener(el, l.type, l.fn);
2374                 }
2375             }
2376
2377             if (recurse && el && el.childNodes) {
2378                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2379                     this.purgeElement(el.childNodes[i], recurse, eventName);
2380                 }
2381             }
2382         },
2383
2384
2385         getListeners: function(el, eventName) {
2386             var results = [], searchLists;
2387             if (!eventName) {
2388                 searchLists = [listeners, unloadListeners];
2389             } else if (eventName == "unload") {
2390                 searchLists = [unloadListeners];
2391             } else {
2392                 searchLists = [listeners];
2393             }
2394
2395             for (var j = 0; j < searchLists.length; ++j) {
2396                 var searchList = searchLists[j];
2397                 if (searchList && searchList.length > 0) {
2398                     for (var i = 0,len = searchList.length; i < len; ++i) {
2399                         var l = searchList[i];
2400                         if (l && l[this.EL] === el &&
2401                             (!eventName || eventName === l[this.TYPE])) {
2402                             results.push({
2403                                 type:   l[this.TYPE],
2404                                 fn:     l[this.FN],
2405                                 obj:    l[this.OBJ],
2406                                 adjust: l[this.ADJ_SCOPE],
2407                                 index:  i
2408                             });
2409                         }
2410                     }
2411                 }
2412             }
2413
2414             return (results.length) ? results : null;
2415         },
2416
2417
2418         _unload: function(e) {
2419
2420             var EU = Roo.lib.Event, i, j, l, len, index;
2421
2422             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2423                 l = unloadListeners[i];
2424                 if (l) {
2425                     var scope = window;
2426                     if (l[EU.ADJ_SCOPE]) {
2427                         if (l[EU.ADJ_SCOPE] === true) {
2428                             scope = l[EU.OBJ];
2429                         } else {
2430                             scope = l[EU.ADJ_SCOPE];
2431                         }
2432                     }
2433                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2434                     unloadListeners[i] = null;
2435                     l = null;
2436                     scope = null;
2437                 }
2438             }
2439
2440             unloadListeners = null;
2441
2442             if (listeners && listeners.length > 0) {
2443                 j = listeners.length;
2444                 while (j) {
2445                     index = j - 1;
2446                     l = listeners[index];
2447                     if (l) {
2448                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2449                                 l[EU.FN], index);
2450                     }
2451                     j = j - 1;
2452                 }
2453                 l = null;
2454
2455                 EU.clearCache();
2456             }
2457
2458             EU.doRemove(window, "unload", EU._unload);
2459
2460         },
2461
2462
2463         getScroll: function() {
2464             var dd = document.documentElement, db = document.body;
2465             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2466                 return [dd.scrollTop, dd.scrollLeft];
2467             } else if (db) {
2468                 return [db.scrollTop, db.scrollLeft];
2469             } else {
2470                 return [0, 0];
2471             }
2472         },
2473
2474
2475         doAdd: function () {
2476             if (window.addEventListener) {
2477                 return function(el, eventName, fn, capture) {
2478                     el.addEventListener(eventName, fn, (capture));
2479                 };
2480             } else if (window.attachEvent) {
2481                 return function(el, eventName, fn, capture) {
2482                     el.attachEvent("on" + eventName, fn);
2483                 };
2484             } else {
2485                 return function() {
2486                 };
2487             }
2488         }(),
2489
2490
2491         doRemove: function() {
2492             if (window.removeEventListener) {
2493                 return function (el, eventName, fn, capture) {
2494                     el.removeEventListener(eventName, fn, (capture));
2495                 };
2496             } else if (window.detachEvent) {
2497                 return function (el, eventName, fn) {
2498                     el.detachEvent("on" + eventName, fn);
2499                 };
2500             } else {
2501                 return function() {
2502                 };
2503             }
2504         }()
2505     };
2506     
2507 }();
2508 (function() {     
2509    
2510     var E = Roo.lib.Event;
2511     E.on = E.addListener;
2512     E.un = E.removeListener;
2513
2514     if (document && document.body) {
2515         E._load();
2516     } else {
2517         E.doAdd(window, "load", E._load);
2518     }
2519     E.doAdd(window, "unload", E._unload);
2520     E._tryPreloadAttach();
2521 })();
2522
2523 /*
2524  * Portions of this file are based on pieces of Yahoo User Interface Library
2525  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2526  * YUI licensed under the BSD License:
2527  * http://developer.yahoo.net/yui/license.txt
2528  * <script type="text/javascript">
2529  *
2530  */
2531
2532 (function() {
2533     /**
2534      * @class Roo.lib.Ajax
2535      *
2536      */
2537     Roo.lib.Ajax = {
2538         /**
2539          * @static 
2540          */
2541         request : function(method, uri, cb, data, options) {
2542             if(options){
2543                 var hs = options.headers;
2544                 if(hs){
2545                     for(var h in hs){
2546                         if(hs.hasOwnProperty(h)){
2547                             this.initHeader(h, hs[h], false);
2548                         }
2549                     }
2550                 }
2551                 if(options.xmlData){
2552                     this.initHeader('Content-Type', 'text/xml', false);
2553                     method = 'POST';
2554                     data = options.xmlData;
2555                 }
2556             }
2557
2558             return this.asyncRequest(method, uri, cb, data);
2559         },
2560
2561         serializeForm : function(form) {
2562             if(typeof form == 'string') {
2563                 form = (document.getElementById(form) || document.forms[form]);
2564             }
2565
2566             var el, name, val, disabled, data = '', hasSubmit = false;
2567             for (var i = 0; i < form.elements.length; i++) {
2568                 el = form.elements[i];
2569                 disabled = form.elements[i].disabled;
2570                 name = form.elements[i].name;
2571                 val = form.elements[i].value;
2572
2573                 if (!disabled && name){
2574                     switch (el.type)
2575                             {
2576                         case 'select-one':
2577                         case 'select-multiple':
2578                             for (var j = 0; j < el.options.length; j++) {
2579                                 if (el.options[j].selected) {
2580                                     if (Roo.isIE) {
2581                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2582                                     }
2583                                     else {
2584                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2585                                     }
2586                                 }
2587                             }
2588                             break;
2589                         case 'radio':
2590                         case 'checkbox':
2591                             if (el.checked) {
2592                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2593                             }
2594                             break;
2595                         case 'file':
2596
2597                         case undefined:
2598
2599                         case 'reset':
2600
2601                         case 'button':
2602
2603                             break;
2604                         case 'submit':
2605                             if(hasSubmit == false) {
2606                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2607                                 hasSubmit = true;
2608                             }
2609                             break;
2610                         default:
2611                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2612                             break;
2613                     }
2614                 }
2615             }
2616             data = data.substr(0, data.length - 1);
2617             return data;
2618         },
2619
2620         headers:{},
2621
2622         hasHeaders:false,
2623
2624         useDefaultHeader:true,
2625
2626         defaultPostHeader:'application/x-www-form-urlencoded',
2627
2628         useDefaultXhrHeader:true,
2629
2630         defaultXhrHeader:'XMLHttpRequest',
2631
2632         hasDefaultHeaders:true,
2633
2634         defaultHeaders:{},
2635
2636         poll:{},
2637
2638         timeout:{},
2639
2640         pollInterval:50,
2641
2642         transactionId:0,
2643
2644         setProgId:function(id)
2645         {
2646             this.activeX.unshift(id);
2647         },
2648
2649         setDefaultPostHeader:function(b)
2650         {
2651             this.useDefaultHeader = b;
2652         },
2653
2654         setDefaultXhrHeader:function(b)
2655         {
2656             this.useDefaultXhrHeader = b;
2657         },
2658
2659         setPollingInterval:function(i)
2660         {
2661             if (typeof i == 'number' && isFinite(i)) {
2662                 this.pollInterval = i;
2663             }
2664         },
2665
2666         createXhrObject:function(transactionId)
2667         {
2668             var obj,http;
2669             try
2670             {
2671
2672                 http = new XMLHttpRequest();
2673
2674                 obj = { conn:http, tId:transactionId };
2675             }
2676             catch(e)
2677             {
2678                 for (var i = 0; i < this.activeX.length; ++i) {
2679                     try
2680                     {
2681
2682                         http = new ActiveXObject(this.activeX[i]);
2683
2684                         obj = { conn:http, tId:transactionId };
2685                         break;
2686                     }
2687                     catch(e) {
2688                     }
2689                 }
2690             }
2691             finally
2692             {
2693                 return obj;
2694             }
2695         },
2696
2697         getConnectionObject:function()
2698         {
2699             var o;
2700             var tId = this.transactionId;
2701
2702             try
2703             {
2704                 o = this.createXhrObject(tId);
2705                 if (o) {
2706                     this.transactionId++;
2707                 }
2708             }
2709             catch(e) {
2710             }
2711             finally
2712             {
2713                 return o;
2714             }
2715         },
2716
2717         asyncRequest:function(method, uri, callback, postData)
2718         {
2719             var o = this.getConnectionObject();
2720
2721             if (!o) {
2722                 return null;
2723             }
2724             else {
2725                 o.conn.open(method, uri, true);
2726
2727                 if (this.useDefaultXhrHeader) {
2728                     if (!this.defaultHeaders['X-Requested-With']) {
2729                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2730                     }
2731                 }
2732
2733                 if(postData && this.useDefaultHeader){
2734                     this.initHeader('Content-Type', this.defaultPostHeader);
2735                 }
2736
2737                  if (this.hasDefaultHeaders || this.hasHeaders) {
2738                     this.setHeader(o);
2739                 }
2740
2741                 this.handleReadyState(o, callback);
2742                 o.conn.send(postData || null);
2743
2744                 return o;
2745             }
2746         },
2747
2748         handleReadyState:function(o, callback)
2749         {
2750             var oConn = this;
2751
2752             if (callback && callback.timeout) {
2753                 
2754                 this.timeout[o.tId] = window.setTimeout(function() {
2755                     oConn.abort(o, callback, true);
2756                 }, callback.timeout);
2757             }
2758
2759             this.poll[o.tId] = window.setInterval(
2760                     function() {
2761                         if (o.conn && o.conn.readyState == 4) {
2762                             window.clearInterval(oConn.poll[o.tId]);
2763                             delete oConn.poll[o.tId];
2764
2765                             if(callback && callback.timeout) {
2766                                 window.clearTimeout(oConn.timeout[o.tId]);
2767                                 delete oConn.timeout[o.tId];
2768                             }
2769
2770                             oConn.handleTransactionResponse(o, callback);
2771                         }
2772                     }
2773                     , this.pollInterval);
2774         },
2775
2776         handleTransactionResponse:function(o, callback, isAbort)
2777         {
2778
2779             if (!callback) {
2780                 this.releaseObject(o);
2781                 return;
2782             }
2783
2784             var httpStatus, responseObject;
2785
2786             try
2787             {
2788                 if (o.conn.status !== undefined && o.conn.status != 0) {
2789                     httpStatus = o.conn.status;
2790                 }
2791                 else {
2792                     httpStatus = 13030;
2793                 }
2794             }
2795             catch(e) {
2796
2797
2798                 httpStatus = 13030;
2799             }
2800
2801             if (httpStatus >= 200 && httpStatus < 300) {
2802                 responseObject = this.createResponseObject(o, callback.argument);
2803                 if (callback.success) {
2804                     if (!callback.scope) {
2805                         callback.success(responseObject);
2806                     }
2807                     else {
2808
2809
2810                         callback.success.apply(callback.scope, [responseObject]);
2811                     }
2812                 }
2813             }
2814             else {
2815                 switch (httpStatus) {
2816
2817                     case 12002:
2818                     case 12029:
2819                     case 12030:
2820                     case 12031:
2821                     case 12152:
2822                     case 13030:
2823                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2824                         if (callback.failure) {
2825                             if (!callback.scope) {
2826                                 callback.failure(responseObject);
2827                             }
2828                             else {
2829                                 callback.failure.apply(callback.scope, [responseObject]);
2830                             }
2831                         }
2832                         break;
2833                     default:
2834                         responseObject = this.createResponseObject(o, callback.argument);
2835                         if (callback.failure) {
2836                             if (!callback.scope) {
2837                                 callback.failure(responseObject);
2838                             }
2839                             else {
2840                                 callback.failure.apply(callback.scope, [responseObject]);
2841                             }
2842                         }
2843                 }
2844             }
2845
2846             this.releaseObject(o);
2847             responseObject = null;
2848         },
2849
2850         createResponseObject:function(o, callbackArg)
2851         {
2852             var obj = {};
2853             var headerObj = {};
2854
2855             try
2856             {
2857                 var headerStr = o.conn.getAllResponseHeaders();
2858                 var header = headerStr.split('\n');
2859                 for (var i = 0; i < header.length; i++) {
2860                     var delimitPos = header[i].indexOf(':');
2861                     if (delimitPos != -1) {
2862                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2863                     }
2864                 }
2865             }
2866             catch(e) {
2867             }
2868
2869             obj.tId = o.tId;
2870             obj.status = o.conn.status;
2871             obj.statusText = o.conn.statusText;
2872             obj.getResponseHeader = headerObj;
2873             obj.getAllResponseHeaders = headerStr;
2874             obj.responseText = o.conn.responseText;
2875             obj.responseXML = o.conn.responseXML;
2876
2877             if (typeof callbackArg !== undefined) {
2878                 obj.argument = callbackArg;
2879             }
2880
2881             return obj;
2882         },
2883
2884         createExceptionObject:function(tId, callbackArg, isAbort)
2885         {
2886             var COMM_CODE = 0;
2887             var COMM_ERROR = 'communication failure';
2888             var ABORT_CODE = -1;
2889             var ABORT_ERROR = 'transaction aborted';
2890
2891             var obj = {};
2892
2893             obj.tId = tId;
2894             if (isAbort) {
2895                 obj.status = ABORT_CODE;
2896                 obj.statusText = ABORT_ERROR;
2897             }
2898             else {
2899                 obj.status = COMM_CODE;
2900                 obj.statusText = COMM_ERROR;
2901             }
2902
2903             if (callbackArg) {
2904                 obj.argument = callbackArg;
2905             }
2906
2907             return obj;
2908         },
2909
2910         initHeader:function(label, value, isDefault)
2911         {
2912             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2913
2914             if (headerObj[label] === undefined) {
2915                 headerObj[label] = value;
2916             }
2917             else {
2918
2919
2920                 headerObj[label] = value + "," + headerObj[label];
2921             }
2922
2923             if (isDefault) {
2924                 this.hasDefaultHeaders = true;
2925             }
2926             else {
2927                 this.hasHeaders = true;
2928             }
2929         },
2930
2931
2932         setHeader:function(o)
2933         {
2934             if (this.hasDefaultHeaders) {
2935                 for (var prop in this.defaultHeaders) {
2936                     if (this.defaultHeaders.hasOwnProperty(prop)) {
2937                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
2938                     }
2939                 }
2940             }
2941
2942             if (this.hasHeaders) {
2943                 for (var prop in this.headers) {
2944                     if (this.headers.hasOwnProperty(prop)) {
2945                         o.conn.setRequestHeader(prop, this.headers[prop]);
2946                     }
2947                 }
2948                 this.headers = {};
2949                 this.hasHeaders = false;
2950             }
2951         },
2952
2953         resetDefaultHeaders:function() {
2954             delete this.defaultHeaders;
2955             this.defaultHeaders = {};
2956             this.hasDefaultHeaders = false;
2957         },
2958
2959         abort:function(o, callback, isTimeout)
2960         {
2961             if(this.isCallInProgress(o)) {
2962                 o.conn.abort();
2963                 window.clearInterval(this.poll[o.tId]);
2964                 delete this.poll[o.tId];
2965                 if (isTimeout) {
2966                     delete this.timeout[o.tId];
2967                 }
2968
2969                 this.handleTransactionResponse(o, callback, true);
2970
2971                 return true;
2972             }
2973             else {
2974                 return false;
2975             }
2976         },
2977
2978
2979         isCallInProgress:function(o)
2980         {
2981             if (o && o.conn) {
2982                 return o.conn.readyState != 4 && o.conn.readyState != 0;
2983             }
2984             else {
2985
2986                 return false;
2987             }
2988         },
2989
2990
2991         releaseObject:function(o)
2992         {
2993
2994             o.conn = null;
2995
2996             o = null;
2997         },
2998
2999         activeX:[
3000         'MSXML2.XMLHTTP.3.0',
3001         'MSXML2.XMLHTTP',
3002         'Microsoft.XMLHTTP'
3003         ]
3004
3005
3006     };
3007 })();/*
3008  * Portions of this file are based on pieces of Yahoo User Interface Library
3009  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3010  * YUI licensed under the BSD License:
3011  * http://developer.yahoo.net/yui/license.txt
3012  * <script type="text/javascript">
3013  *
3014  */
3015
3016 Roo.lib.Region = function(t, r, b, l) {
3017     this.top = t;
3018     this[1] = t;
3019     this.right = r;
3020     this.bottom = b;
3021     this.left = l;
3022     this[0] = l;
3023 };
3024
3025
3026 Roo.lib.Region.prototype = {
3027     contains : function(region) {
3028         return ( region.left >= this.left &&
3029                  region.right <= this.right &&
3030                  region.top >= this.top &&
3031                  region.bottom <= this.bottom    );
3032
3033     },
3034
3035     getArea : function() {
3036         return ( (this.bottom - this.top) * (this.right - this.left) );
3037     },
3038
3039     intersect : function(region) {
3040         var t = Math.max(this.top, region.top);
3041         var r = Math.min(this.right, region.right);
3042         var b = Math.min(this.bottom, region.bottom);
3043         var l = Math.max(this.left, region.left);
3044
3045         if (b >= t && r >= l) {
3046             return new Roo.lib.Region(t, r, b, l);
3047         } else {
3048             return null;
3049         }
3050     },
3051     union : function(region) {
3052         var t = Math.min(this.top, region.top);
3053         var r = Math.max(this.right, region.right);
3054         var b = Math.max(this.bottom, region.bottom);
3055         var l = Math.min(this.left, region.left);
3056
3057         return new Roo.lib.Region(t, r, b, l);
3058     },
3059
3060     adjust : function(t, l, b, r) {
3061         this.top += t;
3062         this.left += l;
3063         this.right += r;
3064         this.bottom += b;
3065         return this;
3066     }
3067 };
3068
3069 Roo.lib.Region.getRegion = function(el) {
3070     var p = Roo.lib.Dom.getXY(el);
3071
3072     var t = p[1];
3073     var r = p[0] + el.offsetWidth;
3074     var b = p[1] + el.offsetHeight;
3075     var l = p[0];
3076
3077     return new Roo.lib.Region(t, r, b, l);
3078 };
3079 /*
3080  * Portions of this file are based on pieces of Yahoo User Interface Library
3081  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3082  * YUI licensed under the BSD License:
3083  * http://developer.yahoo.net/yui/license.txt
3084  * <script type="text/javascript">
3085  *
3086  */
3087 //@@dep Roo.lib.Region
3088
3089
3090 Roo.lib.Point = function(x, y) {
3091     if (x instanceof Array) {
3092         y = x[1];
3093         x = x[0];
3094     }
3095     this.x = this.right = this.left = this[0] = x;
3096     this.y = this.top = this.bottom = this[1] = y;
3097 };
3098
3099 Roo.lib.Point.prototype = new Roo.lib.Region();
3100 /*
3101  * Portions of this file are based on pieces of Yahoo User Interface Library
3102  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3103  * YUI licensed under the BSD License:
3104  * http://developer.yahoo.net/yui/license.txt
3105  * <script type="text/javascript">
3106  *
3107  */
3108  
3109 (function() {   
3110
3111     Roo.lib.Anim = {
3112         scroll : function(el, args, duration, easing, cb, scope) {
3113             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3114         },
3115
3116         motion : function(el, args, duration, easing, cb, scope) {
3117             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3118         },
3119
3120         color : function(el, args, duration, easing, cb, scope) {
3121             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3122         },
3123
3124         run : function(el, args, duration, easing, cb, scope, type) {
3125             type = type || Roo.lib.AnimBase;
3126             if (typeof easing == "string") {
3127                 easing = Roo.lib.Easing[easing];
3128             }
3129             var anim = new type(el, args, duration, easing);
3130             anim.animateX(function() {
3131                 Roo.callback(cb, scope);
3132             });
3133             return anim;
3134         }
3135     };
3136 })();/*
3137  * Portions of this file are based on pieces of Yahoo User Interface Library
3138  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3139  * YUI licensed under the BSD License:
3140  * http://developer.yahoo.net/yui/license.txt
3141  * <script type="text/javascript">
3142  *
3143  */
3144
3145 (function() {    
3146     var libFlyweight;
3147     
3148     function fly(el) {
3149         if (!libFlyweight) {
3150             libFlyweight = new Roo.Element.Flyweight();
3151         }
3152         libFlyweight.dom = el;
3153         return libFlyweight;
3154     }
3155
3156     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3157     
3158    
3159     
3160     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3161         if (el) {
3162             this.init(el, attributes, duration, method);
3163         }
3164     };
3165
3166     Roo.lib.AnimBase.fly = fly;
3167     
3168     
3169     
3170     Roo.lib.AnimBase.prototype = {
3171
3172         toString: function() {
3173             var el = this.getEl();
3174             var id = el.id || el.tagName;
3175             return ("Anim " + id);
3176         },
3177
3178         patterns: {
3179             noNegatives:        /width|height|opacity|padding/i,
3180             offsetAttribute:  /^((width|height)|(top|left))$/,
3181             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3182             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3183         },
3184
3185
3186         doMethod: function(attr, start, end) {
3187             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3188         },
3189
3190
3191         setAttribute: function(attr, val, unit) {
3192             if (this.patterns.noNegatives.test(attr)) {
3193                 val = (val > 0) ? val : 0;
3194             }
3195
3196             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3197         },
3198
3199
3200         getAttribute: function(attr) {
3201             var el = this.getEl();
3202             var val = fly(el).getStyle(attr);
3203
3204             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3205                 return parseFloat(val);
3206             }
3207
3208             var a = this.patterns.offsetAttribute.exec(attr) || [];
3209             var pos = !!( a[3] );
3210             var box = !!( a[2] );
3211
3212
3213             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3214                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3215             } else {
3216                 val = 0;
3217             }
3218
3219             return val;
3220         },
3221
3222
3223         getDefaultUnit: function(attr) {
3224             if (this.patterns.defaultUnit.test(attr)) {
3225                 return 'px';
3226             }
3227
3228             return '';
3229         },
3230
3231         animateX : function(callback, scope) {
3232             var f = function() {
3233                 this.onComplete.removeListener(f);
3234                 if (typeof callback == "function") {
3235                     callback.call(scope || this, this);
3236                 }
3237             };
3238             this.onComplete.addListener(f, this);
3239             this.animate();
3240         },
3241
3242
3243         setRuntimeAttribute: function(attr) {
3244             var start;
3245             var end;
3246             var attributes = this.attributes;
3247
3248             this.runtimeAttributes[attr] = {};
3249
3250             var isset = function(prop) {
3251                 return (typeof prop !== 'undefined');
3252             };
3253
3254             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3255                 return false;
3256             }
3257
3258             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3259
3260
3261             if (isset(attributes[attr]['to'])) {
3262                 end = attributes[attr]['to'];
3263             } else if (isset(attributes[attr]['by'])) {
3264                 if (start.constructor == Array) {
3265                     end = [];
3266                     for (var i = 0, len = start.length; i < len; ++i) {
3267                         end[i] = start[i] + attributes[attr]['by'][i];
3268                     }
3269                 } else {
3270                     end = start + attributes[attr]['by'];
3271                 }
3272             }
3273
3274             this.runtimeAttributes[attr].start = start;
3275             this.runtimeAttributes[attr].end = end;
3276
3277
3278             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3279         },
3280
3281
3282         init: function(el, attributes, duration, method) {
3283
3284             var isAnimated = false;
3285
3286
3287             var startTime = null;
3288
3289
3290             var actualFrames = 0;
3291
3292
3293             el = Roo.getDom(el);
3294
3295
3296             this.attributes = attributes || {};
3297
3298
3299             this.duration = duration || 1;
3300
3301
3302             this.method = method || Roo.lib.Easing.easeNone;
3303
3304
3305             this.useSeconds = true;
3306
3307
3308             this.currentFrame = 0;
3309
3310
3311             this.totalFrames = Roo.lib.AnimMgr.fps;
3312
3313
3314             this.getEl = function() {
3315                 return el;
3316             };
3317
3318
3319             this.isAnimated = function() {
3320                 return isAnimated;
3321             };
3322
3323
3324             this.getStartTime = function() {
3325                 return startTime;
3326             };
3327
3328             this.runtimeAttributes = {};
3329
3330
3331             this.animate = function() {
3332                 if (this.isAnimated()) {
3333                     return false;
3334                 }
3335
3336                 this.currentFrame = 0;
3337
3338                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3339
3340                 Roo.lib.AnimMgr.registerElement(this);
3341             };
3342
3343
3344             this.stop = function(finish) {
3345                 if (finish) {
3346                     this.currentFrame = this.totalFrames;
3347                     this._onTween.fire();
3348                 }
3349                 Roo.lib.AnimMgr.stop(this);
3350             };
3351
3352             var onStart = function() {
3353                 this.onStart.fire();
3354
3355                 this.runtimeAttributes = {};
3356                 for (var attr in this.attributes) {
3357                     this.setRuntimeAttribute(attr);
3358                 }
3359
3360                 isAnimated = true;
3361                 actualFrames = 0;
3362                 startTime = new Date();
3363             };
3364
3365
3366             var onTween = function() {
3367                 var data = {
3368                     duration: new Date() - this.getStartTime(),
3369                     currentFrame: this.currentFrame
3370                 };
3371
3372                 data.toString = function() {
3373                     return (
3374                             'duration: ' + data.duration +
3375                             ', currentFrame: ' + data.currentFrame
3376                             );
3377                 };
3378
3379                 this.onTween.fire(data);
3380
3381                 var runtimeAttributes = this.runtimeAttributes;
3382
3383                 for (var attr in runtimeAttributes) {
3384                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3385                 }
3386
3387                 actualFrames += 1;
3388             };
3389
3390             var onComplete = function() {
3391                 var actual_duration = (new Date() - startTime) / 1000 ;
3392
3393                 var data = {
3394                     duration: actual_duration,
3395                     frames: actualFrames,
3396                     fps: actualFrames / actual_duration
3397                 };
3398
3399                 data.toString = function() {
3400                     return (
3401                             'duration: ' + data.duration +
3402                             ', frames: ' + data.frames +
3403                             ', fps: ' + data.fps
3404                             );
3405                 };
3406
3407                 isAnimated = false;
3408                 actualFrames = 0;
3409                 this.onComplete.fire(data);
3410             };
3411
3412
3413             this._onStart = new Roo.util.Event(this);
3414             this.onStart = new Roo.util.Event(this);
3415             this.onTween = new Roo.util.Event(this);
3416             this._onTween = new Roo.util.Event(this);
3417             this.onComplete = new Roo.util.Event(this);
3418             this._onComplete = new Roo.util.Event(this);
3419             this._onStart.addListener(onStart);
3420             this._onTween.addListener(onTween);
3421             this._onComplete.addListener(onComplete);
3422         }
3423     };
3424 })();
3425 /*
3426  * Portions of this file are based on pieces of Yahoo User Interface Library
3427  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3428  * YUI licensed under the BSD License:
3429  * http://developer.yahoo.net/yui/license.txt
3430  * <script type="text/javascript">
3431  *
3432  */
3433
3434 Roo.lib.AnimMgr = new function() {
3435
3436     var thread = null;
3437
3438
3439     var queue = [];
3440
3441
3442     var tweenCount = 0;
3443
3444
3445     this.fps = 1000;
3446
3447
3448     this.delay = 1;
3449
3450
3451     this.registerElement = function(tween) {
3452         queue[queue.length] = tween;
3453         tweenCount += 1;
3454         tween._onStart.fire();
3455         this.start();
3456     };
3457
3458
3459     this.unRegister = function(tween, index) {
3460         tween._onComplete.fire();
3461         index = index || getIndex(tween);
3462         if (index != -1) {
3463             queue.splice(index, 1);
3464         }
3465
3466         tweenCount -= 1;
3467         if (tweenCount <= 0) {
3468             this.stop();
3469         }
3470     };
3471
3472
3473     this.start = function() {
3474         if (thread === null) {
3475             thread = setInterval(this.run, this.delay);
3476         }
3477     };
3478
3479
3480     this.stop = function(tween) {
3481         if (!tween) {
3482             clearInterval(thread);
3483
3484             for (var i = 0, len = queue.length; i < len; ++i) {
3485                 if (queue[0].isAnimated()) {
3486                     this.unRegister(queue[0], 0);
3487                 }
3488             }
3489
3490             queue = [];
3491             thread = null;
3492             tweenCount = 0;
3493         }
3494         else {
3495             this.unRegister(tween);
3496         }
3497     };
3498
3499
3500     this.run = function() {
3501         for (var i = 0, len = queue.length; i < len; ++i) {
3502             var tween = queue[i];
3503             if (!tween || !tween.isAnimated()) {
3504                 continue;
3505             }
3506
3507             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3508             {
3509                 tween.currentFrame += 1;
3510
3511                 if (tween.useSeconds) {
3512                     correctFrame(tween);
3513                 }
3514                 tween._onTween.fire();
3515             }
3516             else {
3517                 Roo.lib.AnimMgr.stop(tween, i);
3518             }
3519         }
3520     };
3521
3522     var getIndex = function(anim) {
3523         for (var i = 0, len = queue.length; i < len; ++i) {
3524             if (queue[i] == anim) {
3525                 return i;
3526             }
3527         }
3528         return -1;
3529     };
3530
3531
3532     var correctFrame = function(tween) {
3533         var frames = tween.totalFrames;
3534         var frame = tween.currentFrame;
3535         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3536         var elapsed = (new Date() - tween.getStartTime());
3537         var tweak = 0;
3538
3539         if (elapsed < tween.duration * 1000) {
3540             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3541         } else {
3542             tweak = frames - (frame + 1);
3543         }
3544         if (tweak > 0 && isFinite(tweak)) {
3545             if (tween.currentFrame + tweak >= frames) {
3546                 tweak = frames - (frame + 1);
3547             }
3548
3549             tween.currentFrame += tweak;
3550         }
3551     };
3552 };
3553
3554     /*
3555  * Portions of this file are based on pieces of Yahoo User Interface Library
3556  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3557  * YUI licensed under the BSD License:
3558  * http://developer.yahoo.net/yui/license.txt
3559  * <script type="text/javascript">
3560  *
3561  */
3562 Roo.lib.Bezier = new function() {
3563
3564         this.getPosition = function(points, t) {
3565             var n = points.length;
3566             var tmp = [];
3567
3568             for (var i = 0; i < n; ++i) {
3569                 tmp[i] = [points[i][0], points[i][1]];
3570             }
3571
3572             for (var j = 1; j < n; ++j) {
3573                 for (i = 0; i < n - j; ++i) {
3574                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3575                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3576                 }
3577             }
3578
3579             return [ tmp[0][0], tmp[0][1] ];
3580
3581         };
3582     };/*
3583  * Portions of this file are based on pieces of Yahoo User Interface Library
3584  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3585  * YUI licensed under the BSD License:
3586  * http://developer.yahoo.net/yui/license.txt
3587  * <script type="text/javascript">
3588  *
3589  */
3590 (function() {
3591
3592     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3593         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3594     };
3595
3596     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3597
3598     var fly = Roo.lib.AnimBase.fly;
3599     var Y = Roo.lib;
3600     var superclass = Y.ColorAnim.superclass;
3601     var proto = Y.ColorAnim.prototype;
3602
3603     proto.toString = function() {
3604         var el = this.getEl();
3605         var id = el.id || el.tagName;
3606         return ("ColorAnim " + id);
3607     };
3608
3609     proto.patterns.color = /color$/i;
3610     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3611     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3612     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3613     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3614
3615
3616     proto.parseColor = function(s) {
3617         if (s.length == 3) {
3618             return s;
3619         }
3620
3621         var c = this.patterns.hex.exec(s);
3622         if (c && c.length == 4) {
3623             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3624         }
3625
3626         c = this.patterns.rgb.exec(s);
3627         if (c && c.length == 4) {
3628             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3629         }
3630
3631         c = this.patterns.hex3.exec(s);
3632         if (c && c.length == 4) {
3633             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3634         }
3635
3636         return null;
3637     };
3638     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3639     proto.getAttribute = function(attr) {
3640         var el = this.getEl();
3641         if (this.patterns.color.test(attr)) {
3642             var val = fly(el).getStyle(attr);
3643
3644             if (this.patterns.transparent.test(val)) {
3645                 var parent = el.parentNode;
3646                 val = fly(parent).getStyle(attr);
3647
3648                 while (parent && this.patterns.transparent.test(val)) {
3649                     parent = parent.parentNode;
3650                     val = fly(parent).getStyle(attr);
3651                     if (parent.tagName.toUpperCase() == 'HTML') {
3652                         val = '#fff';
3653                     }
3654                 }
3655             }
3656         } else {
3657             val = superclass.getAttribute.call(this, attr);
3658         }
3659
3660         return val;
3661     };
3662     proto.getAttribute = function(attr) {
3663         var el = this.getEl();
3664         if (this.patterns.color.test(attr)) {
3665             var val = fly(el).getStyle(attr);
3666
3667             if (this.patterns.transparent.test(val)) {
3668                 var parent = el.parentNode;
3669                 val = fly(parent).getStyle(attr);
3670
3671                 while (parent && this.patterns.transparent.test(val)) {
3672                     parent = parent.parentNode;
3673                     val = fly(parent).getStyle(attr);
3674                     if (parent.tagName.toUpperCase() == 'HTML') {
3675                         val = '#fff';
3676                     }
3677                 }
3678             }
3679         } else {
3680             val = superclass.getAttribute.call(this, attr);
3681         }
3682
3683         return val;
3684     };
3685
3686     proto.doMethod = function(attr, start, end) {
3687         var val;
3688
3689         if (this.patterns.color.test(attr)) {
3690             val = [];
3691             for (var i = 0, len = start.length; i < len; ++i) {
3692                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3693             }
3694
3695             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3696         }
3697         else {
3698             val = superclass.doMethod.call(this, attr, start, end);
3699         }
3700
3701         return val;
3702     };
3703
3704     proto.setRuntimeAttribute = function(attr) {
3705         superclass.setRuntimeAttribute.call(this, attr);
3706
3707         if (this.patterns.color.test(attr)) {
3708             var attributes = this.attributes;
3709             var start = this.parseColor(this.runtimeAttributes[attr].start);
3710             var end = this.parseColor(this.runtimeAttributes[attr].end);
3711
3712             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3713                 end = this.parseColor(attributes[attr].by);
3714
3715                 for (var i = 0, len = start.length; i < len; ++i) {
3716                     end[i] = start[i] + end[i];
3717                 }
3718             }
3719
3720             this.runtimeAttributes[attr].start = start;
3721             this.runtimeAttributes[attr].end = end;
3722         }
3723     };
3724 })();
3725
3726 /*
3727  * Portions of this file are based on pieces of Yahoo User Interface Library
3728  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3729  * YUI licensed under the BSD License:
3730  * http://developer.yahoo.net/yui/license.txt
3731  * <script type="text/javascript">
3732  *
3733  */
3734 Roo.lib.Easing = {
3735
3736
3737     easeNone: function (t, b, c, d) {
3738         return c * t / d + b;
3739     },
3740
3741
3742     easeIn: function (t, b, c, d) {
3743         return c * (t /= d) * t + b;
3744     },
3745
3746
3747     easeOut: function (t, b, c, d) {
3748         return -c * (t /= d) * (t - 2) + b;
3749     },
3750
3751
3752     easeBoth: function (t, b, c, d) {
3753         if ((t /= d / 2) < 1) {
3754             return c / 2 * t * t + b;
3755         }
3756
3757         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3758     },
3759
3760
3761     easeInStrong: function (t, b, c, d) {
3762         return c * (t /= d) * t * t * t + b;
3763     },
3764
3765
3766     easeOutStrong: function (t, b, c, d) {
3767         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3768     },
3769
3770
3771     easeBothStrong: function (t, b, c, d) {
3772         if ((t /= d / 2) < 1) {
3773             return c / 2 * t * t * t * t + b;
3774         }
3775
3776         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3777     },
3778
3779
3780
3781     elasticIn: function (t, b, c, d, a, p) {
3782         if (t == 0) {
3783             return b;
3784         }
3785         if ((t /= d) == 1) {
3786             return b + c;
3787         }
3788         if (!p) {
3789             p = d * .3;
3790         }
3791
3792         if (!a || a < Math.abs(c)) {
3793             a = c;
3794             var s = p / 4;
3795         }
3796         else {
3797             var s = p / (2 * Math.PI) * Math.asin(c / a);
3798         }
3799
3800         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3801     },
3802
3803
3804     elasticOut: function (t, b, c, d, a, p) {
3805         if (t == 0) {
3806             return b;
3807         }
3808         if ((t /= d) == 1) {
3809             return b + c;
3810         }
3811         if (!p) {
3812             p = d * .3;
3813         }
3814
3815         if (!a || a < Math.abs(c)) {
3816             a = c;
3817             var s = p / 4;
3818         }
3819         else {
3820             var s = p / (2 * Math.PI) * Math.asin(c / a);
3821         }
3822
3823         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3824     },
3825
3826
3827     elasticBoth: function (t, b, c, d, a, p) {
3828         if (t == 0) {
3829             return b;
3830         }
3831
3832         if ((t /= d / 2) == 2) {
3833             return b + c;
3834         }
3835
3836         if (!p) {
3837             p = d * (.3 * 1.5);
3838         }
3839
3840         if (!a || a < Math.abs(c)) {
3841             a = c;
3842             var s = p / 4;
3843         }
3844         else {
3845             var s = p / (2 * Math.PI) * Math.asin(c / a);
3846         }
3847
3848         if (t < 1) {
3849             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3850                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3851         }
3852         return a * Math.pow(2, -10 * (t -= 1)) *
3853                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3854     },
3855
3856
3857
3858     backIn: function (t, b, c, d, s) {
3859         if (typeof s == 'undefined') {
3860             s = 1.70158;
3861         }
3862         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3863     },
3864
3865
3866     backOut: function (t, b, c, d, s) {
3867         if (typeof s == 'undefined') {
3868             s = 1.70158;
3869         }
3870         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3871     },
3872
3873
3874     backBoth: function (t, b, c, d, s) {
3875         if (typeof s == 'undefined') {
3876             s = 1.70158;
3877         }
3878
3879         if ((t /= d / 2 ) < 1) {
3880             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3881         }
3882         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3883     },
3884
3885
3886     bounceIn: function (t, b, c, d) {
3887         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3888     },
3889
3890
3891     bounceOut: function (t, b, c, d) {
3892         if ((t /= d) < (1 / 2.75)) {
3893             return c * (7.5625 * t * t) + b;
3894         } else if (t < (2 / 2.75)) {
3895             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3896         } else if (t < (2.5 / 2.75)) {
3897             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3898         }
3899         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3900     },
3901
3902
3903     bounceBoth: function (t, b, c, d) {
3904         if (t < d / 2) {
3905             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3906         }
3907         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3908     }
3909 };/*
3910  * Portions of this file are based on pieces of Yahoo User Interface Library
3911  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3912  * YUI licensed under the BSD License:
3913  * http://developer.yahoo.net/yui/license.txt
3914  * <script type="text/javascript">
3915  *
3916  */
3917     (function() {
3918         Roo.lib.Motion = function(el, attributes, duration, method) {
3919             if (el) {
3920                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3921             }
3922         };
3923
3924         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3925
3926
3927         var Y = Roo.lib;
3928         var superclass = Y.Motion.superclass;
3929         var proto = Y.Motion.prototype;
3930
3931         proto.toString = function() {
3932             var el = this.getEl();
3933             var id = el.id || el.tagName;
3934             return ("Motion " + id);
3935         };
3936
3937         proto.patterns.points = /^points$/i;
3938
3939         proto.setAttribute = function(attr, val, unit) {
3940             if (this.patterns.points.test(attr)) {
3941                 unit = unit || 'px';
3942                 superclass.setAttribute.call(this, 'left', val[0], unit);
3943                 superclass.setAttribute.call(this, 'top', val[1], unit);
3944             } else {
3945                 superclass.setAttribute.call(this, attr, val, unit);
3946             }
3947         };
3948
3949         proto.getAttribute = function(attr) {
3950             if (this.patterns.points.test(attr)) {
3951                 var val = [
3952                         superclass.getAttribute.call(this, 'left'),
3953                         superclass.getAttribute.call(this, 'top')
3954                         ];
3955             } else {
3956                 val = superclass.getAttribute.call(this, attr);
3957             }
3958
3959             return val;
3960         };
3961
3962         proto.doMethod = function(attr, start, end) {
3963             var val = null;
3964
3965             if (this.patterns.points.test(attr)) {
3966                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
3967                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
3968             } else {
3969                 val = superclass.doMethod.call(this, attr, start, end);
3970             }
3971             return val;
3972         };
3973
3974         proto.setRuntimeAttribute = function(attr) {
3975             if (this.patterns.points.test(attr)) {
3976                 var el = this.getEl();
3977                 var attributes = this.attributes;
3978                 var start;
3979                 var control = attributes['points']['control'] || [];
3980                 var end;
3981                 var i, len;
3982
3983                 if (control.length > 0 && !(control[0] instanceof Array)) {
3984                     control = [control];
3985                 } else {
3986                     var tmp = [];
3987                     for (i = 0,len = control.length; i < len; ++i) {
3988                         tmp[i] = control[i];
3989                     }
3990                     control = tmp;
3991                 }
3992
3993                 Roo.fly(el).position();
3994
3995                 if (isset(attributes['points']['from'])) {
3996                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
3997                 }
3998                 else {
3999                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4000                 }
4001
4002                 start = this.getAttribute('points');
4003
4004
4005                 if (isset(attributes['points']['to'])) {
4006                     end = translateValues.call(this, attributes['points']['to'], start);
4007
4008                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4009                     for (i = 0,len = control.length; i < len; ++i) {
4010                         control[i] = translateValues.call(this, control[i], start);
4011                     }
4012
4013
4014                 } else if (isset(attributes['points']['by'])) {
4015                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4016
4017                     for (i = 0,len = control.length; i < len; ++i) {
4018                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4019                     }
4020                 }
4021
4022                 this.runtimeAttributes[attr] = [start];
4023
4024                 if (control.length > 0) {
4025                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4026                 }
4027
4028                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4029             }
4030             else {
4031                 superclass.setRuntimeAttribute.call(this, attr);
4032             }
4033         };
4034
4035         var translateValues = function(val, start) {
4036             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4037             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4038
4039             return val;
4040         };
4041
4042         var isset = function(prop) {
4043             return (typeof prop !== 'undefined');
4044         };
4045     })();
4046 /*
4047  * Portions of this file are based on pieces of Yahoo User Interface Library
4048  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4049  * YUI licensed under the BSD License:
4050  * http://developer.yahoo.net/yui/license.txt
4051  * <script type="text/javascript">
4052  *
4053  */
4054     (function() {
4055         Roo.lib.Scroll = function(el, attributes, duration, method) {
4056             if (el) {
4057                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4058             }
4059         };
4060
4061         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4062
4063
4064         var Y = Roo.lib;
4065         var superclass = Y.Scroll.superclass;
4066         var proto = Y.Scroll.prototype;
4067
4068         proto.toString = function() {
4069             var el = this.getEl();
4070             var id = el.id || el.tagName;
4071             return ("Scroll " + id);
4072         };
4073
4074         proto.doMethod = function(attr, start, end) {
4075             var val = null;
4076
4077             if (attr == 'scroll') {
4078                 val = [
4079                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4080                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4081                         ];
4082
4083             } else {
4084                 val = superclass.doMethod.call(this, attr, start, end);
4085             }
4086             return val;
4087         };
4088
4089         proto.getAttribute = function(attr) {
4090             var val = null;
4091             var el = this.getEl();
4092
4093             if (attr == 'scroll') {
4094                 val = [ el.scrollLeft, el.scrollTop ];
4095             } else {
4096                 val = superclass.getAttribute.call(this, attr);
4097             }
4098
4099             return val;
4100         };
4101
4102         proto.setAttribute = function(attr, val, unit) {
4103             var el = this.getEl();
4104
4105             if (attr == 'scroll') {
4106                 el.scrollLeft = val[0];
4107                 el.scrollTop = val[1];
4108             } else {
4109                 superclass.setAttribute.call(this, attr, val, unit);
4110             }
4111         };
4112     })();
4113 /*
4114  * Based on:
4115  * Ext JS Library 1.1.1
4116  * Copyright(c) 2006-2007, Ext JS, LLC.
4117  *
4118  * Originally Released Under LGPL - original licence link has changed is not relivant.
4119  *
4120  * Fork - LGPL
4121  * <script type="text/javascript">
4122  */
4123
4124
4125 // nasty IE9 hack - what a pile of crap that is..
4126
4127  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4128     Range.prototype.createContextualFragment = function (html) {
4129         var doc = window.document;
4130         var container = doc.createElement("div");
4131         container.innerHTML = html;
4132         var frag = doc.createDocumentFragment(), n;
4133         while ((n = container.firstChild)) {
4134             frag.appendChild(n);
4135         }
4136         return frag;
4137     };
4138 }
4139
4140 /**
4141  * @class Roo.DomHelper
4142  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4143  * For more information see <a href="http://web.archive.org/web/20071221063734/http://www.jackslocum.com/blog/2006/10/06/domhelper-create-elements-using-dom-html-fragments-or-templates/">this blog post with examples</a>.
4144  * @singleton
4145  */
4146 Roo.DomHelper = function(){
4147     var tempTableEl = null;
4148     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4149     var tableRe = /^table|tbody|tr|td$/i;
4150     var xmlns = {};
4151     // build as innerHTML where available
4152     /** @ignore */
4153     var createHtml = function(o){
4154         if(typeof o == 'string'){
4155             return o;
4156         }
4157         var b = "";
4158         if(!o.tag){
4159             o.tag = "div";
4160         }
4161         b += "<" + o.tag;
4162         for(var attr in o){
4163             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4164             if(attr == "style"){
4165                 var s = o["style"];
4166                 if(typeof s == "function"){
4167                     s = s.call();
4168                 }
4169                 if(typeof s == "string"){
4170                     b += ' style="' + s + '"';
4171                 }else if(typeof s == "object"){
4172                     b += ' style="';
4173                     for(var key in s){
4174                         if(typeof s[key] != "function"){
4175                             b += key + ":" + s[key] + ";";
4176                         }
4177                     }
4178                     b += '"';
4179                 }
4180             }else{
4181                 if(attr == "cls"){
4182                     b += ' class="' + o["cls"] + '"';
4183                 }else if(attr == "htmlFor"){
4184                     b += ' for="' + o["htmlFor"] + '"';
4185                 }else{
4186                     b += " " + attr + '="' + o[attr] + '"';
4187                 }
4188             }
4189         }
4190         if(emptyTags.test(o.tag)){
4191             b += "/>";
4192         }else{
4193             b += ">";
4194             var cn = o.children || o.cn;
4195             if(cn){
4196                 //http://bugs.kde.org/show_bug.cgi?id=71506
4197                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4198                     for(var i = 0, len = cn.length; i < len; i++) {
4199                         b += createHtml(cn[i], b);
4200                     }
4201                 }else{
4202                     b += createHtml(cn, b);
4203                 }
4204             }
4205             if(o.html){
4206                 b += o.html;
4207             }
4208             b += "</" + o.tag + ">";
4209         }
4210         return b;
4211     };
4212
4213     // build as dom
4214     /** @ignore */
4215     var createDom = function(o, parentNode){
4216          
4217         // defininition craeted..
4218         var ns = false;
4219         if (o.ns && o.ns != 'html') {
4220                
4221             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4222                 xmlns[o.ns] = o.xmlns;
4223                 ns = o.xmlns;
4224             }
4225             if (typeof(xmlns[o.ns]) == 'undefined') {
4226                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4227             }
4228             ns = xmlns[o.ns];
4229         }
4230         
4231         
4232         if (typeof(o) == 'string') {
4233             return parentNode.appendChild(document.createTextNode(o));
4234         }
4235         o.tag = o.tag || div;
4236         if (o.ns && Roo.isIE) {
4237             ns = false;
4238             o.tag = o.ns + ':' + o.tag;
4239             
4240         }
4241         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4242         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4243         for(var attr in o){
4244             
4245             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4246                     attr == "style" || typeof o[attr] == "function") { continue; }
4247                     
4248             if(attr=="cls" && Roo.isIE){
4249                 el.className = o["cls"];
4250             }else{
4251                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4252                 else { 
4253                     el[attr] = o[attr];
4254                 }
4255             }
4256         }
4257         Roo.DomHelper.applyStyles(el, o.style);
4258         var cn = o.children || o.cn;
4259         if(cn){
4260             //http://bugs.kde.org/show_bug.cgi?id=71506
4261              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4262                 for(var i = 0, len = cn.length; i < len; i++) {
4263                     createDom(cn[i], el);
4264                 }
4265             }else{
4266                 createDom(cn, el);
4267             }
4268         }
4269         if(o.html){
4270             el.innerHTML = o.html;
4271         }
4272         if(parentNode){
4273            parentNode.appendChild(el);
4274         }
4275         return el;
4276     };
4277
4278     var ieTable = function(depth, s, h, e){
4279         tempTableEl.innerHTML = [s, h, e].join('');
4280         var i = -1, el = tempTableEl;
4281         while(++i < depth){
4282             el = el.firstChild;
4283         }
4284         return el;
4285     };
4286
4287     // kill repeat to save bytes
4288     var ts = '<table>',
4289         te = '</table>',
4290         tbs = ts+'<tbody>',
4291         tbe = '</tbody>'+te,
4292         trs = tbs + '<tr>',
4293         tre = '</tr>'+tbe;
4294
4295     /**
4296      * @ignore
4297      * Nasty code for IE's broken table implementation
4298      */
4299     var insertIntoTable = function(tag, where, el, html){
4300         if(!tempTableEl){
4301             tempTableEl = document.createElement('div');
4302         }
4303         var node;
4304         var before = null;
4305         if(tag == 'td'){
4306             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4307                 return;
4308             }
4309             if(where == 'beforebegin'){
4310                 before = el;
4311                 el = el.parentNode;
4312             } else{
4313                 before = el.nextSibling;
4314                 el = el.parentNode;
4315             }
4316             node = ieTable(4, trs, html, tre);
4317         }
4318         else if(tag == 'tr'){
4319             if(where == 'beforebegin'){
4320                 before = el;
4321                 el = el.parentNode;
4322                 node = ieTable(3, tbs, html, tbe);
4323             } else if(where == 'afterend'){
4324                 before = el.nextSibling;
4325                 el = el.parentNode;
4326                 node = ieTable(3, tbs, html, tbe);
4327             } else{ // INTO a TR
4328                 if(where == 'afterbegin'){
4329                     before = el.firstChild;
4330                 }
4331                 node = ieTable(4, trs, html, tre);
4332             }
4333         } else if(tag == 'tbody'){
4334             if(where == 'beforebegin'){
4335                 before = el;
4336                 el = el.parentNode;
4337                 node = ieTable(2, ts, html, te);
4338             } else if(where == 'afterend'){
4339                 before = el.nextSibling;
4340                 el = el.parentNode;
4341                 node = ieTable(2, ts, html, te);
4342             } else{
4343                 if(where == 'afterbegin'){
4344                     before = el.firstChild;
4345                 }
4346                 node = ieTable(3, tbs, html, tbe);
4347             }
4348         } else{ // TABLE
4349             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4350                 return;
4351             }
4352             if(where == 'afterbegin'){
4353                 before = el.firstChild;
4354             }
4355             node = ieTable(2, ts, html, te);
4356         }
4357         el.insertBefore(node, before);
4358         return node;
4359     };
4360
4361     return {
4362     /** True to force the use of DOM instead of html fragments @type Boolean */
4363     useDom : false,
4364
4365     /**
4366      * Returns the markup for the passed Element(s) config
4367      * @param {Object} o The Dom object spec (and children)
4368      * @return {String}
4369      */
4370     markup : function(o){
4371         return createHtml(o);
4372     },
4373
4374     /**
4375      * Applies a style specification to an element
4376      * @param {String/HTMLElement} el The element to apply styles to
4377      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4378      * a function which returns such a specification.
4379      */
4380     applyStyles : function(el, styles){
4381         if(styles){
4382            el = Roo.fly(el);
4383            if(typeof styles == "string"){
4384                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4385                var matches;
4386                while ((matches = re.exec(styles)) != null){
4387                    el.setStyle(matches[1], matches[2]);
4388                }
4389            }else if (typeof styles == "object"){
4390                for (var style in styles){
4391                   el.setStyle(style, styles[style]);
4392                }
4393            }else if (typeof styles == "function"){
4394                 Roo.DomHelper.applyStyles(el, styles.call());
4395            }
4396         }
4397     },
4398
4399     /**
4400      * Inserts an HTML fragment into the Dom
4401      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4402      * @param {HTMLElement} el The context element
4403      * @param {String} html The HTML fragmenet
4404      * @return {HTMLElement} The new node
4405      */
4406     insertHtml : function(where, el, html){
4407         where = where.toLowerCase();
4408         if(el.insertAdjacentHTML){
4409             if(tableRe.test(el.tagName)){
4410                 var rs;
4411                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4412                     return rs;
4413                 }
4414             }
4415             switch(where){
4416                 case "beforebegin":
4417                     el.insertAdjacentHTML('BeforeBegin', html);
4418                     return el.previousSibling;
4419                 case "afterbegin":
4420                     el.insertAdjacentHTML('AfterBegin', html);
4421                     return el.firstChild;
4422                 case "beforeend":
4423                     el.insertAdjacentHTML('BeforeEnd', html);
4424                     return el.lastChild;
4425                 case "afterend":
4426                     el.insertAdjacentHTML('AfterEnd', html);
4427                     return el.nextSibling;
4428             }
4429             throw 'Illegal insertion point -> "' + where + '"';
4430         }
4431         var range = el.ownerDocument.createRange();
4432         var frag;
4433         switch(where){
4434              case "beforebegin":
4435                 range.setStartBefore(el);
4436                 frag = range.createContextualFragment(html);
4437                 el.parentNode.insertBefore(frag, el);
4438                 return el.previousSibling;
4439              case "afterbegin":
4440                 if(el.firstChild){
4441                     range.setStartBefore(el.firstChild);
4442                     frag = range.createContextualFragment(html);
4443                     el.insertBefore(frag, el.firstChild);
4444                     return el.firstChild;
4445                 }else{
4446                     el.innerHTML = html;
4447                     return el.firstChild;
4448                 }
4449             case "beforeend":
4450                 if(el.lastChild){
4451                     range.setStartAfter(el.lastChild);
4452                     frag = range.createContextualFragment(html);
4453                     el.appendChild(frag);
4454                     return el.lastChild;
4455                 }else{
4456                     el.innerHTML = html;
4457                     return el.lastChild;
4458                 }
4459             case "afterend":
4460                 range.setStartAfter(el);
4461                 frag = range.createContextualFragment(html);
4462                 el.parentNode.insertBefore(frag, el.nextSibling);
4463                 return el.nextSibling;
4464             }
4465             throw 'Illegal insertion point -> "' + where + '"';
4466     },
4467
4468     /**
4469      * Creates new Dom element(s) and inserts them before el
4470      * @param {String/HTMLElement/Element} el The context element
4471      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4472      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4473      * @return {HTMLElement/Roo.Element} The new node
4474      */
4475     insertBefore : function(el, o, returnElement){
4476         return this.doInsert(el, o, returnElement, "beforeBegin");
4477     },
4478
4479     /**
4480      * Creates new Dom element(s) and inserts them after el
4481      * @param {String/HTMLElement/Element} el The context element
4482      * @param {Object} o The Dom object spec (and children)
4483      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4484      * @return {HTMLElement/Roo.Element} The new node
4485      */
4486     insertAfter : function(el, o, returnElement){
4487         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4488     },
4489
4490     /**
4491      * Creates new Dom element(s) and inserts them as the first child of el
4492      * @param {String/HTMLElement/Element} el The context element
4493      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4494      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4495      * @return {HTMLElement/Roo.Element} The new node
4496      */
4497     insertFirst : function(el, o, returnElement){
4498         return this.doInsert(el, o, returnElement, "afterBegin");
4499     },
4500
4501     // private
4502     doInsert : function(el, o, returnElement, pos, sibling){
4503         el = Roo.getDom(el);
4504         var newNode;
4505         if(this.useDom || o.ns){
4506             newNode = createDom(o, null);
4507             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4508         }else{
4509             var html = createHtml(o);
4510             newNode = this.insertHtml(pos, el, html);
4511         }
4512         return returnElement ? Roo.get(newNode, true) : newNode;
4513     },
4514
4515     /**
4516      * Creates new Dom element(s) and appends them to el
4517      * @param {String/HTMLElement/Element} el The context element
4518      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4519      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4520      * @return {HTMLElement/Roo.Element} The new node
4521      */
4522     append : function(el, o, returnElement){
4523         el = Roo.getDom(el);
4524         var newNode;
4525         if(this.useDom || o.ns){
4526             newNode = createDom(o, null);
4527             el.appendChild(newNode);
4528         }else{
4529             var html = createHtml(o);
4530             newNode = this.insertHtml("beforeEnd", el, html);
4531         }
4532         return returnElement ? Roo.get(newNode, true) : newNode;
4533     },
4534
4535     /**
4536      * Creates new Dom element(s) and overwrites the contents of el with them
4537      * @param {String/HTMLElement/Element} el The context element
4538      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4539      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4540      * @return {HTMLElement/Roo.Element} The new node
4541      */
4542     overwrite : function(el, o, returnElement){
4543         el = Roo.getDom(el);
4544         if (o.ns) {
4545           
4546             while (el.childNodes.length) {
4547                 el.removeChild(el.firstChild);
4548             }
4549             createDom(o, el);
4550         } else {
4551             el.innerHTML = createHtml(o);   
4552         }
4553         
4554         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4555     },
4556
4557     /**
4558      * Creates a new Roo.DomHelper.Template from the Dom object spec
4559      * @param {Object} o The Dom object spec (and children)
4560      * @return {Roo.DomHelper.Template} The new template
4561      */
4562     createTemplate : function(o){
4563         var html = createHtml(o);
4564         return new Roo.Template(html);
4565     }
4566     };
4567 }();
4568 /*
4569  * Based on:
4570  * Ext JS Library 1.1.1
4571  * Copyright(c) 2006-2007, Ext JS, LLC.
4572  *
4573  * Originally Released Under LGPL - original licence link has changed is not relivant.
4574  *
4575  * Fork - LGPL
4576  * <script type="text/javascript">
4577  */
4578  
4579 /**
4580 * @class Roo.Template
4581 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4582 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4583 * Usage:
4584 <pre><code>
4585 var t = new Roo.Template({
4586     html :  '&lt;div name="{id}"&gt;' + 
4587         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4588         '&lt;/div&gt;',
4589     myformat: function (value, allValues) {
4590         return 'XX' + value;
4591     }
4592 });
4593 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4594 </code></pre>
4595 * For more information see this blog post with examples:
4596 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4597      - Create Elements using DOM, HTML fragments and Templates</a>. 
4598 * @constructor
4599 * @param {Object} cfg - Configuration object.
4600 */
4601 Roo.Template = function(cfg){
4602     // BC!
4603     if(cfg instanceof Array){
4604         cfg = cfg.join("");
4605     }else if(arguments.length > 1){
4606         cfg = Array.prototype.join.call(arguments, "");
4607     }
4608     
4609     
4610     if (typeof(cfg) == 'object') {
4611         Roo.apply(this,cfg)
4612     } else {
4613         // bc
4614         this.html = cfg;
4615     }
4616     if (this.url) {
4617         this.load();
4618     }
4619     
4620 };
4621 Roo.Template.prototype = {
4622     
4623     /**
4624      * @cfg {String} url  The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..
4625      *                    it should be fixed so that template is observable...
4626      */
4627     url : false,
4628     /**
4629      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4630      */
4631     html : '',
4632     /**
4633      * Returns an HTML fragment of this template with the specified values applied.
4634      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4635      * @return {String} The HTML fragment
4636      */
4637     applyTemplate : function(values){
4638         try {
4639            
4640             if(this.compiled){
4641                 return this.compiled(values);
4642             }
4643             var useF = this.disableFormats !== true;
4644             var fm = Roo.util.Format, tpl = this;
4645             var fn = function(m, name, format, args){
4646                 if(format && useF){
4647                     if(format.substr(0, 5) == "this."){
4648                         return tpl.call(format.substr(5), values[name], values);
4649                     }else{
4650                         if(args){
4651                             // quoted values are required for strings in compiled templates, 
4652                             // but for non compiled we need to strip them
4653                             // quoted reversed for jsmin
4654                             var re = /^\s*['"](.*)["']\s*$/;
4655                             args = args.split(',');
4656                             for(var i = 0, len = args.length; i < len; i++){
4657                                 args[i] = args[i].replace(re, "$1");
4658                             }
4659                             args = [values[name]].concat(args);
4660                         }else{
4661                             args = [values[name]];
4662                         }
4663                         return fm[format].apply(fm, args);
4664                     }
4665                 }else{
4666                     return values[name] !== undefined ? values[name] : "";
4667                 }
4668             };
4669             return this.html.replace(this.re, fn);
4670         } catch (e) {
4671             Roo.log(e);
4672             throw e;
4673         }
4674          
4675     },
4676     
4677     loading : false,
4678       
4679     load : function ()
4680     {
4681          
4682         if (this.loading) {
4683             return;
4684         }
4685         var _t = this;
4686         
4687         this.loading = true;
4688         this.compiled = false;
4689         
4690         var cx = new Roo.data.Connection();
4691         cx.request({
4692             url : this.url,
4693             method : 'GET',
4694             success : function (response) {
4695                 _t.loading = false;
4696                 _t.html = response.responseText;
4697                 _t.url = false;
4698                 _t.compile();
4699              },
4700             failure : function(response) {
4701                 Roo.log("Template failed to load from " + _t.url);
4702                 _t.loading = false;
4703             }
4704         });
4705     },
4706
4707     /**
4708      * Sets the HTML used as the template and optionally compiles it.
4709      * @param {String} html
4710      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4711      * @return {Roo.Template} this
4712      */
4713     set : function(html, compile){
4714         this.html = html;
4715         this.compiled = null;
4716         if(compile){
4717             this.compile();
4718         }
4719         return this;
4720     },
4721     
4722     /**
4723      * True to disable format functions (defaults to false)
4724      * @type Boolean
4725      */
4726     disableFormats : false,
4727     
4728     /**
4729     * The regular expression used to match template variables 
4730     * @type RegExp
4731     * @property 
4732     */
4733     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4734     
4735     /**
4736      * Compiles the template into an internal function, eliminating the RegEx overhead.
4737      * @return {Roo.Template} this
4738      */
4739     compile : function(){
4740         var fm = Roo.util.Format;
4741         var useF = this.disableFormats !== true;
4742         var sep = Roo.isGecko ? "+" : ",";
4743         var fn = function(m, name, format, args){
4744             if(format && useF){
4745                 args = args ? ',' + args : "";
4746                 if(format.substr(0, 5) != "this."){
4747                     format = "fm." + format + '(';
4748                 }else{
4749                     format = 'this.call("'+ format.substr(5) + '", ';
4750                     args = ", values";
4751                 }
4752             }else{
4753                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4754             }
4755             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4756         };
4757         var body;
4758         // branched to use + in gecko and [].join() in others
4759         if(Roo.isGecko){
4760             body = "this.compiled = function(values){ return '" +
4761                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4762                     "';};";
4763         }else{
4764             body = ["this.compiled = function(values){ return ['"];
4765             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4766             body.push("'].join('');};");
4767             body = body.join('');
4768         }
4769         /**
4770          * eval:var:values
4771          * eval:var:fm
4772          */
4773         eval(body);
4774         return this;
4775     },
4776     
4777     // private function used to call members
4778     call : function(fnName, value, allValues){
4779         return this[fnName](value, allValues);
4780     },
4781     
4782     /**
4783      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4784      * @param {String/HTMLElement/Roo.Element} el The context element
4785      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4786      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4787      * @return {HTMLElement/Roo.Element} The new node or Element
4788      */
4789     insertFirst: function(el, values, returnElement){
4790         return this.doInsert('afterBegin', el, values, returnElement);
4791     },
4792
4793     /**
4794      * Applies the supplied values to the template and inserts the new node(s) before el.
4795      * @param {String/HTMLElement/Roo.Element} el The context element
4796      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4797      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4798      * @return {HTMLElement/Roo.Element} The new node or Element
4799      */
4800     insertBefore: function(el, values, returnElement){
4801         return this.doInsert('beforeBegin', el, values, returnElement);
4802     },
4803
4804     /**
4805      * Applies the supplied values to the template and inserts the new node(s) after el.
4806      * @param {String/HTMLElement/Roo.Element} el The context element
4807      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4808      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4809      * @return {HTMLElement/Roo.Element} The new node or Element
4810      */
4811     insertAfter : function(el, values, returnElement){
4812         return this.doInsert('afterEnd', el, values, returnElement);
4813     },
4814     
4815     /**
4816      * Applies the supplied values to the template and appends the new node(s) to el.
4817      * @param {String/HTMLElement/Roo.Element} el The context element
4818      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4819      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4820      * @return {HTMLElement/Roo.Element} The new node or Element
4821      */
4822     append : function(el, values, returnElement){
4823         return this.doInsert('beforeEnd', el, values, returnElement);
4824     },
4825
4826     doInsert : function(where, el, values, returnEl){
4827         el = Roo.getDom(el);
4828         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4829         return returnEl ? Roo.get(newNode, true) : newNode;
4830     },
4831
4832     /**
4833      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4834      * @param {String/HTMLElement/Roo.Element} el The context element
4835      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
4836      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4837      * @return {HTMLElement/Roo.Element} The new node or Element
4838      */
4839     overwrite : function(el, values, returnElement){
4840         el = Roo.getDom(el);
4841         el.innerHTML = this.applyTemplate(values);
4842         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4843     }
4844 };
4845 /**
4846  * Alias for {@link #applyTemplate}
4847  * @method
4848  */
4849 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4850
4851 // backwards compat
4852 Roo.DomHelper.Template = Roo.Template;
4853
4854 /**
4855  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4856  * @param {String/HTMLElement} el A DOM element or its id
4857  * @returns {Roo.Template} The created template
4858  * @static
4859  */
4860 Roo.Template.from = function(el){
4861     el = Roo.getDom(el);
4862     return new Roo.Template(el.value || el.innerHTML);
4863 };/*
4864  * Based on:
4865  * Ext JS Library 1.1.1
4866  * Copyright(c) 2006-2007, Ext JS, LLC.
4867  *
4868  * Originally Released Under LGPL - original licence link has changed is not relivant.
4869  *
4870  * Fork - LGPL
4871  * <script type="text/javascript">
4872  */
4873  
4874
4875 /*
4876  * This is code is also distributed under MIT license for use
4877  * with jQuery and prototype JavaScript libraries.
4878  */
4879 /**
4880  * @class Roo.DomQuery
4881 Provides high performance selector/xpath processing by compiling queries into reusable functions. New pseudo classes and matchers can be plugged. It works on HTML and XML documents (if a content node is passed in).
4882 <p>
4883 DomQuery supports most of the <a href="http://www.w3.org/TR/2005/WD-css3-selectors-20051215/">CSS3 selectors spec</a>, along with some custom selectors and basic XPath.</p>
4884
4885 <p>
4886 All selectors, attribute filters and pseudos below can be combined infinitely in any order. For example "div.foo:nth-child(odd)[@foo=bar].bar:first" would be a perfectly valid selector. Node filters are processed in the order in which they appear, which allows you to optimize your queries for your document structure.
4887 </p>
4888 <h4>Element Selectors:</h4>
4889 <ul class="list">
4890     <li> <b>*</b> any element</li>
4891     <li> <b>E</b> an element with the tag E</li>
4892     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4893     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4894     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4895     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4896 </ul>
4897 <h4>Attribute Selectors:</h4>
4898 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4899 <ul class="list">
4900     <li> <b>E[foo]</b> has an attribute "foo"</li>
4901     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4902     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4903     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4904     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4905     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4906     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4907 </ul>
4908 <h4>Pseudo Classes:</h4>
4909 <ul class="list">
4910     <li> <b>E:first-child</b> E is the first child of its parent</li>
4911     <li> <b>E:last-child</b> E is the last child of its parent</li>
4912     <li> <b>E:nth-child(<i>n</i>)</b> E is the <i>n</i>th child of its parent (1 based as per the spec)</li>
4913     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
4914     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
4915     <li> <b>E:only-child</b> E is the only child of its parent</li>
4916     <li> <b>E:checked</b> E is an element that is has a checked attribute that is true (e.g. a radio or checkbox) </li>
4917     <li> <b>E:first</b> the first E in the resultset</li>
4918     <li> <b>E:last</b> the last E in the resultset</li>
4919     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
4920     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
4921     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
4922     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
4923     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
4924     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
4925     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
4926     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
4927     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
4928 </ul>
4929 <h4>CSS Value Selectors:</h4>
4930 <ul class="list">
4931     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
4932     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
4933     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
4934     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
4935     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
4936     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
4937 </ul>
4938  * @singleton
4939  */
4940 Roo.DomQuery = function(){
4941     var cache = {}, simpleCache = {}, valueCache = {};
4942     var nonSpace = /\S/;
4943     var trimRe = /^\s+|\s+$/g;
4944     var tplRe = /\{(\d+)\}/g;
4945     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
4946     var tagTokenRe = /^(#)?([\w-\*]+)/;
4947     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
4948
4949     function child(p, index){
4950         var i = 0;
4951         var n = p.firstChild;
4952         while(n){
4953             if(n.nodeType == 1){
4954                if(++i == index){
4955                    return n;
4956                }
4957             }
4958             n = n.nextSibling;
4959         }
4960         return null;
4961     };
4962
4963     function next(n){
4964         while((n = n.nextSibling) && n.nodeType != 1);
4965         return n;
4966     };
4967
4968     function prev(n){
4969         while((n = n.previousSibling) && n.nodeType != 1);
4970         return n;
4971     };
4972
4973     function children(d){
4974         var n = d.firstChild, ni = -1;
4975             while(n){
4976                 var nx = n.nextSibling;
4977                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
4978                     d.removeChild(n);
4979                 }else{
4980                     n.nodeIndex = ++ni;
4981                 }
4982                 n = nx;
4983             }
4984             return this;
4985         };
4986
4987     function byClassName(c, a, v){
4988         if(!v){
4989             return c;
4990         }
4991         var r = [], ri = -1, cn;
4992         for(var i = 0, ci; ci = c[i]; i++){
4993             if((' '+ci.className+' ').indexOf(v) != -1){
4994                 r[++ri] = ci;
4995             }
4996         }
4997         return r;
4998     };
4999
5000     function attrValue(n, attr){
5001         if(!n.tagName && typeof n.length != "undefined"){
5002             n = n[0];
5003         }
5004         if(!n){
5005             return null;
5006         }
5007         if(attr == "for"){
5008             return n.htmlFor;
5009         }
5010         if(attr == "class" || attr == "className"){
5011             return n.className;
5012         }
5013         return n.getAttribute(attr) || n[attr];
5014
5015     };
5016
5017     function getNodes(ns, mode, tagName){
5018         var result = [], ri = -1, cs;
5019         if(!ns){
5020             return result;
5021         }
5022         tagName = tagName || "*";
5023         if(typeof ns.getElementsByTagName != "undefined"){
5024             ns = [ns];
5025         }
5026         if(!mode){
5027             for(var i = 0, ni; ni = ns[i]; i++){
5028                 cs = ni.getElementsByTagName(tagName);
5029                 for(var j = 0, ci; ci = cs[j]; j++){
5030                     result[++ri] = ci;
5031                 }
5032             }
5033         }else if(mode == "/" || mode == ">"){
5034             var utag = tagName.toUpperCase();
5035             for(var i = 0, ni, cn; ni = ns[i]; i++){
5036                 cn = ni.children || ni.childNodes;
5037                 for(var j = 0, cj; cj = cn[j]; j++){
5038                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5039                         result[++ri] = cj;
5040                     }
5041                 }
5042             }
5043         }else if(mode == "+"){
5044             var utag = tagName.toUpperCase();
5045             for(var i = 0, n; n = ns[i]; i++){
5046                 while((n = n.nextSibling) && n.nodeType != 1);
5047                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5048                     result[++ri] = n;
5049                 }
5050             }
5051         }else if(mode == "~"){
5052             for(var i = 0, n; n = ns[i]; i++){
5053                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5054                 if(n){
5055                     result[++ri] = n;
5056                 }
5057             }
5058         }
5059         return result;
5060     };
5061
5062     function concat(a, b){
5063         if(b.slice){
5064             return a.concat(b);
5065         }
5066         for(var i = 0, l = b.length; i < l; i++){
5067             a[a.length] = b[i];
5068         }
5069         return a;
5070     }
5071
5072     function byTag(cs, tagName){
5073         if(cs.tagName || cs == document){
5074             cs = [cs];
5075         }
5076         if(!tagName){
5077             return cs;
5078         }
5079         var r = [], ri = -1;
5080         tagName = tagName.toLowerCase();
5081         for(var i = 0, ci; ci = cs[i]; i++){
5082             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5083                 r[++ri] = ci;
5084             }
5085         }
5086         return r;
5087     };
5088
5089     function byId(cs, attr, id){
5090         if(cs.tagName || cs == document){
5091             cs = [cs];
5092         }
5093         if(!id){
5094             return cs;
5095         }
5096         var r = [], ri = -1;
5097         for(var i = 0,ci; ci = cs[i]; i++){
5098             if(ci && ci.id == id){
5099                 r[++ri] = ci;
5100                 return r;
5101             }
5102         }
5103         return r;
5104     };
5105
5106     function byAttribute(cs, attr, value, op, custom){
5107         var r = [], ri = -1, st = custom=="{";
5108         var f = Roo.DomQuery.operators[op];
5109         for(var i = 0, ci; ci = cs[i]; i++){
5110             var a;
5111             if(st){
5112                 a = Roo.DomQuery.getStyle(ci, attr);
5113             }
5114             else if(attr == "class" || attr == "className"){
5115                 a = ci.className;
5116             }else if(attr == "for"){
5117                 a = ci.htmlFor;
5118             }else if(attr == "href"){
5119                 a = ci.getAttribute("href", 2);
5120             }else{
5121                 a = ci.getAttribute(attr);
5122             }
5123             if((f && f(a, value)) || (!f && a)){
5124                 r[++ri] = ci;
5125             }
5126         }
5127         return r;
5128     };
5129
5130     function byPseudo(cs, name, value){
5131         return Roo.DomQuery.pseudos[name](cs, value);
5132     };
5133
5134     // This is for IE MSXML which does not support expandos.
5135     // IE runs the same speed using setAttribute, however FF slows way down
5136     // and Safari completely fails so they need to continue to use expandos.
5137     var isIE = window.ActiveXObject ? true : false;
5138
5139     // this eval is stop the compressor from
5140     // renaming the variable to something shorter
5141     
5142     /** eval:var:batch */
5143     var batch = 30803; 
5144
5145     var key = 30803;
5146
5147     function nodupIEXml(cs){
5148         var d = ++key;
5149         cs[0].setAttribute("_nodup", d);
5150         var r = [cs[0]];
5151         for(var i = 1, len = cs.length; i < len; i++){
5152             var c = cs[i];
5153             if(!c.getAttribute("_nodup") != d){
5154                 c.setAttribute("_nodup", d);
5155                 r[r.length] = c;
5156             }
5157         }
5158         for(var i = 0, len = cs.length; i < len; i++){
5159             cs[i].removeAttribute("_nodup");
5160         }
5161         return r;
5162     }
5163
5164     function nodup(cs){
5165         if(!cs){
5166             return [];
5167         }
5168         var len = cs.length, c, i, r = cs, cj, ri = -1;
5169         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5170             return cs;
5171         }
5172         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5173             return nodupIEXml(cs);
5174         }
5175         var d = ++key;
5176         cs[0]._nodup = d;
5177         for(i = 1; c = cs[i]; i++){
5178             if(c._nodup != d){
5179                 c._nodup = d;
5180             }else{
5181                 r = [];
5182                 for(var j = 0; j < i; j++){
5183                     r[++ri] = cs[j];
5184                 }
5185                 for(j = i+1; cj = cs[j]; j++){
5186                     if(cj._nodup != d){
5187                         cj._nodup = d;
5188                         r[++ri] = cj;
5189                     }
5190                 }
5191                 return r;
5192             }
5193         }
5194         return r;
5195     }
5196
5197     function quickDiffIEXml(c1, c2){
5198         var d = ++key;
5199         for(var i = 0, len = c1.length; i < len; i++){
5200             c1[i].setAttribute("_qdiff", d);
5201         }
5202         var r = [];
5203         for(var i = 0, len = c2.length; i < len; i++){
5204             if(c2[i].getAttribute("_qdiff") != d){
5205                 r[r.length] = c2[i];
5206             }
5207         }
5208         for(var i = 0, len = c1.length; i < len; i++){
5209            c1[i].removeAttribute("_qdiff");
5210         }
5211         return r;
5212     }
5213
5214     function quickDiff(c1, c2){
5215         var len1 = c1.length;
5216         if(!len1){
5217             return c2;
5218         }
5219         if(isIE && c1[0].selectSingleNode){
5220             return quickDiffIEXml(c1, c2);
5221         }
5222         var d = ++key;
5223         for(var i = 0; i < len1; i++){
5224             c1[i]._qdiff = d;
5225         }
5226         var r = [];
5227         for(var i = 0, len = c2.length; i < len; i++){
5228             if(c2[i]._qdiff != d){
5229                 r[r.length] = c2[i];
5230             }
5231         }
5232         return r;
5233     }
5234
5235     function quickId(ns, mode, root, id){
5236         if(ns == root){
5237            var d = root.ownerDocument || root;
5238            return d.getElementById(id);
5239         }
5240         ns = getNodes(ns, mode, "*");
5241         return byId(ns, null, id);
5242     }
5243
5244     return {
5245         getStyle : function(el, name){
5246             return Roo.fly(el).getStyle(name);
5247         },
5248         /**
5249          * Compiles a selector/xpath query into a reusable function. The returned function
5250          * takes one parameter "root" (optional), which is the context node from where the query should start.
5251          * @param {String} selector The selector/xpath query
5252          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5253          * @return {Function}
5254          */
5255         compile : function(path, type){
5256             type = type || "select";
5257             
5258             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5259             var q = path, mode, lq;
5260             var tk = Roo.DomQuery.matchers;
5261             var tklen = tk.length;
5262             var mm;
5263
5264             // accept leading mode switch
5265             var lmode = q.match(modeRe);
5266             if(lmode && lmode[1]){
5267                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5268                 q = q.replace(lmode[1], "");
5269             }
5270             // strip leading slashes
5271             while(path.substr(0, 1)=="/"){
5272                 path = path.substr(1);
5273             }
5274
5275             while(q && lq != q){
5276                 lq = q;
5277                 var tm = q.match(tagTokenRe);
5278                 if(type == "select"){
5279                     if(tm){
5280                         if(tm[1] == "#"){
5281                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5282                         }else{
5283                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5284                         }
5285                         q = q.replace(tm[0], "");
5286                     }else if(q.substr(0, 1) != '@'){
5287                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5288                     }
5289                 }else{
5290                     if(tm){
5291                         if(tm[1] == "#"){
5292                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5293                         }else{
5294                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5295                         }
5296                         q = q.replace(tm[0], "");
5297                     }
5298                 }
5299                 while(!(mm = q.match(modeRe))){
5300                     var matched = false;
5301                     for(var j = 0; j < tklen; j++){
5302                         var t = tk[j];
5303                         var m = q.match(t.re);
5304                         if(m){
5305                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5306                                                     return m[i];
5307                                                 });
5308                             q = q.replace(m[0], "");
5309                             matched = true;
5310                             break;
5311                         }
5312                     }
5313                     // prevent infinite loop on bad selector
5314                     if(!matched){
5315                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5316                     }
5317                 }
5318                 if(mm[1]){
5319                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5320                     q = q.replace(mm[1], "");
5321                 }
5322             }
5323             fn[fn.length] = "return nodup(n);\n}";
5324             
5325              /** 
5326               * list of variables that need from compression as they are used by eval.
5327              *  eval:var:batch 
5328              *  eval:var:nodup
5329              *  eval:var:byTag
5330              *  eval:var:ById
5331              *  eval:var:getNodes
5332              *  eval:var:quickId
5333              *  eval:var:mode
5334              *  eval:var:root
5335              *  eval:var:n
5336              *  eval:var:byClassName
5337              *  eval:var:byPseudo
5338              *  eval:var:byAttribute
5339              *  eval:var:attrValue
5340              * 
5341              **/ 
5342             eval(fn.join(""));
5343             return f;
5344         },
5345
5346         /**
5347          * Selects a group of elements.
5348          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5349          * @param {Node} root (optional) The start of the query (defaults to document).
5350          * @return {Array}
5351          */
5352         select : function(path, root, type){
5353             if(!root || root == document){
5354                 root = document;
5355             }
5356             if(typeof root == "string"){
5357                 root = document.getElementById(root);
5358             }
5359             var paths = path.split(",");
5360             var results = [];
5361             for(var i = 0, len = paths.length; i < len; i++){
5362                 var p = paths[i].replace(trimRe, "");
5363                 if(!cache[p]){
5364                     cache[p] = Roo.DomQuery.compile(p);
5365                     if(!cache[p]){
5366                         throw p + " is not a valid selector";
5367                     }
5368                 }
5369                 var result = cache[p](root);
5370                 if(result && result != document){
5371                     results = results.concat(result);
5372                 }
5373             }
5374             if(paths.length > 1){
5375                 return nodup(results);
5376             }
5377             return results;
5378         },
5379
5380         /**
5381          * Selects a single element.
5382          * @param {String} selector The selector/xpath query
5383          * @param {Node} root (optional) The start of the query (defaults to document).
5384          * @return {Element}
5385          */
5386         selectNode : function(path, root){
5387             return Roo.DomQuery.select(path, root)[0];
5388         },
5389
5390         /**
5391          * Selects the value of a node, optionally replacing null with the defaultValue.
5392          * @param {String} selector The selector/xpath query
5393          * @param {Node} root (optional) The start of the query (defaults to document).
5394          * @param {String} defaultValue
5395          */
5396         selectValue : function(path, root, defaultValue){
5397             path = path.replace(trimRe, "");
5398             if(!valueCache[path]){
5399                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5400             }
5401             var n = valueCache[path](root);
5402             n = n[0] ? n[0] : n;
5403             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5404             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5405         },
5406
5407         /**
5408          * Selects the value of a node, parsing integers and floats.
5409          * @param {String} selector The selector/xpath query
5410          * @param {Node} root (optional) The start of the query (defaults to document).
5411          * @param {Number} defaultValue
5412          * @return {Number}
5413          */
5414         selectNumber : function(path, root, defaultValue){
5415             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5416             return parseFloat(v);
5417         },
5418
5419         /**
5420          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5421          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5422          * @param {String} selector The simple selector to test
5423          * @return {Boolean}
5424          */
5425         is : function(el, ss){
5426             if(typeof el == "string"){
5427                 el = document.getElementById(el);
5428             }
5429             var isArray = (el instanceof Array);
5430             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5431             return isArray ? (result.length == el.length) : (result.length > 0);
5432         },
5433
5434         /**
5435          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5436          * @param {Array} el An array of elements to filter
5437          * @param {String} selector The simple selector to test
5438          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5439          * the selector instead of the ones that match
5440          * @return {Array}
5441          */
5442         filter : function(els, ss, nonMatches){
5443             ss = ss.replace(trimRe, "");
5444             if(!simpleCache[ss]){
5445                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5446             }
5447             var result = simpleCache[ss](els);
5448             return nonMatches ? quickDiff(result, els) : result;
5449         },
5450
5451         /**
5452          * Collection of matching regular expressions and code snippets.
5453          */
5454         matchers : [{
5455                 re: /^\.([\w-]+)/,
5456                 select: 'n = byClassName(n, null, " {1} ");'
5457             }, {
5458                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5459                 select: 'n = byPseudo(n, "{1}", "{2}");'
5460             },{
5461                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5462                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5463             }, {
5464                 re: /^#([\w-]+)/,
5465                 select: 'n = byId(n, null, "{1}");'
5466             },{
5467                 re: /^@([\w-]+)/,
5468                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5469             }
5470         ],
5471
5472         /**
5473          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5474          * New operators can be added as long as the match the format <i>c</i>= where <i>c</i> is any character other than space, &gt; &lt;.
5475          */
5476         operators : {
5477             "=" : function(a, v){
5478                 return a == v;
5479             },
5480             "!=" : function(a, v){
5481                 return a != v;
5482             },
5483             "^=" : function(a, v){
5484                 return a && a.substr(0, v.length) == v;
5485             },
5486             "$=" : function(a, v){
5487                 return a && a.substr(a.length-v.length) == v;
5488             },
5489             "*=" : function(a, v){
5490                 return a && a.indexOf(v) !== -1;
5491             },
5492             "%=" : function(a, v){
5493                 return (a % v) == 0;
5494             },
5495             "|=" : function(a, v){
5496                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5497             },
5498             "~=" : function(a, v){
5499                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5500             }
5501         },
5502
5503         /**
5504          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5505          * and the argument (if any) supplied in the selector.
5506          */
5507         pseudos : {
5508             "first-child" : function(c){
5509                 var r = [], ri = -1, n;
5510                 for(var i = 0, ci; ci = n = c[i]; i++){
5511                     while((n = n.previousSibling) && n.nodeType != 1);
5512                     if(!n){
5513                         r[++ri] = ci;
5514                     }
5515                 }
5516                 return r;
5517             },
5518
5519             "last-child" : function(c){
5520                 var r = [], ri = -1, n;
5521                 for(var i = 0, ci; ci = n = c[i]; i++){
5522                     while((n = n.nextSibling) && n.nodeType != 1);
5523                     if(!n){
5524                         r[++ri] = ci;
5525                     }
5526                 }
5527                 return r;
5528             },
5529
5530             "nth-child" : function(c, a) {
5531                 var r = [], ri = -1;
5532                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5533                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5534                 for(var i = 0, n; n = c[i]; i++){
5535                     var pn = n.parentNode;
5536                     if (batch != pn._batch) {
5537                         var j = 0;
5538                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5539                             if(cn.nodeType == 1){
5540                                cn.nodeIndex = ++j;
5541                             }
5542                         }
5543                         pn._batch = batch;
5544                     }
5545                     if (f == 1) {
5546                         if (l == 0 || n.nodeIndex == l){
5547                             r[++ri] = n;
5548                         }
5549                     } else if ((n.nodeIndex + l) % f == 0){
5550                         r[++ri] = n;
5551                     }
5552                 }
5553
5554                 return r;
5555             },
5556
5557             "only-child" : function(c){
5558                 var r = [], ri = -1;;
5559                 for(var i = 0, ci; ci = c[i]; i++){
5560                     if(!prev(ci) && !next(ci)){
5561                         r[++ri] = ci;
5562                     }
5563                 }
5564                 return r;
5565             },
5566
5567             "empty" : function(c){
5568                 var r = [], ri = -1;
5569                 for(var i = 0, ci; ci = c[i]; i++){
5570                     var cns = ci.childNodes, j = 0, cn, empty = true;
5571                     while(cn = cns[j]){
5572                         ++j;
5573                         if(cn.nodeType == 1 || cn.nodeType == 3){
5574                             empty = false;
5575                             break;
5576                         }
5577                     }
5578                     if(empty){
5579                         r[++ri] = ci;
5580                     }
5581                 }
5582                 return r;
5583             },
5584
5585             "contains" : function(c, v){
5586                 var r = [], ri = -1;
5587                 for(var i = 0, ci; ci = c[i]; i++){
5588                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5589                         r[++ri] = ci;
5590                     }
5591                 }
5592                 return r;
5593             },
5594
5595             "nodeValue" : function(c, v){
5596                 var r = [], ri = -1;
5597                 for(var i = 0, ci; ci = c[i]; i++){
5598                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5599                         r[++ri] = ci;
5600                     }
5601                 }
5602                 return r;
5603             },
5604
5605             "checked" : function(c){
5606                 var r = [], ri = -1;
5607                 for(var i = 0, ci; ci = c[i]; i++){
5608                     if(ci.checked == true){
5609                         r[++ri] = ci;
5610                     }
5611                 }
5612                 return r;
5613             },
5614
5615             "not" : function(c, ss){
5616                 return Roo.DomQuery.filter(c, ss, true);
5617             },
5618
5619             "odd" : function(c){
5620                 return this["nth-child"](c, "odd");
5621             },
5622
5623             "even" : function(c){
5624                 return this["nth-child"](c, "even");
5625             },
5626
5627             "nth" : function(c, a){
5628                 return c[a-1] || [];
5629             },
5630
5631             "first" : function(c){
5632                 return c[0] || [];
5633             },
5634
5635             "last" : function(c){
5636                 return c[c.length-1] || [];
5637             },
5638
5639             "has" : function(c, ss){
5640                 var s = Roo.DomQuery.select;
5641                 var r = [], ri = -1;
5642                 for(var i = 0, ci; ci = c[i]; i++){
5643                     if(s(ss, ci).length > 0){
5644                         r[++ri] = ci;
5645                     }
5646                 }
5647                 return r;
5648             },
5649
5650             "next" : function(c, ss){
5651                 var is = Roo.DomQuery.is;
5652                 var r = [], ri = -1;
5653                 for(var i = 0, ci; ci = c[i]; i++){
5654                     var n = next(ci);
5655                     if(n && is(n, ss)){
5656                         r[++ri] = ci;
5657                     }
5658                 }
5659                 return r;
5660             },
5661
5662             "prev" : function(c, ss){
5663                 var is = Roo.DomQuery.is;
5664                 var r = [], ri = -1;
5665                 for(var i = 0, ci; ci = c[i]; i++){
5666                     var n = prev(ci);
5667                     if(n && is(n, ss)){
5668                         r[++ri] = ci;
5669                     }
5670                 }
5671                 return r;
5672             }
5673         }
5674     };
5675 }();
5676
5677 /**
5678  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5679  * @param {String} path The selector/xpath query
5680  * @param {Node} root (optional) The start of the query (defaults to document).
5681  * @return {Array}
5682  * @member Roo
5683  * @method query
5684  */
5685 Roo.query = Roo.DomQuery.select;
5686 /*
5687  * Based on:
5688  * Ext JS Library 1.1.1
5689  * Copyright(c) 2006-2007, Ext JS, LLC.
5690  *
5691  * Originally Released Under LGPL - original licence link has changed is not relivant.
5692  *
5693  * Fork - LGPL
5694  * <script type="text/javascript">
5695  */
5696
5697 /**
5698  * @class Roo.util.Observable
5699  * Base class that provides a common interface for publishing events. Subclasses are expected to
5700  * to have a property "events" with all the events defined.<br>
5701  * For example:
5702  * <pre><code>
5703  Employee = function(name){
5704     this.name = name;
5705     this.addEvents({
5706         "fired" : true,
5707         "quit" : true
5708     });
5709  }
5710  Roo.extend(Employee, Roo.util.Observable);
5711 </code></pre>
5712  * @param {Object} config properties to use (incuding events / listeners)
5713  */
5714
5715 Roo.util.Observable = function(cfg){
5716     
5717     cfg = cfg|| {};
5718     this.addEvents(cfg.events || {});
5719     if (cfg.events) {
5720         delete cfg.events; // make sure
5721     }
5722      
5723     Roo.apply(this, cfg);
5724     
5725     if(this.listeners){
5726         this.on(this.listeners);
5727         delete this.listeners;
5728     }
5729 };
5730 Roo.util.Observable.prototype = {
5731     /** 
5732  * @cfg {Object} listeners  list of events and functions to call for this object, 
5733  * For example :
5734  * <pre><code>
5735     listeners :  { 
5736        'click' : function(e) {
5737            ..... 
5738         } ,
5739         .... 
5740     } 
5741   </code></pre>
5742  */
5743     
5744     
5745     /**
5746      * Fires the specified event with the passed parameters (minus the event name).
5747      * @param {String} eventName
5748      * @param {Object...} args Variable number of parameters are passed to handlers
5749      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5750      */
5751     fireEvent : function(){
5752         var ce = this.events[arguments[0].toLowerCase()];
5753         if(typeof ce == "object"){
5754             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5755         }else{
5756             return true;
5757         }
5758     },
5759
5760     // private
5761     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5762
5763     /**
5764      * Appends an event handler to this component
5765      * @param {String}   eventName The type of event to listen for
5766      * @param {Function} handler The method the event invokes
5767      * @param {Object}   scope (optional) The scope in which to execute the handler
5768      * function. The handler function's "this" context.
5769      * @param {Object}   options (optional) An object containing handler configuration
5770      * properties. This may contain any of the following properties:<ul>
5771      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5772      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5773      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5774      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5775      * by the specified number of milliseconds. If the event fires again within that time, the original
5776      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5777      * </ul><br>
5778      * <p>
5779      * <b>Combining Options</b><br>
5780      * Using the options argument, it is possible to combine different types of listeners:<br>
5781      * <br>
5782      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5783                 <pre><code>
5784                 el.on('click', this.onClick, this, {
5785                         single: true,
5786                 delay: 100,
5787                 forumId: 4
5788                 });
5789                 </code></pre>
5790      * <p>
5791      * <b>Attaching multiple handlers in 1 call</b><br>
5792      * The method also allows for a single argument to be passed which is a config object containing properties
5793      * which specify multiple handlers.
5794      * <pre><code>
5795                 el.on({
5796                         'click': {
5797                         fn: this.onClick,
5798                         scope: this,
5799                         delay: 100
5800                 }, 
5801                 'mouseover': {
5802                         fn: this.onMouseOver,
5803                         scope: this
5804                 },
5805                 'mouseout': {
5806                         fn: this.onMouseOut,
5807                         scope: this
5808                 }
5809                 });
5810                 </code></pre>
5811      * <p>
5812      * Or a shorthand syntax which passes the same scope object to all handlers:
5813         <pre><code>
5814                 el.on({
5815                         'click': this.onClick,
5816                 'mouseover': this.onMouseOver,
5817                 'mouseout': this.onMouseOut,
5818                 scope: this
5819                 });
5820                 </code></pre>
5821      */
5822     addListener : function(eventName, fn, scope, o){
5823         if(typeof eventName == "object"){
5824             o = eventName;
5825             for(var e in o){
5826                 if(this.filterOptRe.test(e)){
5827                     continue;
5828                 }
5829                 if(typeof o[e] == "function"){
5830                     // shared options
5831                     this.addListener(e, o[e], o.scope,  o);
5832                 }else{
5833                     // individual options
5834                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5835                 }
5836             }
5837             return;
5838         }
5839         o = (!o || typeof o == "boolean") ? {} : o;
5840         eventName = eventName.toLowerCase();
5841         var ce = this.events[eventName] || true;
5842         if(typeof ce == "boolean"){
5843             ce = new Roo.util.Event(this, eventName);
5844             this.events[eventName] = ce;
5845         }
5846         ce.addListener(fn, scope, o);
5847     },
5848
5849     /**
5850      * Removes a listener
5851      * @param {String}   eventName     The type of event to listen for
5852      * @param {Function} handler        The handler to remove
5853      * @param {Object}   scope  (optional) The scope (this object) for the handler
5854      */
5855     removeListener : function(eventName, fn, scope){
5856         var ce = this.events[eventName.toLowerCase()];
5857         if(typeof ce == "object"){
5858             ce.removeListener(fn, scope);
5859         }
5860     },
5861
5862     /**
5863      * Removes all listeners for this object
5864      */
5865     purgeListeners : function(){
5866         for(var evt in this.events){
5867             if(typeof this.events[evt] == "object"){
5868                  this.events[evt].clearListeners();
5869             }
5870         }
5871     },
5872
5873     relayEvents : function(o, events){
5874         var createHandler = function(ename){
5875             return function(){
5876                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5877             };
5878         };
5879         for(var i = 0, len = events.length; i < len; i++){
5880             var ename = events[i];
5881             if(!this.events[ename]){ this.events[ename] = true; };
5882             o.on(ename, createHandler(ename), this);
5883         }
5884     },
5885
5886     /**
5887      * Used to define events on this Observable
5888      * @param {Object} object The object with the events defined
5889      */
5890     addEvents : function(o){
5891         if(!this.events){
5892             this.events = {};
5893         }
5894         Roo.applyIf(this.events, o);
5895     },
5896
5897     /**
5898      * Checks to see if this object has any listeners for a specified event
5899      * @param {String} eventName The name of the event to check for
5900      * @return {Boolean} True if the event is being listened for, else false
5901      */
5902     hasListener : function(eventName){
5903         var e = this.events[eventName];
5904         return typeof e == "object" && e.listeners.length > 0;
5905     }
5906 };
5907 /**
5908  * Appends an event handler to this element (shorthand for addListener)
5909  * @param {String}   eventName     The type of event to listen for
5910  * @param {Function} handler        The method the event invokes
5911  * @param {Object}   scope (optional) The scope in which to execute the handler
5912  * function. The handler function's "this" context.
5913  * @param {Object}   options  (optional)
5914  * @method
5915  */
5916 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5917 /**
5918  * Removes a listener (shorthand for removeListener)
5919  * @param {String}   eventName     The type of event to listen for
5920  * @param {Function} handler        The handler to remove
5921  * @param {Object}   scope  (optional) The scope (this object) for the handler
5922  * @method
5923  */
5924 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
5925
5926 /**
5927  * Starts capture on the specified Observable. All events will be passed
5928  * to the supplied function with the event name + standard signature of the event
5929  * <b>before</b> the event is fired. If the supplied function returns false,
5930  * the event will not fire.
5931  * @param {Observable} o The Observable to capture
5932  * @param {Function} fn The function to call
5933  * @param {Object} scope (optional) The scope (this object) for the fn
5934  * @static
5935  */
5936 Roo.util.Observable.capture = function(o, fn, scope){
5937     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
5938 };
5939
5940 /**
5941  * Removes <b>all</b> added captures from the Observable.
5942  * @param {Observable} o The Observable to release
5943  * @static
5944  */
5945 Roo.util.Observable.releaseCapture = function(o){
5946     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
5947 };
5948
5949 (function(){
5950
5951     var createBuffered = function(h, o, scope){
5952         var task = new Roo.util.DelayedTask();
5953         return function(){
5954             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
5955         };
5956     };
5957
5958     var createSingle = function(h, e, fn, scope){
5959         return function(){
5960             e.removeListener(fn, scope);
5961             return h.apply(scope, arguments);
5962         };
5963     };
5964
5965     var createDelayed = function(h, o, scope){
5966         return function(){
5967             var args = Array.prototype.slice.call(arguments, 0);
5968             setTimeout(function(){
5969                 h.apply(scope, args);
5970             }, o.delay || 10);
5971         };
5972     };
5973
5974     Roo.util.Event = function(obj, name){
5975         this.name = name;
5976         this.obj = obj;
5977         this.listeners = [];
5978     };
5979
5980     Roo.util.Event.prototype = {
5981         addListener : function(fn, scope, options){
5982             var o = options || {};
5983             scope = scope || this.obj;
5984             if(!this.isListening(fn, scope)){
5985                 var l = {fn: fn, scope: scope, options: o};
5986                 var h = fn;
5987                 if(o.delay){
5988                     h = createDelayed(h, o, scope);
5989                 }
5990                 if(o.single){
5991                     h = createSingle(h, this, fn, scope);
5992                 }
5993                 if(o.buffer){
5994                     h = createBuffered(h, o, scope);
5995                 }
5996                 l.fireFn = h;
5997                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
5998                     this.listeners.push(l);
5999                 }else{
6000                     this.listeners = this.listeners.slice(0);
6001                     this.listeners.push(l);
6002                 }
6003             }
6004         },
6005
6006         findListener : function(fn, scope){
6007             scope = scope || this.obj;
6008             var ls = this.listeners;
6009             for(var i = 0, len = ls.length; i < len; i++){
6010                 var l = ls[i];
6011                 if(l.fn == fn && l.scope == scope){
6012                     return i;
6013                 }
6014             }
6015             return -1;
6016         },
6017
6018         isListening : function(fn, scope){
6019             return this.findListener(fn, scope) != -1;
6020         },
6021
6022         removeListener : function(fn, scope){
6023             var index;
6024             if((index = this.findListener(fn, scope)) != -1){
6025                 if(!this.firing){
6026                     this.listeners.splice(index, 1);
6027                 }else{
6028                     this.listeners = this.listeners.slice(0);
6029                     this.listeners.splice(index, 1);
6030                 }
6031                 return true;
6032             }
6033             return false;
6034         },
6035
6036         clearListeners : function(){
6037             this.listeners = [];
6038         },
6039
6040         fire : function(){
6041             var ls = this.listeners, scope, len = ls.length;
6042             if(len > 0){
6043                 this.firing = true;
6044                 var args = Array.prototype.slice.call(arguments, 0);
6045                 for(var i = 0; i < len; i++){
6046                     var l = ls[i];
6047                     if(l.fireFn.apply(l.scope||this.obj||window, arguments) === false){
6048                         this.firing = false;
6049                         return false;
6050                     }
6051                 }
6052                 this.firing = false;
6053             }
6054             return true;
6055         }
6056     };
6057 })();/*
6058  * RooJS Library 
6059  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6060  *
6061  * Licence LGPL 
6062  *
6063  */
6064  
6065 /**
6066  * @class Roo.Document
6067  * @extends Roo.util.Observable
6068  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6069  * 
6070  * @param {Object} config the methods and properties of the 'base' class for the application.
6071  * 
6072  *  Generic Page handler - implement this to start your app..
6073  * 
6074  * eg.
6075  *  MyProject = new Roo.Document({
6076         events : {
6077             'load' : true // your events..
6078         },
6079         listeners : {
6080             'ready' : function() {
6081                 // fired on Roo.onReady()
6082             }
6083         }
6084  * 
6085  */
6086 Roo.Document = function(cfg) {
6087      
6088     this.addEvents({ 
6089         'ready' : true
6090     });
6091     Roo.util.Observable.call(this,cfg);
6092     
6093     var _this = this;
6094     
6095     Roo.onReady(function() {
6096         _this.fireEvent('ready');
6097     },null,false);
6098     
6099     
6100 }
6101
6102 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6103  * Based on:
6104  * Ext JS Library 1.1.1
6105  * Copyright(c) 2006-2007, Ext JS, LLC.
6106  *
6107  * Originally Released Under LGPL - original licence link has changed is not relivant.
6108  *
6109  * Fork - LGPL
6110  * <script type="text/javascript">
6111  */
6112
6113 /**
6114  * @class Roo.EventManager
6115  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6116  * several useful events directly.
6117  * See {@link Roo.EventObject} for more details on normalized event objects.
6118  * @singleton
6119  */
6120 Roo.EventManager = function(){
6121     var docReadyEvent, docReadyProcId, docReadyState = false;
6122     var resizeEvent, resizeTask, textEvent, textSize;
6123     var E = Roo.lib.Event;
6124     var D = Roo.lib.Dom;
6125
6126     
6127     
6128
6129     var fireDocReady = function(){
6130         if(!docReadyState){
6131             docReadyState = true;
6132             Roo.isReady = true;
6133             if(docReadyProcId){
6134                 clearInterval(docReadyProcId);
6135             }
6136             if(Roo.isGecko || Roo.isOpera) {
6137                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6138             }
6139             if(Roo.isIE){
6140                 var defer = document.getElementById("ie-deferred-loader");
6141                 if(defer){
6142                     defer.onreadystatechange = null;
6143                     defer.parentNode.removeChild(defer);
6144                 }
6145             }
6146             if(docReadyEvent){
6147                 docReadyEvent.fire();
6148                 docReadyEvent.clearListeners();
6149             }
6150         }
6151     };
6152     
6153     var initDocReady = function(){
6154         docReadyEvent = new Roo.util.Event();
6155         if(Roo.isGecko || Roo.isOpera) {
6156             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6157         }else if(Roo.isIE){
6158             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6159             var defer = document.getElementById("ie-deferred-loader");
6160             defer.onreadystatechange = function(){
6161                 if(this.readyState == "complete"){
6162                     fireDocReady();
6163                 }
6164             };
6165         }else if(Roo.isSafari){ 
6166             docReadyProcId = setInterval(function(){
6167                 var rs = document.readyState;
6168                 if(rs == "complete") {
6169                     fireDocReady();     
6170                  }
6171             }, 10);
6172         }
6173         // no matter what, make sure it fires on load
6174         E.on(window, "load", fireDocReady);
6175     };
6176
6177     var createBuffered = function(h, o){
6178         var task = new Roo.util.DelayedTask(h);
6179         return function(e){
6180             // create new event object impl so new events don't wipe out properties
6181             e = new Roo.EventObjectImpl(e);
6182             task.delay(o.buffer, h, null, [e]);
6183         };
6184     };
6185
6186     var createSingle = function(h, el, ename, fn){
6187         return function(e){
6188             Roo.EventManager.removeListener(el, ename, fn);
6189             h(e);
6190         };
6191     };
6192
6193     var createDelayed = function(h, o){
6194         return function(e){
6195             // create new event object impl so new events don't wipe out properties
6196             e = new Roo.EventObjectImpl(e);
6197             setTimeout(function(){
6198                 h(e);
6199             }, o.delay || 10);
6200         };
6201     };
6202     var transitionEndVal = false;
6203     
6204     var transitionEnd = function()
6205     {
6206         if (transitionEndVal) {
6207             return transitionEndVal;
6208         }
6209         var el = document.createElement('div');
6210
6211         var transEndEventNames = {
6212             WebkitTransition : 'webkitTransitionEnd',
6213             MozTransition    : 'transitionend',
6214             OTransition      : 'oTransitionEnd otransitionend',
6215             transition       : 'transitionend'
6216         };
6217     
6218         for (var name in transEndEventNames) {
6219             if (el.style[name] !== undefined) {
6220                 transitionEndVal = transEndEventNames[name];
6221                 return  transitionEndVal ;
6222             }
6223         }
6224     }
6225     
6226
6227     var listen = function(element, ename, opt, fn, scope){
6228         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6229         fn = fn || o.fn; scope = scope || o.scope;
6230         var el = Roo.getDom(element);
6231         
6232         
6233         if(!el){
6234             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6235         }
6236         
6237         if (ename == 'transitionend') {
6238             ename = transitionEnd();
6239         }
6240         var h = function(e){
6241             e = Roo.EventObject.setEvent(e);
6242             var t;
6243             if(o.delegate){
6244                 t = e.getTarget(o.delegate, el);
6245                 if(!t){
6246                     return;
6247                 }
6248             }else{
6249                 t = e.target;
6250             }
6251             if(o.stopEvent === true){
6252                 e.stopEvent();
6253             }
6254             if(o.preventDefault === true){
6255                e.preventDefault();
6256             }
6257             if(o.stopPropagation === true){
6258                 e.stopPropagation();
6259             }
6260
6261             if(o.normalized === false){
6262                 e = e.browserEvent;
6263             }
6264
6265             fn.call(scope || el, e, t, o);
6266         };
6267         if(o.delay){
6268             h = createDelayed(h, o);
6269         }
6270         if(o.single){
6271             h = createSingle(h, el, ename, fn);
6272         }
6273         if(o.buffer){
6274             h = createBuffered(h, o);
6275         }
6276         fn._handlers = fn._handlers || [];
6277         
6278         
6279         fn._handlers.push([Roo.id(el), ename, h]);
6280         
6281         
6282          
6283         E.on(el, ename, h);
6284         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6285             el.addEventListener("DOMMouseScroll", h, false);
6286             E.on(window, 'unload', function(){
6287                 el.removeEventListener("DOMMouseScroll", h, false);
6288             });
6289         }
6290         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6291             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6292         }
6293         return h;
6294     };
6295
6296     var stopListening = function(el, ename, fn){
6297         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6298         if(hds){
6299             for(var i = 0, len = hds.length; i < len; i++){
6300                 var h = hds[i];
6301                 if(h[0] == id && h[1] == ename){
6302                     hd = h[2];
6303                     hds.splice(i, 1);
6304                     break;
6305                 }
6306             }
6307         }
6308         E.un(el, ename, hd);
6309         el = Roo.getDom(el);
6310         if(ename == "mousewheel" && el.addEventListener){
6311             el.removeEventListener("DOMMouseScroll", hd, false);
6312         }
6313         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6314             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6315         }
6316     };
6317
6318     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6319     
6320     var pub = {
6321         
6322         
6323         /** 
6324          * Fix for doc tools
6325          * @scope Roo.EventManager
6326          */
6327         
6328         
6329         /** 
6330          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6331          * object with a Roo.EventObject
6332          * @param {Function} fn        The method the event invokes
6333          * @param {Object}   scope    An object that becomes the scope of the handler
6334          * @param {boolean}  override If true, the obj passed in becomes
6335          *                             the execution scope of the listener
6336          * @return {Function} The wrapped function
6337          * @deprecated
6338          */
6339         wrap : function(fn, scope, override){
6340             return function(e){
6341                 Roo.EventObject.setEvent(e);
6342                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6343             };
6344         },
6345         
6346         /**
6347      * Appends an event handler to an element (shorthand for addListener)
6348      * @param {String/HTMLElement}   element        The html element or id to assign the
6349      * @param {String}   eventName The type of event to listen for
6350      * @param {Function} handler The method the event invokes
6351      * @param {Object}   scope (optional) The scope in which to execute the handler
6352      * function. The handler function's "this" context.
6353      * @param {Object}   options (optional) An object containing handler configuration
6354      * properties. This may contain any of the following properties:<ul>
6355      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6356      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6357      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6358      * <li>preventDefault {Boolean} True to prevent the default action</li>
6359      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6360      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6361      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6362      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6363      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6364      * by the specified number of milliseconds. If the event fires again within that time, the original
6365      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6366      * </ul><br>
6367      * <p>
6368      * <b>Combining Options</b><br>
6369      * Using the options argument, it is possible to combine different types of listeners:<br>
6370      * <br>
6371      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6372      * Code:<pre><code>
6373 el.on('click', this.onClick, this, {
6374     single: true,
6375     delay: 100,
6376     stopEvent : true,
6377     forumId: 4
6378 });</code></pre>
6379      * <p>
6380      * <b>Attaching multiple handlers in 1 call</b><br>
6381       * The method also allows for a single argument to be passed which is a config object containing properties
6382      * which specify multiple handlers.
6383      * <p>
6384      * Code:<pre><code>
6385 el.on({
6386     'click' : {
6387         fn: this.onClick
6388         scope: this,
6389         delay: 100
6390     },
6391     'mouseover' : {
6392         fn: this.onMouseOver
6393         scope: this
6394     },
6395     'mouseout' : {
6396         fn: this.onMouseOut
6397         scope: this
6398     }
6399 });</code></pre>
6400      * <p>
6401      * Or a shorthand syntax:<br>
6402      * Code:<pre><code>
6403 el.on({
6404     'click' : this.onClick,
6405     'mouseover' : this.onMouseOver,
6406     'mouseout' : this.onMouseOut
6407     scope: this
6408 });</code></pre>
6409      */
6410         addListener : function(element, eventName, fn, scope, options){
6411             if(typeof eventName == "object"){
6412                 var o = eventName;
6413                 for(var e in o){
6414                     if(propRe.test(e)){
6415                         continue;
6416                     }
6417                     if(typeof o[e] == "function"){
6418                         // shared options
6419                         listen(element, e, o, o[e], o.scope);
6420                     }else{
6421                         // individual options
6422                         listen(element, e, o[e]);
6423                     }
6424                 }
6425                 return;
6426             }
6427             return listen(element, eventName, options, fn, scope);
6428         },
6429         
6430         /**
6431          * Removes an event handler
6432          *
6433          * @param {String/HTMLElement}   element        The id or html element to remove the 
6434          *                             event from
6435          * @param {String}   eventName     The type of event
6436          * @param {Function} fn
6437          * @return {Boolean} True if a listener was actually removed
6438          */
6439         removeListener : function(element, eventName, fn){
6440             return stopListening(element, eventName, fn);
6441         },
6442         
6443         /**
6444          * Fires when the document is ready (before onload and before images are loaded). Can be 
6445          * accessed shorthanded Roo.onReady().
6446          * @param {Function} fn        The method the event invokes
6447          * @param {Object}   scope    An  object that becomes the scope of the handler
6448          * @param {boolean}  options
6449          */
6450         onDocumentReady : function(fn, scope, options){
6451             if(docReadyState){ // if it already fired
6452                 docReadyEvent.addListener(fn, scope, options);
6453                 docReadyEvent.fire();
6454                 docReadyEvent.clearListeners();
6455                 return;
6456             }
6457             if(!docReadyEvent){
6458                 initDocReady();
6459             }
6460             docReadyEvent.addListener(fn, scope, options);
6461         },
6462         
6463         /**
6464          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6465          * @param {Function} fn        The method the event invokes
6466          * @param {Object}   scope    An object that becomes the scope of the handler
6467          * @param {boolean}  options
6468          */
6469         onWindowResize : function(fn, scope, options){
6470             if(!resizeEvent){
6471                 resizeEvent = new Roo.util.Event();
6472                 resizeTask = new Roo.util.DelayedTask(function(){
6473                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6474                 });
6475                 E.on(window, "resize", function(){
6476                     if(Roo.isIE){
6477                         resizeTask.delay(50);
6478                     }else{
6479                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6480                     }
6481                 });
6482             }
6483             resizeEvent.addListener(fn, scope, options);
6484         },
6485
6486         /**
6487          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6488          * @param {Function} fn        The method the event invokes
6489          * @param {Object}   scope    An object that becomes the scope of the handler
6490          * @param {boolean}  options
6491          */
6492         onTextResize : function(fn, scope, options){
6493             if(!textEvent){
6494                 textEvent = new Roo.util.Event();
6495                 var textEl = new Roo.Element(document.createElement('div'));
6496                 textEl.dom.className = 'x-text-resize';
6497                 textEl.dom.innerHTML = 'X';
6498                 textEl.appendTo(document.body);
6499                 textSize = textEl.dom.offsetHeight;
6500                 setInterval(function(){
6501                     if(textEl.dom.offsetHeight != textSize){
6502                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6503                     }
6504                 }, this.textResizeInterval);
6505             }
6506             textEvent.addListener(fn, scope, options);
6507         },
6508
6509         /**
6510          * Removes the passed window resize listener.
6511          * @param {Function} fn        The method the event invokes
6512          * @param {Object}   scope    The scope of handler
6513          */
6514         removeResizeListener : function(fn, scope){
6515             if(resizeEvent){
6516                 resizeEvent.removeListener(fn, scope);
6517             }
6518         },
6519
6520         // private
6521         fireResize : function(){
6522             if(resizeEvent){
6523                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6524             }   
6525         },
6526         /**
6527          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6528          */
6529         ieDeferSrc : false,
6530         /**
6531          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6532          */
6533         textResizeInterval : 50
6534     };
6535     
6536     /**
6537      * Fix for doc tools
6538      * @scopeAlias pub=Roo.EventManager
6539      */
6540     
6541      /**
6542      * Appends an event handler to an element (shorthand for addListener)
6543      * @param {String/HTMLElement}   element        The html element or id to assign the
6544      * @param {String}   eventName The type of event to listen for
6545      * @param {Function} handler The method the event invokes
6546      * @param {Object}   scope (optional) The scope in which to execute the handler
6547      * function. The handler function's "this" context.
6548      * @param {Object}   options (optional) An object containing handler configuration
6549      * properties. This may contain any of the following properties:<ul>
6550      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6551      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6552      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6553      * <li>preventDefault {Boolean} True to prevent the default action</li>
6554      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6555      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6556      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6557      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6558      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6559      * by the specified number of milliseconds. If the event fires again within that time, the original
6560      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6561      * </ul><br>
6562      * <p>
6563      * <b>Combining Options</b><br>
6564      * Using the options argument, it is possible to combine different types of listeners:<br>
6565      * <br>
6566      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6567      * Code:<pre><code>
6568 el.on('click', this.onClick, this, {
6569     single: true,
6570     delay: 100,
6571     stopEvent : true,
6572     forumId: 4
6573 });</code></pre>
6574      * <p>
6575      * <b>Attaching multiple handlers in 1 call</b><br>
6576       * The method also allows for a single argument to be passed which is a config object containing properties
6577      * which specify multiple handlers.
6578      * <p>
6579      * Code:<pre><code>
6580 el.on({
6581     'click' : {
6582         fn: this.onClick
6583         scope: this,
6584         delay: 100
6585     },
6586     'mouseover' : {
6587         fn: this.onMouseOver
6588         scope: this
6589     },
6590     'mouseout' : {
6591         fn: this.onMouseOut
6592         scope: this
6593     }
6594 });</code></pre>
6595      * <p>
6596      * Or a shorthand syntax:<br>
6597      * Code:<pre><code>
6598 el.on({
6599     'click' : this.onClick,
6600     'mouseover' : this.onMouseOver,
6601     'mouseout' : this.onMouseOut
6602     scope: this
6603 });</code></pre>
6604      */
6605     pub.on = pub.addListener;
6606     pub.un = pub.removeListener;
6607
6608     pub.stoppedMouseDownEvent = new Roo.util.Event();
6609     return pub;
6610 }();
6611 /**
6612   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6613   * @param {Function} fn        The method the event invokes
6614   * @param {Object}   scope    An  object that becomes the scope of the handler
6615   * @param {boolean}  override If true, the obj passed in becomes
6616   *                             the execution scope of the listener
6617   * @member Roo
6618   * @method onReady
6619  */
6620 Roo.onReady = Roo.EventManager.onDocumentReady;
6621
6622 Roo.onReady(function(){
6623     var bd = Roo.get(document.body);
6624     if(!bd){ return; }
6625
6626     var cls = [
6627             Roo.isIE ? "roo-ie"
6628             : Roo.isGecko ? "roo-gecko"
6629             : Roo.isOpera ? "roo-opera"
6630             : Roo.isSafari ? "roo-safari" : ""];
6631
6632     if(Roo.isMac){
6633         cls.push("roo-mac");
6634     }
6635     if(Roo.isLinux){
6636         cls.push("roo-linux");
6637     }
6638     if(Roo.isIOS){
6639         cls.push("roo-ios");
6640     }
6641     if(Roo.isTouch){
6642         cls.push("roo-touch");
6643     }
6644     if(Roo.isBorderBox){
6645         cls.push('roo-border-box');
6646     }
6647     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6648         var p = bd.dom.parentNode;
6649         if(p){
6650             p.className += ' roo-strict';
6651         }
6652     }
6653     bd.addClass(cls.join(' '));
6654 });
6655
6656 /**
6657  * @class Roo.EventObject
6658  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6659  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6660  * Example:
6661  * <pre><code>
6662  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6663     e.preventDefault();
6664     var target = e.getTarget();
6665     ...
6666  }
6667  var myDiv = Roo.get("myDiv");
6668  myDiv.on("click", handleClick);
6669  //or
6670  Roo.EventManager.on("myDiv", 'click', handleClick);
6671  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6672  </code></pre>
6673  * @singleton
6674  */
6675 Roo.EventObject = function(){
6676     
6677     var E = Roo.lib.Event;
6678     
6679     // safari keypress events for special keys return bad keycodes
6680     var safariKeys = {
6681         63234 : 37, // left
6682         63235 : 39, // right
6683         63232 : 38, // up
6684         63233 : 40, // down
6685         63276 : 33, // page up
6686         63277 : 34, // page down
6687         63272 : 46, // delete
6688         63273 : 36, // home
6689         63275 : 35  // end
6690     };
6691
6692     // normalize button clicks
6693     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6694                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6695
6696     Roo.EventObjectImpl = function(e){
6697         if(e){
6698             this.setEvent(e.browserEvent || e);
6699         }
6700     };
6701     Roo.EventObjectImpl.prototype = {
6702         /**
6703          * Used to fix doc tools.
6704          * @scope Roo.EventObject.prototype
6705          */
6706             
6707
6708         
6709         
6710         /** The normal browser event */
6711         browserEvent : null,
6712         /** The button pressed in a mouse event */
6713         button : -1,
6714         /** True if the shift key was down during the event */
6715         shiftKey : false,
6716         /** True if the control key was down during the event */
6717         ctrlKey : false,
6718         /** True if the alt key was down during the event */
6719         altKey : false,
6720
6721         /** Key constant 
6722         * @type Number */
6723         BACKSPACE : 8,
6724         /** Key constant 
6725         * @type Number */
6726         TAB : 9,
6727         /** Key constant 
6728         * @type Number */
6729         RETURN : 13,
6730         /** Key constant 
6731         * @type Number */
6732         ENTER : 13,
6733         /** Key constant 
6734         * @type Number */
6735         SHIFT : 16,
6736         /** Key constant 
6737         * @type Number */
6738         CONTROL : 17,
6739         /** Key constant 
6740         * @type Number */
6741         ESC : 27,
6742         /** Key constant 
6743         * @type Number */
6744         SPACE : 32,
6745         /** Key constant 
6746         * @type Number */
6747         PAGEUP : 33,
6748         /** Key constant 
6749         * @type Number */
6750         PAGEDOWN : 34,
6751         /** Key constant 
6752         * @type Number */
6753         END : 35,
6754         /** Key constant 
6755         * @type Number */
6756         HOME : 36,
6757         /** Key constant 
6758         * @type Number */
6759         LEFT : 37,
6760         /** Key constant 
6761         * @type Number */
6762         UP : 38,
6763         /** Key constant 
6764         * @type Number */
6765         RIGHT : 39,
6766         /** Key constant 
6767         * @type Number */
6768         DOWN : 40,
6769         /** Key constant 
6770         * @type Number */
6771         DELETE : 46,
6772         /** Key constant 
6773         * @type Number */
6774         F5 : 116,
6775
6776            /** @private */
6777         setEvent : function(e){
6778             if(e == this || (e && e.browserEvent)){ // already wrapped
6779                 return e;
6780             }
6781             this.browserEvent = e;
6782             if(e){
6783                 // normalize buttons
6784                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6785                 if(e.type == 'click' && this.button == -1){
6786                     this.button = 0;
6787                 }
6788                 this.type = e.type;
6789                 this.shiftKey = e.shiftKey;
6790                 // mac metaKey behaves like ctrlKey
6791                 this.ctrlKey = e.ctrlKey || e.metaKey;
6792                 this.altKey = e.altKey;
6793                 // in getKey these will be normalized for the mac
6794                 this.keyCode = e.keyCode;
6795                 // keyup warnings on firefox.
6796                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6797                 // cache the target for the delayed and or buffered events
6798                 this.target = E.getTarget(e);
6799                 // same for XY
6800                 this.xy = E.getXY(e);
6801             }else{
6802                 this.button = -1;
6803                 this.shiftKey = false;
6804                 this.ctrlKey = false;
6805                 this.altKey = false;
6806                 this.keyCode = 0;
6807                 this.charCode =0;
6808                 this.target = null;
6809                 this.xy = [0, 0];
6810             }
6811             return this;
6812         },
6813
6814         /**
6815          * Stop the event (preventDefault and stopPropagation)
6816          */
6817         stopEvent : function(){
6818             if(this.browserEvent){
6819                 if(this.browserEvent.type == 'mousedown'){
6820                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6821                 }
6822                 E.stopEvent(this.browserEvent);
6823             }
6824         },
6825
6826         /**
6827          * Prevents the browsers default handling of the event.
6828          */
6829         preventDefault : function(){
6830             if(this.browserEvent){
6831                 E.preventDefault(this.browserEvent);
6832             }
6833         },
6834
6835         /** @private */
6836         isNavKeyPress : function(){
6837             var k = this.keyCode;
6838             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6839             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6840         },
6841
6842         isSpecialKey : function(){
6843             var k = this.keyCode;
6844             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6845             (k == 16) || (k == 17) ||
6846             (k >= 18 && k <= 20) ||
6847             (k >= 33 && k <= 35) ||
6848             (k >= 36 && k <= 39) ||
6849             (k >= 44 && k <= 45);
6850         },
6851         /**
6852          * Cancels bubbling of the event.
6853          */
6854         stopPropagation : function(){
6855             if(this.browserEvent){
6856                 if(this.type == 'mousedown'){
6857                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6858                 }
6859                 E.stopPropagation(this.browserEvent);
6860             }
6861         },
6862
6863         /**
6864          * Gets the key code for the event.
6865          * @return {Number}
6866          */
6867         getCharCode : function(){
6868             return this.charCode || this.keyCode;
6869         },
6870
6871         /**
6872          * Returns a normalized keyCode for the event.
6873          * @return {Number} The key code
6874          */
6875         getKey : function(){
6876             var k = this.keyCode || this.charCode;
6877             return Roo.isSafari ? (safariKeys[k] || k) : k;
6878         },
6879
6880         /**
6881          * Gets the x coordinate of the event.
6882          * @return {Number}
6883          */
6884         getPageX : function(){
6885             return this.xy[0];
6886         },
6887
6888         /**
6889          * Gets the y coordinate of the event.
6890          * @return {Number}
6891          */
6892         getPageY : function(){
6893             return this.xy[1];
6894         },
6895
6896         /**
6897          * Gets the time of the event.
6898          * @return {Number}
6899          */
6900         getTime : function(){
6901             if(this.browserEvent){
6902                 return E.getTime(this.browserEvent);
6903             }
6904             return null;
6905         },
6906
6907         /**
6908          * Gets the page coordinates of the event.
6909          * @return {Array} The xy values like [x, y]
6910          */
6911         getXY : function(){
6912             return this.xy;
6913         },
6914
6915         /**
6916          * Gets the target for the event.
6917          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
6918          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
6919                 search as a number or element (defaults to 10 || document.body)
6920          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
6921          * @return {HTMLelement}
6922          */
6923         getTarget : function(selector, maxDepth, returnEl){
6924             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
6925         },
6926         /**
6927          * Gets the related target.
6928          * @return {HTMLElement}
6929          */
6930         getRelatedTarget : function(){
6931             if(this.browserEvent){
6932                 return E.getRelatedTarget(this.browserEvent);
6933             }
6934             return null;
6935         },
6936
6937         /**
6938          * Normalizes mouse wheel delta across browsers
6939          * @return {Number} The delta
6940          */
6941         getWheelDelta : function(){
6942             var e = this.browserEvent;
6943             var delta = 0;
6944             if(e.wheelDelta){ /* IE/Opera. */
6945                 delta = e.wheelDelta/120;
6946             }else if(e.detail){ /* Mozilla case. */
6947                 delta = -e.detail/3;
6948             }
6949             return delta;
6950         },
6951
6952         /**
6953          * Returns true if the control, meta, shift or alt key was pressed during this event.
6954          * @return {Boolean}
6955          */
6956         hasModifier : function(){
6957             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
6958         },
6959
6960         /**
6961          * Returns true if the target of this event equals el or is a child of el
6962          * @param {String/HTMLElement/Element} el
6963          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
6964          * @return {Boolean}
6965          */
6966         within : function(el, related){
6967             var t = this[related ? "getRelatedTarget" : "getTarget"]();
6968             return t && Roo.fly(el).contains(t);
6969         },
6970
6971         getPoint : function(){
6972             return new Roo.lib.Point(this.xy[0], this.xy[1]);
6973         }
6974     };
6975
6976     return new Roo.EventObjectImpl();
6977 }();
6978             
6979     /*
6980  * Based on:
6981  * Ext JS Library 1.1.1
6982  * Copyright(c) 2006-2007, Ext JS, LLC.
6983  *
6984  * Originally Released Under LGPL - original licence link has changed is not relivant.
6985  *
6986  * Fork - LGPL
6987  * <script type="text/javascript">
6988  */
6989
6990  
6991 // was in Composite Element!??!?!
6992  
6993 (function(){
6994     var D = Roo.lib.Dom;
6995     var E = Roo.lib.Event;
6996     var A = Roo.lib.Anim;
6997
6998     // local style camelizing for speed
6999     var propCache = {};
7000     var camelRe = /(-[a-z])/gi;
7001     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7002     var view = document.defaultView;
7003
7004 /**
7005  * @class Roo.Element
7006  * Represents an Element in the DOM.<br><br>
7007  * Usage:<br>
7008 <pre><code>
7009 var el = Roo.get("my-div");
7010
7011 // or with getEl
7012 var el = getEl("my-div");
7013
7014 // or with a DOM element
7015 var el = Roo.get(myDivElement);
7016 </code></pre>
7017  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7018  * each call instead of constructing a new one.<br><br>
7019  * <b>Animations</b><br />
7020  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7021  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7022 <pre>
7023 Option    Default   Description
7024 --------- --------  ---------------------------------------------
7025 duration  .35       The duration of the animation in seconds
7026 easing    easeOut   The YUI easing method
7027 callback  none      A function to execute when the anim completes
7028 scope     this      The scope (this) of the callback function
7029 </pre>
7030 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7031 * manipulate the animation. Here's an example:
7032 <pre><code>
7033 var el = Roo.get("my-div");
7034
7035 // no animation
7036 el.setWidth(100);
7037
7038 // default animation
7039 el.setWidth(100, true);
7040
7041 // animation with some options set
7042 el.setWidth(100, {
7043     duration: 1,
7044     callback: this.foo,
7045     scope: this
7046 });
7047
7048 // using the "anim" property to get the Anim object
7049 var opt = {
7050     duration: 1,
7051     callback: this.foo,
7052     scope: this
7053 };
7054 el.setWidth(100, opt);
7055 ...
7056 if(opt.anim.isAnimated()){
7057     opt.anim.stop();
7058 }
7059 </code></pre>
7060 * <b> Composite (Collections of) Elements</b><br />
7061  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7062  * @constructor Create a new Element directly.
7063  * @param {String/HTMLElement} element
7064  * @param {Boolean} forceNew (optional) By default the constructor checks to see if there is already an instance of this element in the cache and if there is it returns the same instance. This will skip that check (useful for extending this class).
7065  */
7066     Roo.Element = function(element, forceNew){
7067         var dom = typeof element == "string" ?
7068                 document.getElementById(element) : element;
7069         if(!dom){ // invalid id/element
7070             return null;
7071         }
7072         var id = dom.id;
7073         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7074             return Roo.Element.cache[id];
7075         }
7076
7077         /**
7078          * The DOM element
7079          * @type HTMLElement
7080          */
7081         this.dom = dom;
7082
7083         /**
7084          * The DOM element ID
7085          * @type String
7086          */
7087         this.id = id || Roo.id(dom);
7088     };
7089
7090     var El = Roo.Element;
7091
7092     El.prototype = {
7093         /**
7094          * The element's default display mode  (defaults to "")
7095          * @type String
7096          */
7097         originalDisplay : "",
7098
7099         visibilityMode : 1,
7100         /**
7101          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7102          * @type String
7103          */
7104         defaultUnit : "px",
7105         
7106         /**
7107          * Sets the element's visibility mode. When setVisible() is called it
7108          * will use this to determine whether to set the visibility or the display property.
7109          * @param visMode Element.VISIBILITY or Element.DISPLAY
7110          * @return {Roo.Element} this
7111          */
7112         setVisibilityMode : function(visMode){
7113             this.visibilityMode = visMode;
7114             return this;
7115         },
7116         /**
7117          * Convenience method for setVisibilityMode(Element.DISPLAY)
7118          * @param {String} display (optional) What to set display to when visible
7119          * @return {Roo.Element} this
7120          */
7121         enableDisplayMode : function(display){
7122             this.setVisibilityMode(El.DISPLAY);
7123             if(typeof display != "undefined") { this.originalDisplay = display; }
7124             return this;
7125         },
7126
7127         /**
7128          * Looks at this node and then at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7129          * @param {String} selector The simple selector to test
7130          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7131                 search as a number or element (defaults to 10 || document.body)
7132          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7133          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7134          */
7135         findParent : function(simpleSelector, maxDepth, returnEl){
7136             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7137             maxDepth = maxDepth || 50;
7138             if(typeof maxDepth != "number"){
7139                 stopEl = Roo.getDom(maxDepth);
7140                 maxDepth = 10;
7141             }
7142             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7143                 if(dq.is(p, simpleSelector)){
7144                     return returnEl ? Roo.get(p) : p;
7145                 }
7146                 depth++;
7147                 p = p.parentNode;
7148             }
7149             return null;
7150         },
7151
7152
7153         /**
7154          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7155          * @param {String} selector The simple selector to test
7156          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7157                 search as a number or element (defaults to 10 || document.body)
7158          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7159          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7160          */
7161         findParentNode : function(simpleSelector, maxDepth, returnEl){
7162             var p = Roo.fly(this.dom.parentNode, '_internal');
7163             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7164         },
7165
7166         /**
7167          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7168          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7169          * @param {String} selector The simple selector to test
7170          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7171                 search as a number or element (defaults to 10 || document.body)
7172          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7173          */
7174         up : function(simpleSelector, maxDepth){
7175             return this.findParentNode(simpleSelector, maxDepth, true);
7176         },
7177
7178
7179
7180         /**
7181          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7182          * @param {String} selector The simple selector to test
7183          * @return {Boolean} True if this element matches the selector, else false
7184          */
7185         is : function(simpleSelector){
7186             return Roo.DomQuery.is(this.dom, simpleSelector);
7187         },
7188
7189         /**
7190          * Perform animation on this element.
7191          * @param {Object} args The YUI animation control args
7192          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7193          * @param {Function} onComplete (optional) Function to call when animation completes
7194          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7195          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7196          * @return {Roo.Element} this
7197          */
7198         animate : function(args, duration, onComplete, easing, animType){
7199             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7200             return this;
7201         },
7202
7203         /*
7204          * @private Internal animation call
7205          */
7206         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7207             animType = animType || 'run';
7208             opt = opt || {};
7209             var anim = Roo.lib.Anim[animType](
7210                 this.dom, args,
7211                 (opt.duration || defaultDur) || .35,
7212                 (opt.easing || defaultEase) || 'easeOut',
7213                 function(){
7214                     Roo.callback(cb, this);
7215                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7216                 },
7217                 this
7218             );
7219             opt.anim = anim;
7220             return anim;
7221         },
7222
7223         // private legacy anim prep
7224         preanim : function(a, i){
7225             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7226         },
7227
7228         /**
7229          * Removes worthless text nodes
7230          * @param {Boolean} forceReclean (optional) By default the element
7231          * keeps track if it has been cleaned already so
7232          * you can call this over and over. However, if you update the element and
7233          * need to force a reclean, you can pass true.
7234          */
7235         clean : function(forceReclean){
7236             if(this.isCleaned && forceReclean !== true){
7237                 return this;
7238             }
7239             var ns = /\S/;
7240             var d = this.dom, n = d.firstChild, ni = -1;
7241             while(n){
7242                 var nx = n.nextSibling;
7243                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7244                     d.removeChild(n);
7245                 }else{
7246                     n.nodeIndex = ++ni;
7247                 }
7248                 n = nx;
7249             }
7250             this.isCleaned = true;
7251             return this;
7252         },
7253
7254         // private
7255         calcOffsetsTo : function(el){
7256             el = Roo.get(el);
7257             var d = el.dom;
7258             var restorePos = false;
7259             if(el.getStyle('position') == 'static'){
7260                 el.position('relative');
7261                 restorePos = true;
7262             }
7263             var x = 0, y =0;
7264             var op = this.dom;
7265             while(op && op != d && op.tagName != 'HTML'){
7266                 x+= op.offsetLeft;
7267                 y+= op.offsetTop;
7268                 op = op.offsetParent;
7269             }
7270             if(restorePos){
7271                 el.position('static');
7272             }
7273             return [x, y];
7274         },
7275
7276         /**
7277          * Scrolls this element into view within the passed container.
7278          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7279          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7280          * @return {Roo.Element} this
7281          */
7282         scrollIntoView : function(container, hscroll){
7283             var c = Roo.getDom(container) || document.body;
7284             var el = this.dom;
7285
7286             var o = this.calcOffsetsTo(c),
7287                 l = o[0],
7288                 t = o[1],
7289                 b = t+el.offsetHeight,
7290                 r = l+el.offsetWidth;
7291
7292             var ch = c.clientHeight;
7293             var ct = parseInt(c.scrollTop, 10);
7294             var cl = parseInt(c.scrollLeft, 10);
7295             var cb = ct + ch;
7296             var cr = cl + c.clientWidth;
7297
7298             if(t < ct){
7299                 c.scrollTop = t;
7300             }else if(b > cb){
7301                 c.scrollTop = b-ch;
7302             }
7303
7304             if(hscroll !== false){
7305                 if(l < cl){
7306                     c.scrollLeft = l;
7307                 }else if(r > cr){
7308                     c.scrollLeft = r-c.clientWidth;
7309                 }
7310             }
7311             return this;
7312         },
7313
7314         // private
7315         scrollChildIntoView : function(child, hscroll){
7316             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7317         },
7318
7319         /**
7320          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7321          * the new height may not be available immediately.
7322          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7323          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7324          * @param {Function} onComplete (optional) Function to call when animation completes
7325          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7326          * @return {Roo.Element} this
7327          */
7328         autoHeight : function(animate, duration, onComplete, easing){
7329             var oldHeight = this.getHeight();
7330             this.clip();
7331             this.setHeight(1); // force clipping
7332             setTimeout(function(){
7333                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7334                 if(!animate){
7335                     this.setHeight(height);
7336                     this.unclip();
7337                     if(typeof onComplete == "function"){
7338                         onComplete();
7339                     }
7340                 }else{
7341                     this.setHeight(oldHeight); // restore original height
7342                     this.setHeight(height, animate, duration, function(){
7343                         this.unclip();
7344                         if(typeof onComplete == "function") { onComplete(); }
7345                     }.createDelegate(this), easing);
7346                 }
7347             }.createDelegate(this), 0);
7348             return this;
7349         },
7350
7351         /**
7352          * Returns true if this element is an ancestor of the passed element
7353          * @param {HTMLElement/String} el The element to check
7354          * @return {Boolean} True if this element is an ancestor of el, else false
7355          */
7356         contains : function(el){
7357             if(!el){return false;}
7358             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7359         },
7360
7361         /**
7362          * Checks whether the element is currently visible using both visibility and display properties.
7363          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7364          * @return {Boolean} True if the element is currently visible, else false
7365          */
7366         isVisible : function(deep) {
7367             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7368             if(deep !== true || !vis){
7369                 return vis;
7370             }
7371             var p = this.dom.parentNode;
7372             while(p && p.tagName.toLowerCase() != "body"){
7373                 if(!Roo.fly(p, '_isVisible').isVisible()){
7374                     return false;
7375                 }
7376                 p = p.parentNode;
7377             }
7378             return true;
7379         },
7380
7381         /**
7382          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7383          * @param {String} selector The CSS selector
7384          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7385          * @return {CompositeElement/CompositeElementLite} The composite element
7386          */
7387         select : function(selector, unique){
7388             return El.select(selector, unique, this.dom);
7389         },
7390
7391         /**
7392          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7393          * @param {String} selector The CSS selector
7394          * @return {Array} An array of the matched nodes
7395          */
7396         query : function(selector, unique){
7397             return Roo.DomQuery.select(selector, this.dom);
7398         },
7399
7400         /**
7401          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7402          * @param {String} selector The CSS selector
7403          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7404          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7405          */
7406         child : function(selector, returnDom){
7407             var n = Roo.DomQuery.selectNode(selector, this.dom);
7408             return returnDom ? n : Roo.get(n);
7409         },
7410
7411         /**
7412          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7413          * @param {String} selector The CSS selector
7414          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7415          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7416          */
7417         down : function(selector, returnDom){
7418             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7419             return returnDom ? n : Roo.get(n);
7420         },
7421
7422         /**
7423          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7424          * @param {String} group The group the DD object is member of
7425          * @param {Object} config The DD config object
7426          * @param {Object} overrides An object containing methods to override/implement on the DD object
7427          * @return {Roo.dd.DD} The DD object
7428          */
7429         initDD : function(group, config, overrides){
7430             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7431             return Roo.apply(dd, overrides);
7432         },
7433
7434         /**
7435          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7436          * @param {String} group The group the DDProxy object is member of
7437          * @param {Object} config The DDProxy config object
7438          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7439          * @return {Roo.dd.DDProxy} The DDProxy object
7440          */
7441         initDDProxy : function(group, config, overrides){
7442             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7443             return Roo.apply(dd, overrides);
7444         },
7445
7446         /**
7447          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7448          * @param {String} group The group the DDTarget object is member of
7449          * @param {Object} config The DDTarget config object
7450          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7451          * @return {Roo.dd.DDTarget} The DDTarget object
7452          */
7453         initDDTarget : function(group, config, overrides){
7454             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7455             return Roo.apply(dd, overrides);
7456         },
7457
7458         /**
7459          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7460          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7461          * @param {Boolean} visible Whether the element is visible
7462          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7463          * @return {Roo.Element} this
7464          */
7465          setVisible : function(visible, animate){
7466             if(!animate || !A){
7467                 if(this.visibilityMode == El.DISPLAY){
7468                     this.setDisplayed(visible);
7469                 }else{
7470                     this.fixDisplay();
7471                     this.dom.style.visibility = visible ? "visible" : "hidden";
7472                 }
7473             }else{
7474                 // closure for composites
7475                 var dom = this.dom;
7476                 var visMode = this.visibilityMode;
7477                 if(visible){
7478                     this.setOpacity(.01);
7479                     this.setVisible(true);
7480                 }
7481                 this.anim({opacity: { to: (visible?1:0) }},
7482                       this.preanim(arguments, 1),
7483                       null, .35, 'easeIn', function(){
7484                          if(!visible){
7485                              if(visMode == El.DISPLAY){
7486                                  dom.style.display = "none";
7487                              }else{
7488                                  dom.style.visibility = "hidden";
7489                              }
7490                              Roo.get(dom).setOpacity(1);
7491                          }
7492                      });
7493             }
7494             return this;
7495         },
7496
7497         /**
7498          * Returns true if display is not "none"
7499          * @return {Boolean}
7500          */
7501         isDisplayed : function() {
7502             return this.getStyle("display") != "none";
7503         },
7504
7505         /**
7506          * Toggles the element's visibility or display, depending on visibility mode.
7507          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7508          * @return {Roo.Element} this
7509          */
7510         toggle : function(animate){
7511             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7512             return this;
7513         },
7514
7515         /**
7516          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7517          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7518          * @return {Roo.Element} this
7519          */
7520         setDisplayed : function(value) {
7521             if(typeof value == "boolean"){
7522                value = value ? this.originalDisplay : "none";
7523             }
7524             this.setStyle("display", value);
7525             return this;
7526         },
7527
7528         /**
7529          * Tries to focus the element. Any exceptions are caught and ignored.
7530          * @return {Roo.Element} this
7531          */
7532         focus : function() {
7533             try{
7534                 this.dom.focus();
7535             }catch(e){}
7536             return this;
7537         },
7538
7539         /**
7540          * Tries to blur the element. Any exceptions are caught and ignored.
7541          * @return {Roo.Element} this
7542          */
7543         blur : function() {
7544             try{
7545                 this.dom.blur();
7546             }catch(e){}
7547             return this;
7548         },
7549
7550         /**
7551          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7552          * @param {String/Array} className The CSS class to add, or an array of classes
7553          * @return {Roo.Element} this
7554          */
7555         addClass : function(className){
7556             if(className instanceof Array){
7557                 for(var i = 0, len = className.length; i < len; i++) {
7558                     this.addClass(className[i]);
7559                 }
7560             }else{
7561                 if(className && !this.hasClass(className)){
7562                     this.dom.className = this.dom.className + " " + className;
7563                 }
7564             }
7565             return this;
7566         },
7567
7568         /**
7569          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7570          * @param {String/Array} className The CSS class to add, or an array of classes
7571          * @return {Roo.Element} this
7572          */
7573         radioClass : function(className){
7574             var siblings = this.dom.parentNode.childNodes;
7575             for(var i = 0; i < siblings.length; i++) {
7576                 var s = siblings[i];
7577                 if(s.nodeType == 1){
7578                     Roo.get(s).removeClass(className);
7579                 }
7580             }
7581             this.addClass(className);
7582             return this;
7583         },
7584
7585         /**
7586          * Removes one or more CSS classes from the element.
7587          * @param {String/Array} className The CSS class to remove, or an array of classes
7588          * @return {Roo.Element} this
7589          */
7590         removeClass : function(className){
7591             if(!className || !this.dom.className){
7592                 return this;
7593             }
7594             if(className instanceof Array){
7595                 for(var i = 0, len = className.length; i < len; i++) {
7596                     this.removeClass(className[i]);
7597                 }
7598             }else{
7599                 if(this.hasClass(className)){
7600                     var re = this.classReCache[className];
7601                     if (!re) {
7602                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7603                        this.classReCache[className] = re;
7604                     }
7605                     this.dom.className =
7606                         this.dom.className.replace(re, " ");
7607                 }
7608             }
7609             return this;
7610         },
7611
7612         // private
7613         classReCache: {},
7614
7615         /**
7616          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7617          * @param {String} className The CSS class to toggle
7618          * @return {Roo.Element} this
7619          */
7620         toggleClass : function(className){
7621             if(this.hasClass(className)){
7622                 this.removeClass(className);
7623             }else{
7624                 this.addClass(className);
7625             }
7626             return this;
7627         },
7628
7629         /**
7630          * Checks if the specified CSS class exists on this element's DOM node.
7631          * @param {String} className The CSS class to check for
7632          * @return {Boolean} True if the class exists, else false
7633          */
7634         hasClass : function(className){
7635             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7636         },
7637
7638         /**
7639          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7640          * @param {String} oldClassName The CSS class to replace
7641          * @param {String} newClassName The replacement CSS class
7642          * @return {Roo.Element} this
7643          */
7644         replaceClass : function(oldClassName, newClassName){
7645             this.removeClass(oldClassName);
7646             this.addClass(newClassName);
7647             return this;
7648         },
7649
7650         /**
7651          * Returns an object with properties matching the styles requested.
7652          * For example, el.getStyles('color', 'font-size', 'width') might return
7653          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7654          * @param {String} style1 A style name
7655          * @param {String} style2 A style name
7656          * @param {String} etc.
7657          * @return {Object} The style object
7658          */
7659         getStyles : function(){
7660             var a = arguments, len = a.length, r = {};
7661             for(var i = 0; i < len; i++){
7662                 r[a[i]] = this.getStyle(a[i]);
7663             }
7664             return r;
7665         },
7666
7667         /**
7668          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7669          * @param {String} property The style property whose value is returned.
7670          * @return {String} The current value of the style property for this element.
7671          */
7672         getStyle : function(){
7673             return view && view.getComputedStyle ?
7674                 function(prop){
7675                     var el = this.dom, v, cs, camel;
7676                     if(prop == 'float'){
7677                         prop = "cssFloat";
7678                     }
7679                     if(el.style && (v = el.style[prop])){
7680                         return v;
7681                     }
7682                     if(cs = view.getComputedStyle(el, "")){
7683                         if(!(camel = propCache[prop])){
7684                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7685                         }
7686                         return cs[camel];
7687                     }
7688                     return null;
7689                 } :
7690                 function(prop){
7691                     var el = this.dom, v, cs, camel;
7692                     if(prop == 'opacity'){
7693                         if(typeof el.style.filter == 'string'){
7694                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7695                             if(m){
7696                                 var fv = parseFloat(m[1]);
7697                                 if(!isNaN(fv)){
7698                                     return fv ? fv / 100 : 0;
7699                                 }
7700                             }
7701                         }
7702                         return 1;
7703                     }else if(prop == 'float'){
7704                         prop = "styleFloat";
7705                     }
7706                     if(!(camel = propCache[prop])){
7707                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7708                     }
7709                     if(v = el.style[camel]){
7710                         return v;
7711                     }
7712                     if(cs = el.currentStyle){
7713                         return cs[camel];
7714                     }
7715                     return null;
7716                 };
7717         }(),
7718
7719         /**
7720          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7721          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7722          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7723          * @return {Roo.Element} this
7724          */
7725         setStyle : function(prop, value){
7726             if(typeof prop == "string"){
7727                 
7728                 if (prop == 'float') {
7729                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7730                     return this;
7731                 }
7732                 
7733                 var camel;
7734                 if(!(camel = propCache[prop])){
7735                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7736                 }
7737                 
7738                 if(camel == 'opacity') {
7739                     this.setOpacity(value);
7740                 }else{
7741                     this.dom.style[camel] = value;
7742                 }
7743             }else{
7744                 for(var style in prop){
7745                     if(typeof prop[style] != "function"){
7746                        this.setStyle(style, prop[style]);
7747                     }
7748                 }
7749             }
7750             return this;
7751         },
7752
7753         /**
7754          * More flexible version of {@link #setStyle} for setting style properties.
7755          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7756          * a function which returns such a specification.
7757          * @return {Roo.Element} this
7758          */
7759         applyStyles : function(style){
7760             Roo.DomHelper.applyStyles(this.dom, style);
7761             return this;
7762         },
7763
7764         /**
7765           * Gets the current X position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7766           * @return {Number} The X position of the element
7767           */
7768         getX : function(){
7769             return D.getX(this.dom);
7770         },
7771
7772         /**
7773           * Gets the current Y position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7774           * @return {Number} The Y position of the element
7775           */
7776         getY : function(){
7777             return D.getY(this.dom);
7778         },
7779
7780         /**
7781           * Gets the current position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7782           * @return {Array} The XY position of the element
7783           */
7784         getXY : function(){
7785             return D.getXY(this.dom);
7786         },
7787
7788         /**
7789          * Sets the X position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7790          * @param {Number} The X position of the element
7791          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7792          * @return {Roo.Element} this
7793          */
7794         setX : function(x, animate){
7795             if(!animate || !A){
7796                 D.setX(this.dom, x);
7797             }else{
7798                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7799             }
7800             return this;
7801         },
7802
7803         /**
7804          * Sets the Y position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7805          * @param {Number} The Y position of the element
7806          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7807          * @return {Roo.Element} this
7808          */
7809         setY : function(y, animate){
7810             if(!animate || !A){
7811                 D.setY(this.dom, y);
7812             }else{
7813                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7814             }
7815             return this;
7816         },
7817
7818         /**
7819          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7820          * @param {String} left The left CSS property value
7821          * @return {Roo.Element} this
7822          */
7823         setLeft : function(left){
7824             this.setStyle("left", this.addUnits(left));
7825             return this;
7826         },
7827
7828         /**
7829          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7830          * @param {String} top The top CSS property value
7831          * @return {Roo.Element} this
7832          */
7833         setTop : function(top){
7834             this.setStyle("top", this.addUnits(top));
7835             return this;
7836         },
7837
7838         /**
7839          * Sets the element's CSS right style.
7840          * @param {String} right The right CSS property value
7841          * @return {Roo.Element} this
7842          */
7843         setRight : function(right){
7844             this.setStyle("right", this.addUnits(right));
7845             return this;
7846         },
7847
7848         /**
7849          * Sets the element's CSS bottom style.
7850          * @param {String} bottom The bottom CSS property value
7851          * @return {Roo.Element} this
7852          */
7853         setBottom : function(bottom){
7854             this.setStyle("bottom", this.addUnits(bottom));
7855             return this;
7856         },
7857
7858         /**
7859          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7860          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7861          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7862          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7863          * @return {Roo.Element} this
7864          */
7865         setXY : function(pos, animate){
7866             if(!animate || !A){
7867                 D.setXY(this.dom, pos);
7868             }else{
7869                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
7870             }
7871             return this;
7872         },
7873
7874         /**
7875          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7876          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7877          * @param {Number} x X value for new position (coordinates are page-based)
7878          * @param {Number} y Y value for new position (coordinates are page-based)
7879          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7880          * @return {Roo.Element} this
7881          */
7882         setLocation : function(x, y, animate){
7883             this.setXY([x, y], this.preanim(arguments, 2));
7884             return this;
7885         },
7886
7887         /**
7888          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7889          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7890          * @param {Number} x X value for new position (coordinates are page-based)
7891          * @param {Number} y Y value for new position (coordinates are page-based)
7892          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7893          * @return {Roo.Element} this
7894          */
7895         moveTo : function(x, y, animate){
7896             this.setXY([x, y], this.preanim(arguments, 2));
7897             return this;
7898         },
7899
7900         /**
7901          * Returns the region of the given element.
7902          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
7903          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
7904          */
7905         getRegion : function(){
7906             return D.getRegion(this.dom);
7907         },
7908
7909         /**
7910          * Returns the offset height of the element
7911          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
7912          * @return {Number} The element's height
7913          */
7914         getHeight : function(contentHeight){
7915             var h = this.dom.offsetHeight || 0;
7916             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
7917         },
7918
7919         /**
7920          * Returns the offset width of the element
7921          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
7922          * @return {Number} The element's width
7923          */
7924         getWidth : function(contentWidth){
7925             var w = this.dom.offsetWidth || 0;
7926             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
7927         },
7928
7929         /**
7930          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
7931          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
7932          * if a height has not been set using CSS.
7933          * @return {Number}
7934          */
7935         getComputedHeight : function(){
7936             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
7937             if(!h){
7938                 h = parseInt(this.getStyle('height'), 10) || 0;
7939                 if(!this.isBorderBox()){
7940                     h += this.getFrameWidth('tb');
7941                 }
7942             }
7943             return h;
7944         },
7945
7946         /**
7947          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
7948          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
7949          * if a width has not been set using CSS.
7950          * @return {Number}
7951          */
7952         getComputedWidth : function(){
7953             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
7954             if(!w){
7955                 w = parseInt(this.getStyle('width'), 10) || 0;
7956                 if(!this.isBorderBox()){
7957                     w += this.getFrameWidth('lr');
7958                 }
7959             }
7960             return w;
7961         },
7962
7963         /**
7964          * Returns the size of the element.
7965          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
7966          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
7967          */
7968         getSize : function(contentSize){
7969             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
7970         },
7971
7972         /**
7973          * Returns the width and height of the viewport.
7974          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
7975          */
7976         getViewSize : function(){
7977             var d = this.dom, doc = document, aw = 0, ah = 0;
7978             if(d == doc || d == doc.body){
7979                 return {width : D.getViewWidth(), height: D.getViewHeight()};
7980             }else{
7981                 return {
7982                     width : d.clientWidth,
7983                     height: d.clientHeight
7984                 };
7985             }
7986         },
7987
7988         /**
7989          * Returns the value of the "value" attribute
7990          * @param {Boolean} asNumber true to parse the value as a number
7991          * @return {String/Number}
7992          */
7993         getValue : function(asNumber){
7994             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
7995         },
7996
7997         // private
7998         adjustWidth : function(width){
7999             if(typeof width == "number"){
8000                 if(this.autoBoxAdjust && !this.isBorderBox()){
8001                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8002                 }
8003                 if(width < 0){
8004                     width = 0;
8005                 }
8006             }
8007             return width;
8008         },
8009
8010         // private
8011         adjustHeight : function(height){
8012             if(typeof height == "number"){
8013                if(this.autoBoxAdjust && !this.isBorderBox()){
8014                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8015                }
8016                if(height < 0){
8017                    height = 0;
8018                }
8019             }
8020             return height;
8021         },
8022
8023         /**
8024          * Set the width of the element
8025          * @param {Number} width The new width
8026          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8027          * @return {Roo.Element} this
8028          */
8029         setWidth : function(width, animate){
8030             width = this.adjustWidth(width);
8031             if(!animate || !A){
8032                 this.dom.style.width = this.addUnits(width);
8033             }else{
8034                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8035             }
8036             return this;
8037         },
8038
8039         /**
8040          * Set the height of the element
8041          * @param {Number} height The new height
8042          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8043          * @return {Roo.Element} this
8044          */
8045          setHeight : function(height, animate){
8046             height = this.adjustHeight(height);
8047             if(!animate || !A){
8048                 this.dom.style.height = this.addUnits(height);
8049             }else{
8050                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8051             }
8052             return this;
8053         },
8054
8055         /**
8056          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8057          * @param {Number} width The new width
8058          * @param {Number} height The new height
8059          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8060          * @return {Roo.Element} this
8061          */
8062          setSize : function(width, height, animate){
8063             if(typeof width == "object"){ // in case of object from getSize()
8064                 height = width.height; width = width.width;
8065             }
8066             width = this.adjustWidth(width); height = this.adjustHeight(height);
8067             if(!animate || !A){
8068                 this.dom.style.width = this.addUnits(width);
8069                 this.dom.style.height = this.addUnits(height);
8070             }else{
8071                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8072             }
8073             return this;
8074         },
8075
8076         /**
8077          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8078          * @param {Number} x X value for new position (coordinates are page-based)
8079          * @param {Number} y Y value for new position (coordinates are page-based)
8080          * @param {Number} width The new width
8081          * @param {Number} height The new height
8082          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8083          * @return {Roo.Element} this
8084          */
8085         setBounds : function(x, y, width, height, animate){
8086             if(!animate || !A){
8087                 this.setSize(width, height);
8088                 this.setLocation(x, y);
8089             }else{
8090                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8091                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8092                               this.preanim(arguments, 4), 'motion');
8093             }
8094             return this;
8095         },
8096
8097         /**
8098          * Sets the element's position and size the the specified region. If animation is true then width, height, x and y will be animated concurrently.
8099          * @param {Roo.lib.Region} region The region to fill
8100          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8101          * @return {Roo.Element} this
8102          */
8103         setRegion : function(region, animate){
8104             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8105             return this;
8106         },
8107
8108         /**
8109          * Appends an event handler
8110          *
8111          * @param {String}   eventName     The type of event to append
8112          * @param {Function} fn        The method the event invokes
8113          * @param {Object} scope       (optional) The scope (this object) of the fn
8114          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8115          */
8116         addListener : function(eventName, fn, scope, options){
8117             if (this.dom) {
8118                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8119             }
8120         },
8121
8122         /**
8123          * Removes an event handler from this element
8124          * @param {String} eventName the type of event to remove
8125          * @param {Function} fn the method the event invokes
8126          * @return {Roo.Element} this
8127          */
8128         removeListener : function(eventName, fn){
8129             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8130             return this;
8131         },
8132
8133         /**
8134          * Removes all previous added listeners from this element
8135          * @return {Roo.Element} this
8136          */
8137         removeAllListeners : function(){
8138             E.purgeElement(this.dom);
8139             return this;
8140         },
8141
8142         relayEvent : function(eventName, observable){
8143             this.on(eventName, function(e){
8144                 observable.fireEvent(eventName, e);
8145             });
8146         },
8147
8148         /**
8149          * Set the opacity of the element
8150          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8151          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8152          * @return {Roo.Element} this
8153          */
8154          setOpacity : function(opacity, animate){
8155             if(!animate || !A){
8156                 var s = this.dom.style;
8157                 if(Roo.isIE){
8158                     s.zoom = 1;
8159                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8160                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8161                 }else{
8162                     s.opacity = opacity;
8163                 }
8164             }else{
8165                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8166             }
8167             return this;
8168         },
8169
8170         /**
8171          * Gets the left X coordinate
8172          * @param {Boolean} local True to get the local css position instead of page coordinate
8173          * @return {Number}
8174          */
8175         getLeft : function(local){
8176             if(!local){
8177                 return this.getX();
8178             }else{
8179                 return parseInt(this.getStyle("left"), 10) || 0;
8180             }
8181         },
8182
8183         /**
8184          * Gets the right X coordinate of the element (element X position + element width)
8185          * @param {Boolean} local True to get the local css position instead of page coordinate
8186          * @return {Number}
8187          */
8188         getRight : function(local){
8189             if(!local){
8190                 return this.getX() + this.getWidth();
8191             }else{
8192                 return (this.getLeft(true) + this.getWidth()) || 0;
8193             }
8194         },
8195
8196         /**
8197          * Gets the top Y coordinate
8198          * @param {Boolean} local True to get the local css position instead of page coordinate
8199          * @return {Number}
8200          */
8201         getTop : function(local) {
8202             if(!local){
8203                 return this.getY();
8204             }else{
8205                 return parseInt(this.getStyle("top"), 10) || 0;
8206             }
8207         },
8208
8209         /**
8210          * Gets the bottom Y coordinate of the element (element Y position + element height)
8211          * @param {Boolean} local True to get the local css position instead of page coordinate
8212          * @return {Number}
8213          */
8214         getBottom : function(local){
8215             if(!local){
8216                 return this.getY() + this.getHeight();
8217             }else{
8218                 return (this.getTop(true) + this.getHeight()) || 0;
8219             }
8220         },
8221
8222         /**
8223         * Initializes positioning on this element. If a desired position is not passed, it will make the
8224         * the element positioned relative IF it is not already positioned.
8225         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8226         * @param {Number} zIndex (optional) The zIndex to apply
8227         * @param {Number} x (optional) Set the page X position
8228         * @param {Number} y (optional) Set the page Y position
8229         */
8230         position : function(pos, zIndex, x, y){
8231             if(!pos){
8232                if(this.getStyle('position') == 'static'){
8233                    this.setStyle('position', 'relative');
8234                }
8235             }else{
8236                 this.setStyle("position", pos);
8237             }
8238             if(zIndex){
8239                 this.setStyle("z-index", zIndex);
8240             }
8241             if(x !== undefined && y !== undefined){
8242                 this.setXY([x, y]);
8243             }else if(x !== undefined){
8244                 this.setX(x);
8245             }else if(y !== undefined){
8246                 this.setY(y);
8247             }
8248         },
8249
8250         /**
8251         * Clear positioning back to the default when the document was loaded
8252         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8253         * @return {Roo.Element} this
8254          */
8255         clearPositioning : function(value){
8256             value = value ||'';
8257             this.setStyle({
8258                 "left": value,
8259                 "right": value,
8260                 "top": value,
8261                 "bottom": value,
8262                 "z-index": "",
8263                 "position" : "static"
8264             });
8265             return this;
8266         },
8267
8268         /**
8269         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8270         * snapshot before performing an update and then restoring the element.
8271         * @return {Object}
8272         */
8273         getPositioning : function(){
8274             var l = this.getStyle("left");
8275             var t = this.getStyle("top");
8276             return {
8277                 "position" : this.getStyle("position"),
8278                 "left" : l,
8279                 "right" : l ? "" : this.getStyle("right"),
8280                 "top" : t,
8281                 "bottom" : t ? "" : this.getStyle("bottom"),
8282                 "z-index" : this.getStyle("z-index")
8283             };
8284         },
8285
8286         /**
8287          * Gets the width of the border(s) for the specified side(s)
8288          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8289          * passing lr would get the border (l)eft width + the border (r)ight width.
8290          * @return {Number} The width of the sides passed added together
8291          */
8292         getBorderWidth : function(side){
8293             return this.addStyles(side, El.borders);
8294         },
8295
8296         /**
8297          * Gets the width of the padding(s) for the specified side(s)
8298          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8299          * passing lr would get the padding (l)eft + the padding (r)ight.
8300          * @return {Number} The padding of the sides passed added together
8301          */
8302         getPadding : function(side){
8303             return this.addStyles(side, El.paddings);
8304         },
8305
8306         /**
8307         * Set positioning with an object returned by getPositioning().
8308         * @param {Object} posCfg
8309         * @return {Roo.Element} this
8310          */
8311         setPositioning : function(pc){
8312             this.applyStyles(pc);
8313             if(pc.right == "auto"){
8314                 this.dom.style.right = "";
8315             }
8316             if(pc.bottom == "auto"){
8317                 this.dom.style.bottom = "";
8318             }
8319             return this;
8320         },
8321
8322         // private
8323         fixDisplay : function(){
8324             if(this.getStyle("display") == "none"){
8325                 this.setStyle("visibility", "hidden");
8326                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8327                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8328                     this.setStyle("display", "block");
8329                 }
8330             }
8331         },
8332
8333         /**
8334          * Quick set left and top adding default units
8335          * @param {String} left The left CSS property value
8336          * @param {String} top The top CSS property value
8337          * @return {Roo.Element} this
8338          */
8339          setLeftTop : function(left, top){
8340             this.dom.style.left = this.addUnits(left);
8341             this.dom.style.top = this.addUnits(top);
8342             return this;
8343         },
8344
8345         /**
8346          * Move this element relative to its current position.
8347          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8348          * @param {Number} distance How far to move the element in pixels
8349          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8350          * @return {Roo.Element} this
8351          */
8352          move : function(direction, distance, animate){
8353             var xy = this.getXY();
8354             direction = direction.toLowerCase();
8355             switch(direction){
8356                 case "l":
8357                 case "left":
8358                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8359                     break;
8360                case "r":
8361                case "right":
8362                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8363                     break;
8364                case "t":
8365                case "top":
8366                case "up":
8367                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8368                     break;
8369                case "b":
8370                case "bottom":
8371                case "down":
8372                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8373                     break;
8374             }
8375             return this;
8376         },
8377
8378         /**
8379          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8380          * @return {Roo.Element} this
8381          */
8382         clip : function(){
8383             if(!this.isClipped){
8384                this.isClipped = true;
8385                this.originalClip = {
8386                    "o": this.getStyle("overflow"),
8387                    "x": this.getStyle("overflow-x"),
8388                    "y": this.getStyle("overflow-y")
8389                };
8390                this.setStyle("overflow", "hidden");
8391                this.setStyle("overflow-x", "hidden");
8392                this.setStyle("overflow-y", "hidden");
8393             }
8394             return this;
8395         },
8396
8397         /**
8398          *  Return clipping (overflow) to original clipping before clip() was called
8399          * @return {Roo.Element} this
8400          */
8401         unclip : function(){
8402             if(this.isClipped){
8403                 this.isClipped = false;
8404                 var o = this.originalClip;
8405                 if(o.o){this.setStyle("overflow", o.o);}
8406                 if(o.x){this.setStyle("overflow-x", o.x);}
8407                 if(o.y){this.setStyle("overflow-y", o.y);}
8408             }
8409             return this;
8410         },
8411
8412
8413         /**
8414          * Gets the x,y coordinates specified by the anchor position on the element.
8415          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8416          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8417          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8418          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8419          * @return {Array} [x, y] An array containing the element's x and y coordinates
8420          */
8421         getAnchorXY : function(anchor, local, s){
8422             //Passing a different size is useful for pre-calculating anchors,
8423             //especially for anchored animations that change the el size.
8424
8425             var w, h, vp = false;
8426             if(!s){
8427                 var d = this.dom;
8428                 if(d == document.body || d == document){
8429                     vp = true;
8430                     w = D.getViewWidth(); h = D.getViewHeight();
8431                 }else{
8432                     w = this.getWidth(); h = this.getHeight();
8433                 }
8434             }else{
8435                 w = s.width;  h = s.height;
8436             }
8437             var x = 0, y = 0, r = Math.round;
8438             switch((anchor || "tl").toLowerCase()){
8439                 case "c":
8440                     x = r(w*.5);
8441                     y = r(h*.5);
8442                 break;
8443                 case "t":
8444                     x = r(w*.5);
8445                     y = 0;
8446                 break;
8447                 case "l":
8448                     x = 0;
8449                     y = r(h*.5);
8450                 break;
8451                 case "r":
8452                     x = w;
8453                     y = r(h*.5);
8454                 break;
8455                 case "b":
8456                     x = r(w*.5);
8457                     y = h;
8458                 break;
8459                 case "tl":
8460                     x = 0;
8461                     y = 0;
8462                 break;
8463                 case "bl":
8464                     x = 0;
8465                     y = h;
8466                 break;
8467                 case "br":
8468                     x = w;
8469                     y = h;
8470                 break;
8471                 case "tr":
8472                     x = w;
8473                     y = 0;
8474                 break;
8475             }
8476             if(local === true){
8477                 return [x, y];
8478             }
8479             if(vp){
8480                 var sc = this.getScroll();
8481                 return [x + sc.left, y + sc.top];
8482             }
8483             //Add the element's offset xy
8484             var o = this.getXY();
8485             return [x+o[0], y+o[1]];
8486         },
8487
8488         /**
8489          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8490          * supported position values.
8491          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8492          * @param {String} position The position to align to.
8493          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8494          * @return {Array} [x, y]
8495          */
8496         getAlignToXY : function(el, p, o){
8497             el = Roo.get(el);
8498             var d = this.dom;
8499             if(!el.dom){
8500                 throw "Element.alignTo with an element that doesn't exist";
8501             }
8502             var c = false; //constrain to viewport
8503             var p1 = "", p2 = "";
8504             o = o || [0,0];
8505
8506             if(!p){
8507                 p = "tl-bl";
8508             }else if(p == "?"){
8509                 p = "tl-bl?";
8510             }else if(p.indexOf("-") == -1){
8511                 p = "tl-" + p;
8512             }
8513             p = p.toLowerCase();
8514             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8515             if(!m){
8516                throw "Element.alignTo with an invalid alignment " + p;
8517             }
8518             p1 = m[1]; p2 = m[2]; c = !!m[3];
8519
8520             //Subtract the aligned el's internal xy from the target's offset xy
8521             //plus custom offset to get the aligned el's new offset xy
8522             var a1 = this.getAnchorXY(p1, true);
8523             var a2 = el.getAnchorXY(p2, false);
8524             var x = a2[0] - a1[0] + o[0];
8525             var y = a2[1] - a1[1] + o[1];
8526             if(c){
8527                 //constrain the aligned el to viewport if necessary
8528                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8529                 // 5px of margin for ie
8530                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8531
8532                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8533                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8534                 //otherwise swap the aligned el to the opposite border of the target.
8535                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8536                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8537                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t"));
8538                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8539
8540                var doc = document;
8541                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8542                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8543
8544                if((x+w) > dw + scrollX){
8545                     x = swapX ? r.left-w : dw+scrollX-w;
8546                 }
8547                if(x < scrollX){
8548                    x = swapX ? r.right : scrollX;
8549                }
8550                if((y+h) > dh + scrollY){
8551                     y = swapY ? r.top-h : dh+scrollY-h;
8552                 }
8553                if (y < scrollY){
8554                    y = swapY ? r.bottom : scrollY;
8555                }
8556             }
8557             return [x,y];
8558         },
8559
8560         // private
8561         getConstrainToXY : function(){
8562             var os = {top:0, left:0, bottom:0, right: 0};
8563
8564             return function(el, local, offsets, proposedXY){
8565                 el = Roo.get(el);
8566                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8567
8568                 var vw, vh, vx = 0, vy = 0;
8569                 if(el.dom == document.body || el.dom == document){
8570                     vw = Roo.lib.Dom.getViewWidth();
8571                     vh = Roo.lib.Dom.getViewHeight();
8572                 }else{
8573                     vw = el.dom.clientWidth;
8574                     vh = el.dom.clientHeight;
8575                     if(!local){
8576                         var vxy = el.getXY();
8577                         vx = vxy[0];
8578                         vy = vxy[1];
8579                     }
8580                 }
8581
8582                 var s = el.getScroll();
8583
8584                 vx += offsets.left + s.left;
8585                 vy += offsets.top + s.top;
8586
8587                 vw -= offsets.right;
8588                 vh -= offsets.bottom;
8589
8590                 var vr = vx+vw;
8591                 var vb = vy+vh;
8592
8593                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8594                 var x = xy[0], y = xy[1];
8595                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8596
8597                 // only move it if it needs it
8598                 var moved = false;
8599
8600                 // first validate right/bottom
8601                 if((x + w) > vr){
8602                     x = vr - w;
8603                     moved = true;
8604                 }
8605                 if((y + h) > vb){
8606                     y = vb - h;
8607                     moved = true;
8608                 }
8609                 // then make sure top/left isn't negative
8610                 if(x < vx){
8611                     x = vx;
8612                     moved = true;
8613                 }
8614                 if(y < vy){
8615                     y = vy;
8616                     moved = true;
8617                 }
8618                 return moved ? [x, y] : false;
8619             };
8620         }(),
8621
8622         // private
8623         adjustForConstraints : function(xy, parent, offsets){
8624             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8625         },
8626
8627         /**
8628          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8629          * document it aligns it to the viewport.
8630          * The position parameter is optional, and can be specified in any one of the following formats:
8631          * <ul>
8632          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8633          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8634          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8635          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8636          *   <li><b>Two anchors</b>: If two values from the table below are passed separated by a dash, the first value is used as the
8637          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8638          * </ul>
8639          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8640          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8641          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8642          * that specified in order to enforce the viewport constraints.
8643          * Following are all of the supported anchor positions:
8644     <pre>
8645     Value  Description
8646     -----  -----------------------------
8647     tl     The top left corner (default)
8648     t      The center of the top edge
8649     tr     The top right corner
8650     l      The center of the left edge
8651     c      In the center of the element
8652     r      The center of the right edge
8653     bl     The bottom left corner
8654     b      The center of the bottom edge
8655     br     The bottom right corner
8656     </pre>
8657     Example Usage:
8658     <pre><code>
8659     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8660     el.alignTo("other-el");
8661
8662     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8663     el.alignTo("other-el", "tr?");
8664
8665     // align the bottom right corner of el with the center left edge of other-el
8666     el.alignTo("other-el", "br-l?");
8667
8668     // align the center of el with the bottom left corner of other-el and
8669     // adjust the x position by -6 pixels (and the y position by 0)
8670     el.alignTo("other-el", "c-bl", [-6, 0]);
8671     </code></pre>
8672          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8673          * @param {String} position The position to align to.
8674          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8675          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8676          * @return {Roo.Element} this
8677          */
8678         alignTo : function(element, position, offsets, animate){
8679             var xy = this.getAlignToXY(element, position, offsets);
8680             this.setXY(xy, this.preanim(arguments, 3));
8681             return this;
8682         },
8683
8684         /**
8685          * Anchors an element to another element and realigns it when the window is resized.
8686          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8687          * @param {String} position The position to align to.
8688          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8689          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8690          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8691          * is a number, it is used as the buffer delay (defaults to 50ms).
8692          * @param {Function} callback The function to call after the animation finishes
8693          * @return {Roo.Element} this
8694          */
8695         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8696             var action = function(){
8697                 this.alignTo(el, alignment, offsets, animate);
8698                 Roo.callback(callback, this);
8699             };
8700             Roo.EventManager.onWindowResize(action, this);
8701             var tm = typeof monitorScroll;
8702             if(tm != 'undefined'){
8703                 Roo.EventManager.on(window, 'scroll', action, this,
8704                     {buffer: tm == 'number' ? monitorScroll : 50});
8705             }
8706             action.call(this); // align immediately
8707             return this;
8708         },
8709         /**
8710          * Clears any opacity settings from this element. Required in some cases for IE.
8711          * @return {Roo.Element} this
8712          */
8713         clearOpacity : function(){
8714             if (window.ActiveXObject) {
8715                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8716                     this.dom.style.filter = "";
8717                 }
8718             } else {
8719                 this.dom.style.opacity = "";
8720                 this.dom.style["-moz-opacity"] = "";
8721                 this.dom.style["-khtml-opacity"] = "";
8722             }
8723             return this;
8724         },
8725
8726         /**
8727          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8728          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8729          * @return {Roo.Element} this
8730          */
8731         hide : function(animate){
8732             this.setVisible(false, this.preanim(arguments, 0));
8733             return this;
8734         },
8735
8736         /**
8737         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8738         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8739          * @return {Roo.Element} this
8740          */
8741         show : function(animate){
8742             this.setVisible(true, this.preanim(arguments, 0));
8743             return this;
8744         },
8745
8746         /**
8747          * @private Test if size has a unit, otherwise appends the default
8748          */
8749         addUnits : function(size){
8750             return Roo.Element.addUnits(size, this.defaultUnit);
8751         },
8752
8753         /**
8754          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8755          * @return {Roo.Element} this
8756          */
8757         beginMeasure : function(){
8758             var el = this.dom;
8759             if(el.offsetWidth || el.offsetHeight){
8760                 return this; // offsets work already
8761             }
8762             var changed = [];
8763             var p = this.dom, b = document.body; // start with this element
8764             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8765                 var pe = Roo.get(p);
8766                 if(pe.getStyle('display') == 'none'){
8767                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8768                     p.style.visibility = "hidden";
8769                     p.style.display = "block";
8770                 }
8771                 p = p.parentNode;
8772             }
8773             this._measureChanged = changed;
8774             return this;
8775
8776         },
8777
8778         /**
8779          * Restores displays to before beginMeasure was called
8780          * @return {Roo.Element} this
8781          */
8782         endMeasure : function(){
8783             var changed = this._measureChanged;
8784             if(changed){
8785                 for(var i = 0, len = changed.length; i < len; i++) {
8786                     var r = changed[i];
8787                     r.el.style.visibility = r.visibility;
8788                     r.el.style.display = "none";
8789                 }
8790                 this._measureChanged = null;
8791             }
8792             return this;
8793         },
8794
8795         /**
8796         * Update the innerHTML of this element, optionally searching for and processing scripts
8797         * @param {String} html The new HTML
8798         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8799         * @param {Function} callback For async script loading you can be noticed when the update completes
8800         * @return {Roo.Element} this
8801          */
8802         update : function(html, loadScripts, callback){
8803             if(typeof html == "undefined"){
8804                 html = "";
8805             }
8806             if(loadScripts !== true){
8807                 this.dom.innerHTML = html;
8808                 if(typeof callback == "function"){
8809                     callback();
8810                 }
8811                 return this;
8812             }
8813             var id = Roo.id();
8814             var dom = this.dom;
8815
8816             html += '<span id="' + id + '"></span>';
8817
8818             E.onAvailable(id, function(){
8819                 var hd = document.getElementsByTagName("head")[0];
8820                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8821                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8822                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8823
8824                 var match;
8825                 while(match = re.exec(html)){
8826                     var attrs = match[1];
8827                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8828                     if(srcMatch && srcMatch[2]){
8829                        var s = document.createElement("script");
8830                        s.src = srcMatch[2];
8831                        var typeMatch = attrs.match(typeRe);
8832                        if(typeMatch && typeMatch[2]){
8833                            s.type = typeMatch[2];
8834                        }
8835                        hd.appendChild(s);
8836                     }else if(match[2] && match[2].length > 0){
8837                         if(window.execScript) {
8838                            window.execScript(match[2]);
8839                         } else {
8840                             /**
8841                              * eval:var:id
8842                              * eval:var:dom
8843                              * eval:var:html
8844                              * 
8845                              */
8846                            window.eval(match[2]);
8847                         }
8848                     }
8849                 }
8850                 var el = document.getElementById(id);
8851                 if(el){el.parentNode.removeChild(el);}
8852                 if(typeof callback == "function"){
8853                     callback();
8854                 }
8855             });
8856             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
8857             return this;
8858         },
8859
8860         /**
8861          * Direct access to the UpdateManager update() method (takes the same parameters).
8862          * @param {String/Function} url The url for this request or a function to call to get the url
8863          * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
8864          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
8865          * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used url. If true, it will not store the url.
8866          * @return {Roo.Element} this
8867          */
8868         load : function(){
8869             var um = this.getUpdateManager();
8870             um.update.apply(um, arguments);
8871             return this;
8872         },
8873
8874         /**
8875         * Gets this element's UpdateManager
8876         * @return {Roo.UpdateManager} The UpdateManager
8877         */
8878         getUpdateManager : function(){
8879             if(!this.updateManager){
8880                 this.updateManager = new Roo.UpdateManager(this);
8881             }
8882             return this.updateManager;
8883         },
8884
8885         /**
8886          * Disables text selection for this element (normalized across browsers)
8887          * @return {Roo.Element} this
8888          */
8889         unselectable : function(){
8890             this.dom.unselectable = "on";
8891             this.swallowEvent("selectstart", true);
8892             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
8893             this.addClass("x-unselectable");
8894             return this;
8895         },
8896
8897         /**
8898         * Calculates the x, y to center this element on the screen
8899         * @return {Array} The x, y values [x, y]
8900         */
8901         getCenterXY : function(){
8902             return this.getAlignToXY(document, 'c-c');
8903         },
8904
8905         /**
8906         * Centers the Element in either the viewport, or another Element.
8907         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
8908         */
8909         center : function(centerIn){
8910             this.alignTo(centerIn || document, 'c-c');
8911             return this;
8912         },
8913
8914         /**
8915          * Tests various css rules/browsers to determine if this element uses a border box
8916          * @return {Boolean}
8917          */
8918         isBorderBox : function(){
8919             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
8920         },
8921
8922         /**
8923          * Return a box {x, y, width, height} that can be used to set another elements
8924          * size/location to match this element.
8925          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
8926          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
8927          * @return {Object} box An object in the format {x, y, width, height}
8928          */
8929         getBox : function(contentBox, local){
8930             var xy;
8931             if(!local){
8932                 xy = this.getXY();
8933             }else{
8934                 var left = parseInt(this.getStyle("left"), 10) || 0;
8935                 var top = parseInt(this.getStyle("top"), 10) || 0;
8936                 xy = [left, top];
8937             }
8938             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
8939             if(!contentBox){
8940                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
8941             }else{
8942                 var l = this.getBorderWidth("l")+this.getPadding("l");
8943                 var r = this.getBorderWidth("r")+this.getPadding("r");
8944                 var t = this.getBorderWidth("t")+this.getPadding("t");
8945                 var b = this.getBorderWidth("b")+this.getPadding("b");
8946                 bx = {x: xy[0]+l, y: xy[1]+t, 0: xy[0]+l, 1: xy[1]+t, width: w-(l+r), height: h-(t+b)};
8947             }
8948             bx.right = bx.x + bx.width;
8949             bx.bottom = bx.y + bx.height;
8950             return bx;
8951         },
8952
8953         /**
8954          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
8955          for more information about the sides.
8956          * @param {String} sides
8957          * @return {Number}
8958          */
8959         getFrameWidth : function(sides, onlyContentBox){
8960             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
8961         },
8962
8963         /**
8964          * Sets the element's box. Use getBox() on another element to get a box obj. If animate is true then width, height, x and y will be animated concurrently.
8965          * @param {Object} box The box to fill {x, y, width, height}
8966          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
8967          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8968          * @return {Roo.Element} this
8969          */
8970         setBox : function(box, adjust, animate){
8971             var w = box.width, h = box.height;
8972             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
8973                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8974                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8975             }
8976             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
8977             return this;
8978         },
8979
8980         /**
8981          * Forces the browser to repaint this element
8982          * @return {Roo.Element} this
8983          */
8984          repaint : function(){
8985             var dom = this.dom;
8986             this.addClass("x-repaint");
8987             setTimeout(function(){
8988                 Roo.get(dom).removeClass("x-repaint");
8989             }, 1);
8990             return this;
8991         },
8992
8993         /**
8994          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
8995          * then it returns the calculated width of the sides (see getPadding)
8996          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
8997          * @return {Object/Number}
8998          */
8999         getMargins : function(side){
9000             if(!side){
9001                 return {
9002                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9003                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9004                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9005                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9006                 };
9007             }else{
9008                 return this.addStyles(side, El.margins);
9009              }
9010         },
9011
9012         // private
9013         addStyles : function(sides, styles){
9014             var val = 0, v, w;
9015             for(var i = 0, len = sides.length; i < len; i++){
9016                 v = this.getStyle(styles[sides.charAt(i)]);
9017                 if(v){
9018                      w = parseInt(v, 10);
9019                      if(w){ val += w; }
9020                 }
9021             }
9022             return val;
9023         },
9024
9025         /**
9026          * Creates a proxy element of this element
9027          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9028          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9029          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9030          * @return {Roo.Element} The new proxy element
9031          */
9032         createProxy : function(config, renderTo, matchBox){
9033             if(renderTo){
9034                 renderTo = Roo.getDom(renderTo);
9035             }else{
9036                 renderTo = document.body;
9037             }
9038             config = typeof config == "object" ?
9039                 config : {tag : "div", cls: config};
9040             var proxy = Roo.DomHelper.append(renderTo, config, true);
9041             if(matchBox){
9042                proxy.setBox(this.getBox());
9043             }
9044             return proxy;
9045         },
9046
9047         /**
9048          * Puts a mask over this element to disable user interaction. Requires core.css.
9049          * This method can only be applied to elements which accept child nodes.
9050          * @param {String} msg (optional) A message to display in the mask
9051          * @param {String} msgCls (optional) A css class to apply to the msg element
9052          * @return {Element} The mask  element
9053          */
9054         mask : function(msg, msgCls)
9055         {
9056             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9057                 this.setStyle("position", "relative");
9058             }
9059             if(!this._mask){
9060                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9061             }
9062             this.addClass("x-masked");
9063             this._mask.setDisplayed(true);
9064             
9065             // we wander
9066             var z = 0;
9067             var dom = this.dom;
9068             while (dom && dom.style) {
9069                 if (!isNaN(parseInt(dom.style.zIndex))) {
9070                     z = Math.max(z, parseInt(dom.style.zIndex));
9071                 }
9072                 dom = dom.parentNode;
9073             }
9074             // if we are masking the body - then it hides everything..
9075             if (this.dom == document.body) {
9076                 z = 1000000;
9077                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9078                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9079             }
9080            
9081             if(typeof msg == 'string'){
9082                 if(!this._maskMsg){
9083                     this._maskMsg = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask-msg", cn:{tag:'div'}}, true);
9084                 }
9085                 var mm = this._maskMsg;
9086                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9087                 if (mm.dom.firstChild) { // weird IE issue?
9088                     mm.dom.firstChild.innerHTML = msg;
9089                 }
9090                 mm.setDisplayed(true);
9091                 mm.center(this);
9092                 mm.setStyle('z-index', z + 102);
9093             }
9094             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9095                 this._mask.setHeight(this.getHeight());
9096             }
9097             this._mask.setStyle('z-index', z + 100);
9098             
9099             return this._mask;
9100         },
9101
9102         /**
9103          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9104          * it is cached for reuse.
9105          */
9106         unmask : function(removeEl){
9107             if(this._mask){
9108                 if(removeEl === true){
9109                     this._mask.remove();
9110                     delete this._mask;
9111                     if(this._maskMsg){
9112                         this._maskMsg.remove();
9113                         delete this._maskMsg;
9114                     }
9115                 }else{
9116                     this._mask.setDisplayed(false);
9117                     if(this._maskMsg){
9118                         this._maskMsg.setDisplayed(false);
9119                     }
9120                 }
9121             }
9122             this.removeClass("x-masked");
9123         },
9124
9125         /**
9126          * Returns true if this element is masked
9127          * @return {Boolean}
9128          */
9129         isMasked : function(){
9130             return this._mask && this._mask.isVisible();
9131         },
9132
9133         /**
9134          * Creates an iframe shim for this element to keep selects and other windowed objects from
9135          * showing through.
9136          * @return {Roo.Element} The new shim element
9137          */
9138         createShim : function(){
9139             var el = document.createElement('iframe');
9140             el.frameBorder = 'no';
9141             el.className = 'roo-shim';
9142             if(Roo.isIE && Roo.isSecure){
9143                 el.src = Roo.SSL_SECURE_URL;
9144             }
9145             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9146             shim.autoBoxAdjust = false;
9147             return shim;
9148         },
9149
9150         /**
9151          * Removes this element from the DOM and deletes it from the cache
9152          */
9153         remove : function(){
9154             if(this.dom.parentNode){
9155                 this.dom.parentNode.removeChild(this.dom);
9156             }
9157             delete El.cache[this.dom.id];
9158         },
9159
9160         /**
9161          * Sets up event handlers to add and remove a css class when the mouse is over this element
9162          * @param {String} className
9163          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9164          * mouseout events for children elements
9165          * @return {Roo.Element} this
9166          */
9167         addClassOnOver : function(className, preventFlicker){
9168             this.on("mouseover", function(){
9169                 Roo.fly(this, '_internal').addClass(className);
9170             }, this.dom);
9171             var removeFn = function(e){
9172                 if(preventFlicker !== true || !e.within(this, true)){
9173                     Roo.fly(this, '_internal').removeClass(className);
9174                 }
9175             };
9176             this.on("mouseout", removeFn, this.dom);
9177             return this;
9178         },
9179
9180         /**
9181          * Sets up event handlers to add and remove a css class when this element has the focus
9182          * @param {String} className
9183          * @return {Roo.Element} this
9184          */
9185         addClassOnFocus : function(className){
9186             this.on("focus", function(){
9187                 Roo.fly(this, '_internal').addClass(className);
9188             }, this.dom);
9189             this.on("blur", function(){
9190                 Roo.fly(this, '_internal').removeClass(className);
9191             }, this.dom);
9192             return this;
9193         },
9194         /**
9195          * Sets up event handlers to add and remove a css class when the mouse is down and then up on this element (a click effect)
9196          * @param {String} className
9197          * @return {Roo.Element} this
9198          */
9199         addClassOnClick : function(className){
9200             var dom = this.dom;
9201             this.on("mousedown", function(){
9202                 Roo.fly(dom, '_internal').addClass(className);
9203                 var d = Roo.get(document);
9204                 var fn = function(){
9205                     Roo.fly(dom, '_internal').removeClass(className);
9206                     d.removeListener("mouseup", fn);
9207                 };
9208                 d.on("mouseup", fn);
9209             });
9210             return this;
9211         },
9212
9213         /**
9214          * Stops the specified event from bubbling and optionally prevents the default action
9215          * @param {String} eventName
9216          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9217          * @return {Roo.Element} this
9218          */
9219         swallowEvent : function(eventName, preventDefault){
9220             var fn = function(e){
9221                 e.stopPropagation();
9222                 if(preventDefault){
9223                     e.preventDefault();
9224                 }
9225             };
9226             if(eventName instanceof Array){
9227                 for(var i = 0, len = eventName.length; i < len; i++){
9228                      this.on(eventName[i], fn);
9229                 }
9230                 return this;
9231             }
9232             this.on(eventName, fn);
9233             return this;
9234         },
9235
9236         /**
9237          * @private
9238          */
9239       fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9240
9241         /**
9242          * Sizes this element to its parent element's dimensions performing
9243          * neccessary box adjustments.
9244          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9245          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9246          * @return {Roo.Element} this
9247          */
9248         fitToParent : function(monitorResize, targetParent) {
9249           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9250           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9251           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9252             return;
9253           }
9254           var p = Roo.get(targetParent || this.dom.parentNode);
9255           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9256           if (monitorResize === true) {
9257             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9258             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9259           }
9260           return this;
9261         },
9262
9263         /**
9264          * Gets the next sibling, skipping text nodes
9265          * @return {HTMLElement} The next sibling or null
9266          */
9267         getNextSibling : function(){
9268             var n = this.dom.nextSibling;
9269             while(n && n.nodeType != 1){
9270                 n = n.nextSibling;
9271             }
9272             return n;
9273         },
9274
9275         /**
9276          * Gets the previous sibling, skipping text nodes
9277          * @return {HTMLElement} The previous sibling or null
9278          */
9279         getPrevSibling : function(){
9280             var n = this.dom.previousSibling;
9281             while(n && n.nodeType != 1){
9282                 n = n.previousSibling;
9283             }
9284             return n;
9285         },
9286
9287
9288         /**
9289          * Appends the passed element(s) to this element
9290          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9291          * @return {Roo.Element} this
9292          */
9293         appendChild: function(el){
9294             el = Roo.get(el);
9295             el.appendTo(this);
9296             return this;
9297         },
9298
9299         /**
9300          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9301          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9302          * automatically generated with the specified attributes.
9303          * @param {HTMLElement} insertBefore (optional) a child element of this element
9304          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9305          * @return {Roo.Element} The new child element
9306          */
9307         createChild: function(config, insertBefore, returnDom){
9308             config = config || {tag:'div'};
9309             if(insertBefore){
9310                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9311             }
9312             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9313         },
9314
9315         /**
9316          * Appends this element to the passed element
9317          * @param {String/HTMLElement/Element} el The new parent element
9318          * @return {Roo.Element} this
9319          */
9320         appendTo: function(el){
9321             el = Roo.getDom(el);
9322             el.appendChild(this.dom);
9323             return this;
9324         },
9325
9326         /**
9327          * Inserts this element before the passed element in the DOM
9328          * @param {String/HTMLElement/Element} el The element to insert before
9329          * @return {Roo.Element} this
9330          */
9331         insertBefore: function(el){
9332             el = Roo.getDom(el);
9333             el.parentNode.insertBefore(this.dom, el);
9334             return this;
9335         },
9336
9337         /**
9338          * Inserts this element after the passed element in the DOM
9339          * @param {String/HTMLElement/Element} el The element to insert after
9340          * @return {Roo.Element} this
9341          */
9342         insertAfter: function(el){
9343             el = Roo.getDom(el);
9344             el.parentNode.insertBefore(this.dom, el.nextSibling);
9345             return this;
9346         },
9347
9348         /**
9349          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9350          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9351          * @return {Roo.Element} The new child
9352          */
9353         insertFirst: function(el, returnDom){
9354             el = el || {};
9355             if(typeof el == 'object' && !el.nodeType){ // dh config
9356                 return this.createChild(el, this.dom.firstChild, returnDom);
9357             }else{
9358                 el = Roo.getDom(el);
9359                 this.dom.insertBefore(el, this.dom.firstChild);
9360                 return !returnDom ? Roo.get(el) : el;
9361             }
9362         },
9363
9364         /**
9365          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9366          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9367          * @param {String} where (optional) 'before' or 'after' defaults to before
9368          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9369          * @return {Roo.Element} the inserted Element
9370          */
9371         insertSibling: function(el, where, returnDom){
9372             where = where ? where.toLowerCase() : 'before';
9373             el = el || {};
9374             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9375
9376             if(typeof el == 'object' && !el.nodeType){ // dh config
9377                 if(where == 'after' && !this.dom.nextSibling){
9378                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9379                 }else{
9380                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9381                 }
9382
9383             }else{
9384                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9385                             where == 'before' ? this.dom : this.dom.nextSibling);
9386                 if(!returnDom){
9387                     rt = Roo.get(rt);
9388                 }
9389             }
9390             return rt;
9391         },
9392
9393         /**
9394          * Creates and wraps this element with another element
9395          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9396          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9397          * @return {HTMLElement/Element} The newly created wrapper element
9398          */
9399         wrap: function(config, returnDom){
9400             if(!config){
9401                 config = {tag: "div"};
9402             }
9403             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9404             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9405             return newEl;
9406         },
9407
9408         /**
9409          * Replaces the passed element with this element
9410          * @param {String/HTMLElement/Element} el The element to replace
9411          * @return {Roo.Element} this
9412          */
9413         replace: function(el){
9414             el = Roo.get(el);
9415             this.insertBefore(el);
9416             el.remove();
9417             return this;
9418         },
9419
9420         /**
9421          * Inserts an html fragment into this element
9422          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9423          * @param {String} html The HTML fragment
9424          * @param {Boolean} returnEl True to return an Roo.Element
9425          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9426          */
9427         insertHtml : function(where, html, returnEl){
9428             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9429             return returnEl ? Roo.get(el) : el;
9430         },
9431
9432         /**
9433          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9434          * @param {Object} o The object with the attributes
9435          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9436          * @return {Roo.Element} this
9437          */
9438         set : function(o, useSet){
9439             var el = this.dom;
9440             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9441             for(var attr in o){
9442                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9443                 if(attr=="cls"){
9444                     el.className = o["cls"];
9445                 }else{
9446                     if(useSet) {
9447                         el.setAttribute(attr, o[attr]);
9448                     } else {
9449                         el[attr] = o[attr];
9450                     }
9451                 }
9452             }
9453             if(o.style){
9454                 Roo.DomHelper.applyStyles(el, o.style);
9455             }
9456             return this;
9457         },
9458
9459         /**
9460          * Convenience method for constructing a KeyMap
9461          * @param {Number/Array/Object/String} key Either a string with the keys to listen for, the numeric key code, array of key codes or an object with the following options:
9462          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9463          * @param {Function} fn The function to call
9464          * @param {Object} scope (optional) The scope of the function
9465          * @return {Roo.KeyMap} The KeyMap created
9466          */
9467         addKeyListener : function(key, fn, scope){
9468             var config;
9469             if(typeof key != "object" || key instanceof Array){
9470                 config = {
9471                     key: key,
9472                     fn: fn,
9473                     scope: scope
9474                 };
9475             }else{
9476                 config = {
9477                     key : key.key,
9478                     shift : key.shift,
9479                     ctrl : key.ctrl,
9480                     alt : key.alt,
9481                     fn: fn,
9482                     scope: scope
9483                 };
9484             }
9485             return new Roo.KeyMap(this, config);
9486         },
9487
9488         /**
9489          * Creates a KeyMap for this element
9490          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9491          * @return {Roo.KeyMap} The KeyMap created
9492          */
9493         addKeyMap : function(config){
9494             return new Roo.KeyMap(this, config);
9495         },
9496
9497         /**
9498          * Returns true if this element is scrollable.
9499          * @return {Boolean}
9500          */
9501          isScrollable : function(){
9502             var dom = this.dom;
9503             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9504         },
9505
9506         /**
9507          * Scrolls this element the specified scroll point. It does NOT do bounds checking so if you scroll to a weird value it will try to do it. For auto bounds checking, use scroll().
9508          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9509          * @param {Number} value The new scroll value
9510          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9511          * @return {Element} this
9512          */
9513
9514         scrollTo : function(side, value, animate){
9515             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9516             if(!animate || !A){
9517                 this.dom[prop] = value;
9518             }else{
9519                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9520                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9521             }
9522             return this;
9523         },
9524
9525         /**
9526          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9527          * within this element's scrollable range.
9528          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9529          * @param {Number} distance How far to scroll the element in pixels
9530          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9531          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9532          * was scrolled as far as it could go.
9533          */
9534          scroll : function(direction, distance, animate){
9535              if(!this.isScrollable()){
9536                  return;
9537              }
9538              var el = this.dom;
9539              var l = el.scrollLeft, t = el.scrollTop;
9540              var w = el.scrollWidth, h = el.scrollHeight;
9541              var cw = el.clientWidth, ch = el.clientHeight;
9542              direction = direction.toLowerCase();
9543              var scrolled = false;
9544              var a = this.preanim(arguments, 2);
9545              switch(direction){
9546                  case "l":
9547                  case "left":
9548                      if(w - l > cw){
9549                          var v = Math.min(l + distance, w-cw);
9550                          this.scrollTo("left", v, a);
9551                          scrolled = true;
9552                      }
9553                      break;
9554                 case "r":
9555                 case "right":
9556                      if(l > 0){
9557                          var v = Math.max(l - distance, 0);
9558                          this.scrollTo("left", v, a);
9559                          scrolled = true;
9560                      }
9561                      break;
9562                 case "t":
9563                 case "top":
9564                 case "up":
9565                      if(t > 0){
9566                          var v = Math.max(t - distance, 0);
9567                          this.scrollTo("top", v, a);
9568                          scrolled = true;
9569                      }
9570                      break;
9571                 case "b":
9572                 case "bottom":
9573                 case "down":
9574                      if(h - t > ch){
9575                          var v = Math.min(t + distance, h-ch);
9576                          this.scrollTo("top", v, a);
9577                          scrolled = true;
9578                      }
9579                      break;
9580              }
9581              return scrolled;
9582         },
9583
9584         /**
9585          * Translates the passed page coordinates into left/top css values for this element
9586          * @param {Number/Array} x The page x or an array containing [x, y]
9587          * @param {Number} y The page y
9588          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9589          */
9590         translatePoints : function(x, y){
9591             if(typeof x == 'object' || x instanceof Array){
9592                 y = x[1]; x = x[0];
9593             }
9594             var p = this.getStyle('position');
9595             var o = this.getXY();
9596
9597             var l = parseInt(this.getStyle('left'), 10);
9598             var t = parseInt(this.getStyle('top'), 10);
9599
9600             if(isNaN(l)){
9601                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9602             }
9603             if(isNaN(t)){
9604                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9605             }
9606
9607             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9608         },
9609
9610         /**
9611          * Returns the current scroll position of the element.
9612          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9613          */
9614         getScroll : function(){
9615             var d = this.dom, doc = document;
9616             if(d == doc || d == doc.body){
9617                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9618                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9619                 return {left: l, top: t};
9620             }else{
9621                 return {left: d.scrollLeft, top: d.scrollTop};
9622             }
9623         },
9624
9625         /**
9626          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9627          * are convert to standard 6 digit hex color.
9628          * @param {String} attr The css attribute
9629          * @param {String} defaultValue The default value to use when a valid color isn't found
9630          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9631          * YUI color anims.
9632          */
9633         getColor : function(attr, defaultValue, prefix){
9634             var v = this.getStyle(attr);
9635             if(!v || v == "transparent" || v == "inherit") {
9636                 return defaultValue;
9637             }
9638             var color = typeof prefix == "undefined" ? "#" : prefix;
9639             if(v.substr(0, 4) == "rgb("){
9640                 var rvs = v.slice(4, v.length -1).split(",");
9641                 for(var i = 0; i < 3; i++){
9642                     var h = parseInt(rvs[i]).toString(16);
9643                     if(h < 16){
9644                         h = "0" + h;
9645                     }
9646                     color += h;
9647                 }
9648             } else {
9649                 if(v.substr(0, 1) == "#"){
9650                     if(v.length == 4) {
9651                         for(var i = 1; i < 4; i++){
9652                             var c = v.charAt(i);
9653                             color +=  c + c;
9654                         }
9655                     }else if(v.length == 7){
9656                         color += v.substr(1);
9657                     }
9658                 }
9659             }
9660             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9661         },
9662
9663         /**
9664          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9665          * gradient background, rounded corners and a 4-way shadow.
9666          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9667          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9668          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9669          * @return {Roo.Element} this
9670          */
9671         boxWrap : function(cls){
9672             cls = cls || 'x-box';
9673             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9674             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9675             return el;
9676         },
9677
9678         /**
9679          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9680          * @param {String} namespace The namespace in which to look for the attribute
9681          * @param {String} name The attribute name
9682          * @return {String} The attribute value
9683          */
9684         getAttributeNS : Roo.isIE ? function(ns, name){
9685             var d = this.dom;
9686             var type = typeof d[ns+":"+name];
9687             if(type != 'undefined' && type != 'unknown'){
9688                 return d[ns+":"+name];
9689             }
9690             return d[name];
9691         } : function(ns, name){
9692             var d = this.dom;
9693             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9694         },
9695         
9696         
9697         /**
9698          * Sets or Returns the value the dom attribute value
9699          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9700          * @param {String} value (optional) The value to set the attribute to
9701          * @return {String} The attribute value
9702          */
9703         attr : function(name){
9704             if (arguments.length > 1) {
9705                 this.dom.setAttribute(name, arguments[1]);
9706                 return arguments[1];
9707             }
9708             if (typeof(name) == 'object') {
9709                 for(var i in name) {
9710                     this.attr(i, name[i]);
9711                 }
9712                 return name;
9713             }
9714             
9715             
9716             if (!this.dom.hasAttribute(name)) {
9717                 return undefined;
9718             }
9719             return this.dom.getAttribute(name);
9720         }
9721         
9722         
9723         
9724     };
9725
9726     var ep = El.prototype;
9727
9728     /**
9729      * Appends an event handler (Shorthand for addListener)
9730      * @param {String}   eventName     The type of event to append
9731      * @param {Function} fn        The method the event invokes
9732      * @param {Object} scope       (optional) The scope (this object) of the fn
9733      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9734      * @method
9735      */
9736     ep.on = ep.addListener;
9737         // backwards compat
9738     ep.mon = ep.addListener;
9739
9740     /**
9741      * Removes an event handler from this element (shorthand for removeListener)
9742      * @param {String} eventName the type of event to remove
9743      * @param {Function} fn the method the event invokes
9744      * @return {Roo.Element} this
9745      * @method
9746      */
9747     ep.un = ep.removeListener;
9748
9749     /**
9750      * true to automatically adjust width and height settings for box-model issues (default to true)
9751      */
9752     ep.autoBoxAdjust = true;
9753
9754     // private
9755     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9756
9757     // private
9758     El.addUnits = function(v, defaultUnit){
9759         if(v === "" || v == "auto"){
9760             return v;
9761         }
9762         if(v === undefined){
9763             return '';
9764         }
9765         if(typeof v == "number" || !El.unitPattern.test(v)){
9766             return v + (defaultUnit || 'px');
9767         }
9768         return v;
9769     };
9770
9771     // special markup used throughout Roo when box wrapping elements
9772     El.boxMarkup = '<div class="{0}-tl"><div class="{0}-tr"><div class="{0}-tc"></div></div></div><div class="{0}-ml"><div class="{0}-mr"><div class="{0}-mc"></div></div></div><div class="{0}-bl"><div class="{0}-br"><div class="{0}-bc"></div></div></div>';
9773     /**
9774      * Visibility mode constant - Use visibility to hide element
9775      * @static
9776      * @type Number
9777      */
9778     El.VISIBILITY = 1;
9779     /**
9780      * Visibility mode constant - Use display to hide element
9781      * @static
9782      * @type Number
9783      */
9784     El.DISPLAY = 2;
9785
9786     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9787     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9788     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9789
9790
9791
9792     /**
9793      * @private
9794      */
9795     El.cache = {};
9796
9797     var docEl;
9798
9799     /**
9800      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9801      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9802      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9803      * @return {Element} The Element object
9804      * @static
9805      */
9806     El.get = function(el){
9807         var ex, elm, id;
9808         if(!el){ return null; }
9809         if(typeof el == "string"){ // element id
9810             if(!(elm = document.getElementById(el))){
9811                 return null;
9812             }
9813             if(ex = El.cache[el]){
9814                 ex.dom = elm;
9815             }else{
9816                 ex = El.cache[el] = new El(elm);
9817             }
9818             return ex;
9819         }else if(el.tagName){ // dom element
9820             if(!(id = el.id)){
9821                 id = Roo.id(el);
9822             }
9823             if(ex = El.cache[id]){
9824                 ex.dom = el;
9825             }else{
9826                 ex = El.cache[id] = new El(el);
9827             }
9828             return ex;
9829         }else if(el instanceof El){
9830             if(el != docEl){
9831                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
9832                                                               // catch case where it hasn't been appended
9833                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
9834             }
9835             return el;
9836         }else if(el.isComposite){
9837             return el;
9838         }else if(el instanceof Array){
9839             return El.select(el);
9840         }else if(el == document){
9841             // create a bogus element object representing the document object
9842             if(!docEl){
9843                 var f = function(){};
9844                 f.prototype = El.prototype;
9845                 docEl = new f();
9846                 docEl.dom = document;
9847             }
9848             return docEl;
9849         }
9850         return null;
9851     };
9852
9853     // private
9854     El.uncache = function(el){
9855         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
9856             if(a[i]){
9857                 delete El.cache[a[i].id || a[i]];
9858             }
9859         }
9860     };
9861
9862     // private
9863     // Garbage collection - uncache elements/purge listeners on orphaned elements
9864     // so we don't hold a reference and cause the browser to retain them
9865     El.garbageCollect = function(){
9866         if(!Roo.enableGarbageCollector){
9867             clearInterval(El.collectorThread);
9868             return;
9869         }
9870         for(var eid in El.cache){
9871             var el = El.cache[eid], d = el.dom;
9872             // -------------------------------------------------------
9873             // Determining what is garbage:
9874             // -------------------------------------------------------
9875             // !d
9876             // dom node is null, definitely garbage
9877             // -------------------------------------------------------
9878             // !d.parentNode
9879             // no parentNode == direct orphan, definitely garbage
9880             // -------------------------------------------------------
9881             // !d.offsetParent && !document.getElementById(eid)
9882             // display none elements have no offsetParent so we will
9883             // also try to look it up by it's id. However, check
9884             // offsetParent first so we don't do unneeded lookups.
9885             // This enables collection of elements that are not orphans
9886             // directly, but somewhere up the line they have an orphan
9887             // parent.
9888             // -------------------------------------------------------
9889             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
9890                 delete El.cache[eid];
9891                 if(d && Roo.enableListenerCollection){
9892                     E.purgeElement(d);
9893                 }
9894             }
9895         }
9896     }
9897     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
9898
9899
9900     // dom is optional
9901     El.Flyweight = function(dom){
9902         this.dom = dom;
9903     };
9904     El.Flyweight.prototype = El.prototype;
9905
9906     El._flyweights = {};
9907     /**
9908      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
9909      * the dom node can be overwritten by other code.
9910      * @param {String/HTMLElement} el The dom node or id
9911      * @param {String} named (optional) Allows for creation of named reusable flyweights to
9912      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
9913      * @static
9914      * @return {Element} The shared Element object
9915      */
9916     El.fly = function(el, named){
9917         named = named || '_global';
9918         el = Roo.getDom(el);
9919         if(!el){
9920             return null;
9921         }
9922         if(!El._flyweights[named]){
9923             El._flyweights[named] = new El.Flyweight();
9924         }
9925         El._flyweights[named].dom = el;
9926         return El._flyweights[named];
9927     };
9928
9929     /**
9930      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9931      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9932      * Shorthand of {@link Roo.Element#get}
9933      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9934      * @return {Element} The Element object
9935      * @member Roo
9936      * @method get
9937      */
9938     Roo.get = El.get;
9939     /**
9940      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
9941      * the dom node can be overwritten by other code.
9942      * Shorthand of {@link Roo.Element#fly}
9943      * @param {String/HTMLElement} el The dom node or id
9944      * @param {String} named (optional) Allows for creation of named reusable flyweights to
9945      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
9946      * @static
9947      * @return {Element} The shared Element object
9948      * @member Roo
9949      * @method fly
9950      */
9951     Roo.fly = El.fly;
9952
9953     // speedy lookup for elements never to box adjust
9954     var noBoxAdjust = Roo.isStrict ? {
9955         select:1
9956     } : {
9957         input:1, select:1, textarea:1
9958     };
9959     if(Roo.isIE || Roo.isGecko){
9960         noBoxAdjust['button'] = 1;
9961     }
9962
9963
9964     Roo.EventManager.on(window, 'unload', function(){
9965         delete El.cache;
9966         delete El._flyweights;
9967     });
9968 })();
9969
9970
9971
9972
9973 if(Roo.DomQuery){
9974     Roo.Element.selectorFunction = Roo.DomQuery.select;
9975 }
9976
9977 Roo.Element.select = function(selector, unique, root){
9978     var els;
9979     if(typeof selector == "string"){
9980         els = Roo.Element.selectorFunction(selector, root);
9981     }else if(selector.length !== undefined){
9982         els = selector;
9983     }else{
9984         throw "Invalid selector";
9985     }
9986     if(unique === true){
9987         return new Roo.CompositeElement(els);
9988     }else{
9989         return new Roo.CompositeElementLite(els);
9990     }
9991 };
9992 /**
9993  * Selects elements based on the passed CSS selector to enable working on them as 1.
9994  * @param {String/Array} selector The CSS selector or an array of elements
9995  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
9996  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
9997  * @return {CompositeElementLite/CompositeElement}
9998  * @member Roo
9999  * @method select
10000  */
10001 Roo.select = Roo.Element.select;
10002
10003
10004
10005
10006
10007
10008
10009
10010
10011
10012
10013
10014
10015
10016 /*
10017  * Based on:
10018  * Ext JS Library 1.1.1
10019  * Copyright(c) 2006-2007, Ext JS, LLC.
10020  *
10021  * Originally Released Under LGPL - original licence link has changed is not relivant.
10022  *
10023  * Fork - LGPL
10024  * <script type="text/javascript">
10025  */
10026
10027
10028
10029 //Notifies Element that fx methods are available
10030 Roo.enableFx = true;
10031
10032 /**
10033  * @class Roo.Fx
10034  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10035  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10036  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10037  * Element effects to work.</p><br/>
10038  *
10039  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10040  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10041  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10042  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10043  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10044  * expected results and should be done with care.</p><br/>
10045  *
10046  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10047  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10048 <pre>
10049 Value  Description
10050 -----  -----------------------------
10051 tl     The top left corner
10052 t      The center of the top edge
10053 tr     The top right corner
10054 l      The center of the left edge
10055 r      The center of the right edge
10056 bl     The bottom left corner
10057 b      The center of the bottom edge
10058 br     The bottom right corner
10059 </pre>
10060  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10061  * below are common options that can be passed to any Fx method.</b>
10062  * @cfg {Function} callback A function called when the effect is finished
10063  * @cfg {Object} scope The scope of the effect function
10064  * @cfg {String} easing A valid Easing value for the effect
10065  * @cfg {String} afterCls A css class to apply after the effect
10066  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10067  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10068  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10069  * effects that end with the element being visually hidden, ignored otherwise)
10070  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10071  * a function which returns such a specification that will be applied to the Element after the effect finishes
10072  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10073  * @cfg {Boolean} concurrent Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they run in sequence
10074  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10075  */
10076 Roo.Fx = {
10077         /**
10078          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10079          * origin for the slide effect.  This function automatically handles wrapping the element with
10080          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10081          * Usage:
10082          *<pre><code>
10083 // default: slide the element in from the top
10084 el.slideIn();
10085
10086 // custom: slide the element in from the right with a 2-second duration
10087 el.slideIn('r', { duration: 2 });
10088
10089 // common config options shown with default values
10090 el.slideIn('t', {
10091     easing: 'easeOut',
10092     duration: .5
10093 });
10094 </code></pre>
10095          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10096          * @param {Object} options (optional) Object literal with any of the Fx config options
10097          * @return {Roo.Element} The Element
10098          */
10099     slideIn : function(anchor, o){
10100         var el = this.getFxEl();
10101         o = o || {};
10102
10103         el.queueFx(o, function(){
10104
10105             anchor = anchor || "t";
10106
10107             // fix display to visibility
10108             this.fixDisplay();
10109
10110             // restore values after effect
10111             var r = this.getFxRestore();
10112             var b = this.getBox();
10113             // fixed size for slide
10114             this.setSize(b);
10115
10116             // wrap if needed
10117             var wrap = this.fxWrap(r.pos, o, "hidden");
10118
10119             var st = this.dom.style;
10120             st.visibility = "visible";
10121             st.position = "absolute";
10122
10123             // clear out temp styles after slide and unwrap
10124             var after = function(){
10125                 el.fxUnwrap(wrap, r.pos, o);
10126                 st.width = r.width;
10127                 st.height = r.height;
10128                 el.afterFx(o);
10129             };
10130             // time to calc the positions
10131             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10132
10133             switch(anchor.toLowerCase()){
10134                 case "t":
10135                     wrap.setSize(b.width, 0);
10136                     st.left = st.bottom = "0";
10137                     a = {height: bh};
10138                 break;
10139                 case "l":
10140                     wrap.setSize(0, b.height);
10141                     st.right = st.top = "0";
10142                     a = {width: bw};
10143                 break;
10144                 case "r":
10145                     wrap.setSize(0, b.height);
10146                     wrap.setX(b.right);
10147                     st.left = st.top = "0";
10148                     a = {width: bw, points: pt};
10149                 break;
10150                 case "b":
10151                     wrap.setSize(b.width, 0);
10152                     wrap.setY(b.bottom);
10153                     st.left = st.top = "0";
10154                     a = {height: bh, points: pt};
10155                 break;
10156                 case "tl":
10157                     wrap.setSize(0, 0);
10158                     st.right = st.bottom = "0";
10159                     a = {width: bw, height: bh};
10160                 break;
10161                 case "bl":
10162                     wrap.setSize(0, 0);
10163                     wrap.setY(b.y+b.height);
10164                     st.right = st.top = "0";
10165                     a = {width: bw, height: bh, points: pt};
10166                 break;
10167                 case "br":
10168                     wrap.setSize(0, 0);
10169                     wrap.setXY([b.right, b.bottom]);
10170                     st.left = st.top = "0";
10171                     a = {width: bw, height: bh, points: pt};
10172                 break;
10173                 case "tr":
10174                     wrap.setSize(0, 0);
10175                     wrap.setX(b.x+b.width);
10176                     st.left = st.bottom = "0";
10177                     a = {width: bw, height: bh, points: pt};
10178                 break;
10179             }
10180             this.dom.style.visibility = "visible";
10181             wrap.show();
10182
10183             arguments.callee.anim = wrap.fxanim(a,
10184                 o,
10185                 'motion',
10186                 .5,
10187                 'easeOut', after);
10188         });
10189         return this;
10190     },
10191     
10192         /**
10193          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10194          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10195          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10196          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10197          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10198          * Usage:
10199          *<pre><code>
10200 // default: slide the element out to the top
10201 el.slideOut();
10202
10203 // custom: slide the element out to the right with a 2-second duration
10204 el.slideOut('r', { duration: 2 });
10205
10206 // common config options shown with default values
10207 el.slideOut('t', {
10208     easing: 'easeOut',
10209     duration: .5,
10210     remove: false,
10211     useDisplay: false
10212 });
10213 </code></pre>
10214          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10215          * @param {Object} options (optional) Object literal with any of the Fx config options
10216          * @return {Roo.Element} The Element
10217          */
10218     slideOut : function(anchor, o){
10219         var el = this.getFxEl();
10220         o = o || {};
10221
10222         el.queueFx(o, function(){
10223
10224             anchor = anchor || "t";
10225
10226             // restore values after effect
10227             var r = this.getFxRestore();
10228             
10229             var b = this.getBox();
10230             // fixed size for slide
10231             this.setSize(b);
10232
10233             // wrap if needed
10234             var wrap = this.fxWrap(r.pos, o, "visible");
10235
10236             var st = this.dom.style;
10237             st.visibility = "visible";
10238             st.position = "absolute";
10239
10240             wrap.setSize(b);
10241
10242             var after = function(){
10243                 if(o.useDisplay){
10244                     el.setDisplayed(false);
10245                 }else{
10246                     el.hide();
10247                 }
10248
10249                 el.fxUnwrap(wrap, r.pos, o);
10250
10251                 st.width = r.width;
10252                 st.height = r.height;
10253
10254                 el.afterFx(o);
10255             };
10256
10257             var a, zero = {to: 0};
10258             switch(anchor.toLowerCase()){
10259                 case "t":
10260                     st.left = st.bottom = "0";
10261                     a = {height: zero};
10262                 break;
10263                 case "l":
10264                     st.right = st.top = "0";
10265                     a = {width: zero};
10266                 break;
10267                 case "r":
10268                     st.left = st.top = "0";
10269                     a = {width: zero, points: {to:[b.right, b.y]}};
10270                 break;
10271                 case "b":
10272                     st.left = st.top = "0";
10273                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10274                 break;
10275                 case "tl":
10276                     st.right = st.bottom = "0";
10277                     a = {width: zero, height: zero};
10278                 break;
10279                 case "bl":
10280                     st.right = st.top = "0";
10281                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10282                 break;
10283                 case "br":
10284                     st.left = st.top = "0";
10285                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10286                 break;
10287                 case "tr":
10288                     st.left = st.bottom = "0";
10289                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10290                 break;
10291             }
10292
10293             arguments.callee.anim = wrap.fxanim(a,
10294                 o,
10295                 'motion',
10296                 .5,
10297                 "easeOut", after);
10298         });
10299         return this;
10300     },
10301
10302         /**
10303          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10304          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10305          * The element must be removed from the DOM using the 'remove' config option if desired.
10306          * Usage:
10307          *<pre><code>
10308 // default
10309 el.puff();
10310
10311 // common config options shown with default values
10312 el.puff({
10313     easing: 'easeOut',
10314     duration: .5,
10315     remove: false,
10316     useDisplay: false
10317 });
10318 </code></pre>
10319          * @param {Object} options (optional) Object literal with any of the Fx config options
10320          * @return {Roo.Element} The Element
10321          */
10322     puff : function(o){
10323         var el = this.getFxEl();
10324         o = o || {};
10325
10326         el.queueFx(o, function(){
10327             this.clearOpacity();
10328             this.show();
10329
10330             // restore values after effect
10331             var r = this.getFxRestore();
10332             var st = this.dom.style;
10333
10334             var after = function(){
10335                 if(o.useDisplay){
10336                     el.setDisplayed(false);
10337                 }else{
10338                     el.hide();
10339                 }
10340
10341                 el.clearOpacity();
10342
10343                 el.setPositioning(r.pos);
10344                 st.width = r.width;
10345                 st.height = r.height;
10346                 st.fontSize = '';
10347                 el.afterFx(o);
10348             };
10349
10350             var width = this.getWidth();
10351             var height = this.getHeight();
10352
10353             arguments.callee.anim = this.fxanim({
10354                     width : {to: this.adjustWidth(width * 2)},
10355                     height : {to: this.adjustHeight(height * 2)},
10356                     points : {by: [-(width * .5), -(height * .5)]},
10357                     opacity : {to: 0},
10358                     fontSize: {to:200, unit: "%"}
10359                 },
10360                 o,
10361                 'motion',
10362                 .5,
10363                 "easeOut", after);
10364         });
10365         return this;
10366     },
10367
10368         /**
10369          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10370          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10371          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10372          * Usage:
10373          *<pre><code>
10374 // default
10375 el.switchOff();
10376
10377 // all config options shown with default values
10378 el.switchOff({
10379     easing: 'easeIn',
10380     duration: .3,
10381     remove: false,
10382     useDisplay: false
10383 });
10384 </code></pre>
10385          * @param {Object} options (optional) Object literal with any of the Fx config options
10386          * @return {Roo.Element} The Element
10387          */
10388     switchOff : function(o){
10389         var el = this.getFxEl();
10390         o = o || {};
10391
10392         el.queueFx(o, function(){
10393             this.clearOpacity();
10394             this.clip();
10395
10396             // restore values after effect
10397             var r = this.getFxRestore();
10398             var st = this.dom.style;
10399
10400             var after = function(){
10401                 if(o.useDisplay){
10402                     el.setDisplayed(false);
10403                 }else{
10404                     el.hide();
10405                 }
10406
10407                 el.clearOpacity();
10408                 el.setPositioning(r.pos);
10409                 st.width = r.width;
10410                 st.height = r.height;
10411
10412                 el.afterFx(o);
10413             };
10414
10415             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10416                 this.clearOpacity();
10417                 (function(){
10418                     this.fxanim({
10419                         height:{to:1},
10420                         points:{by:[0, this.getHeight() * .5]}
10421                     }, o, 'motion', 0.3, 'easeIn', after);
10422                 }).defer(100, this);
10423             });
10424         });
10425         return this;
10426     },
10427
10428     /**
10429      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10430      * changed using the "attr" config option) and then fading back to the original color. If no original
10431      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10432      * Usage:
10433 <pre><code>
10434 // default: highlight background to yellow
10435 el.highlight();
10436
10437 // custom: highlight foreground text to blue for 2 seconds
10438 el.highlight("0000ff", { attr: 'color', duration: 2 });
10439
10440 // common config options shown with default values
10441 el.highlight("ffff9c", {
10442     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10443     endColor: (current color) or "ffffff",
10444     easing: 'easeIn',
10445     duration: 1
10446 });
10447 </code></pre>
10448      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10449      * @param {Object} options (optional) Object literal with any of the Fx config options
10450      * @return {Roo.Element} The Element
10451      */ 
10452     highlight : function(color, o){
10453         var el = this.getFxEl();
10454         o = o || {};
10455
10456         el.queueFx(o, function(){
10457             color = color || "ffff9c";
10458             attr = o.attr || "backgroundColor";
10459
10460             this.clearOpacity();
10461             this.show();
10462
10463             var origColor = this.getColor(attr);
10464             var restoreColor = this.dom.style[attr];
10465             endColor = (o.endColor || origColor) || "ffffff";
10466
10467             var after = function(){
10468                 el.dom.style[attr] = restoreColor;
10469                 el.afterFx(o);
10470             };
10471
10472             var a = {};
10473             a[attr] = {from: color, to: endColor};
10474             arguments.callee.anim = this.fxanim(a,
10475                 o,
10476                 'color',
10477                 1,
10478                 'easeIn', after);
10479         });
10480         return this;
10481     },
10482
10483    /**
10484     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10485     * Usage:
10486 <pre><code>
10487 // default: a single light blue ripple
10488 el.frame();
10489
10490 // custom: 3 red ripples lasting 3 seconds total
10491 el.frame("ff0000", 3, { duration: 3 });
10492
10493 // common config options shown with default values
10494 el.frame("C3DAF9", 1, {
10495     duration: 1 //duration of entire animation (not each individual ripple)
10496     // Note: Easing is not configurable and will be ignored if included
10497 });
10498 </code></pre>
10499     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10500     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10501     * @param {Object} options (optional) Object literal with any of the Fx config options
10502     * @return {Roo.Element} The Element
10503     */
10504     frame : function(color, count, o){
10505         var el = this.getFxEl();
10506         o = o || {};
10507
10508         el.queueFx(o, function(){
10509             color = color || "#C3DAF9";
10510             if(color.length == 6){
10511                 color = "#" + color;
10512             }
10513             count = count || 1;
10514             duration = o.duration || 1;
10515             this.show();
10516
10517             var b = this.getBox();
10518             var animFn = function(){
10519                 var proxy = this.createProxy({
10520
10521                      style:{
10522                         visbility:"hidden",
10523                         position:"absolute",
10524                         "z-index":"35000", // yee haw
10525                         border:"0px solid " + color
10526                      }
10527                   });
10528                 var scale = Roo.isBorderBox ? 2 : 1;
10529                 proxy.animate({
10530                     top:{from:b.y, to:b.y - 20},
10531                     left:{from:b.x, to:b.x - 20},
10532                     borderWidth:{from:0, to:10},
10533                     opacity:{from:1, to:0},
10534                     height:{from:b.height, to:(b.height + (20*scale))},
10535                     width:{from:b.width, to:(b.width + (20*scale))}
10536                 }, duration, function(){
10537                     proxy.remove();
10538                 });
10539                 if(--count > 0){
10540                      animFn.defer((duration/2)*1000, this);
10541                 }else{
10542                     el.afterFx(o);
10543                 }
10544             };
10545             animFn.call(this);
10546         });
10547         return this;
10548     },
10549
10550    /**
10551     * Creates a pause before any subsequent queued effects begin.  If there are
10552     * no effects queued after the pause it will have no effect.
10553     * Usage:
10554 <pre><code>
10555 el.pause(1);
10556 </code></pre>
10557     * @param {Number} seconds The length of time to pause (in seconds)
10558     * @return {Roo.Element} The Element
10559     */
10560     pause : function(seconds){
10561         var el = this.getFxEl();
10562         var o = {};
10563
10564         el.queueFx(o, function(){
10565             setTimeout(function(){
10566                 el.afterFx(o);
10567             }, seconds * 1000);
10568         });
10569         return this;
10570     },
10571
10572    /**
10573     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10574     * using the "endOpacity" config option.
10575     * Usage:
10576 <pre><code>
10577 // default: fade in from opacity 0 to 100%
10578 el.fadeIn();
10579
10580 // custom: fade in from opacity 0 to 75% over 2 seconds
10581 el.fadeIn({ endOpacity: .75, duration: 2});
10582
10583 // common config options shown with default values
10584 el.fadeIn({
10585     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10586     easing: 'easeOut',
10587     duration: .5
10588 });
10589 </code></pre>
10590     * @param {Object} options (optional) Object literal with any of the Fx config options
10591     * @return {Roo.Element} The Element
10592     */
10593     fadeIn : function(o){
10594         var el = this.getFxEl();
10595         o = o || {};
10596         el.queueFx(o, function(){
10597             this.setOpacity(0);
10598             this.fixDisplay();
10599             this.dom.style.visibility = 'visible';
10600             var to = o.endOpacity || 1;
10601             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10602                 o, null, .5, "easeOut", function(){
10603                 if(to == 1){
10604                     this.clearOpacity();
10605                 }
10606                 el.afterFx(o);
10607             });
10608         });
10609         return this;
10610     },
10611
10612    /**
10613     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10614     * using the "endOpacity" config option.
10615     * Usage:
10616 <pre><code>
10617 // default: fade out from the element's current opacity to 0
10618 el.fadeOut();
10619
10620 // custom: fade out from the element's current opacity to 25% over 2 seconds
10621 el.fadeOut({ endOpacity: .25, duration: 2});
10622
10623 // common config options shown with default values
10624 el.fadeOut({
10625     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10626     easing: 'easeOut',
10627     duration: .5
10628     remove: false,
10629     useDisplay: false
10630 });
10631 </code></pre>
10632     * @param {Object} options (optional) Object literal with any of the Fx config options
10633     * @return {Roo.Element} The Element
10634     */
10635     fadeOut : function(o){
10636         var el = this.getFxEl();
10637         o = o || {};
10638         el.queueFx(o, function(){
10639             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10640                 o, null, .5, "easeOut", function(){
10641                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10642                      this.dom.style.display = "none";
10643                 }else{
10644                      this.dom.style.visibility = "hidden";
10645                 }
10646                 this.clearOpacity();
10647                 el.afterFx(o);
10648             });
10649         });
10650         return this;
10651     },
10652
10653    /**
10654     * Animates the transition of an element's dimensions from a starting height/width
10655     * to an ending height/width.
10656     * Usage:
10657 <pre><code>
10658 // change height and width to 100x100 pixels
10659 el.scale(100, 100);
10660
10661 // common config options shown with default values.  The height and width will default to
10662 // the element's existing values if passed as null.
10663 el.scale(
10664     [element's width],
10665     [element's height], {
10666     easing: 'easeOut',
10667     duration: .35
10668 });
10669 </code></pre>
10670     * @param {Number} width  The new width (pass undefined to keep the original width)
10671     * @param {Number} height  The new height (pass undefined to keep the original height)
10672     * @param {Object} options (optional) Object literal with any of the Fx config options
10673     * @return {Roo.Element} The Element
10674     */
10675     scale : function(w, h, o){
10676         this.shift(Roo.apply({}, o, {
10677             width: w,
10678             height: h
10679         }));
10680         return this;
10681     },
10682
10683    /**
10684     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10685     * Any of these properties not specified in the config object will not be changed.  This effect 
10686     * requires that at least one new dimension, position or opacity setting must be passed in on
10687     * the config object in order for the function to have any effect.
10688     * Usage:
10689 <pre><code>
10690 // slide the element horizontally to x position 200 while changing the height and opacity
10691 el.shift({ x: 200, height: 50, opacity: .8 });
10692
10693 // common config options shown with default values.
10694 el.shift({
10695     width: [element's width],
10696     height: [element's height],
10697     x: [element's x position],
10698     y: [element's y position],
10699     opacity: [element's opacity],
10700     easing: 'easeOut',
10701     duration: .35
10702 });
10703 </code></pre>
10704     * @param {Object} options  Object literal with any of the Fx config options
10705     * @return {Roo.Element} The Element
10706     */
10707     shift : function(o){
10708         var el = this.getFxEl();
10709         o = o || {};
10710         el.queueFx(o, function(){
10711             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10712             if(w !== undefined){
10713                 a.width = {to: this.adjustWidth(w)};
10714             }
10715             if(h !== undefined){
10716                 a.height = {to: this.adjustHeight(h)};
10717             }
10718             if(x !== undefined || y !== undefined){
10719                 a.points = {to: [
10720                     x !== undefined ? x : this.getX(),
10721                     y !== undefined ? y : this.getY()
10722                 ]};
10723             }
10724             if(op !== undefined){
10725                 a.opacity = {to: op};
10726             }
10727             if(o.xy !== undefined){
10728                 a.points = {to: o.xy};
10729             }
10730             arguments.callee.anim = this.fxanim(a,
10731                 o, 'motion', .35, "easeOut", function(){
10732                 el.afterFx(o);
10733             });
10734         });
10735         return this;
10736     },
10737
10738         /**
10739          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10740          * ending point of the effect.
10741          * Usage:
10742          *<pre><code>
10743 // default: slide the element downward while fading out
10744 el.ghost();
10745
10746 // custom: slide the element out to the right with a 2-second duration
10747 el.ghost('r', { duration: 2 });
10748
10749 // common config options shown with default values
10750 el.ghost('b', {
10751     easing: 'easeOut',
10752     duration: .5
10753     remove: false,
10754     useDisplay: false
10755 });
10756 </code></pre>
10757          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10758          * @param {Object} options (optional) Object literal with any of the Fx config options
10759          * @return {Roo.Element} The Element
10760          */
10761     ghost : function(anchor, o){
10762         var el = this.getFxEl();
10763         o = o || {};
10764
10765         el.queueFx(o, function(){
10766             anchor = anchor || "b";
10767
10768             // restore values after effect
10769             var r = this.getFxRestore();
10770             var w = this.getWidth(),
10771                 h = this.getHeight();
10772
10773             var st = this.dom.style;
10774
10775             var after = function(){
10776                 if(o.useDisplay){
10777                     el.setDisplayed(false);
10778                 }else{
10779                     el.hide();
10780                 }
10781
10782                 el.clearOpacity();
10783                 el.setPositioning(r.pos);
10784                 st.width = r.width;
10785                 st.height = r.height;
10786
10787                 el.afterFx(o);
10788             };
10789
10790             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10791             switch(anchor.toLowerCase()){
10792                 case "t":
10793                     pt.by = [0, -h];
10794                 break;
10795                 case "l":
10796                     pt.by = [-w, 0];
10797                 break;
10798                 case "r":
10799                     pt.by = [w, 0];
10800                 break;
10801                 case "b":
10802                     pt.by = [0, h];
10803                 break;
10804                 case "tl":
10805                     pt.by = [-w, -h];
10806                 break;
10807                 case "bl":
10808                     pt.by = [-w, h];
10809                 break;
10810                 case "br":
10811                     pt.by = [w, h];
10812                 break;
10813                 case "tr":
10814                     pt.by = [w, -h];
10815                 break;
10816             }
10817
10818             arguments.callee.anim = this.fxanim(a,
10819                 o,
10820                 'motion',
10821                 .5,
10822                 "easeOut", after);
10823         });
10824         return this;
10825     },
10826
10827         /**
10828          * Ensures that all effects queued after syncFx is called on the element are
10829          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10830          * @return {Roo.Element} The Element
10831          */
10832     syncFx : function(){
10833         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10834             block : false,
10835             concurrent : true,
10836             stopFx : false
10837         });
10838         return this;
10839     },
10840
10841         /**
10842          * Ensures that all effects queued after sequenceFx is called on the element are
10843          * run in sequence.  This is the opposite of {@link #syncFx}.
10844          * @return {Roo.Element} The Element
10845          */
10846     sequenceFx : function(){
10847         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10848             block : false,
10849             concurrent : false,
10850             stopFx : false
10851         });
10852         return this;
10853     },
10854
10855         /* @private */
10856     nextFx : function(){
10857         var ef = this.fxQueue[0];
10858         if(ef){
10859             ef.call(this);
10860         }
10861     },
10862
10863         /**
10864          * Returns true if the element has any effects actively running or queued, else returns false.
10865          * @return {Boolean} True if element has active effects, else false
10866          */
10867     hasActiveFx : function(){
10868         return this.fxQueue && this.fxQueue[0];
10869     },
10870
10871         /**
10872          * Stops any running effects and clears the element's internal effects queue if it contains
10873          * any additional effects that haven't started yet.
10874          * @return {Roo.Element} The Element
10875          */
10876     stopFx : function(){
10877         if(this.hasActiveFx()){
10878             var cur = this.fxQueue[0];
10879             if(cur && cur.anim && cur.anim.isAnimated()){
10880                 this.fxQueue = [cur]; // clear out others
10881                 cur.anim.stop(true);
10882             }
10883         }
10884         return this;
10885     },
10886
10887         /* @private */
10888     beforeFx : function(o){
10889         if(this.hasActiveFx() && !o.concurrent){
10890            if(o.stopFx){
10891                this.stopFx();
10892                return true;
10893            }
10894            return false;
10895         }
10896         return true;
10897     },
10898
10899         /**
10900          * Returns true if the element is currently blocking so that no other effect can be queued
10901          * until this effect is finished, else returns false if blocking is not set.  This is commonly
10902          * used to ensure that an effect initiated by a user action runs to completion prior to the
10903          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
10904          * @return {Boolean} True if blocking, else false
10905          */
10906     hasFxBlock : function(){
10907         var q = this.fxQueue;
10908         return q && q[0] && q[0].block;
10909     },
10910
10911         /* @private */
10912     queueFx : function(o, fn){
10913         if(!this.fxQueue){
10914             this.fxQueue = [];
10915         }
10916         if(!this.hasFxBlock()){
10917             Roo.applyIf(o, this.fxDefaults);
10918             if(!o.concurrent){
10919                 var run = this.beforeFx(o);
10920                 fn.block = o.block;
10921                 this.fxQueue.push(fn);
10922                 if(run){
10923                     this.nextFx();
10924                 }
10925             }else{
10926                 fn.call(this);
10927             }
10928         }
10929         return this;
10930     },
10931
10932         /* @private */
10933     fxWrap : function(pos, o, vis){
10934         var wrap;
10935         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
10936             var wrapXY;
10937             if(o.fixPosition){
10938                 wrapXY = this.getXY();
10939             }
10940             var div = document.createElement("div");
10941             div.style.visibility = vis;
10942             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
10943             wrap.setPositioning(pos);
10944             if(wrap.getStyle("position") == "static"){
10945                 wrap.position("relative");
10946             }
10947             this.clearPositioning('auto');
10948             wrap.clip();
10949             wrap.dom.appendChild(this.dom);
10950             if(wrapXY){
10951                 wrap.setXY(wrapXY);
10952             }
10953         }
10954         return wrap;
10955     },
10956
10957         /* @private */
10958     fxUnwrap : function(wrap, pos, o){
10959         this.clearPositioning();
10960         this.setPositioning(pos);
10961         if(!o.wrap){
10962             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
10963             wrap.remove();
10964         }
10965     },
10966
10967         /* @private */
10968     getFxRestore : function(){
10969         var st = this.dom.style;
10970         return {pos: this.getPositioning(), width: st.width, height : st.height};
10971     },
10972
10973         /* @private */
10974     afterFx : function(o){
10975         if(o.afterStyle){
10976             this.applyStyles(o.afterStyle);
10977         }
10978         if(o.afterCls){
10979             this.addClass(o.afterCls);
10980         }
10981         if(o.remove === true){
10982             this.remove();
10983         }
10984         Roo.callback(o.callback, o.scope, [this]);
10985         if(!o.concurrent){
10986             this.fxQueue.shift();
10987             this.nextFx();
10988         }
10989     },
10990
10991         /* @private */
10992     getFxEl : function(){ // support for composite element fx
10993         return Roo.get(this.dom);
10994     },
10995
10996         /* @private */
10997     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
10998         animType = animType || 'run';
10999         opt = opt || {};
11000         var anim = Roo.lib.Anim[animType](
11001             this.dom, args,
11002             (opt.duration || defaultDur) || .35,
11003             (opt.easing || defaultEase) || 'easeOut',
11004             function(){
11005                 Roo.callback(cb, this);
11006             },
11007             this
11008         );
11009         opt.anim = anim;
11010         return anim;
11011     }
11012 };
11013
11014 // backwords compat
11015 Roo.Fx.resize = Roo.Fx.scale;
11016
11017 //When included, Roo.Fx is automatically applied to Element so that all basic
11018 //effects are available directly via the Element API
11019 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11020  * Based on:
11021  * Ext JS Library 1.1.1
11022  * Copyright(c) 2006-2007, Ext JS, LLC.
11023  *
11024  * Originally Released Under LGPL - original licence link has changed is not relivant.
11025  *
11026  * Fork - LGPL
11027  * <script type="text/javascript">
11028  */
11029
11030
11031 /**
11032  * @class Roo.CompositeElement
11033  * Standard composite class. Creates a Roo.Element for every element in the collection.
11034  * <br><br>
11035  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11036  * actions will be performed on all the elements in this collection.</b>
11037  * <br><br>
11038  * All methods return <i>this</i> and can be chained.
11039  <pre><code>
11040  var els = Roo.select("#some-el div.some-class", true);
11041  // or select directly from an existing element
11042  var el = Roo.get('some-el');
11043  el.select('div.some-class', true);
11044
11045  els.setWidth(100); // all elements become 100 width
11046  els.hide(true); // all elements fade out and hide
11047  // or
11048  els.setWidth(100).hide(true);
11049  </code></pre>
11050  */
11051 Roo.CompositeElement = function(els){
11052     this.elements = [];
11053     this.addElements(els);
11054 };
11055 Roo.CompositeElement.prototype = {
11056     isComposite: true,
11057     addElements : function(els){
11058         if(!els) {
11059             return this;
11060         }
11061         if(typeof els == "string"){
11062             els = Roo.Element.selectorFunction(els);
11063         }
11064         var yels = this.elements;
11065         var index = yels.length-1;
11066         for(var i = 0, len = els.length; i < len; i++) {
11067                 yels[++index] = Roo.get(els[i]);
11068         }
11069         return this;
11070     },
11071
11072     /**
11073     * Clears this composite and adds the elements returned by the passed selector.
11074     * @param {String/Array} els A string CSS selector, an array of elements or an element
11075     * @return {CompositeElement} this
11076     */
11077     fill : function(els){
11078         this.elements = [];
11079         this.add(els);
11080         return this;
11081     },
11082
11083     /**
11084     * Filters this composite to only elements that match the passed selector.
11085     * @param {String} selector A string CSS selector
11086     * @param {Boolean} inverse return inverse filter (not matches)
11087     * @return {CompositeElement} this
11088     */
11089     filter : function(selector, inverse){
11090         var els = [];
11091         inverse = inverse || false;
11092         this.each(function(el){
11093             var match = inverse ? !el.is(selector) : el.is(selector);
11094             if(match){
11095                 els[els.length] = el.dom;
11096             }
11097         });
11098         this.fill(els);
11099         return this;
11100     },
11101
11102     invoke : function(fn, args){
11103         var els = this.elements;
11104         for(var i = 0, len = els.length; i < len; i++) {
11105                 Roo.Element.prototype[fn].apply(els[i], args);
11106         }
11107         return this;
11108     },
11109     /**
11110     * Adds elements to this composite.
11111     * @param {String/Array} els A string CSS selector, an array of elements or an element
11112     * @return {CompositeElement} this
11113     */
11114     add : function(els){
11115         if(typeof els == "string"){
11116             this.addElements(Roo.Element.selectorFunction(els));
11117         }else if(els.length !== undefined){
11118             this.addElements(els);
11119         }else{
11120             this.addElements([els]);
11121         }
11122         return this;
11123     },
11124     /**
11125     * Calls the passed function passing (el, this, index) for each element in this composite.
11126     * @param {Function} fn The function to call
11127     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11128     * @return {CompositeElement} this
11129     */
11130     each : function(fn, scope){
11131         var els = this.elements;
11132         for(var i = 0, len = els.length; i < len; i++){
11133             if(fn.call(scope || els[i], els[i], this, i) === false) {
11134                 break;
11135             }
11136         }
11137         return this;
11138     },
11139
11140     /**
11141      * Returns the Element object at the specified index
11142      * @param {Number} index
11143      * @return {Roo.Element}
11144      */
11145     item : function(index){
11146         return this.elements[index] || null;
11147     },
11148
11149     /**
11150      * Returns the first Element
11151      * @return {Roo.Element}
11152      */
11153     first : function(){
11154         return this.item(0);
11155     },
11156
11157     /**
11158      * Returns the last Element
11159      * @return {Roo.Element}
11160      */
11161     last : function(){
11162         return this.item(this.elements.length-1);
11163     },
11164
11165     /**
11166      * Returns the number of elements in this composite
11167      * @return Number
11168      */
11169     getCount : function(){
11170         return this.elements.length;
11171     },
11172
11173     /**
11174      * Returns true if this composite contains the passed element
11175      * @return Boolean
11176      */
11177     contains : function(el){
11178         return this.indexOf(el) !== -1;
11179     },
11180
11181     /**
11182      * Returns true if this composite contains the passed element
11183      * @return Boolean
11184      */
11185     indexOf : function(el){
11186         return this.elements.indexOf(Roo.get(el));
11187     },
11188
11189
11190     /**
11191     * Removes the specified element(s).
11192     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11193     * or an array of any of those.
11194     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11195     * @return {CompositeElement} this
11196     */
11197     removeElement : function(el, removeDom){
11198         if(el instanceof Array){
11199             for(var i = 0, len = el.length; i < len; i++){
11200                 this.removeElement(el[i]);
11201             }
11202             return this;
11203         }
11204         var index = typeof el == 'number' ? el : this.indexOf(el);
11205         if(index !== -1){
11206             if(removeDom){
11207                 var d = this.elements[index];
11208                 if(d.dom){
11209                     d.remove();
11210                 }else{
11211                     d.parentNode.removeChild(d);
11212                 }
11213             }
11214             this.elements.splice(index, 1);
11215         }
11216         return this;
11217     },
11218
11219     /**
11220     * Replaces the specified element with the passed element.
11221     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11222     * to replace.
11223     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11224     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11225     * @return {CompositeElement} this
11226     */
11227     replaceElement : function(el, replacement, domReplace){
11228         var index = typeof el == 'number' ? el : this.indexOf(el);
11229         if(index !== -1){
11230             if(domReplace){
11231                 this.elements[index].replaceWith(replacement);
11232             }else{
11233                 this.elements.splice(index, 1, Roo.get(replacement))
11234             }
11235         }
11236         return this;
11237     },
11238
11239     /**
11240      * Removes all elements.
11241      */
11242     clear : function(){
11243         this.elements = [];
11244     }
11245 };
11246 (function(){
11247     Roo.CompositeElement.createCall = function(proto, fnName){
11248         if(!proto[fnName]){
11249             proto[fnName] = function(){
11250                 return this.invoke(fnName, arguments);
11251             };
11252         }
11253     };
11254     for(var fnName in Roo.Element.prototype){
11255         if(typeof Roo.Element.prototype[fnName] == "function"){
11256             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11257         }
11258     };
11259 })();
11260 /*
11261  * Based on:
11262  * Ext JS Library 1.1.1
11263  * Copyright(c) 2006-2007, Ext JS, LLC.
11264  *
11265  * Originally Released Under LGPL - original licence link has changed is not relivant.
11266  *
11267  * Fork - LGPL
11268  * <script type="text/javascript">
11269  */
11270
11271 /**
11272  * @class Roo.CompositeElementLite
11273  * @extends Roo.CompositeElement
11274  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11275  <pre><code>
11276  var els = Roo.select("#some-el div.some-class");
11277  // or select directly from an existing element
11278  var el = Roo.get('some-el');
11279  el.select('div.some-class');
11280
11281  els.setWidth(100); // all elements become 100 width
11282  els.hide(true); // all elements fade out and hide
11283  // or
11284  els.setWidth(100).hide(true);
11285  </code></pre><br><br>
11286  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11287  * actions will be performed on all the elements in this collection.</b>
11288  */
11289 Roo.CompositeElementLite = function(els){
11290     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11291     this.el = new Roo.Element.Flyweight();
11292 };
11293 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11294     addElements : function(els){
11295         if(els){
11296             if(els instanceof Array){
11297                 this.elements = this.elements.concat(els);
11298             }else{
11299                 var yels = this.elements;
11300                 var index = yels.length-1;
11301                 for(var i = 0, len = els.length; i < len; i++) {
11302                     yels[++index] = els[i];
11303                 }
11304             }
11305         }
11306         return this;
11307     },
11308     invoke : function(fn, args){
11309         var els = this.elements;
11310         var el = this.el;
11311         for(var i = 0, len = els.length; i < len; i++) {
11312             el.dom = els[i];
11313                 Roo.Element.prototype[fn].apply(el, args);
11314         }
11315         return this;
11316     },
11317     /**
11318      * Returns a flyweight Element of the dom element object at the specified index
11319      * @param {Number} index
11320      * @return {Roo.Element}
11321      */
11322     item : function(index){
11323         if(!this.elements[index]){
11324             return null;
11325         }
11326         this.el.dom = this.elements[index];
11327         return this.el;
11328     },
11329
11330     // fixes scope with flyweight
11331     addListener : function(eventName, handler, scope, opt){
11332         var els = this.elements;
11333         for(var i = 0, len = els.length; i < len; i++) {
11334             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11335         }
11336         return this;
11337     },
11338
11339     /**
11340     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11341     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11342     * a reference to the dom node, use el.dom.</b>
11343     * @param {Function} fn The function to call
11344     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11345     * @return {CompositeElement} this
11346     */
11347     each : function(fn, scope){
11348         var els = this.elements;
11349         var el = this.el;
11350         for(var i = 0, len = els.length; i < len; i++){
11351             el.dom = els[i];
11352                 if(fn.call(scope || el, el, this, i) === false){
11353                 break;
11354             }
11355         }
11356         return this;
11357     },
11358
11359     indexOf : function(el){
11360         return this.elements.indexOf(Roo.getDom(el));
11361     },
11362
11363     replaceElement : function(el, replacement, domReplace){
11364         var index = typeof el == 'number' ? el : this.indexOf(el);
11365         if(index !== -1){
11366             replacement = Roo.getDom(replacement);
11367             if(domReplace){
11368                 var d = this.elements[index];
11369                 d.parentNode.insertBefore(replacement, d);
11370                 d.parentNode.removeChild(d);
11371             }
11372             this.elements.splice(index, 1, replacement);
11373         }
11374         return this;
11375     }
11376 });
11377 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11378
11379 /*
11380  * Based on:
11381  * Ext JS Library 1.1.1
11382  * Copyright(c) 2006-2007, Ext JS, LLC.
11383  *
11384  * Originally Released Under LGPL - original licence link has changed is not relivant.
11385  *
11386  * Fork - LGPL
11387  * <script type="text/javascript">
11388  */
11389
11390  
11391
11392 /**
11393  * @class Roo.data.Connection
11394  * @extends Roo.util.Observable
11395  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11396  * either to a configured URL, or to a URL specified at request time.<br><br>
11397  * <p>
11398  * Requests made by this class are asynchronous, and will return immediately. No data from
11399  * the server will be available to the statement immediately following the {@link #request} call.
11400  * To process returned data, use a callback in the request options object, or an event listener.</p><br>
11401  * <p>
11402  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11403  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11404  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11405  * property and, if present, the IFRAME's XML document as the responseXML property.</p><br>
11406  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11407  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11408  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11409  * standard DOM methods.
11410  * @constructor
11411  * @param {Object} config a configuration object.
11412  */
11413 Roo.data.Connection = function(config){
11414     Roo.apply(this, config);
11415     this.addEvents({
11416         /**
11417          * @event beforerequest
11418          * Fires before a network request is made to retrieve a data object.
11419          * @param {Connection} conn This Connection object.
11420          * @param {Object} options The options config object passed to the {@link #request} method.
11421          */
11422         "beforerequest" : true,
11423         /**
11424          * @event requestcomplete
11425          * Fires if the request was successfully completed.
11426          * @param {Connection} conn This Connection object.
11427          * @param {Object} response The XHR object containing the response data.
11428          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11429          * @param {Object} options The options config object passed to the {@link #request} method.
11430          */
11431         "requestcomplete" : true,
11432         /**
11433          * @event requestexception
11434          * Fires if an error HTTP status was returned from the server.
11435          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11436          * @param {Connection} conn This Connection object.
11437          * @param {Object} response The XHR object containing the response data.
11438          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11439          * @param {Object} options The options config object passed to the {@link #request} method.
11440          */
11441         "requestexception" : true
11442     });
11443     Roo.data.Connection.superclass.constructor.call(this);
11444 };
11445
11446 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11447     /**
11448      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11449      */
11450     /**
11451      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11452      * extra parameters to each request made by this object. (defaults to undefined)
11453      */
11454     /**
11455      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11456      *  to each request made by this object. (defaults to undefined)
11457      */
11458     /**
11459      * @cfg {String} method (Optional) The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
11460      */
11461     /**
11462      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11463      */
11464     timeout : 30000,
11465     /**
11466      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11467      * @type Boolean
11468      */
11469     autoAbort:false,
11470
11471     /**
11472      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11473      * @type Boolean
11474      */
11475     disableCaching: true,
11476
11477     /**
11478      * Sends an HTTP request to a remote server.
11479      * @param {Object} options An object which may contain the following properties:<ul>
11480      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11481      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11482      * request, a url encoded string or a function to call to get either.</li>
11483      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11484      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11485      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11486      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11487      * <li>options {Object} The parameter to the request call.</li>
11488      * <li>success {Boolean} True if the request succeeded.</li>
11489      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11490      * </ul></li>
11491      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11492      * The callback is passed the following parameters:<ul>
11493      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11494      * <li>options {Object} The parameter to the request call.</li>
11495      * </ul></li>
11496      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11497      * The callback is passed the following parameters:<ul>
11498      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11499      * <li>options {Object} The parameter to the request call.</li>
11500      * </ul></li>
11501      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11502      * for the callback function. Defaults to the browser window.</li>
11503      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11504      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11505      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11506      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11507      * params for the post data. Any params will be appended to the URL.</li>
11508      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11509      * </ul>
11510      * @return {Number} transactionId
11511      */
11512     request : function(o){
11513         if(this.fireEvent("beforerequest", this, o) !== false){
11514             var p = o.params;
11515
11516             if(typeof p == "function"){
11517                 p = p.call(o.scope||window, o);
11518             }
11519             if(typeof p == "object"){
11520                 p = Roo.urlEncode(o.params);
11521             }
11522             if(this.extraParams){
11523                 var extras = Roo.urlEncode(this.extraParams);
11524                 p = p ? (p + '&' + extras) : extras;
11525             }
11526
11527             var url = o.url || this.url;
11528             if(typeof url == 'function'){
11529                 url = url.call(o.scope||window, o);
11530             }
11531
11532             if(o.form){
11533                 var form = Roo.getDom(o.form);
11534                 url = url || form.action;
11535
11536                 var enctype = form.getAttribute("enctype");
11537                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11538                     return this.doFormUpload(o, p, url);
11539                 }
11540                 var f = Roo.lib.Ajax.serializeForm(form);
11541                 p = p ? (p + '&' + f) : f;
11542             }
11543
11544             var hs = o.headers;
11545             if(this.defaultHeaders){
11546                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11547                 if(!o.headers){
11548                     o.headers = hs;
11549                 }
11550             }
11551
11552             var cb = {
11553                 success: this.handleResponse,
11554                 failure: this.handleFailure,
11555                 scope: this,
11556                 argument: {options: o},
11557                 timeout : o.timeout || this.timeout
11558             };
11559
11560             var method = o.method||this.method||(p ? "POST" : "GET");
11561
11562             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11563                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11564             }
11565
11566             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11567                 if(o.autoAbort){
11568                     this.abort();
11569                 }
11570             }else if(this.autoAbort !== false){
11571                 this.abort();
11572             }
11573
11574             if((method == 'GET' && p) || o.xmlData){
11575                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11576                 p = '';
11577             }
11578             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11579             return this.transId;
11580         }else{
11581             Roo.callback(o.callback, o.scope, [o, null, null]);
11582             return null;
11583         }
11584     },
11585
11586     /**
11587      * Determine whether this object has a request outstanding.
11588      * @param {Number} transactionId (Optional) defaults to the last transaction
11589      * @return {Boolean} True if there is an outstanding request.
11590      */
11591     isLoading : function(transId){
11592         if(transId){
11593             return Roo.lib.Ajax.isCallInProgress(transId);
11594         }else{
11595             return this.transId ? true : false;
11596         }
11597     },
11598
11599     /**
11600      * Aborts any outstanding request.
11601      * @param {Number} transactionId (Optional) defaults to the last transaction
11602      */
11603     abort : function(transId){
11604         if(transId || this.isLoading()){
11605             Roo.lib.Ajax.abort(transId || this.transId);
11606         }
11607     },
11608
11609     // private
11610     handleResponse : function(response){
11611         this.transId = false;
11612         var options = response.argument.options;
11613         response.argument = options ? options.argument : null;
11614         this.fireEvent("requestcomplete", this, response, options);
11615         Roo.callback(options.success, options.scope, [response, options]);
11616         Roo.callback(options.callback, options.scope, [options, true, response]);
11617     },
11618
11619     // private
11620     handleFailure : function(response, e){
11621         this.transId = false;
11622         var options = response.argument.options;
11623         response.argument = options ? options.argument : null;
11624         this.fireEvent("requestexception", this, response, options, e);
11625         Roo.callback(options.failure, options.scope, [response, options]);
11626         Roo.callback(options.callback, options.scope, [options, false, response]);
11627     },
11628
11629     // private
11630     doFormUpload : function(o, ps, url){
11631         var id = Roo.id();
11632         var frame = document.createElement('iframe');
11633         frame.id = id;
11634         frame.name = id;
11635         frame.className = 'x-hidden';
11636         if(Roo.isIE){
11637             frame.src = Roo.SSL_SECURE_URL;
11638         }
11639         document.body.appendChild(frame);
11640
11641         if(Roo.isIE){
11642            document.frames[id].name = id;
11643         }
11644
11645         var form = Roo.getDom(o.form);
11646         form.target = id;
11647         form.method = 'POST';
11648         form.enctype = form.encoding = 'multipart/form-data';
11649         if(url){
11650             form.action = url;
11651         }
11652
11653         var hiddens, hd;
11654         if(ps){ // add dynamic params
11655             hiddens = [];
11656             ps = Roo.urlDecode(ps, false);
11657             for(var k in ps){
11658                 if(ps.hasOwnProperty(k)){
11659                     hd = document.createElement('input');
11660                     hd.type = 'hidden';
11661                     hd.name = k;
11662                     hd.value = ps[k];
11663                     form.appendChild(hd);
11664                     hiddens.push(hd);
11665                 }
11666             }
11667         }
11668
11669         function cb(){
11670             var r = {  // bogus response object
11671                 responseText : '',
11672                 responseXML : null
11673             };
11674
11675             r.argument = o ? o.argument : null;
11676
11677             try { //
11678                 var doc;
11679                 if(Roo.isIE){
11680                     doc = frame.contentWindow.document;
11681                 }else {
11682                     doc = (frame.contentDocument || window.frames[id].document);
11683                 }
11684                 if(doc && doc.body){
11685                     r.responseText = doc.body.innerHTML;
11686                 }
11687                 if(doc && doc.XMLDocument){
11688                     r.responseXML = doc.XMLDocument;
11689                 }else {
11690                     r.responseXML = doc;
11691                 }
11692             }
11693             catch(e) {
11694                 // ignore
11695             }
11696
11697             Roo.EventManager.removeListener(frame, 'load', cb, this);
11698
11699             this.fireEvent("requestcomplete", this, r, o);
11700             Roo.callback(o.success, o.scope, [r, o]);
11701             Roo.callback(o.callback, o.scope, [o, true, r]);
11702
11703             setTimeout(function(){document.body.removeChild(frame);}, 100);
11704         }
11705
11706         Roo.EventManager.on(frame, 'load', cb, this);
11707         form.submit();
11708
11709         if(hiddens){ // remove dynamic params
11710             for(var i = 0, len = hiddens.length; i < len; i++){
11711                 form.removeChild(hiddens[i]);
11712             }
11713         }
11714     }
11715 });
11716 /*
11717  * Based on:
11718  * Ext JS Library 1.1.1
11719  * Copyright(c) 2006-2007, Ext JS, LLC.
11720  *
11721  * Originally Released Under LGPL - original licence link has changed is not relivant.
11722  *
11723  * Fork - LGPL
11724  * <script type="text/javascript">
11725  */
11726  
11727 /**
11728  * Global Ajax request class.
11729  * 
11730  * @class Roo.Ajax
11731  * @extends Roo.data.Connection
11732  * @static
11733  * 
11734  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11735  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11736  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11737  * @cfg {String} method (Optional)  The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
11738  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11739  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11740  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11741  */
11742 Roo.Ajax = new Roo.data.Connection({
11743     // fix up the docs
11744     /**
11745      * @scope Roo.Ajax
11746      * @type {Boolear} 
11747      */
11748     autoAbort : false,
11749
11750     /**
11751      * Serialize the passed form into a url encoded string
11752      * @scope Roo.Ajax
11753      * @param {String/HTMLElement} form
11754      * @return {String}
11755      */
11756     serializeForm : function(form){
11757         return Roo.lib.Ajax.serializeForm(form);
11758     }
11759 });/*
11760  * Based on:
11761  * Ext JS Library 1.1.1
11762  * Copyright(c) 2006-2007, Ext JS, LLC.
11763  *
11764  * Originally Released Under LGPL - original licence link has changed is not relivant.
11765  *
11766  * Fork - LGPL
11767  * <script type="text/javascript">
11768  */
11769
11770  
11771 /**
11772  * @class Roo.UpdateManager
11773  * @extends Roo.util.Observable
11774  * Provides AJAX-style update for Element object.<br><br>
11775  * Usage:<br>
11776  * <pre><code>
11777  * // Get it from a Roo.Element object
11778  * var el = Roo.get("foo");
11779  * var mgr = el.getUpdateManager();
11780  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
11781  * ...
11782  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
11783  * <br>
11784  * // or directly (returns the same UpdateManager instance)
11785  * var mgr = new Roo.UpdateManager("myElementId");
11786  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
11787  * mgr.on("update", myFcnNeedsToKnow);
11788  * <br>
11789    // short handed call directly from the element object
11790    Roo.get("foo").load({
11791         url: "bar.php",
11792         scripts:true,
11793         params: "for=bar",
11794         text: "Loading Foo..."
11795    });
11796  * </code></pre>
11797  * @constructor
11798  * Create new UpdateManager directly.
11799  * @param {String/HTMLElement/Roo.Element} el The element to update
11800  * @param {Boolean} forceNew (optional) By default the constructor checks to see if the passed element already has an UpdateManager and if it does it returns the same instance. This will skip that check (useful for extending this class).
11801  */
11802 Roo.UpdateManager = function(el, forceNew){
11803     el = Roo.get(el);
11804     if(!forceNew && el.updateManager){
11805         return el.updateManager;
11806     }
11807     /**
11808      * The Element object
11809      * @type Roo.Element
11810      */
11811     this.el = el;
11812     /**
11813      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
11814      * @type String
11815      */
11816     this.defaultUrl = null;
11817
11818     this.addEvents({
11819         /**
11820          * @event beforeupdate
11821          * Fired before an update is made, return false from your handler and the update is cancelled.
11822          * @param {Roo.Element} el
11823          * @param {String/Object/Function} url
11824          * @param {String/Object} params
11825          */
11826         "beforeupdate": true,
11827         /**
11828          * @event update
11829          * Fired after successful update is made.
11830          * @param {Roo.Element} el
11831          * @param {Object} oResponseObject The response Object
11832          */
11833         "update": true,
11834         /**
11835          * @event failure
11836          * Fired on update failure.
11837          * @param {Roo.Element} el
11838          * @param {Object} oResponseObject The response Object
11839          */
11840         "failure": true
11841     });
11842     var d = Roo.UpdateManager.defaults;
11843     /**
11844      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
11845      * @type String
11846      */
11847     this.sslBlankUrl = d.sslBlankUrl;
11848     /**
11849      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
11850      * @type Boolean
11851      */
11852     this.disableCaching = d.disableCaching;
11853     /**
11854      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
11855      * @type String
11856      */
11857     this.indicatorText = d.indicatorText;
11858     /**
11859      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
11860      * @type String
11861      */
11862     this.showLoadIndicator = d.showLoadIndicator;
11863     /**
11864      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
11865      * @type Number
11866      */
11867     this.timeout = d.timeout;
11868
11869     /**
11870      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
11871      * @type Boolean
11872      */
11873     this.loadScripts = d.loadScripts;
11874
11875     /**
11876      * Transaction object of current executing transaction
11877      */
11878     this.transaction = null;
11879
11880     /**
11881      * @private
11882      */
11883     this.autoRefreshProcId = null;
11884     /**
11885      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
11886      * @type Function
11887      */
11888     this.refreshDelegate = this.refresh.createDelegate(this);
11889     /**
11890      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
11891      * @type Function
11892      */
11893     this.updateDelegate = this.update.createDelegate(this);
11894     /**
11895      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
11896      * @type Function
11897      */
11898     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
11899     /**
11900      * @private
11901      */
11902     this.successDelegate = this.processSuccess.createDelegate(this);
11903     /**
11904      * @private
11905      */
11906     this.failureDelegate = this.processFailure.createDelegate(this);
11907
11908     if(!this.renderer){
11909      /**
11910       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
11911       */
11912     this.renderer = new Roo.UpdateManager.BasicRenderer();
11913     }
11914     
11915     Roo.UpdateManager.superclass.constructor.call(this);
11916 };
11917
11918 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
11919     /**
11920      * Get the Element this UpdateManager is bound to
11921      * @return {Roo.Element} The element
11922      */
11923     getEl : function(){
11924         return this.el;
11925     },
11926     /**
11927      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
11928      * @param {Object/String/Function} url The url for this request or a function to call to get the url or a config object containing any of the following options:
11929 <pre><code>
11930 um.update({<br/>
11931     url: "your-url.php",<br/>
11932     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
11933     callback: yourFunction,<br/>
11934     scope: yourObject, //(optional scope)  <br/>
11935     discardUrl: false, <br/>
11936     nocache: false,<br/>
11937     text: "Loading...",<br/>
11938     timeout: 30,<br/>
11939     scripts: false<br/>
11940 });
11941 </code></pre>
11942      * The only required property is url. The optional properties nocache, text and scripts
11943      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
11944      * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
11945      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
11946      * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used url. If true, it will not store the url.
11947      */
11948     update : function(url, params, callback, discardUrl){
11949         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
11950             var method = this.method,
11951                 cfg;
11952             if(typeof url == "object"){ // must be config object
11953                 cfg = url;
11954                 url = cfg.url;
11955                 params = params || cfg.params;
11956                 callback = callback || cfg.callback;
11957                 discardUrl = discardUrl || cfg.discardUrl;
11958                 if(callback && cfg.scope){
11959                     callback = callback.createDelegate(cfg.scope);
11960                 }
11961                 if(typeof cfg.method != "undefined"){method = cfg.method;};
11962                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
11963                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
11964                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
11965                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
11966             }
11967             this.showLoading();
11968             if(!discardUrl){
11969                 this.defaultUrl = url;
11970             }
11971             if(typeof url == "function"){
11972                 url = url.call(this);
11973             }
11974
11975             method = method || (params ? "POST" : "GET");
11976             if(method == "GET"){
11977                 url = this.prepareUrl(url);
11978             }
11979
11980             var o = Roo.apply(cfg ||{}, {
11981                 url : url,
11982                 params: params,
11983                 success: this.successDelegate,
11984                 failure: this.failureDelegate,
11985                 callback: undefined,
11986                 timeout: (this.timeout*1000),
11987                 argument: {"url": url, "form": null, "callback": callback, "params": params}
11988             });
11989             Roo.log("updated manager called with timeout of " + o.timeout);
11990             this.transaction = Roo.Ajax.request(o);
11991         }
11992     },
11993
11994     /**
11995      * Performs an async form post, updating this element with the response. If the form has the attribute enctype="multipart/form-data", it assumes it's a file upload.
11996      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
11997      * @param {String/HTMLElement} form The form Id or form element
11998      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
11999      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12000      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12001      */
12002     formUpdate : function(form, url, reset, callback){
12003         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12004             if(typeof url == "function"){
12005                 url = url.call(this);
12006             }
12007             form = Roo.getDom(form);
12008             this.transaction = Roo.Ajax.request({
12009                 form: form,
12010                 url:url,
12011                 success: this.successDelegate,
12012                 failure: this.failureDelegate,
12013                 timeout: (this.timeout*1000),
12014                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12015             });
12016             this.showLoading.defer(1, this);
12017         }
12018     },
12019
12020     /**
12021      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12022      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12023      */
12024     refresh : function(callback){
12025         if(this.defaultUrl == null){
12026             return;
12027         }
12028         this.update(this.defaultUrl, null, callback, true);
12029     },
12030
12031     /**
12032      * Set this element to auto refresh.
12033      * @param {Number} interval How often to update (in seconds).
12034      * @param {String/Function} url (optional) The url for this request or a function to call to get the url (Defaults to the last used url)
12035      * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "&param1=1&param2=2" or as an object {param1: 1, param2: 2}
12036      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12037      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12038      */
12039     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12040         if(refreshNow){
12041             this.update(url || this.defaultUrl, params, callback, true);
12042         }
12043         if(this.autoRefreshProcId){
12044             clearInterval(this.autoRefreshProcId);
12045         }
12046         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12047     },
12048
12049     /**
12050      * Stop auto refresh on this element.
12051      */
12052      stopAutoRefresh : function(){
12053         if(this.autoRefreshProcId){
12054             clearInterval(this.autoRefreshProcId);
12055             delete this.autoRefreshProcId;
12056         }
12057     },
12058
12059     isAutoRefreshing : function(){
12060        return this.autoRefreshProcId ? true : false;
12061     },
12062     /**
12063      * Called to update the element to "Loading" state. Override to perform custom action.
12064      */
12065     showLoading : function(){
12066         if(this.showLoadIndicator){
12067             this.el.update(this.indicatorText);
12068         }
12069     },
12070
12071     /**
12072      * Adds unique parameter to query string if disableCaching = true
12073      * @private
12074      */
12075     prepareUrl : function(url){
12076         if(this.disableCaching){
12077             var append = "_dc=" + (new Date().getTime());
12078             if(url.indexOf("?") !== -1){
12079                 url += "&" + append;
12080             }else{
12081                 url += "?" + append;
12082             }
12083         }
12084         return url;
12085     },
12086
12087     /**
12088      * @private
12089      */
12090     processSuccess : function(response){
12091         this.transaction = null;
12092         if(response.argument.form && response.argument.reset){
12093             try{ // put in try/catch since some older FF releases had problems with this
12094                 response.argument.form.reset();
12095             }catch(e){}
12096         }
12097         if(this.loadScripts){
12098             this.renderer.render(this.el, response, this,
12099                 this.updateComplete.createDelegate(this, [response]));
12100         }else{
12101             this.renderer.render(this.el, response, this);
12102             this.updateComplete(response);
12103         }
12104     },
12105
12106     updateComplete : function(response){
12107         this.fireEvent("update", this.el, response);
12108         if(typeof response.argument.callback == "function"){
12109             response.argument.callback(this.el, true, response);
12110         }
12111     },
12112
12113     /**
12114      * @private
12115      */
12116     processFailure : function(response){
12117         this.transaction = null;
12118         this.fireEvent("failure", this.el, response);
12119         if(typeof response.argument.callback == "function"){
12120             response.argument.callback(this.el, false, response);
12121         }
12122     },
12123
12124     /**
12125      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12126      * @param {Object} renderer The object implementing the render() method
12127      */
12128     setRenderer : function(renderer){
12129         this.renderer = renderer;
12130     },
12131
12132     getRenderer : function(){
12133        return this.renderer;
12134     },
12135
12136     /**
12137      * Set the defaultUrl used for updates
12138      * @param {String/Function} defaultUrl The url or a function to call to get the url
12139      */
12140     setDefaultUrl : function(defaultUrl){
12141         this.defaultUrl = defaultUrl;
12142     },
12143
12144     /**
12145      * Aborts the executing transaction
12146      */
12147     abort : function(){
12148         if(this.transaction){
12149             Roo.Ajax.abort(this.transaction);
12150         }
12151     },
12152
12153     /**
12154      * Returns true if an update is in progress
12155      * @return {Boolean}
12156      */
12157     isUpdating : function(){
12158         if(this.transaction){
12159             return Roo.Ajax.isLoading(this.transaction);
12160         }
12161         return false;
12162     }
12163 });
12164
12165 /**
12166  * @class Roo.UpdateManager.defaults
12167  * @static (not really - but it helps the doc tool)
12168  * The defaults collection enables customizing the default properties of UpdateManager
12169  */
12170    Roo.UpdateManager.defaults = {
12171        /**
12172          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12173          * @type Number
12174          */
12175          timeout : 30,
12176
12177          /**
12178          * True to process scripts by default (Defaults to false).
12179          * @type Boolean
12180          */
12181         loadScripts : false,
12182
12183         /**
12184         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12185         * @type String
12186         */
12187         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12188         /**
12189          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12190          * @type Boolean
12191          */
12192         disableCaching : false,
12193         /**
12194          * Whether to show indicatorText when loading (Defaults to true).
12195          * @type Boolean
12196          */
12197         showLoadIndicator : true,
12198         /**
12199          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12200          * @type String
12201          */
12202         indicatorText : '<div class="loading-indicator">Loading...</div>'
12203    };
12204
12205 /**
12206  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12207  *Usage:
12208  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12209  * @param {String/HTMLElement/Roo.Element} el The element to update
12210  * @param {String} url The url
12211  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12212  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12213  * @static
12214  * @deprecated
12215  * @member Roo.UpdateManager
12216  */
12217 Roo.UpdateManager.updateElement = function(el, url, params, options){
12218     var um = Roo.get(el, true).getUpdateManager();
12219     Roo.apply(um, options);
12220     um.update(url, params, options ? options.callback : null);
12221 };
12222 // alias for backwards compat
12223 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12224 /**
12225  * @class Roo.UpdateManager.BasicRenderer
12226  * Default Content renderer. Updates the elements innerHTML with the responseText.
12227  */
12228 Roo.UpdateManager.BasicRenderer = function(){};
12229
12230 Roo.UpdateManager.BasicRenderer.prototype = {
12231     /**
12232      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12233      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12234      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12235      * @param {Roo.Element} el The element being rendered
12236      * @param {Object} response The YUI Connect response object
12237      * @param {UpdateManager} updateManager The calling update manager
12238      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12239      */
12240      render : function(el, response, updateManager, callback){
12241         el.update(response.responseText, updateManager.loadScripts, callback);
12242     }
12243 };
12244 /*
12245  * Based on:
12246  * Roo JS
12247  * (c)) Alan Knowles
12248  * Licence : LGPL
12249  */
12250
12251
12252 /**
12253  * @class Roo.DomTemplate
12254  * @extends Roo.Template
12255  * An effort at a dom based template engine..
12256  *
12257  * Similar to XTemplate, except it uses dom parsing to create the template..
12258  *
12259  * Supported features:
12260  *
12261  *  Tags:
12262
12263 <pre><code>
12264       {a_variable} - output encoded.
12265       {a_variable.format:("Y-m-d")} - call a method on the variable
12266       {a_variable:raw} - unencoded output
12267       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12268       {a_variable:this.method_on_template(...)} - call a method on the template object.
12269  
12270 </code></pre>
12271  *  The tpl tag:
12272 <pre><code>
12273         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12274         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12275         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12276         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12277   
12278 </code></pre>
12279  *      
12280  */
12281 Roo.DomTemplate = function()
12282 {
12283      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12284      if (this.html) {
12285         this.compile();
12286      }
12287 };
12288
12289
12290 Roo.extend(Roo.DomTemplate, Roo.Template, {
12291     /**
12292      * id counter for sub templates.
12293      */
12294     id : 0,
12295     /**
12296      * flag to indicate if dom parser is inside a pre,
12297      * it will strip whitespace if not.
12298      */
12299     inPre : false,
12300     
12301     /**
12302      * The various sub templates
12303      */
12304     tpls : false,
12305     
12306     
12307     
12308     /**
12309      *
12310      * basic tag replacing syntax
12311      * WORD:WORD()
12312      *
12313      * // you can fake an object call by doing this
12314      *  x.t:(test,tesT) 
12315      * 
12316      */
12317     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12318     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12319     
12320     iterChild : function (node, method) {
12321         
12322         var oldPre = this.inPre;
12323         if (node.tagName == 'PRE') {
12324             this.inPre = true;
12325         }
12326         for( var i = 0; i < node.childNodes.length; i++) {
12327             method.call(this, node.childNodes[i]);
12328         }
12329         this.inPre = oldPre;
12330     },
12331     
12332     
12333     
12334     /**
12335      * compile the template
12336      *
12337      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12338      *
12339      */
12340     compile: function()
12341     {
12342         var s = this.html;
12343         
12344         // covert the html into DOM...
12345         var doc = false;
12346         var div =false;
12347         try {
12348             doc = document.implementation.createHTMLDocument("");
12349             doc.documentElement.innerHTML =   this.html  ;
12350             div = doc.documentElement;
12351         } catch (e) {
12352             // old IE... - nasty -- it causes all sorts of issues.. with
12353             // images getting pulled from server..
12354             div = document.createElement('div');
12355             div.innerHTML = this.html;
12356         }
12357         //doc.documentElement.innerHTML = htmlBody
12358          
12359         
12360         
12361         this.tpls = [];
12362         var _t = this;
12363         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12364         
12365         var tpls = this.tpls;
12366         
12367         // create a top level template from the snippet..
12368         
12369         //Roo.log(div.innerHTML);
12370         
12371         var tpl = {
12372             uid : 'master',
12373             id : this.id++,
12374             attr : false,
12375             value : false,
12376             body : div.innerHTML,
12377             
12378             forCall : false,
12379             execCall : false,
12380             dom : div,
12381             isTop : true
12382             
12383         };
12384         tpls.unshift(tpl);
12385         
12386         
12387         // compile them...
12388         this.tpls = [];
12389         Roo.each(tpls, function(tp){
12390             this.compileTpl(tp);
12391             this.tpls[tp.id] = tp;
12392         }, this);
12393         
12394         this.master = tpls[0];
12395         return this;
12396         
12397         
12398     },
12399     
12400     compileNode : function(node, istop) {
12401         // test for
12402         //Roo.log(node);
12403         
12404         
12405         // skip anything not a tag..
12406         if (node.nodeType != 1) {
12407             if (node.nodeType == 3 && !this.inPre) {
12408                 // reduce white space..
12409                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12410                 
12411             }
12412             return;
12413         }
12414         
12415         var tpl = {
12416             uid : false,
12417             id : false,
12418             attr : false,
12419             value : false,
12420             body : '',
12421             
12422             forCall : false,
12423             execCall : false,
12424             dom : false,
12425             isTop : istop
12426             
12427             
12428         };
12429         
12430         
12431         switch(true) {
12432             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12433             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12434             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12435             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12436             // no default..
12437         }
12438         
12439         
12440         if (!tpl.attr) {
12441             // just itterate children..
12442             this.iterChild(node,this.compileNode);
12443             return;
12444         }
12445         tpl.uid = this.id++;
12446         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12447         node.removeAttribute('roo-'+ tpl.attr);
12448         if (tpl.attr != 'name') {
12449             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12450             node.parentNode.replaceChild(placeholder,  node);
12451         } else {
12452             
12453             var placeholder =  document.createElement('span');
12454             placeholder.className = 'roo-tpl-' + tpl.value;
12455             node.parentNode.replaceChild(placeholder,  node);
12456         }
12457         
12458         // parent now sees '{domtplXXXX}
12459         this.iterChild(node,this.compileNode);
12460         
12461         // we should now have node body...
12462         var div = document.createElement('div');
12463         div.appendChild(node);
12464         tpl.dom = node;
12465         // this has the unfortunate side effect of converting tagged attributes
12466         // eg. href="{...}" into %7C...%7D
12467         // this has been fixed by searching for those combo's although it's a bit hacky..
12468         
12469         
12470         tpl.body = div.innerHTML;
12471         
12472         
12473          
12474         tpl.id = tpl.uid;
12475         switch(tpl.attr) {
12476             case 'for' :
12477                 switch (tpl.value) {
12478                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12479                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12480                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12481                 }
12482                 break;
12483             
12484             case 'exec':
12485                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12486                 break;
12487             
12488             case 'if':     
12489                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12490                 break;
12491             
12492             case 'name':
12493                 tpl.id  = tpl.value; // replace non characters???
12494                 break;
12495             
12496         }
12497         
12498         
12499         this.tpls.push(tpl);
12500         
12501         
12502         
12503     },
12504     
12505     
12506     
12507     
12508     /**
12509      * Compile a segment of the template into a 'sub-template'
12510      *
12511      * 
12512      * 
12513      *
12514      */
12515     compileTpl : function(tpl)
12516     {
12517         var fm = Roo.util.Format;
12518         var useF = this.disableFormats !== true;
12519         
12520         var sep = Roo.isGecko ? "+\n" : ",\n";
12521         
12522         var undef = function(str) {
12523             Roo.debug && Roo.log("Property not found :"  + str);
12524             return '';
12525         };
12526           
12527         //Roo.log(tpl.body);
12528         
12529         
12530         
12531         var fn = function(m, lbrace, name, format, args)
12532         {
12533             //Roo.log("ARGS");
12534             //Roo.log(arguments);
12535             args = args ? args.replace(/\\'/g,"'") : args;
12536             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12537             if (typeof(format) == 'undefined') {
12538                 format =  'htmlEncode'; 
12539             }
12540             if (format == 'raw' ) {
12541                 format = false;
12542             }
12543             
12544             if(name.substr(0, 6) == 'domtpl'){
12545                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12546             }
12547             
12548             // build an array of options to determine if value is undefined..
12549             
12550             // basically get 'xxxx.yyyy' then do
12551             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12552             //    (function () { Roo.log("Property not found"); return ''; })() :
12553             //    ......
12554             
12555             var udef_ar = [];
12556             var lookfor = '';
12557             Roo.each(name.split('.'), function(st) {
12558                 lookfor += (lookfor.length ? '.': '') + st;
12559                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12560             });
12561             
12562             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12563             
12564             
12565             if(format && useF){
12566                 
12567                 args = args ? ',' + args : "";
12568                  
12569                 if(format.substr(0, 5) != "this."){
12570                     format = "fm." + format + '(';
12571                 }else{
12572                     format = 'this.call("'+ format.substr(5) + '", ';
12573                     args = ", values";
12574                 }
12575                 
12576                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12577             }
12578              
12579             if (args && args.length) {
12580                 // called with xxyx.yuu:(test,test)
12581                 // change to ()
12582                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12583             }
12584             // raw.. - :raw modifier..
12585             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12586             
12587         };
12588         var body;
12589         // branched to use + in gecko and [].join() in others
12590         if(Roo.isGecko){
12591             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12592                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12593                     "';};};";
12594         }else{
12595             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12596             body.push(tpl.body.replace(/(\r\n|\n)/g,
12597                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12598             body.push("'].join('');};};");
12599             body = body.join('');
12600         }
12601         
12602         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12603        
12604         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12605         eval(body);
12606         
12607         return this;
12608     },
12609      
12610     /**
12611      * same as applyTemplate, except it's done to one of the subTemplates
12612      * when using named templates, you can do:
12613      *
12614      * var str = pl.applySubTemplate('your-name', values);
12615      *
12616      * 
12617      * @param {Number} id of the template
12618      * @param {Object} values to apply to template
12619      * @param {Object} parent (normaly the instance of this object)
12620      */
12621     applySubTemplate : function(id, values, parent)
12622     {
12623         
12624         
12625         var t = this.tpls[id];
12626         
12627         
12628         try { 
12629             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12630                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12631                 return '';
12632             }
12633         } catch(e) {
12634             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12635             Roo.log(values);
12636           
12637             return '';
12638         }
12639         try { 
12640             
12641             if(t.execCall && t.execCall.call(this, values, parent)){
12642                 return '';
12643             }
12644         } catch(e) {
12645             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12646             Roo.log(values);
12647             return '';
12648         }
12649         
12650         try {
12651             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12652             parent = t.target ? values : parent;
12653             if(t.forCall && vs instanceof Array){
12654                 var buf = [];
12655                 for(var i = 0, len = vs.length; i < len; i++){
12656                     try {
12657                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12658                     } catch (e) {
12659                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12660                         Roo.log(e.body);
12661                         //Roo.log(t.compiled);
12662                         Roo.log(vs[i]);
12663                     }   
12664                 }
12665                 return buf.join('');
12666             }
12667         } catch (e) {
12668             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12669             Roo.log(values);
12670             return '';
12671         }
12672         try {
12673             return t.compiled.call(this, vs, parent);
12674         } catch (e) {
12675             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12676             Roo.log(e.body);
12677             //Roo.log(t.compiled);
12678             Roo.log(values);
12679             return '';
12680         }
12681     },
12682
12683    
12684
12685     applyTemplate : function(values){
12686         return this.master.compiled.call(this, values, {});
12687         //var s = this.subs;
12688     },
12689
12690     apply : function(){
12691         return this.applyTemplate.apply(this, arguments);
12692     }
12693
12694  });
12695
12696 Roo.DomTemplate.from = function(el){
12697     el = Roo.getDom(el);
12698     return new Roo.Domtemplate(el.value || el.innerHTML);
12699 };/*
12700  * Based on:
12701  * Ext JS Library 1.1.1
12702  * Copyright(c) 2006-2007, Ext JS, LLC.
12703  *
12704  * Originally Released Under LGPL - original licence link has changed is not relivant.
12705  *
12706  * Fork - LGPL
12707  * <script type="text/javascript">
12708  */
12709
12710 /**
12711  * @class Roo.util.DelayedTask
12712  * Provides a convenient method of performing setTimeout where a new
12713  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12714  * You can use this class to buffer
12715  * the keypress events for a certain number of milliseconds, and perform only if they stop
12716  * for that amount of time.
12717  * @constructor The parameters to this constructor serve as defaults and are not required.
12718  * @param {Function} fn (optional) The default function to timeout
12719  * @param {Object} scope (optional) The default scope of that timeout
12720  * @param {Array} args (optional) The default Array of arguments
12721  */
12722 Roo.util.DelayedTask = function(fn, scope, args){
12723     var id = null, d, t;
12724
12725     var call = function(){
12726         var now = new Date().getTime();
12727         if(now - t >= d){
12728             clearInterval(id);
12729             id = null;
12730             fn.apply(scope, args || []);
12731         }
12732     };
12733     /**
12734      * Cancels any pending timeout and queues a new one
12735      * @param {Number} delay The milliseconds to delay
12736      * @param {Function} newFn (optional) Overrides function passed to constructor
12737      * @param {Object} newScope (optional) Overrides scope passed to constructor
12738      * @param {Array} newArgs (optional) Overrides args passed to constructor
12739      */
12740     this.delay = function(delay, newFn, newScope, newArgs){
12741         if(id && delay != d){
12742             this.cancel();
12743         }
12744         d = delay;
12745         t = new Date().getTime();
12746         fn = newFn || fn;
12747         scope = newScope || scope;
12748         args = newArgs || args;
12749         if(!id){
12750             id = setInterval(call, d);
12751         }
12752     };
12753
12754     /**
12755      * Cancel the last queued timeout
12756      */
12757     this.cancel = function(){
12758         if(id){
12759             clearInterval(id);
12760             id = null;
12761         }
12762     };
12763 };/*
12764  * Based on:
12765  * Ext JS Library 1.1.1
12766  * Copyright(c) 2006-2007, Ext JS, LLC.
12767  *
12768  * Originally Released Under LGPL - original licence link has changed is not relivant.
12769  *
12770  * Fork - LGPL
12771  * <script type="text/javascript">
12772  */
12773  
12774  
12775 Roo.util.TaskRunner = function(interval){
12776     interval = interval || 10;
12777     var tasks = [], removeQueue = [];
12778     var id = 0;
12779     var running = false;
12780
12781     var stopThread = function(){
12782         running = false;
12783         clearInterval(id);
12784         id = 0;
12785     };
12786
12787     var startThread = function(){
12788         if(!running){
12789             running = true;
12790             id = setInterval(runTasks, interval);
12791         }
12792     };
12793
12794     var removeTask = function(task){
12795         removeQueue.push(task);
12796         if(task.onStop){
12797             task.onStop();
12798         }
12799     };
12800
12801     var runTasks = function(){
12802         if(removeQueue.length > 0){
12803             for(var i = 0, len = removeQueue.length; i < len; i++){
12804                 tasks.remove(removeQueue[i]);
12805             }
12806             removeQueue = [];
12807             if(tasks.length < 1){
12808                 stopThread();
12809                 return;
12810             }
12811         }
12812         var now = new Date().getTime();
12813         for(var i = 0, len = tasks.length; i < len; ++i){
12814             var t = tasks[i];
12815             var itime = now - t.taskRunTime;
12816             if(t.interval <= itime){
12817                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
12818                 t.taskRunTime = now;
12819                 if(rt === false || t.taskRunCount === t.repeat){
12820                     removeTask(t);
12821                     return;
12822                 }
12823             }
12824             if(t.duration && t.duration <= (now - t.taskStartTime)){
12825                 removeTask(t);
12826             }
12827         }
12828     };
12829
12830     /**
12831      * Queues a new task.
12832      * @param {Object} task
12833      */
12834     this.start = function(task){
12835         tasks.push(task);
12836         task.taskStartTime = new Date().getTime();
12837         task.taskRunTime = 0;
12838         task.taskRunCount = 0;
12839         startThread();
12840         return task;
12841     };
12842
12843     this.stop = function(task){
12844         removeTask(task);
12845         return task;
12846     };
12847
12848     this.stopAll = function(){
12849         stopThread();
12850         for(var i = 0, len = tasks.length; i < len; i++){
12851             if(tasks[i].onStop){
12852                 tasks[i].onStop();
12853             }
12854         }
12855         tasks = [];
12856         removeQueue = [];
12857     };
12858 };
12859
12860 Roo.TaskMgr = new Roo.util.TaskRunner();/*
12861  * Based on:
12862  * Ext JS Library 1.1.1
12863  * Copyright(c) 2006-2007, Ext JS, LLC.
12864  *
12865  * Originally Released Under LGPL - original licence link has changed is not relivant.
12866  *
12867  * Fork - LGPL
12868  * <script type="text/javascript">
12869  */
12870
12871  
12872 /**
12873  * @class Roo.util.MixedCollection
12874  * @extends Roo.util.Observable
12875  * A Collection class that maintains both numeric indexes and keys and exposes events.
12876  * @constructor
12877  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
12878  * collection (defaults to false)
12879  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
12880  * and return the key value for that item.  This is used when available to look up the key on items that
12881  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
12882  * equivalent to providing an implementation for the {@link #getKey} method.
12883  */
12884 Roo.util.MixedCollection = function(allowFunctions, keyFn){
12885     this.items = [];
12886     this.map = {};
12887     this.keys = [];
12888     this.length = 0;
12889     this.addEvents({
12890         /**
12891          * @event clear
12892          * Fires when the collection is cleared.
12893          */
12894         "clear" : true,
12895         /**
12896          * @event add
12897          * Fires when an item is added to the collection.
12898          * @param {Number} index The index at which the item was added.
12899          * @param {Object} o The item added.
12900          * @param {String} key The key associated with the added item.
12901          */
12902         "add" : true,
12903         /**
12904          * @event replace
12905          * Fires when an item is replaced in the collection.
12906          * @param {String} key he key associated with the new added.
12907          * @param {Object} old The item being replaced.
12908          * @param {Object} new The new item.
12909          */
12910         "replace" : true,
12911         /**
12912          * @event remove
12913          * Fires when an item is removed from the collection.
12914          * @param {Object} o The item being removed.
12915          * @param {String} key (optional) The key associated with the removed item.
12916          */
12917         "remove" : true,
12918         "sort" : true
12919     });
12920     this.allowFunctions = allowFunctions === true;
12921     if(keyFn){
12922         this.getKey = keyFn;
12923     }
12924     Roo.util.MixedCollection.superclass.constructor.call(this);
12925 };
12926
12927 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
12928     allowFunctions : false,
12929     
12930 /**
12931  * Adds an item to the collection.
12932  * @param {String} key The key to associate with the item
12933  * @param {Object} o The item to add.
12934  * @return {Object} The item added.
12935  */
12936     add : function(key, o){
12937         if(arguments.length == 1){
12938             o = arguments[0];
12939             key = this.getKey(o);
12940         }
12941         if(typeof key == "undefined" || key === null){
12942             this.length++;
12943             this.items.push(o);
12944             this.keys.push(null);
12945         }else{
12946             var old = this.map[key];
12947             if(old){
12948                 return this.replace(key, o);
12949             }
12950             this.length++;
12951             this.items.push(o);
12952             this.map[key] = o;
12953             this.keys.push(key);
12954         }
12955         this.fireEvent("add", this.length-1, o, key);
12956         return o;
12957     },
12958        
12959 /**
12960   * MixedCollection has a generic way to fetch keys if you implement getKey.
12961 <pre><code>
12962 // normal way
12963 var mc = new Roo.util.MixedCollection();
12964 mc.add(someEl.dom.id, someEl);
12965 mc.add(otherEl.dom.id, otherEl);
12966 //and so on
12967
12968 // using getKey
12969 var mc = new Roo.util.MixedCollection();
12970 mc.getKey = function(el){
12971    return el.dom.id;
12972 };
12973 mc.add(someEl);
12974 mc.add(otherEl);
12975
12976 // or via the constructor
12977 var mc = new Roo.util.MixedCollection(false, function(el){
12978    return el.dom.id;
12979 });
12980 mc.add(someEl);
12981 mc.add(otherEl);
12982 </code></pre>
12983  * @param o {Object} The item for which to find the key.
12984  * @return {Object} The key for the passed item.
12985  */
12986     getKey : function(o){
12987          return o.id; 
12988     },
12989    
12990 /**
12991  * Replaces an item in the collection.
12992  * @param {String} key The key associated with the item to replace, or the item to replace.
12993  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
12994  * @return {Object}  The new item.
12995  */
12996     replace : function(key, o){
12997         if(arguments.length == 1){
12998             o = arguments[0];
12999             key = this.getKey(o);
13000         }
13001         var old = this.item(key);
13002         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13003              return this.add(key, o);
13004         }
13005         var index = this.indexOfKey(key);
13006         this.items[index] = o;
13007         this.map[key] = o;
13008         this.fireEvent("replace", key, old, o);
13009         return o;
13010     },
13011    
13012 /**
13013  * Adds all elements of an Array or an Object to the collection.
13014  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13015  * an Array of values, each of which are added to the collection.
13016  */
13017     addAll : function(objs){
13018         if(arguments.length > 1 || objs instanceof Array){
13019             var args = arguments.length > 1 ? arguments : objs;
13020             for(var i = 0, len = args.length; i < len; i++){
13021                 this.add(args[i]);
13022             }
13023         }else{
13024             for(var key in objs){
13025                 if(this.allowFunctions || typeof objs[key] != "function"){
13026                     this.add(key, objs[key]);
13027                 }
13028             }
13029         }
13030     },
13031    
13032 /**
13033  * Executes the specified function once for every item in the collection, passing each
13034  * item as the first and only parameter. returning false from the function will stop the iteration.
13035  * @param {Function} fn The function to execute for each item.
13036  * @param {Object} scope (optional) The scope in which to execute the function.
13037  */
13038     each : function(fn, scope){
13039         var items = [].concat(this.items); // each safe for removal
13040         for(var i = 0, len = items.length; i < len; i++){
13041             if(fn.call(scope || items[i], items[i], i, len) === false){
13042                 break;
13043             }
13044         }
13045     },
13046    
13047 /**
13048  * Executes the specified function once for every key in the collection, passing each
13049  * key, and its associated item as the first two parameters.
13050  * @param {Function} fn The function to execute for each item.
13051  * @param {Object} scope (optional) The scope in which to execute the function.
13052  */
13053     eachKey : function(fn, scope){
13054         for(var i = 0, len = this.keys.length; i < len; i++){
13055             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13056         }
13057     },
13058    
13059 /**
13060  * Returns the first item in the collection which elicits a true return value from the
13061  * passed selection function.
13062  * @param {Function} fn The selection function to execute for each item.
13063  * @param {Object} scope (optional) The scope in which to execute the function.
13064  * @return {Object} The first item in the collection which returned true from the selection function.
13065  */
13066     find : function(fn, scope){
13067         for(var i = 0, len = this.items.length; i < len; i++){
13068             if(fn.call(scope || window, this.items[i], this.keys[i])){
13069                 return this.items[i];
13070             }
13071         }
13072         return null;
13073     },
13074    
13075 /**
13076  * Inserts an item at the specified index in the collection.
13077  * @param {Number} index The index to insert the item at.
13078  * @param {String} key The key to associate with the new item, or the item itself.
13079  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13080  * @return {Object} The item inserted.
13081  */
13082     insert : function(index, key, o){
13083         if(arguments.length == 2){
13084             o = arguments[1];
13085             key = this.getKey(o);
13086         }
13087         if(index >= this.length){
13088             return this.add(key, o);
13089         }
13090         this.length++;
13091         this.items.splice(index, 0, o);
13092         if(typeof key != "undefined" && key != null){
13093             this.map[key] = o;
13094         }
13095         this.keys.splice(index, 0, key);
13096         this.fireEvent("add", index, o, key);
13097         return o;
13098     },
13099    
13100 /**
13101  * Removed an item from the collection.
13102  * @param {Object} o The item to remove.
13103  * @return {Object} The item removed.
13104  */
13105     remove : function(o){
13106         return this.removeAt(this.indexOf(o));
13107     },
13108    
13109 /**
13110  * Remove an item from a specified index in the collection.
13111  * @param {Number} index The index within the collection of the item to remove.
13112  */
13113     removeAt : function(index){
13114         if(index < this.length && index >= 0){
13115             this.length--;
13116             var o = this.items[index];
13117             this.items.splice(index, 1);
13118             var key = this.keys[index];
13119             if(typeof key != "undefined"){
13120                 delete this.map[key];
13121             }
13122             this.keys.splice(index, 1);
13123             this.fireEvent("remove", o, key);
13124         }
13125     },
13126    
13127 /**
13128  * Removed an item associated with the passed key fom the collection.
13129  * @param {String} key The key of the item to remove.
13130  */
13131     removeKey : function(key){
13132         return this.removeAt(this.indexOfKey(key));
13133     },
13134    
13135 /**
13136  * Returns the number of items in the collection.
13137  * @return {Number} the number of items in the collection.
13138  */
13139     getCount : function(){
13140         return this.length; 
13141     },
13142    
13143 /**
13144  * Returns index within the collection of the passed Object.
13145  * @param {Object} o The item to find the index of.
13146  * @return {Number} index of the item.
13147  */
13148     indexOf : function(o){
13149         if(!this.items.indexOf){
13150             for(var i = 0, len = this.items.length; i < len; i++){
13151                 if(this.items[i] == o) {
13152                     return i;
13153                 }
13154             }
13155             return -1;
13156         }else{
13157             return this.items.indexOf(o);
13158         }
13159     },
13160    
13161 /**
13162  * Returns index within the collection of the passed key.
13163  * @param {String} key The key to find the index of.
13164  * @return {Number} index of the key.
13165  */
13166     indexOfKey : function(key){
13167         if(!this.keys.indexOf){
13168             for(var i = 0, len = this.keys.length; i < len; i++){
13169                 if(this.keys[i] == key) {
13170                     return i;
13171                 }
13172             }
13173             return -1;
13174         }else{
13175             return this.keys.indexOf(key);
13176         }
13177     },
13178    
13179 /**
13180  * Returns the item associated with the passed key OR index. Key has priority over index.
13181  * @param {String/Number} key The key or index of the item.
13182  * @return {Object} The item associated with the passed key.
13183  */
13184     item : function(key){
13185         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13186         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13187     },
13188     
13189 /**
13190  * Returns the item at the specified index.
13191  * @param {Number} index The index of the item.
13192  * @return {Object}
13193  */
13194     itemAt : function(index){
13195         return this.items[index];
13196     },
13197     
13198 /**
13199  * Returns the item associated with the passed key.
13200  * @param {String/Number} key The key of the item.
13201  * @return {Object} The item associated with the passed key.
13202  */
13203     key : function(key){
13204         return this.map[key];
13205     },
13206    
13207 /**
13208  * Returns true if the collection contains the passed Object as an item.
13209  * @param {Object} o  The Object to look for in the collection.
13210  * @return {Boolean} True if the collection contains the Object as an item.
13211  */
13212     contains : function(o){
13213         return this.indexOf(o) != -1;
13214     },
13215    
13216 /**
13217  * Returns true if the collection contains the passed Object as a key.
13218  * @param {String} key The key to look for in the collection.
13219  * @return {Boolean} True if the collection contains the Object as a key.
13220  */
13221     containsKey : function(key){
13222         return typeof this.map[key] != "undefined";
13223     },
13224    
13225 /**
13226  * Removes all items from the collection.
13227  */
13228     clear : function(){
13229         this.length = 0;
13230         this.items = [];
13231         this.keys = [];
13232         this.map = {};
13233         this.fireEvent("clear");
13234     },
13235    
13236 /**
13237  * Returns the first item in the collection.
13238  * @return {Object} the first item in the collection..
13239  */
13240     first : function(){
13241         return this.items[0]; 
13242     },
13243    
13244 /**
13245  * Returns the last item in the collection.
13246  * @return {Object} the last item in the collection..
13247  */
13248     last : function(){
13249         return this.items[this.length-1];   
13250     },
13251     
13252     _sort : function(property, dir, fn){
13253         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13254         fn = fn || function(a, b){
13255             return a-b;
13256         };
13257         var c = [], k = this.keys, items = this.items;
13258         for(var i = 0, len = items.length; i < len; i++){
13259             c[c.length] = {key: k[i], value: items[i], index: i};
13260         }
13261         c.sort(function(a, b){
13262             var v = fn(a[property], b[property]) * dsc;
13263             if(v == 0){
13264                 v = (a.index < b.index ? -1 : 1);
13265             }
13266             return v;
13267         });
13268         for(var i = 0, len = c.length; i < len; i++){
13269             items[i] = c[i].value;
13270             k[i] = c[i].key;
13271         }
13272         this.fireEvent("sort", this);
13273     },
13274     
13275     /**
13276      * Sorts this collection with the passed comparison function
13277      * @param {String} direction (optional) "ASC" or "DESC"
13278      * @param {Function} fn (optional) comparison function
13279      */
13280     sort : function(dir, fn){
13281         this._sort("value", dir, fn);
13282     },
13283     
13284     /**
13285      * Sorts this collection by keys
13286      * @param {String} direction (optional) "ASC" or "DESC"
13287      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13288      */
13289     keySort : function(dir, fn){
13290         this._sort("key", dir, fn || function(a, b){
13291             return String(a).toUpperCase()-String(b).toUpperCase();
13292         });
13293     },
13294     
13295     /**
13296      * Returns a range of items in this collection
13297      * @param {Number} startIndex (optional) defaults to 0
13298      * @param {Number} endIndex (optional) default to the last item
13299      * @return {Array} An array of items
13300      */
13301     getRange : function(start, end){
13302         var items = this.items;
13303         if(items.length < 1){
13304             return [];
13305         }
13306         start = start || 0;
13307         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13308         var r = [];
13309         if(start <= end){
13310             for(var i = start; i <= end; i++) {
13311                     r[r.length] = items[i];
13312             }
13313         }else{
13314             for(var i = start; i >= end; i--) {
13315                     r[r.length] = items[i];
13316             }
13317         }
13318         return r;
13319     },
13320         
13321     /**
13322      * Filter the <i>objects</i> in this collection by a specific property. 
13323      * Returns a new collection that has been filtered.
13324      * @param {String} property A property on your objects
13325      * @param {String/RegExp} value Either string that the property values 
13326      * should start with or a RegExp to test against the property
13327      * @return {MixedCollection} The new filtered collection
13328      */
13329     filter : function(property, value){
13330         if(!value.exec){ // not a regex
13331             value = String(value);
13332             if(value.length == 0){
13333                 return this.clone();
13334             }
13335             value = new RegExp("^" + Roo.escapeRe(value), "i");
13336         }
13337         return this.filterBy(function(o){
13338             return o && value.test(o[property]);
13339         });
13340         },
13341     
13342     /**
13343      * Filter by a function. * Returns a new collection that has been filtered.
13344      * The passed function will be called with each 
13345      * object in the collection. If the function returns true, the value is included 
13346      * otherwise it is filtered.
13347      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13348      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13349      * @return {MixedCollection} The new filtered collection
13350      */
13351     filterBy : function(fn, scope){
13352         var r = new Roo.util.MixedCollection();
13353         r.getKey = this.getKey;
13354         var k = this.keys, it = this.items;
13355         for(var i = 0, len = it.length; i < len; i++){
13356             if(fn.call(scope||this, it[i], k[i])){
13357                                 r.add(k[i], it[i]);
13358                         }
13359         }
13360         return r;
13361     },
13362     
13363     /**
13364      * Creates a duplicate of this collection
13365      * @return {MixedCollection}
13366      */
13367     clone : function(){
13368         var r = new Roo.util.MixedCollection();
13369         var k = this.keys, it = this.items;
13370         for(var i = 0, len = it.length; i < len; i++){
13371             r.add(k[i], it[i]);
13372         }
13373         r.getKey = this.getKey;
13374         return r;
13375     }
13376 });
13377 /**
13378  * Returns the item associated with the passed key or index.
13379  * @method
13380  * @param {String/Number} key The key or index of the item.
13381  * @return {Object} The item associated with the passed key.
13382  */
13383 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13384  * Based on:
13385  * Ext JS Library 1.1.1
13386  * Copyright(c) 2006-2007, Ext JS, LLC.
13387  *
13388  * Originally Released Under LGPL - original licence link has changed is not relivant.
13389  *
13390  * Fork - LGPL
13391  * <script type="text/javascript">
13392  */
13393 /**
13394  * @class Roo.util.JSON
13395  * Modified version of Douglas Crockford"s json.js that doesn"t
13396  * mess with the Object prototype 
13397  * http://www.json.org/js.html
13398  * @singleton
13399  */
13400 Roo.util.JSON = new (function(){
13401     var useHasOwn = {}.hasOwnProperty ? true : false;
13402     
13403     // crashes Safari in some instances
13404     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13405     
13406     var pad = function(n) {
13407         return n < 10 ? "0" + n : n;
13408     };
13409     
13410     var m = {
13411         "\b": '\\b',
13412         "\t": '\\t',
13413         "\n": '\\n',
13414         "\f": '\\f',
13415         "\r": '\\r',
13416         '"' : '\\"',
13417         "\\": '\\\\'
13418     };
13419
13420     var encodeString = function(s){
13421         if (/["\\\x00-\x1f]/.test(s)) {
13422             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13423                 var c = m[b];
13424                 if(c){
13425                     return c;
13426                 }
13427                 c = b.charCodeAt();
13428                 return "\\u00" +
13429                     Math.floor(c / 16).toString(16) +
13430                     (c % 16).toString(16);
13431             }) + '"';
13432         }
13433         return '"' + s + '"';
13434     };
13435     
13436     var encodeArray = function(o){
13437         var a = ["["], b, i, l = o.length, v;
13438             for (i = 0; i < l; i += 1) {
13439                 v = o[i];
13440                 switch (typeof v) {
13441                     case "undefined":
13442                     case "function":
13443                     case "unknown":
13444                         break;
13445                     default:
13446                         if (b) {
13447                             a.push(',');
13448                         }
13449                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13450                         b = true;
13451                 }
13452             }
13453             a.push("]");
13454             return a.join("");
13455     };
13456     
13457     var encodeDate = function(o){
13458         return '"' + o.getFullYear() + "-" +
13459                 pad(o.getMonth() + 1) + "-" +
13460                 pad(o.getDate()) + "T" +
13461                 pad(o.getHours()) + ":" +
13462                 pad(o.getMinutes()) + ":" +
13463                 pad(o.getSeconds()) + '"';
13464     };
13465     
13466     /**
13467      * Encodes an Object, Array or other value
13468      * @param {Mixed} o The variable to encode
13469      * @return {String} The JSON string
13470      */
13471     this.encode = function(o)
13472     {
13473         // should this be extended to fully wrap stringify..
13474         
13475         if(typeof o == "undefined" || o === null){
13476             return "null";
13477         }else if(o instanceof Array){
13478             return encodeArray(o);
13479         }else if(o instanceof Date){
13480             return encodeDate(o);
13481         }else if(typeof o == "string"){
13482             return encodeString(o);
13483         }else if(typeof o == "number"){
13484             return isFinite(o) ? String(o) : "null";
13485         }else if(typeof o == "boolean"){
13486             return String(o);
13487         }else {
13488             var a = ["{"], b, i, v;
13489             for (i in o) {
13490                 if(!useHasOwn || o.hasOwnProperty(i)) {
13491                     v = o[i];
13492                     switch (typeof v) {
13493                     case "undefined":
13494                     case "function":
13495                     case "unknown":
13496                         break;
13497                     default:
13498                         if(b){
13499                             a.push(',');
13500                         }
13501                         a.push(this.encode(i), ":",
13502                                 v === null ? "null" : this.encode(v));
13503                         b = true;
13504                     }
13505                 }
13506             }
13507             a.push("}");
13508             return a.join("");
13509         }
13510     };
13511     
13512     /**
13513      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13514      * @param {String} json The JSON string
13515      * @return {Object} The resulting object
13516      */
13517     this.decode = function(json){
13518         
13519         return  /** eval:var:json */ eval("(" + json + ')');
13520     };
13521 })();
13522 /** 
13523  * Shorthand for {@link Roo.util.JSON#encode}
13524  * @member Roo encode 
13525  * @method */
13526 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13527 /** 
13528  * Shorthand for {@link Roo.util.JSON#decode}
13529  * @member Roo decode 
13530  * @method */
13531 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13532 /*
13533  * Based on:
13534  * Ext JS Library 1.1.1
13535  * Copyright(c) 2006-2007, Ext JS, LLC.
13536  *
13537  * Originally Released Under LGPL - original licence link has changed is not relivant.
13538  *
13539  * Fork - LGPL
13540  * <script type="text/javascript">
13541  */
13542  
13543 /**
13544  * @class Roo.util.Format
13545  * Reusable data formatting functions
13546  * @singleton
13547  */
13548 Roo.util.Format = function(){
13549     var trimRe = /^\s+|\s+$/g;
13550     return {
13551         /**
13552          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13553          * @param {String} value The string to truncate
13554          * @param {Number} length The maximum length to allow before truncating
13555          * @return {String} The converted text
13556          */
13557         ellipsis : function(value, len){
13558             if(value && value.length > len){
13559                 return value.substr(0, len-3)+"...";
13560             }
13561             return value;
13562         },
13563
13564         /**
13565          * Checks a reference and converts it to empty string if it is undefined
13566          * @param {Mixed} value Reference to check
13567          * @return {Mixed} Empty string if converted, otherwise the original value
13568          */
13569         undef : function(value){
13570             return typeof value != "undefined" ? value : "";
13571         },
13572
13573         /**
13574          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13575          * @param {String} value The string to encode
13576          * @return {String} The encoded text
13577          */
13578         htmlEncode : function(value){
13579             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13580         },
13581
13582         /**
13583          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13584          * @param {String} value The string to decode
13585          * @return {String} The decoded text
13586          */
13587         htmlDecode : function(value){
13588             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13589         },
13590
13591         /**
13592          * Trims any whitespace from either side of a string
13593          * @param {String} value The text to trim
13594          * @return {String} The trimmed text
13595          */
13596         trim : function(value){
13597             return String(value).replace(trimRe, "");
13598         },
13599
13600         /**
13601          * Returns a substring from within an original string
13602          * @param {String} value The original text
13603          * @param {Number} start The start index of the substring
13604          * @param {Number} length The length of the substring
13605          * @return {String} The substring
13606          */
13607         substr : function(value, start, length){
13608             return String(value).substr(start, length);
13609         },
13610
13611         /**
13612          * Converts a string to all lower case letters
13613          * @param {String} value The text to convert
13614          * @return {String} The converted text
13615          */
13616         lowercase : function(value){
13617             return String(value).toLowerCase();
13618         },
13619
13620         /**
13621          * Converts a string to all upper case letters
13622          * @param {String} value The text to convert
13623          * @return {String} The converted text
13624          */
13625         uppercase : function(value){
13626             return String(value).toUpperCase();
13627         },
13628
13629         /**
13630          * Converts the first character only of a string to upper case
13631          * @param {String} value The text to convert
13632          * @return {String} The converted text
13633          */
13634         capitalize : function(value){
13635             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13636         },
13637
13638         // private
13639         call : function(value, fn){
13640             if(arguments.length > 2){
13641                 var args = Array.prototype.slice.call(arguments, 2);
13642                 args.unshift(value);
13643                  
13644                 return /** eval:var:value */  eval(fn).apply(window, args);
13645             }else{
13646                 /** eval:var:value */
13647                 return /** eval:var:value */ eval(fn).call(window, value);
13648             }
13649         },
13650
13651        
13652         /**
13653          * safer version of Math.toFixed..??/
13654          * @param {Number/String} value The numeric value to format
13655          * @param {Number/String} value Decimal places 
13656          * @return {String} The formatted currency string
13657          */
13658         toFixed : function(v, n)
13659         {
13660             // why not use to fixed - precision is buggered???
13661             if (!n) {
13662                 return Math.round(v-0);
13663             }
13664             var fact = Math.pow(10,n+1);
13665             v = (Math.round((v-0)*fact))/fact;
13666             var z = (''+fact).substring(2);
13667             if (v == Math.floor(v)) {
13668                 return Math.floor(v) + '.' + z;
13669             }
13670             
13671             // now just padd decimals..
13672             var ps = String(v).split('.');
13673             var fd = (ps[1] + z);
13674             var r = fd.substring(0,n); 
13675             var rm = fd.substring(n); 
13676             if (rm < 5) {
13677                 return ps[0] + '.' + r;
13678             }
13679             r*=1; // turn it into a number;
13680             r++;
13681             if (String(r).length != n) {
13682                 ps[0]*=1;
13683                 ps[0]++;
13684                 r = String(r).substring(1); // chop the end off.
13685             }
13686             
13687             return ps[0] + '.' + r;
13688              
13689         },
13690         
13691         /**
13692          * Format a number as US currency
13693          * @param {Number/String} value The numeric value to format
13694          * @return {String} The formatted currency string
13695          */
13696         usMoney : function(v){
13697             return '$' + Roo.util.Format.number(v);
13698         },
13699         
13700         /**
13701          * Format a number
13702          * eventually this should probably emulate php's number_format
13703          * @param {Number/String} value The numeric value to format
13704          * @param {Number} decimals number of decimal places
13705          * @return {String} The formatted currency string
13706          */
13707         number : function(v,decimals)
13708         {
13709             // multiply and round.
13710             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13711             var mul = Math.pow(10, decimals);
13712             var zero = String(mul).substring(1);
13713             v = (Math.round((v-0)*mul))/mul;
13714             
13715             // if it's '0' number.. then
13716             
13717             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13718             v = String(v);
13719             var ps = v.split('.');
13720             var whole = ps[0];
13721             
13722             
13723             var r = /(\d+)(\d{3})/;
13724             // add comma's
13725             while (r.test(whole)) {
13726                 whole = whole.replace(r, '$1' + ',' + '$2');
13727             }
13728             
13729             
13730             var sub = ps[1] ?
13731                     // has decimals..
13732                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13733                     // does not have decimals
13734                     (decimals ? ('.' + zero) : '');
13735             
13736             
13737             return whole + sub ;
13738         },
13739         
13740         /**
13741          * Parse a value into a formatted date using the specified format pattern.
13742          * @param {Mixed} value The value to format
13743          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13744          * @return {String} The formatted date string
13745          */
13746         date : function(v, format){
13747             if(!v){
13748                 return "";
13749             }
13750             if(!(v instanceof Date)){
13751                 v = new Date(Date.parse(v));
13752             }
13753             return v.dateFormat(format || Roo.util.Format.defaults.date);
13754         },
13755
13756         /**
13757          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13758          * @param {String} format Any valid date format string
13759          * @return {Function} The date formatting function
13760          */
13761         dateRenderer : function(format){
13762             return function(v){
13763                 return Roo.util.Format.date(v, format);  
13764             };
13765         },
13766
13767         // private
13768         stripTagsRE : /<\/?[^>]+>/gi,
13769         
13770         /**
13771          * Strips all HTML tags
13772          * @param {Mixed} value The text from which to strip tags
13773          * @return {String} The stripped text
13774          */
13775         stripTags : function(v){
13776             return !v ? v : String(v).replace(this.stripTagsRE, "");
13777         }
13778     };
13779 }();
13780 Roo.util.Format.defaults = {
13781     date : 'd/M/Y'
13782 };/*
13783  * Based on:
13784  * Ext JS Library 1.1.1
13785  * Copyright(c) 2006-2007, Ext JS, LLC.
13786  *
13787  * Originally Released Under LGPL - original licence link has changed is not relivant.
13788  *
13789  * Fork - LGPL
13790  * <script type="text/javascript">
13791  */
13792
13793
13794  
13795
13796 /**
13797  * @class Roo.MasterTemplate
13798  * @extends Roo.Template
13799  * Provides a template that can have child templates. The syntax is:
13800 <pre><code>
13801 var t = new Roo.MasterTemplate(
13802         '&lt;select name="{name}"&gt;',
13803                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
13804         '&lt;/select&gt;'
13805 );
13806 t.add('options', {value: 'foo', text: 'bar'});
13807 // or you can add multiple child elements in one shot
13808 t.addAll('options', [
13809     {value: 'foo', text: 'bar'},
13810     {value: 'foo2', text: 'bar2'},
13811     {value: 'foo3', text: 'bar3'}
13812 ]);
13813 // then append, applying the master template values
13814 t.append('my-form', {name: 'my-select'});
13815 </code></pre>
13816 * A name attribute for the child template is not required if you have only one child
13817 * template or you want to refer to them by index.
13818  */
13819 Roo.MasterTemplate = function(){
13820     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
13821     this.originalHtml = this.html;
13822     var st = {};
13823     var m, re = this.subTemplateRe;
13824     re.lastIndex = 0;
13825     var subIndex = 0;
13826     while(m = re.exec(this.html)){
13827         var name = m[1], content = m[2];
13828         st[subIndex] = {
13829             name: name,
13830             index: subIndex,
13831             buffer: [],
13832             tpl : new Roo.Template(content)
13833         };
13834         if(name){
13835             st[name] = st[subIndex];
13836         }
13837         st[subIndex].tpl.compile();
13838         st[subIndex].tpl.call = this.call.createDelegate(this);
13839         subIndex++;
13840     }
13841     this.subCount = subIndex;
13842     this.subs = st;
13843 };
13844 Roo.extend(Roo.MasterTemplate, Roo.Template, {
13845     /**
13846     * The regular expression used to match sub templates
13847     * @type RegExp
13848     * @property
13849     */
13850     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
13851
13852     /**
13853      * Applies the passed values to a child template.
13854      * @param {String/Number} name (optional) The name or index of the child template
13855      * @param {Array/Object} values The values to be applied to the template
13856      * @return {MasterTemplate} this
13857      */
13858      add : function(name, values){
13859         if(arguments.length == 1){
13860             values = arguments[0];
13861             name = 0;
13862         }
13863         var s = this.subs[name];
13864         s.buffer[s.buffer.length] = s.tpl.apply(values);
13865         return this;
13866     },
13867
13868     /**
13869      * Applies all the passed values to a child template.
13870      * @param {String/Number} name (optional) The name or index of the child template
13871      * @param {Array} values The values to be applied to the template, this should be an array of objects.
13872      * @param {Boolean} reset (optional) True to reset the template first
13873      * @return {MasterTemplate} this
13874      */
13875     fill : function(name, values, reset){
13876         var a = arguments;
13877         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
13878             values = a[0];
13879             name = 0;
13880             reset = a[1];
13881         }
13882         if(reset){
13883             this.reset();
13884         }
13885         for(var i = 0, len = values.length; i < len; i++){
13886             this.add(name, values[i]);
13887         }
13888         return this;
13889     },
13890
13891     /**
13892      * Resets the template for reuse
13893      * @return {MasterTemplate} this
13894      */
13895      reset : function(){
13896         var s = this.subs;
13897         for(var i = 0; i < this.subCount; i++){
13898             s[i].buffer = [];
13899         }
13900         return this;
13901     },
13902
13903     applyTemplate : function(values){
13904         var s = this.subs;
13905         var replaceIndex = -1;
13906         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
13907             return s[++replaceIndex].buffer.join("");
13908         });
13909         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
13910     },
13911
13912     apply : function(){
13913         return this.applyTemplate.apply(this, arguments);
13914     },
13915
13916     compile : function(){return this;}
13917 });
13918
13919 /**
13920  * Alias for fill().
13921  * @method
13922  */
13923 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
13924  /**
13925  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
13926  * var tpl = Roo.MasterTemplate.from('element-id');
13927  * @param {String/HTMLElement} el
13928  * @param {Object} config
13929  * @static
13930  */
13931 Roo.MasterTemplate.from = function(el, config){
13932     el = Roo.getDom(el);
13933     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
13934 };/*
13935  * Based on:
13936  * Ext JS Library 1.1.1
13937  * Copyright(c) 2006-2007, Ext JS, LLC.
13938  *
13939  * Originally Released Under LGPL - original licence link has changed is not relivant.
13940  *
13941  * Fork - LGPL
13942  * <script type="text/javascript">
13943  */
13944
13945  
13946 /**
13947  * @class Roo.util.CSS
13948  * Utility class for manipulating CSS rules
13949  * @singleton
13950  */
13951 Roo.util.CSS = function(){
13952         var rules = null;
13953         var doc = document;
13954
13955     var camelRe = /(-[a-z])/gi;
13956     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
13957
13958    return {
13959    /**
13960     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
13961     * tag and appended to the HEAD of the document.
13962     * @param {String|Object} cssText The text containing the css rules
13963     * @param {String} id An id to add to the stylesheet for later removal
13964     * @return {StyleSheet}
13965     */
13966     createStyleSheet : function(cssText, id){
13967         var ss;
13968         var head = doc.getElementsByTagName("head")[0];
13969         var nrules = doc.createElement("style");
13970         nrules.setAttribute("type", "text/css");
13971         if(id){
13972             nrules.setAttribute("id", id);
13973         }
13974         if (typeof(cssText) != 'string') {
13975             // support object maps..
13976             // not sure if this a good idea.. 
13977             // perhaps it should be merged with the general css handling
13978             // and handle js style props.
13979             var cssTextNew = [];
13980             for(var n in cssText) {
13981                 var citems = [];
13982                 for(var k in cssText[n]) {
13983                     citems.push( k + ' : ' +cssText[n][k] + ';' );
13984                 }
13985                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
13986                 
13987             }
13988             cssText = cssTextNew.join("\n");
13989             
13990         }
13991        
13992        
13993        if(Roo.isIE){
13994            head.appendChild(nrules);
13995            ss = nrules.styleSheet;
13996            ss.cssText = cssText;
13997        }else{
13998            try{
13999                 nrules.appendChild(doc.createTextNode(cssText));
14000            }catch(e){
14001                nrules.cssText = cssText; 
14002            }
14003            head.appendChild(nrules);
14004            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14005        }
14006        this.cacheStyleSheet(ss);
14007        return ss;
14008    },
14009
14010    /**
14011     * Removes a style or link tag by id
14012     * @param {String} id The id of the tag
14013     */
14014    removeStyleSheet : function(id){
14015        var existing = doc.getElementById(id);
14016        if(existing){
14017            existing.parentNode.removeChild(existing);
14018        }
14019    },
14020
14021    /**
14022     * Dynamically swaps an existing stylesheet reference for a new one
14023     * @param {String} id The id of an existing link tag to remove
14024     * @param {String} url The href of the new stylesheet to include
14025     */
14026    swapStyleSheet : function(id, url){
14027        this.removeStyleSheet(id);
14028        var ss = doc.createElement("link");
14029        ss.setAttribute("rel", "stylesheet");
14030        ss.setAttribute("type", "text/css");
14031        ss.setAttribute("id", id);
14032        ss.setAttribute("href", url);
14033        doc.getElementsByTagName("head")[0].appendChild(ss);
14034    },
14035    
14036    /**
14037     * Refresh the rule cache if you have dynamically added stylesheets
14038     * @return {Object} An object (hash) of rules indexed by selector
14039     */
14040    refreshCache : function(){
14041        return this.getRules(true);
14042    },
14043
14044    // private
14045    cacheStyleSheet : function(stylesheet){
14046        if(!rules){
14047            rules = {};
14048        }
14049        try{// try catch for cross domain access issue
14050            var ssRules = stylesheet.cssRules || stylesheet.rules;
14051            for(var j = ssRules.length-1; j >= 0; --j){
14052                rules[ssRules[j].selectorText] = ssRules[j];
14053            }
14054        }catch(e){}
14055    },
14056    
14057    /**
14058     * Gets all css rules for the document
14059     * @param {Boolean} refreshCache true to refresh the internal cache
14060     * @return {Object} An object (hash) of rules indexed by selector
14061     */
14062    getRules : function(refreshCache){
14063                 if(rules == null || refreshCache){
14064                         rules = {};
14065                         var ds = doc.styleSheets;
14066                         for(var i =0, len = ds.length; i < len; i++){
14067                             try{
14068                         this.cacheStyleSheet(ds[i]);
14069                     }catch(e){} 
14070                 }
14071                 }
14072                 return rules;
14073         },
14074         
14075         /**
14076     * Gets an an individual CSS rule by selector(s)
14077     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14078     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14079     * @return {CSSRule} The CSS rule or null if one is not found
14080     */
14081    getRule : function(selector, refreshCache){
14082                 var rs = this.getRules(refreshCache);
14083                 if(!(selector instanceof Array)){
14084                     return rs[selector];
14085                 }
14086                 for(var i = 0; i < selector.length; i++){
14087                         if(rs[selector[i]]){
14088                                 return rs[selector[i]];
14089                         }
14090                 }
14091                 return null;
14092         },
14093         
14094         
14095         /**
14096     * Updates a rule property
14097     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14098     * @param {String} property The css property
14099     * @param {String} value The new value for the property
14100     * @return {Boolean} true If a rule was found and updated
14101     */
14102    updateRule : function(selector, property, value){
14103                 if(!(selector instanceof Array)){
14104                         var rule = this.getRule(selector);
14105                         if(rule){
14106                                 rule.style[property.replace(camelRe, camelFn)] = value;
14107                                 return true;
14108                         }
14109                 }else{
14110                         for(var i = 0; i < selector.length; i++){
14111                                 if(this.updateRule(selector[i], property, value)){
14112                                         return true;
14113                                 }
14114                         }
14115                 }
14116                 return false;
14117         }
14118    };   
14119 }();/*
14120  * Based on:
14121  * Ext JS Library 1.1.1
14122  * Copyright(c) 2006-2007, Ext JS, LLC.
14123  *
14124  * Originally Released Under LGPL - original licence link has changed is not relivant.
14125  *
14126  * Fork - LGPL
14127  * <script type="text/javascript">
14128  */
14129
14130  
14131
14132 /**
14133  * @class Roo.util.ClickRepeater
14134  * @extends Roo.util.Observable
14135  * 
14136  * A wrapper class which can be applied to any element. Fires a "click" event while the
14137  * mouse is pressed. The interval between firings may be specified in the config but
14138  * defaults to 10 milliseconds.
14139  * 
14140  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14141  * 
14142  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14143  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14144  * Similar to an autorepeat key delay.
14145  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14146  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14147  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14148  *           "interval" and "delay" are ignored. "immediate" is honored.
14149  * @cfg {Boolean} preventDefault True to prevent the default click event
14150  * @cfg {Boolean} stopDefault True to stop the default click event
14151  * 
14152  * @history
14153  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14154  *     2007-02-02 jvs Renamed to ClickRepeater
14155  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14156  *
14157  *  @constructor
14158  * @param {String/HTMLElement/Element} el The element to listen on
14159  * @param {Object} config
14160  **/
14161 Roo.util.ClickRepeater = function(el, config)
14162 {
14163     this.el = Roo.get(el);
14164     this.el.unselectable();
14165
14166     Roo.apply(this, config);
14167
14168     this.addEvents({
14169     /**
14170      * @event mousedown
14171      * Fires when the mouse button is depressed.
14172      * @param {Roo.util.ClickRepeater} this
14173      */
14174         "mousedown" : true,
14175     /**
14176      * @event click
14177      * Fires on a specified interval during the time the element is pressed.
14178      * @param {Roo.util.ClickRepeater} this
14179      */
14180         "click" : true,
14181     /**
14182      * @event mouseup
14183      * Fires when the mouse key is released.
14184      * @param {Roo.util.ClickRepeater} this
14185      */
14186         "mouseup" : true
14187     });
14188
14189     this.el.on("mousedown", this.handleMouseDown, this);
14190     if(this.preventDefault || this.stopDefault){
14191         this.el.on("click", function(e){
14192             if(this.preventDefault){
14193                 e.preventDefault();
14194             }
14195             if(this.stopDefault){
14196                 e.stopEvent();
14197             }
14198         }, this);
14199     }
14200
14201     // allow inline handler
14202     if(this.handler){
14203         this.on("click", this.handler,  this.scope || this);
14204     }
14205
14206     Roo.util.ClickRepeater.superclass.constructor.call(this);
14207 };
14208
14209 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14210     interval : 20,
14211     delay: 250,
14212     preventDefault : true,
14213     stopDefault : false,
14214     timer : 0,
14215
14216     // private
14217     handleMouseDown : function(){
14218         clearTimeout(this.timer);
14219         this.el.blur();
14220         if(this.pressClass){
14221             this.el.addClass(this.pressClass);
14222         }
14223         this.mousedownTime = new Date();
14224
14225         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14226         this.el.on("mouseout", this.handleMouseOut, this);
14227
14228         this.fireEvent("mousedown", this);
14229         this.fireEvent("click", this);
14230         
14231         this.timer = this.click.defer(this.delay || this.interval, this);
14232     },
14233
14234     // private
14235     click : function(){
14236         this.fireEvent("click", this);
14237         this.timer = this.click.defer(this.getInterval(), this);
14238     },
14239
14240     // private
14241     getInterval: function(){
14242         if(!this.accelerate){
14243             return this.interval;
14244         }
14245         var pressTime = this.mousedownTime.getElapsed();
14246         if(pressTime < 500){
14247             return 400;
14248         }else if(pressTime < 1700){
14249             return 320;
14250         }else if(pressTime < 2600){
14251             return 250;
14252         }else if(pressTime < 3500){
14253             return 180;
14254         }else if(pressTime < 4400){
14255             return 140;
14256         }else if(pressTime < 5300){
14257             return 80;
14258         }else if(pressTime < 6200){
14259             return 50;
14260         }else{
14261             return 10;
14262         }
14263     },
14264
14265     // private
14266     handleMouseOut : function(){
14267         clearTimeout(this.timer);
14268         if(this.pressClass){
14269             this.el.removeClass(this.pressClass);
14270         }
14271         this.el.on("mouseover", this.handleMouseReturn, this);
14272     },
14273
14274     // private
14275     handleMouseReturn : function(){
14276         this.el.un("mouseover", this.handleMouseReturn);
14277         if(this.pressClass){
14278             this.el.addClass(this.pressClass);
14279         }
14280         this.click();
14281     },
14282
14283     // private
14284     handleMouseUp : function(){
14285         clearTimeout(this.timer);
14286         this.el.un("mouseover", this.handleMouseReturn);
14287         this.el.un("mouseout", this.handleMouseOut);
14288         Roo.get(document).un("mouseup", this.handleMouseUp);
14289         this.el.removeClass(this.pressClass);
14290         this.fireEvent("mouseup", this);
14291     }
14292 });/*
14293  * Based on:
14294  * Ext JS Library 1.1.1
14295  * Copyright(c) 2006-2007, Ext JS, LLC.
14296  *
14297  * Originally Released Under LGPL - original licence link has changed is not relivant.
14298  *
14299  * Fork - LGPL
14300  * <script type="text/javascript">
14301  */
14302
14303  
14304 /**
14305  * @class Roo.KeyNav
14306  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14307  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14308  * way to implement custom navigation schemes for any UI component.</p>
14309  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14310  * pageUp, pageDown, del, home, end.  Usage:</p>
14311  <pre><code>
14312 var nav = new Roo.KeyNav("my-element", {
14313     "left" : function(e){
14314         this.moveLeft(e.ctrlKey);
14315     },
14316     "right" : function(e){
14317         this.moveRight(e.ctrlKey);
14318     },
14319     "enter" : function(e){
14320         this.save();
14321     },
14322     scope : this
14323 });
14324 </code></pre>
14325  * @constructor
14326  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14327  * @param {Object} config The config
14328  */
14329 Roo.KeyNav = function(el, config){
14330     this.el = Roo.get(el);
14331     Roo.apply(this, config);
14332     if(!this.disabled){
14333         this.disabled = true;
14334         this.enable();
14335     }
14336 };
14337
14338 Roo.KeyNav.prototype = {
14339     /**
14340      * @cfg {Boolean} disabled
14341      * True to disable this KeyNav instance (defaults to false)
14342      */
14343     disabled : false,
14344     /**
14345      * @cfg {String} defaultEventAction
14346      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14347      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14348      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14349      */
14350     defaultEventAction: "stopEvent",
14351     /**
14352      * @cfg {Boolean} forceKeyDown
14353      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14354      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14355      * handle keydown instead of keypress.
14356      */
14357     forceKeyDown : false,
14358
14359     // private
14360     prepareEvent : function(e){
14361         var k = e.getKey();
14362         var h = this.keyToHandler[k];
14363         //if(h && this[h]){
14364         //    e.stopPropagation();
14365         //}
14366         if(Roo.isSafari && h && k >= 37 && k <= 40){
14367             e.stopEvent();
14368         }
14369     },
14370
14371     // private
14372     relay : function(e){
14373         var k = e.getKey();
14374         var h = this.keyToHandler[k];
14375         if(h && this[h]){
14376             if(this.doRelay(e, this[h], h) !== true){
14377                 e[this.defaultEventAction]();
14378             }
14379         }
14380     },
14381
14382     // private
14383     doRelay : function(e, h, hname){
14384         return h.call(this.scope || this, e);
14385     },
14386
14387     // possible handlers
14388     enter : false,
14389     left : false,
14390     right : false,
14391     up : false,
14392     down : false,
14393     tab : false,
14394     esc : false,
14395     pageUp : false,
14396     pageDown : false,
14397     del : false,
14398     home : false,
14399     end : false,
14400
14401     // quick lookup hash
14402     keyToHandler : {
14403         37 : "left",
14404         39 : "right",
14405         38 : "up",
14406         40 : "down",
14407         33 : "pageUp",
14408         34 : "pageDown",
14409         46 : "del",
14410         36 : "home",
14411         35 : "end",
14412         13 : "enter",
14413         27 : "esc",
14414         9  : "tab"
14415     },
14416
14417         /**
14418          * Enable this KeyNav
14419          */
14420         enable: function(){
14421                 if(this.disabled){
14422             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14423             // the EventObject will normalize Safari automatically
14424             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14425                 this.el.on("keydown", this.relay,  this);
14426             }else{
14427                 this.el.on("keydown", this.prepareEvent,  this);
14428                 this.el.on("keypress", this.relay,  this);
14429             }
14430                     this.disabled = false;
14431                 }
14432         },
14433
14434         /**
14435          * Disable this KeyNav
14436          */
14437         disable: function(){
14438                 if(!this.disabled){
14439                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14440                 this.el.un("keydown", this.relay);
14441             }else{
14442                 this.el.un("keydown", this.prepareEvent);
14443                 this.el.un("keypress", this.relay);
14444             }
14445                     this.disabled = true;
14446                 }
14447         }
14448 };/*
14449  * Based on:
14450  * Ext JS Library 1.1.1
14451  * Copyright(c) 2006-2007, Ext JS, LLC.
14452  *
14453  * Originally Released Under LGPL - original licence link has changed is not relivant.
14454  *
14455  * Fork - LGPL
14456  * <script type="text/javascript">
14457  */
14458
14459  
14460 /**
14461  * @class Roo.KeyMap
14462  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14463  * The constructor accepts the same config object as defined by {@link #addBinding}.
14464  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14465  * combination it will call the function with this signature (if the match is a multi-key
14466  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14467  * A KeyMap can also handle a string representation of keys.<br />
14468  * Usage:
14469  <pre><code>
14470 // map one key by key code
14471 var map = new Roo.KeyMap("my-element", {
14472     key: 13, // or Roo.EventObject.ENTER
14473     fn: myHandler,
14474     scope: myObject
14475 });
14476
14477 // map multiple keys to one action by string
14478 var map = new Roo.KeyMap("my-element", {
14479     key: "a\r\n\t",
14480     fn: myHandler,
14481     scope: myObject
14482 });
14483
14484 // map multiple keys to multiple actions by strings and array of codes
14485 var map = new Roo.KeyMap("my-element", [
14486     {
14487         key: [10,13],
14488         fn: function(){ alert("Return was pressed"); }
14489     }, {
14490         key: "abc",
14491         fn: function(){ alert('a, b or c was pressed'); }
14492     }, {
14493         key: "\t",
14494         ctrl:true,
14495         shift:true,
14496         fn: function(){ alert('Control + shift + tab was pressed.'); }
14497     }
14498 ]);
14499 </code></pre>
14500  * <b>Note: A KeyMap starts enabled</b>
14501  * @constructor
14502  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14503  * @param {Object} config The config (see {@link #addBinding})
14504  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14505  */
14506 Roo.KeyMap = function(el, config, eventName){
14507     this.el  = Roo.get(el);
14508     this.eventName = eventName || "keydown";
14509     this.bindings = [];
14510     if(config){
14511         this.addBinding(config);
14512     }
14513     this.enable();
14514 };
14515
14516 Roo.KeyMap.prototype = {
14517     /**
14518      * True to stop the event from bubbling and prevent the default browser action if the
14519      * key was handled by the KeyMap (defaults to false)
14520      * @type Boolean
14521      */
14522     stopEvent : false,
14523
14524     /**
14525      * Add a new binding to this KeyMap. The following config object properties are supported:
14526      * <pre>
14527 Property    Type             Description
14528 ----------  ---------------  ----------------------------------------------------------------------
14529 key         String/Array     A single keycode or an array of keycodes to handle
14530 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14531 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14532 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14533 fn          Function         The function to call when KeyMap finds the expected key combination
14534 scope       Object           The scope of the callback function
14535 </pre>
14536      *
14537      * Usage:
14538      * <pre><code>
14539 // Create a KeyMap
14540 var map = new Roo.KeyMap(document, {
14541     key: Roo.EventObject.ENTER,
14542     fn: handleKey,
14543     scope: this
14544 });
14545
14546 //Add a new binding to the existing KeyMap later
14547 map.addBinding({
14548     key: 'abc',
14549     shift: true,
14550     fn: handleKey,
14551     scope: this
14552 });
14553 </code></pre>
14554      * @param {Object/Array} config A single KeyMap config or an array of configs
14555      */
14556         addBinding : function(config){
14557         if(config instanceof Array){
14558             for(var i = 0, len = config.length; i < len; i++){
14559                 this.addBinding(config[i]);
14560             }
14561             return;
14562         }
14563         var keyCode = config.key,
14564             shift = config.shift, 
14565             ctrl = config.ctrl, 
14566             alt = config.alt,
14567             fn = config.fn,
14568             scope = config.scope;
14569         if(typeof keyCode == "string"){
14570             var ks = [];
14571             var keyString = keyCode.toUpperCase();
14572             for(var j = 0, len = keyString.length; j < len; j++){
14573                 ks.push(keyString.charCodeAt(j));
14574             }
14575             keyCode = ks;
14576         }
14577         var keyArray = keyCode instanceof Array;
14578         var handler = function(e){
14579             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14580                 var k = e.getKey();
14581                 if(keyArray){
14582                     for(var i = 0, len = keyCode.length; i < len; i++){
14583                         if(keyCode[i] == k){
14584                           if(this.stopEvent){
14585                               e.stopEvent();
14586                           }
14587                           fn.call(scope || window, k, e);
14588                           return;
14589                         }
14590                     }
14591                 }else{
14592                     if(k == keyCode){
14593                         if(this.stopEvent){
14594                            e.stopEvent();
14595                         }
14596                         fn.call(scope || window, k, e);
14597                     }
14598                 }
14599             }
14600         };
14601         this.bindings.push(handler);  
14602         },
14603
14604     /**
14605      * Shorthand for adding a single key listener
14606      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14607      * following options:
14608      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14609      * @param {Function} fn The function to call
14610      * @param {Object} scope (optional) The scope of the function
14611      */
14612     on : function(key, fn, scope){
14613         var keyCode, shift, ctrl, alt;
14614         if(typeof key == "object" && !(key instanceof Array)){
14615             keyCode = key.key;
14616             shift = key.shift;
14617             ctrl = key.ctrl;
14618             alt = key.alt;
14619         }else{
14620             keyCode = key;
14621         }
14622         this.addBinding({
14623             key: keyCode,
14624             shift: shift,
14625             ctrl: ctrl,
14626             alt: alt,
14627             fn: fn,
14628             scope: scope
14629         })
14630     },
14631
14632     // private
14633     handleKeyDown : function(e){
14634             if(this.enabled){ //just in case
14635             var b = this.bindings;
14636             for(var i = 0, len = b.length; i < len; i++){
14637                 b[i].call(this, e);
14638             }
14639             }
14640         },
14641         
14642         /**
14643          * Returns true if this KeyMap is enabled
14644          * @return {Boolean} 
14645          */
14646         isEnabled : function(){
14647             return this.enabled;  
14648         },
14649         
14650         /**
14651          * Enables this KeyMap
14652          */
14653         enable: function(){
14654                 if(!this.enabled){
14655                     this.el.on(this.eventName, this.handleKeyDown, this);
14656                     this.enabled = true;
14657                 }
14658         },
14659
14660         /**
14661          * Disable this KeyMap
14662          */
14663         disable: function(){
14664                 if(this.enabled){
14665                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14666                     this.enabled = false;
14667                 }
14668         }
14669 };/*
14670  * Based on:
14671  * Ext JS Library 1.1.1
14672  * Copyright(c) 2006-2007, Ext JS, LLC.
14673  *
14674  * Originally Released Under LGPL - original licence link has changed is not relivant.
14675  *
14676  * Fork - LGPL
14677  * <script type="text/javascript">
14678  */
14679
14680  
14681 /**
14682  * @class Roo.util.TextMetrics
14683  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14684  * wide, in pixels, a given block of text will be.
14685  * @singleton
14686  */
14687 Roo.util.TextMetrics = function(){
14688     var shared;
14689     return {
14690         /**
14691          * Measures the size of the specified text
14692          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14693          * that can affect the size of the rendered text
14694          * @param {String} text The text to measure
14695          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14696          * in order to accurately measure the text height
14697          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14698          */
14699         measure : function(el, text, fixedWidth){
14700             if(!shared){
14701                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14702             }
14703             shared.bind(el);
14704             shared.setFixedWidth(fixedWidth || 'auto');
14705             return shared.getSize(text);
14706         },
14707
14708         /**
14709          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14710          * the overhead of multiple calls to initialize the style properties on each measurement.
14711          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14712          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14713          * in order to accurately measure the text height
14714          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14715          */
14716         createInstance : function(el, fixedWidth){
14717             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14718         }
14719     };
14720 }();
14721
14722  
14723
14724 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14725     var ml = new Roo.Element(document.createElement('div'));
14726     document.body.appendChild(ml.dom);
14727     ml.position('absolute');
14728     ml.setLeftTop(-1000, -1000);
14729     ml.hide();
14730
14731     if(fixedWidth){
14732         ml.setWidth(fixedWidth);
14733     }
14734      
14735     var instance = {
14736         /**
14737          * Returns the size of the specified text based on the internal element's style and width properties
14738          * @memberOf Roo.util.TextMetrics.Instance#
14739          * @param {String} text The text to measure
14740          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14741          */
14742         getSize : function(text){
14743             ml.update(text);
14744             var s = ml.getSize();
14745             ml.update('');
14746             return s;
14747         },
14748
14749         /**
14750          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
14751          * that can affect the size of the rendered text
14752          * @memberOf Roo.util.TextMetrics.Instance#
14753          * @param {String/HTMLElement} el The element, dom node or id
14754          */
14755         bind : function(el){
14756             ml.setStyle(
14757                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
14758             );
14759         },
14760
14761         /**
14762          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
14763          * to set a fixed width in order to accurately measure the text height.
14764          * @memberOf Roo.util.TextMetrics.Instance#
14765          * @param {Number} width The width to set on the element
14766          */
14767         setFixedWidth : function(width){
14768             ml.setWidth(width);
14769         },
14770
14771         /**
14772          * Returns the measured width of the specified text
14773          * @memberOf Roo.util.TextMetrics.Instance#
14774          * @param {String} text The text to measure
14775          * @return {Number} width The width in pixels
14776          */
14777         getWidth : function(text){
14778             ml.dom.style.width = 'auto';
14779             return this.getSize(text).width;
14780         },
14781
14782         /**
14783          * Returns the measured height of the specified text.  For multiline text, be sure to call
14784          * {@link #setFixedWidth} if necessary.
14785          * @memberOf Roo.util.TextMetrics.Instance#
14786          * @param {String} text The text to measure
14787          * @return {Number} height The height in pixels
14788          */
14789         getHeight : function(text){
14790             return this.getSize(text).height;
14791         }
14792     };
14793
14794     instance.bind(bindTo);
14795
14796     return instance;
14797 };
14798
14799 // backwards compat
14800 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
14801  * Based on:
14802  * Ext JS Library 1.1.1
14803  * Copyright(c) 2006-2007, Ext JS, LLC.
14804  *
14805  * Originally Released Under LGPL - original licence link has changed is not relivant.
14806  *
14807  * Fork - LGPL
14808  * <script type="text/javascript">
14809  */
14810
14811 /**
14812  * @class Roo.state.Provider
14813  * Abstract base class for state provider implementations. This class provides methods
14814  * for encoding and decoding <b>typed</b> variables including dates and defines the 
14815  * Provider interface.
14816  */
14817 Roo.state.Provider = function(){
14818     /**
14819      * @event statechange
14820      * Fires when a state change occurs.
14821      * @param {Provider} this This state provider
14822      * @param {String} key The state key which was changed
14823      * @param {String} value The encoded value for the state
14824      */
14825     this.addEvents({
14826         "statechange": true
14827     });
14828     this.state = {};
14829     Roo.state.Provider.superclass.constructor.call(this);
14830 };
14831 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
14832     /**
14833      * Returns the current value for a key
14834      * @param {String} name The key name
14835      * @param {Mixed} defaultValue A default value to return if the key's value is not found
14836      * @return {Mixed} The state data
14837      */
14838     get : function(name, defaultValue){
14839         return typeof this.state[name] == "undefined" ?
14840             defaultValue : this.state[name];
14841     },
14842     
14843     /**
14844      * Clears a value from the state
14845      * @param {String} name The key name
14846      */
14847     clear : function(name){
14848         delete this.state[name];
14849         this.fireEvent("statechange", this, name, null);
14850     },
14851     
14852     /**
14853      * Sets the value for a key
14854      * @param {String} name The key name
14855      * @param {Mixed} value The value to set
14856      */
14857     set : function(name, value){
14858         this.state[name] = value;
14859         this.fireEvent("statechange", this, name, value);
14860     },
14861     
14862     /**
14863      * Decodes a string previously encoded with {@link #encodeValue}.
14864      * @param {String} value The value to decode
14865      * @return {Mixed} The decoded value
14866      */
14867     decodeValue : function(cookie){
14868         var re = /^(a|n|d|b|s|o)\:(.*)$/;
14869         var matches = re.exec(unescape(cookie));
14870         if(!matches || !matches[1]) {
14871             return; // non state cookie
14872         }
14873         var type = matches[1];
14874         var v = matches[2];
14875         switch(type){
14876             case "n":
14877                 return parseFloat(v);
14878             case "d":
14879                 return new Date(Date.parse(v));
14880             case "b":
14881                 return (v == "1");
14882             case "a":
14883                 var all = [];
14884                 var values = v.split("^");
14885                 for(var i = 0, len = values.length; i < len; i++){
14886                     all.push(this.decodeValue(values[i]));
14887                 }
14888                 return all;
14889            case "o":
14890                 var all = {};
14891                 var values = v.split("^");
14892                 for(var i = 0, len = values.length; i < len; i++){
14893                     var kv = values[i].split("=");
14894                     all[kv[0]] = this.decodeValue(kv[1]);
14895                 }
14896                 return all;
14897            default:
14898                 return v;
14899         }
14900     },
14901     
14902     /**
14903      * Encodes a value including type information.  Decode with {@link #decodeValue}.
14904      * @param {Mixed} value The value to encode
14905      * @return {String} The encoded value
14906      */
14907     encodeValue : function(v){
14908         var enc;
14909         if(typeof v == "number"){
14910             enc = "n:" + v;
14911         }else if(typeof v == "boolean"){
14912             enc = "b:" + (v ? "1" : "0");
14913         }else if(v instanceof Date){
14914             enc = "d:" + v.toGMTString();
14915         }else if(v instanceof Array){
14916             var flat = "";
14917             for(var i = 0, len = v.length; i < len; i++){
14918                 flat += this.encodeValue(v[i]);
14919                 if(i != len-1) {
14920                     flat += "^";
14921                 }
14922             }
14923             enc = "a:" + flat;
14924         }else if(typeof v == "object"){
14925             var flat = "";
14926             for(var key in v){
14927                 if(typeof v[key] != "function"){
14928                     flat += key + "=" + this.encodeValue(v[key]) + "^";
14929                 }
14930             }
14931             enc = "o:" + flat.substring(0, flat.length-1);
14932         }else{
14933             enc = "s:" + v;
14934         }
14935         return escape(enc);        
14936     }
14937 });
14938
14939 /*
14940  * Based on:
14941  * Ext JS Library 1.1.1
14942  * Copyright(c) 2006-2007, Ext JS, LLC.
14943  *
14944  * Originally Released Under LGPL - original licence link has changed is not relivant.
14945  *
14946  * Fork - LGPL
14947  * <script type="text/javascript">
14948  */
14949 /**
14950  * @class Roo.state.Manager
14951  * This is the global state manager. By default all components that are "state aware" check this class
14952  * for state information if you don't pass them a custom state provider. In order for this class
14953  * to be useful, it must be initialized with a provider when your application initializes.
14954  <pre><code>
14955 // in your initialization function
14956 init : function(){
14957    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
14958    ...
14959    // supposed you have a {@link Roo.BorderLayout}
14960    var layout = new Roo.BorderLayout(...);
14961    layout.restoreState();
14962    // or a {Roo.BasicDialog}
14963    var dialog = new Roo.BasicDialog(...);
14964    dialog.restoreState();
14965  </code></pre>
14966  * @singleton
14967  */
14968 Roo.state.Manager = function(){
14969     var provider = new Roo.state.Provider();
14970     
14971     return {
14972         /**
14973          * Configures the default state provider for your application
14974          * @param {Provider} stateProvider The state provider to set
14975          */
14976         setProvider : function(stateProvider){
14977             provider = stateProvider;
14978         },
14979         
14980         /**
14981          * Returns the current value for a key
14982          * @param {String} name The key name
14983          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
14984          * @return {Mixed} The state data
14985          */
14986         get : function(key, defaultValue){
14987             return provider.get(key, defaultValue);
14988         },
14989         
14990         /**
14991          * Sets the value for a key
14992          * @param {String} name The key name
14993          * @param {Mixed} value The state data
14994          */
14995          set : function(key, value){
14996             provider.set(key, value);
14997         },
14998         
14999         /**
15000          * Clears a value from the state
15001          * @param {String} name The key name
15002          */
15003         clear : function(key){
15004             provider.clear(key);
15005         },
15006         
15007         /**
15008          * Gets the currently configured state provider
15009          * @return {Provider} The state provider
15010          */
15011         getProvider : function(){
15012             return provider;
15013         }
15014     };
15015 }();
15016 /*
15017  * Based on:
15018  * Ext JS Library 1.1.1
15019  * Copyright(c) 2006-2007, Ext JS, LLC.
15020  *
15021  * Originally Released Under LGPL - original licence link has changed is not relivant.
15022  *
15023  * Fork - LGPL
15024  * <script type="text/javascript">
15025  */
15026 /**
15027  * @class Roo.state.CookieProvider
15028  * @extends Roo.state.Provider
15029  * The default Provider implementation which saves state via cookies.
15030  * <br />Usage:
15031  <pre><code>
15032    var cp = new Roo.state.CookieProvider({
15033        path: "/cgi-bin/",
15034        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15035        domain: "roojs.com"
15036    })
15037    Roo.state.Manager.setProvider(cp);
15038  </code></pre>
15039  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15040  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15041  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15042  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15043  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15044  * domain the page is running on including the 'www' like 'www.roojs.com')
15045  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15046  * @constructor
15047  * Create a new CookieProvider
15048  * @param {Object} config The configuration object
15049  */
15050 Roo.state.CookieProvider = function(config){
15051     Roo.state.CookieProvider.superclass.constructor.call(this);
15052     this.path = "/";
15053     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15054     this.domain = null;
15055     this.secure = false;
15056     Roo.apply(this, config);
15057     this.state = this.readCookies();
15058 };
15059
15060 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15061     // private
15062     set : function(name, value){
15063         if(typeof value == "undefined" || value === null){
15064             this.clear(name);
15065             return;
15066         }
15067         this.setCookie(name, value);
15068         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15069     },
15070
15071     // private
15072     clear : function(name){
15073         this.clearCookie(name);
15074         Roo.state.CookieProvider.superclass.clear.call(this, name);
15075     },
15076
15077     // private
15078     readCookies : function(){
15079         var cookies = {};
15080         var c = document.cookie + ";";
15081         var re = /\s?(.*?)=(.*?);/g;
15082         var matches;
15083         while((matches = re.exec(c)) != null){
15084             var name = matches[1];
15085             var value = matches[2];
15086             if(name && name.substring(0,3) == "ys-"){
15087                 cookies[name.substr(3)] = this.decodeValue(value);
15088             }
15089         }
15090         return cookies;
15091     },
15092
15093     // private
15094     setCookie : function(name, value){
15095         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15096            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15097            ((this.path == null) ? "" : ("; path=" + this.path)) +
15098            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15099            ((this.secure == true) ? "; secure" : "");
15100     },
15101
15102     // private
15103     clearCookie : function(name){
15104         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15105            ((this.path == null) ? "" : ("; path=" + this.path)) +
15106            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15107            ((this.secure == true) ? "; secure" : "");
15108     }
15109 });/*
15110  * Based on:
15111  * Ext JS Library 1.1.1
15112  * Copyright(c) 2006-2007, Ext JS, LLC.
15113  *
15114  * Originally Released Under LGPL - original licence link has changed is not relivant.
15115  *
15116  * Fork - LGPL
15117  * <script type="text/javascript">
15118  */
15119  
15120
15121 /**
15122  * @class Roo.ComponentMgr
15123  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15124  * @singleton
15125  */
15126 Roo.ComponentMgr = function(){
15127     var all = new Roo.util.MixedCollection();
15128
15129     return {
15130         /**
15131          * Registers a component.
15132          * @param {Roo.Component} c The component
15133          */
15134         register : function(c){
15135             all.add(c);
15136         },
15137
15138         /**
15139          * Unregisters a component.
15140          * @param {Roo.Component} c The component
15141          */
15142         unregister : function(c){
15143             all.remove(c);
15144         },
15145
15146         /**
15147          * Returns a component by id
15148          * @param {String} id The component id
15149          */
15150         get : function(id){
15151             return all.get(id);
15152         },
15153
15154         /**
15155          * Registers a function that will be called when a specified component is added to ComponentMgr
15156          * @param {String} id The component id
15157          * @param {Funtction} fn The callback function
15158          * @param {Object} scope The scope of the callback
15159          */
15160         onAvailable : function(id, fn, scope){
15161             all.on("add", function(index, o){
15162                 if(o.id == id){
15163                     fn.call(scope || o, o);
15164                     all.un("add", fn, scope);
15165                 }
15166             });
15167         }
15168     };
15169 }();/*
15170  * Based on:
15171  * Ext JS Library 1.1.1
15172  * Copyright(c) 2006-2007, Ext JS, LLC.
15173  *
15174  * Originally Released Under LGPL - original licence link has changed is not relivant.
15175  *
15176  * Fork - LGPL
15177  * <script type="text/javascript">
15178  */
15179  
15180 /**
15181  * @class Roo.Component
15182  * @extends Roo.util.Observable
15183  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15184  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15185  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15186  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15187  * All visual components (widgets) that require rendering into a layout should subclass Component.
15188  * @constructor
15189  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15190  * element and its id used as the component id.  If a string is passed, it is assumed to be the id of an existing element
15191  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15192  */
15193 Roo.Component = function(config){
15194     config = config || {};
15195     if(config.tagName || config.dom || typeof config == "string"){ // element object
15196         config = {el: config, id: config.id || config};
15197     }
15198     this.initialConfig = config;
15199
15200     Roo.apply(this, config);
15201     this.addEvents({
15202         /**
15203          * @event disable
15204          * Fires after the component is disabled.
15205              * @param {Roo.Component} this
15206              */
15207         disable : true,
15208         /**
15209          * @event enable
15210          * Fires after the component is enabled.
15211              * @param {Roo.Component} this
15212              */
15213         enable : true,
15214         /**
15215          * @event beforeshow
15216          * Fires before the component is shown.  Return false to stop the show.
15217              * @param {Roo.Component} this
15218              */
15219         beforeshow : true,
15220         /**
15221          * @event show
15222          * Fires after the component is shown.
15223              * @param {Roo.Component} this
15224              */
15225         show : true,
15226         /**
15227          * @event beforehide
15228          * Fires before the component is hidden. Return false to stop the hide.
15229              * @param {Roo.Component} this
15230              */
15231         beforehide : true,
15232         /**
15233          * @event hide
15234          * Fires after the component is hidden.
15235              * @param {Roo.Component} this
15236              */
15237         hide : true,
15238         /**
15239          * @event beforerender
15240          * Fires before the component is rendered. Return false to stop the render.
15241              * @param {Roo.Component} this
15242              */
15243         beforerender : true,
15244         /**
15245          * @event render
15246          * Fires after the component is rendered.
15247              * @param {Roo.Component} this
15248              */
15249         render : true,
15250         /**
15251          * @event beforedestroy
15252          * Fires before the component is destroyed. Return false to stop the destroy.
15253              * @param {Roo.Component} this
15254              */
15255         beforedestroy : true,
15256         /**
15257          * @event destroy
15258          * Fires after the component is destroyed.
15259              * @param {Roo.Component} this
15260              */
15261         destroy : true
15262     });
15263     if(!this.id){
15264         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15265     }
15266     Roo.ComponentMgr.register(this);
15267     Roo.Component.superclass.constructor.call(this);
15268     this.initComponent();
15269     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15270         this.render(this.renderTo);
15271         delete this.renderTo;
15272     }
15273 };
15274
15275 /** @private */
15276 Roo.Component.AUTO_ID = 1000;
15277
15278 Roo.extend(Roo.Component, Roo.util.Observable, {
15279     /**
15280      * @scope Roo.Component.prototype
15281      * @type {Boolean}
15282      * true if this component is hidden. Read-only.
15283      */
15284     hidden : false,
15285     /**
15286      * @type {Boolean}
15287      * true if this component is disabled. Read-only.
15288      */
15289     disabled : false,
15290     /**
15291      * @type {Boolean}
15292      * true if this component has been rendered. Read-only.
15293      */
15294     rendered : false,
15295     
15296     /** @cfg {String} disableClass
15297      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15298      */
15299     disabledClass : "x-item-disabled",
15300         /** @cfg {Boolean} allowDomMove
15301          * Whether the component can move the Dom node when rendering (defaults to true).
15302          */
15303     allowDomMove : true,
15304     /** @cfg {String} hideMode (display|visibility)
15305      * How this component should hidden. Supported values are
15306      * "visibility" (css visibility), "offsets" (negative offset position) and
15307      * "display" (css display) - defaults to "display".
15308      */
15309     hideMode: 'display',
15310
15311     /** @private */
15312     ctype : "Roo.Component",
15313
15314     /**
15315      * @cfg {String} actionMode 
15316      * which property holds the element that used for  hide() / show() / disable() / enable()
15317      * default is 'el' 
15318      */
15319     actionMode : "el",
15320
15321     /** @private */
15322     getActionEl : function(){
15323         return this[this.actionMode];
15324     },
15325
15326     initComponent : Roo.emptyFn,
15327     /**
15328      * If this is a lazy rendering component, render it to its container element.
15329      * @param {String/HTMLElement/Element} container (optional) The element this component should be rendered into. If it is being applied to existing markup, this should be left off.
15330      */
15331     render : function(container, position){
15332         if(!this.rendered && this.fireEvent("beforerender", this) !== false){
15333             if(!container && this.el){
15334                 this.el = Roo.get(this.el);
15335                 container = this.el.dom.parentNode;
15336                 this.allowDomMove = false;
15337             }
15338             this.container = Roo.get(container);
15339             this.rendered = true;
15340             if(position !== undefined){
15341                 if(typeof position == 'number'){
15342                     position = this.container.dom.childNodes[position];
15343                 }else{
15344                     position = Roo.getDom(position);
15345                 }
15346             }
15347             this.onRender(this.container, position || null);
15348             if(this.cls){
15349                 this.el.addClass(this.cls);
15350                 delete this.cls;
15351             }
15352             if(this.style){
15353                 this.el.applyStyles(this.style);
15354                 delete this.style;
15355             }
15356             this.fireEvent("render", this);
15357             this.afterRender(this.container);
15358             if(this.hidden){
15359                 this.hide();
15360             }
15361             if(this.disabled){
15362                 this.disable();
15363             }
15364         }
15365         return this;
15366     },
15367
15368     /** @private */
15369     // default function is not really useful
15370     onRender : function(ct, position){
15371         if(this.el){
15372             this.el = Roo.get(this.el);
15373             if(this.allowDomMove !== false){
15374                 ct.dom.insertBefore(this.el.dom, position);
15375             }
15376         }
15377     },
15378
15379     /** @private */
15380     getAutoCreate : function(){
15381         var cfg = typeof this.autoCreate == "object" ?
15382                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15383         if(this.id && !cfg.id){
15384             cfg.id = this.id;
15385         }
15386         return cfg;
15387     },
15388
15389     /** @private */
15390     afterRender : Roo.emptyFn,
15391
15392     /**
15393      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15394      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15395      */
15396     destroy : function(){
15397         if(this.fireEvent("beforedestroy", this) !== false){
15398             this.purgeListeners();
15399             this.beforeDestroy();
15400             if(this.rendered){
15401                 this.el.removeAllListeners();
15402                 this.el.remove();
15403                 if(this.actionMode == "container"){
15404                     this.container.remove();
15405                 }
15406             }
15407             this.onDestroy();
15408             Roo.ComponentMgr.unregister(this);
15409             this.fireEvent("destroy", this);
15410         }
15411     },
15412
15413         /** @private */
15414     beforeDestroy : function(){
15415
15416     },
15417
15418         /** @private */
15419         onDestroy : function(){
15420
15421     },
15422
15423     /**
15424      * Returns the underlying {@link Roo.Element}.
15425      * @return {Roo.Element} The element
15426      */
15427     getEl : function(){
15428         return this.el;
15429     },
15430
15431     /**
15432      * Returns the id of this component.
15433      * @return {String}
15434      */
15435     getId : function(){
15436         return this.id;
15437     },
15438
15439     /**
15440      * Try to focus this component.
15441      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15442      * @return {Roo.Component} this
15443      */
15444     focus : function(selectText){
15445         if(this.rendered){
15446             this.el.focus();
15447             if(selectText === true){
15448                 this.el.dom.select();
15449             }
15450         }
15451         return this;
15452     },
15453
15454     /** @private */
15455     blur : function(){
15456         if(this.rendered){
15457             this.el.blur();
15458         }
15459         return this;
15460     },
15461
15462     /**
15463      * Disable this component.
15464      * @return {Roo.Component} this
15465      */
15466     disable : function(){
15467         if(this.rendered){
15468             this.onDisable();
15469         }
15470         this.disabled = true;
15471         this.fireEvent("disable", this);
15472         return this;
15473     },
15474
15475         // private
15476     onDisable : function(){
15477         this.getActionEl().addClass(this.disabledClass);
15478         this.el.dom.disabled = true;
15479     },
15480
15481     /**
15482      * Enable this component.
15483      * @return {Roo.Component} this
15484      */
15485     enable : function(){
15486         if(this.rendered){
15487             this.onEnable();
15488         }
15489         this.disabled = false;
15490         this.fireEvent("enable", this);
15491         return this;
15492     },
15493
15494         // private
15495     onEnable : function(){
15496         this.getActionEl().removeClass(this.disabledClass);
15497         this.el.dom.disabled = false;
15498     },
15499
15500     /**
15501      * Convenience function for setting disabled/enabled by boolean.
15502      * @param {Boolean} disabled
15503      */
15504     setDisabled : function(disabled){
15505         this[disabled ? "disable" : "enable"]();
15506     },
15507
15508     /**
15509      * Show this component.
15510      * @return {Roo.Component} this
15511      */
15512     show: function(){
15513         if(this.fireEvent("beforeshow", this) !== false){
15514             this.hidden = false;
15515             if(this.rendered){
15516                 this.onShow();
15517             }
15518             this.fireEvent("show", this);
15519         }
15520         return this;
15521     },
15522
15523     // private
15524     onShow : function(){
15525         var ae = this.getActionEl();
15526         if(this.hideMode == 'visibility'){
15527             ae.dom.style.visibility = "visible";
15528         }else if(this.hideMode == 'offsets'){
15529             ae.removeClass('x-hidden');
15530         }else{
15531             ae.dom.style.display = "";
15532         }
15533     },
15534
15535     /**
15536      * Hide this component.
15537      * @return {Roo.Component} this
15538      */
15539     hide: function(){
15540         if(this.fireEvent("beforehide", this) !== false){
15541             this.hidden = true;
15542             if(this.rendered){
15543                 this.onHide();
15544             }
15545             this.fireEvent("hide", this);
15546         }
15547         return this;
15548     },
15549
15550     // private
15551     onHide : function(){
15552         var ae = this.getActionEl();
15553         if(this.hideMode == 'visibility'){
15554             ae.dom.style.visibility = "hidden";
15555         }else if(this.hideMode == 'offsets'){
15556             ae.addClass('x-hidden');
15557         }else{
15558             ae.dom.style.display = "none";
15559         }
15560     },
15561
15562     /**
15563      * Convenience function to hide or show this component by boolean.
15564      * @param {Boolean} visible True to show, false to hide
15565      * @return {Roo.Component} this
15566      */
15567     setVisible: function(visible){
15568         if(visible) {
15569             this.show();
15570         }else{
15571             this.hide();
15572         }
15573         return this;
15574     },
15575
15576     /**
15577      * Returns true if this component is visible.
15578      */
15579     isVisible : function(){
15580         return this.getActionEl().isVisible();
15581     },
15582
15583     cloneConfig : function(overrides){
15584         overrides = overrides || {};
15585         var id = overrides.id || Roo.id();
15586         var cfg = Roo.applyIf(overrides, this.initialConfig);
15587         cfg.id = id; // prevent dup id
15588         return new this.constructor(cfg);
15589     }
15590 });/*
15591  * Based on:
15592  * Ext JS Library 1.1.1
15593  * Copyright(c) 2006-2007, Ext JS, LLC.
15594  *
15595  * Originally Released Under LGPL - original licence link has changed is not relivant.
15596  *
15597  * Fork - LGPL
15598  * <script type="text/javascript">
15599  */
15600
15601 /**
15602  * @class Roo.BoxComponent
15603  * @extends Roo.Component
15604  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15605  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15606  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15607  * layout containers.
15608  * @constructor
15609  * @param {Roo.Element/String/Object} config The configuration options.
15610  */
15611 Roo.BoxComponent = function(config){
15612     Roo.Component.call(this, config);
15613     this.addEvents({
15614         /**
15615          * @event resize
15616          * Fires after the component is resized.
15617              * @param {Roo.Component} this
15618              * @param {Number} adjWidth The box-adjusted width that was set
15619              * @param {Number} adjHeight The box-adjusted height that was set
15620              * @param {Number} rawWidth The width that was originally specified
15621              * @param {Number} rawHeight The height that was originally specified
15622              */
15623         resize : true,
15624         /**
15625          * @event move
15626          * Fires after the component is moved.
15627              * @param {Roo.Component} this
15628              * @param {Number} x The new x position
15629              * @param {Number} y The new y position
15630              */
15631         move : true
15632     });
15633 };
15634
15635 Roo.extend(Roo.BoxComponent, Roo.Component, {
15636     // private, set in afterRender to signify that the component has been rendered
15637     boxReady : false,
15638     // private, used to defer height settings to subclasses
15639     deferHeight: false,
15640     /** @cfg {Number} width
15641      * width (optional) size of component
15642      */
15643      /** @cfg {Number} height
15644      * height (optional) size of component
15645      */
15646      
15647     /**
15648      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15649      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15650      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15651      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15652      * @return {Roo.BoxComponent} this
15653      */
15654     setSize : function(w, h){
15655         // support for standard size objects
15656         if(typeof w == 'object'){
15657             h = w.height;
15658             w = w.width;
15659         }
15660         // not rendered
15661         if(!this.boxReady){
15662             this.width = w;
15663             this.height = h;
15664             return this;
15665         }
15666
15667         // prevent recalcs when not needed
15668         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15669             return this;
15670         }
15671         this.lastSize = {width: w, height: h};
15672
15673         var adj = this.adjustSize(w, h);
15674         var aw = adj.width, ah = adj.height;
15675         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15676             var rz = this.getResizeEl();
15677             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15678                 rz.setSize(aw, ah);
15679             }else if(!this.deferHeight && ah !== undefined){
15680                 rz.setHeight(ah);
15681             }else if(aw !== undefined){
15682                 rz.setWidth(aw);
15683             }
15684             this.onResize(aw, ah, w, h);
15685             this.fireEvent('resize', this, aw, ah, w, h);
15686         }
15687         return this;
15688     },
15689
15690     /**
15691      * Gets the current size of the component's underlying element.
15692      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15693      */
15694     getSize : function(){
15695         return this.el.getSize();
15696     },
15697
15698     /**
15699      * Gets the current XY position of the component's underlying element.
15700      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15701      * @return {Array} The XY position of the element (e.g., [100, 200])
15702      */
15703     getPosition : function(local){
15704         if(local === true){
15705             return [this.el.getLeft(true), this.el.getTop(true)];
15706         }
15707         return this.xy || this.el.getXY();
15708     },
15709
15710     /**
15711      * Gets the current box measurements of the component's underlying element.
15712      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15713      * @returns {Object} box An object in the format {x, y, width, height}
15714      */
15715     getBox : function(local){
15716         var s = this.el.getSize();
15717         if(local){
15718             s.x = this.el.getLeft(true);
15719             s.y = this.el.getTop(true);
15720         }else{
15721             var xy = this.xy || this.el.getXY();
15722             s.x = xy[0];
15723             s.y = xy[1];
15724         }
15725         return s;
15726     },
15727
15728     /**
15729      * Sets the current box measurements of the component's underlying element.
15730      * @param {Object} box An object in the format {x, y, width, height}
15731      * @returns {Roo.BoxComponent} this
15732      */
15733     updateBox : function(box){
15734         this.setSize(box.width, box.height);
15735         this.setPagePosition(box.x, box.y);
15736         return this;
15737     },
15738
15739     // protected
15740     getResizeEl : function(){
15741         return this.resizeEl || this.el;
15742     },
15743
15744     // protected
15745     getPositionEl : function(){
15746         return this.positionEl || this.el;
15747     },
15748
15749     /**
15750      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
15751      * This method fires the move event.
15752      * @param {Number} left The new left
15753      * @param {Number} top The new top
15754      * @returns {Roo.BoxComponent} this
15755      */
15756     setPosition : function(x, y){
15757         this.x = x;
15758         this.y = y;
15759         if(!this.boxReady){
15760             return this;
15761         }
15762         var adj = this.adjustPosition(x, y);
15763         var ax = adj.x, ay = adj.y;
15764
15765         var el = this.getPositionEl();
15766         if(ax !== undefined || ay !== undefined){
15767             if(ax !== undefined && ay !== undefined){
15768                 el.setLeftTop(ax, ay);
15769             }else if(ax !== undefined){
15770                 el.setLeft(ax);
15771             }else if(ay !== undefined){
15772                 el.setTop(ay);
15773             }
15774             this.onPosition(ax, ay);
15775             this.fireEvent('move', this, ax, ay);
15776         }
15777         return this;
15778     },
15779
15780     /**
15781      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
15782      * This method fires the move event.
15783      * @param {Number} x The new x position
15784      * @param {Number} y The new y position
15785      * @returns {Roo.BoxComponent} this
15786      */
15787     setPagePosition : function(x, y){
15788         this.pageX = x;
15789         this.pageY = y;
15790         if(!this.boxReady){
15791             return;
15792         }
15793         if(x === undefined || y === undefined){ // cannot translate undefined points
15794             return;
15795         }
15796         var p = this.el.translatePoints(x, y);
15797         this.setPosition(p.left, p.top);
15798         return this;
15799     },
15800
15801     // private
15802     onRender : function(ct, position){
15803         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
15804         if(this.resizeEl){
15805             this.resizeEl = Roo.get(this.resizeEl);
15806         }
15807         if(this.positionEl){
15808             this.positionEl = Roo.get(this.positionEl);
15809         }
15810     },
15811
15812     // private
15813     afterRender : function(){
15814         Roo.BoxComponent.superclass.afterRender.call(this);
15815         this.boxReady = true;
15816         this.setSize(this.width, this.height);
15817         if(this.x || this.y){
15818             this.setPosition(this.x, this.y);
15819         }
15820         if(this.pageX || this.pageY){
15821             this.setPagePosition(this.pageX, this.pageY);
15822         }
15823     },
15824
15825     /**
15826      * Force the component's size to recalculate based on the underlying element's current height and width.
15827      * @returns {Roo.BoxComponent} this
15828      */
15829     syncSize : function(){
15830         delete this.lastSize;
15831         this.setSize(this.el.getWidth(), this.el.getHeight());
15832         return this;
15833     },
15834
15835     /**
15836      * Called after the component is resized, this method is empty by default but can be implemented by any
15837      * subclass that needs to perform custom logic after a resize occurs.
15838      * @param {Number} adjWidth The box-adjusted width that was set
15839      * @param {Number} adjHeight The box-adjusted height that was set
15840      * @param {Number} rawWidth The width that was originally specified
15841      * @param {Number} rawHeight The height that was originally specified
15842      */
15843     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
15844
15845     },
15846
15847     /**
15848      * Called after the component is moved, this method is empty by default but can be implemented by any
15849      * subclass that needs to perform custom logic after a move occurs.
15850      * @param {Number} x The new x position
15851      * @param {Number} y The new y position
15852      */
15853     onPosition : function(x, y){
15854
15855     },
15856
15857     // private
15858     adjustSize : function(w, h){
15859         if(this.autoWidth){
15860             w = 'auto';
15861         }
15862         if(this.autoHeight){
15863             h = 'auto';
15864         }
15865         return {width : w, height: h};
15866     },
15867
15868     // private
15869     adjustPosition : function(x, y){
15870         return {x : x, y: y};
15871     }
15872 });/*
15873  * Original code for Roojs - LGPL
15874  * <script type="text/javascript">
15875  */
15876  
15877 /**
15878  * @class Roo.XComponent
15879  * A delayed Element creator...
15880  * Or a way to group chunks of interface together.
15881  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
15882  *  used in conjunction with XComponent.build() it will create an instance of each element,
15883  *  then call addxtype() to build the User interface.
15884  * 
15885  * Mypart.xyx = new Roo.XComponent({
15886
15887     parent : 'Mypart.xyz', // empty == document.element.!!
15888     order : '001',
15889     name : 'xxxx'
15890     region : 'xxxx'
15891     disabled : function() {} 
15892      
15893     tree : function() { // return an tree of xtype declared components
15894         var MODULE = this;
15895         return 
15896         {
15897             xtype : 'NestedLayoutPanel',
15898             // technicall
15899         }
15900      ]
15901  *})
15902  *
15903  *
15904  * It can be used to build a big heiracy, with parent etc.
15905  * or you can just use this to render a single compoent to a dom element
15906  * MYPART.render(Roo.Element | String(id) | dom_element )
15907  *
15908  *
15909  * Usage patterns.
15910  *
15911  * Classic Roo
15912  *
15913  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
15914  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
15915  *
15916  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
15917  *
15918  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
15919  * - if mulitple topModules exist, the last one is defined as the top module.
15920  *
15921  * Embeded Roo
15922  * 
15923  * When the top level or multiple modules are to embedded into a existing HTML page,
15924  * the parent element can container '#id' of the element where the module will be drawn.
15925  *
15926  * Bootstrap Roo
15927  *
15928  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
15929  * it relies more on a include mechanism, where sub modules are included into an outer page.
15930  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
15931  * 
15932  * Bootstrap Roo Included elements
15933  *
15934  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
15935  * hence confusing the component builder as it thinks there are multiple top level elements. 
15936  *
15937  * 
15938  * 
15939  * @extends Roo.util.Observable
15940  * @constructor
15941  * @param cfg {Object} configuration of component
15942  * 
15943  */
15944 Roo.XComponent = function(cfg) {
15945     Roo.apply(this, cfg);
15946     this.addEvents({ 
15947         /**
15948              * @event built
15949              * Fires when this the componnt is built
15950              * @param {Roo.XComponent} c the component
15951              */
15952         'built' : true
15953         
15954     });
15955     this.region = this.region || 'center'; // default..
15956     Roo.XComponent.register(this);
15957     this.modules = false;
15958     this.el = false; // where the layout goes..
15959     
15960     
15961 }
15962 Roo.extend(Roo.XComponent, Roo.util.Observable, {
15963     /**
15964      * @property el
15965      * The created element (with Roo.factory())
15966      * @type {Roo.Layout}
15967      */
15968     el  : false,
15969     
15970     /**
15971      * @property el
15972      * for BC  - use el in new code
15973      * @type {Roo.Layout}
15974      */
15975     panel : false,
15976     
15977     /**
15978      * @property layout
15979      * for BC  - use el in new code
15980      * @type {Roo.Layout}
15981      */
15982     layout : false,
15983     
15984      /**
15985      * @cfg {Function|boolean} disabled
15986      * If this module is disabled by some rule, return true from the funtion
15987      */
15988     disabled : false,
15989     
15990     /**
15991      * @cfg {String} parent 
15992      * Name of parent element which it get xtype added to..
15993      */
15994     parent: false,
15995     
15996     /**
15997      * @cfg {String} order
15998      * Used to set the order in which elements are created (usefull for multiple tabs)
15999      */
16000     
16001     order : false,
16002     /**
16003      * @cfg {String} name
16004      * String to display while loading.
16005      */
16006     name : false,
16007     /**
16008      * @cfg {String} region
16009      * Region to render component to (defaults to center)
16010      */
16011     region : 'center',
16012     
16013     /**
16014      * @cfg {Array} items
16015      * A single item array - the first element is the root of the tree..
16016      * It's done this way to stay compatible with the Xtype system...
16017      */
16018     items : false,
16019     
16020     /**
16021      * @property _tree
16022      * The method that retuns the tree of parts that make up this compoennt 
16023      * @type {function}
16024      */
16025     _tree  : false,
16026     
16027      /**
16028      * render
16029      * render element to dom or tree
16030      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16031      */
16032     
16033     render : function(el)
16034     {
16035         
16036         el = el || false;
16037         var hp = this.parent ? 1 : 0;
16038         Roo.debug &&  Roo.log(this);
16039         
16040         var tree = this._tree ? this._tree() : this.tree();
16041
16042         
16043         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16044             // if parent is a '#.....' string, then let's use that..
16045             var ename = this.parent.substr(1);
16046             this.parent = false;
16047             Roo.debug && Roo.log(ename);
16048             switch (ename) {
16049                 case 'bootstrap-body':
16050                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16051                         // this is the BorderLayout standard?
16052                        this.parent = { el : true };
16053                        break;
16054                     }
16055                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16056                         // need to insert stuff...
16057                         this.parent =  {
16058                              el : new Roo.bootstrap.layout.Border({
16059                                  el : document.body, 
16060                      
16061                                  center: {
16062                                     titlebar: false,
16063                                     autoScroll:false,
16064                                     closeOnTab: true,
16065                                     tabPosition: 'top',
16066                                       //resizeTabs: true,
16067                                     alwaysShowTabs: true,
16068                                     hideTabs: false
16069                                      //minTabWidth: 140
16070                                  }
16071                              })
16072                         
16073                          };
16074                          break;
16075                     }
16076                          
16077                     if (typeof(Roo.bootstrap.Body) != 'undefined') {
16078                         this.parent = { el :  new  Roo.bootstrap.Body() };
16079                         Roo.debug && Roo.log("setting el to doc body");
16080                          
16081                     } else {
16082                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16083                     }
16084                     break;
16085                 case 'bootstrap':
16086                     this.parent = { el : true};
16087                     // fall through
16088                 default:
16089                     el = Roo.get(ename);
16090                     break;
16091             }
16092                 
16093             
16094             if (!el && !this.parent) {
16095                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16096                 return;
16097             }
16098         }
16099         Roo.debug && Roo.log("EL:");
16100         Roo.debug && Roo.log(el);
16101         Roo.debug && Roo.log("this.parent.el:");
16102         Roo.debug && Roo.log(this.parent.el);
16103         
16104
16105         // altertive root elements ??? - we need a better way to indicate these.
16106         var is_alt = Roo.XComponent.is_alt ||
16107                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16108                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16109                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16110         
16111         
16112         
16113         if (!this.parent && is_alt) {
16114             //el = Roo.get(document.body);
16115             this.parent = { el : true };
16116         }
16117             
16118             
16119         
16120         if (!this.parent) {
16121             
16122             Roo.debug && Roo.log("no parent - creating one");
16123             
16124             el = el ? Roo.get(el) : false;      
16125              
16126             
16127             // it's a top level one..
16128             this.parent =  {
16129                 el : new Roo.BorderLayout(el || document.body, {
16130                 
16131                      center: {
16132                          titlebar: false,
16133                          autoScroll:false,
16134                          closeOnTab: true,
16135                          tabPosition: 'top',
16136                           //resizeTabs: true,
16137                          alwaysShowTabs: el && hp? false :  true,
16138                          hideTabs: el || !hp ? true :  false,
16139                          minTabWidth: 140
16140                      }
16141                  })
16142             };
16143         }
16144         
16145         if (!this.parent.el) {
16146                 // probably an old style ctor, which has been disabled.
16147                 return;
16148
16149         }
16150                 // The 'tree' method is  '_tree now' 
16151             
16152         tree.region = tree.region || this.region;
16153         var is_body = false;
16154         if (this.parent.el === true) {
16155             // bootstrap... - body..
16156             this.parent.el = Roo.factory(tree);
16157             is_body = true;
16158         }
16159         
16160         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16161         this.fireEvent('built', this);
16162         
16163         this.panel = this.el;
16164         this.layout = this.panel.layout;
16165         this.parentLayout = this.parent.layout  || false;  
16166          
16167     }
16168     
16169 });
16170
16171 Roo.apply(Roo.XComponent, {
16172     /**
16173      * @property  hideProgress
16174      * true to disable the building progress bar.. usefull on single page renders.
16175      * @type Boolean
16176      */
16177     hideProgress : false,
16178     /**
16179      * @property  buildCompleted
16180      * True when the builder has completed building the interface.
16181      * @type Boolean
16182      */
16183     buildCompleted : false,
16184      
16185     /**
16186      * @property  topModule
16187      * the upper most module - uses document.element as it's constructor.
16188      * @type Object
16189      */
16190      
16191     topModule  : false,
16192       
16193     /**
16194      * @property  modules
16195      * array of modules to be created by registration system.
16196      * @type {Array} of Roo.XComponent
16197      */
16198     
16199     modules : [],
16200     /**
16201      * @property  elmodules
16202      * array of modules to be created by which use #ID 
16203      * @type {Array} of Roo.XComponent
16204      */
16205      
16206     elmodules : [],
16207
16208      /**
16209      * @property  is_alt
16210      * Is an alternative Root - normally used by bootstrap or other systems,
16211      *    where the top element in the tree can wrap 'body' 
16212      * @type {boolean}  (default false)
16213      */
16214      
16215     is_alt : false,
16216     /**
16217      * @property  build_from_html
16218      * Build elements from html - used by bootstrap HTML stuff 
16219      *    - this is cleared after build is completed
16220      * @type {boolean}    (default false)
16221      */
16222      
16223     build_from_html : false,
16224     /**
16225      * Register components to be built later.
16226      *
16227      * This solves the following issues
16228      * - Building is not done on page load, but after an authentication process has occured.
16229      * - Interface elements are registered on page load
16230      * - Parent Interface elements may not be loaded before child, so this handles that..
16231      * 
16232      *
16233      * example:
16234      * 
16235      * MyApp.register({
16236           order : '000001',
16237           module : 'Pman.Tab.projectMgr',
16238           region : 'center',
16239           parent : 'Pman.layout',
16240           disabled : false,  // or use a function..
16241         })
16242      
16243      * * @param {Object} details about module
16244      */
16245     register : function(obj) {
16246                 
16247         Roo.XComponent.event.fireEvent('register', obj);
16248         switch(typeof(obj.disabled) ) {
16249                 
16250             case 'undefined':
16251                 break;
16252             
16253             case 'function':
16254                 if ( obj.disabled() ) {
16255                         return;
16256                 }
16257                 break;
16258             
16259             default:
16260                 if (obj.disabled) {
16261                         return;
16262                 }
16263                 break;
16264         }
16265                 
16266         this.modules.push(obj);
16267          
16268     },
16269     /**
16270      * convert a string to an object..
16271      * eg. 'AAA.BBB' -> finds AAA.BBB
16272
16273      */
16274     
16275     toObject : function(str)
16276     {
16277         if (!str || typeof(str) == 'object') {
16278             return str;
16279         }
16280         if (str.substring(0,1) == '#') {
16281             return str;
16282         }
16283
16284         var ar = str.split('.');
16285         var rt, o;
16286         rt = ar.shift();
16287             /** eval:var:o */
16288         try {
16289             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
16290         } catch (e) {
16291             throw "Module not found : " + str;
16292         }
16293         
16294         if (o === false) {
16295             throw "Module not found : " + str;
16296         }
16297         Roo.each(ar, function(e) {
16298             if (typeof(o[e]) == 'undefined') {
16299                 throw "Module not found : " + str;
16300             }
16301             o = o[e];
16302         });
16303         
16304         return o;
16305         
16306     },
16307     
16308     
16309     /**
16310      * move modules into their correct place in the tree..
16311      * 
16312      */
16313     preBuild : function ()
16314     {
16315         var _t = this;
16316         Roo.each(this.modules , function (obj)
16317         {
16318             Roo.XComponent.event.fireEvent('beforebuild', obj);
16319             
16320             var opar = obj.parent;
16321             try { 
16322                 obj.parent = this.toObject(opar);
16323             } catch(e) {
16324                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
16325                 return;
16326             }
16327             
16328             if (!obj.parent) {
16329                 Roo.debug && Roo.log("GOT top level module");
16330                 Roo.debug && Roo.log(obj);
16331                 obj.modules = new Roo.util.MixedCollection(false, 
16332                     function(o) { return o.order + '' }
16333                 );
16334                 this.topModule = obj;
16335                 return;
16336             }
16337                         // parent is a string (usually a dom element name..)
16338             if (typeof(obj.parent) == 'string') {
16339                 this.elmodules.push(obj);
16340                 return;
16341             }
16342             if (obj.parent.constructor != Roo.XComponent) {
16343                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
16344             }
16345             if (!obj.parent.modules) {
16346                 obj.parent.modules = new Roo.util.MixedCollection(false, 
16347                     function(o) { return o.order + '' }
16348                 );
16349             }
16350             if (obj.parent.disabled) {
16351                 obj.disabled = true;
16352             }
16353             obj.parent.modules.add(obj);
16354         }, this);
16355     },
16356     
16357      /**
16358      * make a list of modules to build.
16359      * @return {Array} list of modules. 
16360      */ 
16361     
16362     buildOrder : function()
16363     {
16364         var _this = this;
16365         var cmp = function(a,b) {   
16366             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
16367         };
16368         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
16369             throw "No top level modules to build";
16370         }
16371         
16372         // make a flat list in order of modules to build.
16373         var mods = this.topModule ? [ this.topModule ] : [];
16374                 
16375         
16376         // elmodules (is a list of DOM based modules )
16377         Roo.each(this.elmodules, function(e) {
16378             mods.push(e);
16379             if (!this.topModule &&
16380                 typeof(e.parent) == 'string' &&
16381                 e.parent.substring(0,1) == '#' &&
16382                 Roo.get(e.parent.substr(1))
16383                ) {
16384                 
16385                 _this.topModule = e;
16386             }
16387             
16388         });
16389
16390         
16391         // add modules to their parents..
16392         var addMod = function(m) {
16393             Roo.debug && Roo.log("build Order: add: " + m.name);
16394                 
16395             mods.push(m);
16396             if (m.modules && !m.disabled) {
16397                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
16398                 m.modules.keySort('ASC',  cmp );
16399                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
16400     
16401                 m.modules.each(addMod);
16402             } else {
16403                 Roo.debug && Roo.log("build Order: no child modules");
16404             }
16405             // not sure if this is used any more..
16406             if (m.finalize) {
16407                 m.finalize.name = m.name + " (clean up) ";
16408                 mods.push(m.finalize);
16409             }
16410             
16411         }
16412         if (this.topModule && this.topModule.modules) { 
16413             this.topModule.modules.keySort('ASC',  cmp );
16414             this.topModule.modules.each(addMod);
16415         } 
16416         return mods;
16417     },
16418     
16419      /**
16420      * Build the registered modules.
16421      * @param {Object} parent element.
16422      * @param {Function} optional method to call after module has been added.
16423      * 
16424      */ 
16425    
16426     build : function(opts) 
16427     {
16428         
16429         if (typeof(opts) != 'undefined') {
16430             Roo.apply(this,opts);
16431         }
16432         
16433         this.preBuild();
16434         var mods = this.buildOrder();
16435       
16436         //this.allmods = mods;
16437         //Roo.debug && Roo.log(mods);
16438         //return;
16439         if (!mods.length) { // should not happen
16440             throw "NO modules!!!";
16441         }
16442         
16443         
16444         var msg = "Building Interface...";
16445         // flash it up as modal - so we store the mask!?
16446         if (!this.hideProgress && Roo.MessageBox) {
16447             Roo.MessageBox.show({ title: 'loading' });
16448             Roo.MessageBox.show({
16449                title: "Please wait...",
16450                msg: msg,
16451                width:450,
16452                progress:true,
16453                closable:false,
16454                modal: false
16455               
16456             });
16457         }
16458         var total = mods.length;
16459         
16460         var _this = this;
16461         var progressRun = function() {
16462             if (!mods.length) {
16463                 Roo.debug && Roo.log('hide?');
16464                 if (!this.hideProgress && Roo.MessageBox) {
16465                     Roo.MessageBox.hide();
16466                 }
16467                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
16468                 
16469                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
16470                 
16471                 // THE END...
16472                 return false;   
16473             }
16474             
16475             var m = mods.shift();
16476             
16477             
16478             Roo.debug && Roo.log(m);
16479             // not sure if this is supported any more.. - modules that are are just function
16480             if (typeof(m) == 'function') { 
16481                 m.call(this);
16482                 return progressRun.defer(10, _this);
16483             } 
16484             
16485             
16486             msg = "Building Interface " + (total  - mods.length) + 
16487                     " of " + total + 
16488                     (m.name ? (' - ' + m.name) : '');
16489                         Roo.debug && Roo.log(msg);
16490             if (!this.hideProgress &&  Roo.MessageBox) { 
16491                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
16492             }
16493             
16494          
16495             // is the module disabled?
16496             var disabled = (typeof(m.disabled) == 'function') ?
16497                 m.disabled.call(m.module.disabled) : m.disabled;    
16498             
16499             
16500             if (disabled) {
16501                 return progressRun(); // we do not update the display!
16502             }
16503             
16504             // now build 
16505             
16506                         
16507                         
16508             m.render();
16509             // it's 10 on top level, and 1 on others??? why...
16510             return progressRun.defer(10, _this);
16511              
16512         }
16513         progressRun.defer(1, _this);
16514      
16515         
16516         
16517     },
16518         
16519         
16520         /**
16521          * Event Object.
16522          *
16523          *
16524          */
16525         event: false, 
16526     /**
16527          * wrapper for event.on - aliased later..  
16528          * Typically use to register a event handler for register:
16529          *
16530          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
16531          *
16532          */
16533     on : false
16534    
16535     
16536     
16537 });
16538
16539 Roo.XComponent.event = new Roo.util.Observable({
16540                 events : { 
16541                         /**
16542                          * @event register
16543                          * Fires when an Component is registered,
16544                          * set the disable property on the Component to stop registration.
16545                          * @param {Roo.XComponent} c the component being registerd.
16546                          * 
16547                          */
16548                         'register' : true,
16549             /**
16550                          * @event beforebuild
16551                          * Fires before each Component is built
16552                          * can be used to apply permissions.
16553                          * @param {Roo.XComponent} c the component being registerd.
16554                          * 
16555                          */
16556                         'beforebuild' : true,
16557                         /**
16558                          * @event buildcomplete
16559                          * Fires on the top level element when all elements have been built
16560                          * @param {Roo.XComponent} the top level component.
16561                          */
16562                         'buildcomplete' : true
16563                         
16564                 }
16565 });
16566
16567 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
16568  //
16569  /**
16570  * marked - a markdown parser
16571  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
16572  * https://github.com/chjj/marked
16573  */
16574
16575
16576 /**
16577  *
16578  * Roo.Markdown - is a very crude wrapper around marked..
16579  *
16580  * usage:
16581  * 
16582  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
16583  * 
16584  * Note: move the sample code to the bottom of this
16585  * file before uncommenting it.
16586  *
16587  */
16588
16589 Roo.Markdown = {};
16590 Roo.Markdown.toHtml = function(text) {
16591     
16592     var c = new Roo.Markdown.marked.setOptions({
16593             renderer: new Roo.Markdown.marked.Renderer(),
16594             gfm: true,
16595             tables: true,
16596             breaks: false,
16597             pedantic: false,
16598             sanitize: false,
16599             smartLists: true,
16600             smartypants: false
16601           });
16602     // A FEW HACKS!!?
16603     
16604     text = text.replace(/\\\n/g,' ');
16605     return Roo.Markdown.marked(text);
16606 };
16607 //
16608 // converter
16609 //
16610 // Wraps all "globals" so that the only thing
16611 // exposed is makeHtml().
16612 //
16613 (function() {
16614     
16615     /**
16616      * Block-Level Grammar
16617      */
16618     
16619     var block = {
16620       newline: /^\n+/,
16621       code: /^( {4}[^\n]+\n*)+/,
16622       fences: noop,
16623       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
16624       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
16625       nptable: noop,
16626       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
16627       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
16628       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
16629       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
16630       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
16631       table: noop,
16632       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
16633       text: /^[^\n]+/
16634     };
16635     
16636     block.bullet = /(?:[*+-]|\d+\.)/;
16637     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
16638     block.item = replace(block.item, 'gm')
16639       (/bull/g, block.bullet)
16640       ();
16641     
16642     block.list = replace(block.list)
16643       (/bull/g, block.bullet)
16644       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
16645       ('def', '\\n+(?=' + block.def.source + ')')
16646       ();
16647     
16648     block.blockquote = replace(block.blockquote)
16649       ('def', block.def)
16650       ();
16651     
16652     block._tag = '(?!(?:'
16653       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
16654       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
16655       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
16656     
16657     block.html = replace(block.html)
16658       ('comment', /<!--[\s\S]*?-->/)
16659       ('closed', /<(tag)[\s\S]+?<\/\1>/)
16660       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
16661       (/tag/g, block._tag)
16662       ();
16663     
16664     block.paragraph = replace(block.paragraph)
16665       ('hr', block.hr)
16666       ('heading', block.heading)
16667       ('lheading', block.lheading)
16668       ('blockquote', block.blockquote)
16669       ('tag', '<' + block._tag)
16670       ('def', block.def)
16671       ();
16672     
16673     /**
16674      * Normal Block Grammar
16675      */
16676     
16677     block.normal = merge({}, block);
16678     
16679     /**
16680      * GFM Block Grammar
16681      */
16682     
16683     block.gfm = merge({}, block.normal, {
16684       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
16685       paragraph: /^/,
16686       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
16687     });
16688     
16689     block.gfm.paragraph = replace(block.paragraph)
16690       ('(?!', '(?!'
16691         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
16692         + block.list.source.replace('\\1', '\\3') + '|')
16693       ();
16694     
16695     /**
16696      * GFM + Tables Block Grammar
16697      */
16698     
16699     block.tables = merge({}, block.gfm, {
16700       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
16701       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
16702     });
16703     
16704     /**
16705      * Block Lexer
16706      */
16707     
16708     function Lexer(options) {
16709       this.tokens = [];
16710       this.tokens.links = {};
16711       this.options = options || marked.defaults;
16712       this.rules = block.normal;
16713     
16714       if (this.options.gfm) {
16715         if (this.options.tables) {
16716           this.rules = block.tables;
16717         } else {
16718           this.rules = block.gfm;
16719         }
16720       }
16721     }
16722     
16723     /**
16724      * Expose Block Rules
16725      */
16726     
16727     Lexer.rules = block;
16728     
16729     /**
16730      * Static Lex Method
16731      */
16732     
16733     Lexer.lex = function(src, options) {
16734       var lexer = new Lexer(options);
16735       return lexer.lex(src);
16736     };
16737     
16738     /**
16739      * Preprocessing
16740      */
16741     
16742     Lexer.prototype.lex = function(src) {
16743       src = src
16744         .replace(/\r\n|\r/g, '\n')
16745         .replace(/\t/g, '    ')
16746         .replace(/\u00a0/g, ' ')
16747         .replace(/\u2424/g, '\n');
16748     
16749       return this.token(src, true);
16750     };
16751     
16752     /**
16753      * Lexing
16754      */
16755     
16756     Lexer.prototype.token = function(src, top, bq) {
16757       var src = src.replace(/^ +$/gm, '')
16758         , next
16759         , loose
16760         , cap
16761         , bull
16762         , b
16763         , item
16764         , space
16765         , i
16766         , l;
16767     
16768       while (src) {
16769         // newline
16770         if (cap = this.rules.newline.exec(src)) {
16771           src = src.substring(cap[0].length);
16772           if (cap[0].length > 1) {
16773             this.tokens.push({
16774               type: 'space'
16775             });
16776           }
16777         }
16778     
16779         // code
16780         if (cap = this.rules.code.exec(src)) {
16781           src = src.substring(cap[0].length);
16782           cap = cap[0].replace(/^ {4}/gm, '');
16783           this.tokens.push({
16784             type: 'code',
16785             text: !this.options.pedantic
16786               ? cap.replace(/\n+$/, '')
16787               : cap
16788           });
16789           continue;
16790         }
16791     
16792         // fences (gfm)
16793         if (cap = this.rules.fences.exec(src)) {
16794           src = src.substring(cap[0].length);
16795           this.tokens.push({
16796             type: 'code',
16797             lang: cap[2],
16798             text: cap[3] || ''
16799           });
16800           continue;
16801         }
16802     
16803         // heading
16804         if (cap = this.rules.heading.exec(src)) {
16805           src = src.substring(cap[0].length);
16806           this.tokens.push({
16807             type: 'heading',
16808             depth: cap[1].length,
16809             text: cap[2]
16810           });
16811           continue;
16812         }
16813     
16814         // table no leading pipe (gfm)
16815         if (top && (cap = this.rules.nptable.exec(src))) {
16816           src = src.substring(cap[0].length);
16817     
16818           item = {
16819             type: 'table',
16820             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
16821             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
16822             cells: cap[3].replace(/\n$/, '').split('\n')
16823           };
16824     
16825           for (i = 0; i < item.align.length; i++) {
16826             if (/^ *-+: *$/.test(item.align[i])) {
16827               item.align[i] = 'right';
16828             } else if (/^ *:-+: *$/.test(item.align[i])) {
16829               item.align[i] = 'center';
16830             } else if (/^ *:-+ *$/.test(item.align[i])) {
16831               item.align[i] = 'left';
16832             } else {
16833               item.align[i] = null;
16834             }
16835           }
16836     
16837           for (i = 0; i < item.cells.length; i++) {
16838             item.cells[i] = item.cells[i].split(/ *\| */);
16839           }
16840     
16841           this.tokens.push(item);
16842     
16843           continue;
16844         }
16845     
16846         // lheading
16847         if (cap = this.rules.lheading.exec(src)) {
16848           src = src.substring(cap[0].length);
16849           this.tokens.push({
16850             type: 'heading',
16851             depth: cap[2] === '=' ? 1 : 2,
16852             text: cap[1]
16853           });
16854           continue;
16855         }
16856     
16857         // hr
16858         if (cap = this.rules.hr.exec(src)) {
16859           src = src.substring(cap[0].length);
16860           this.tokens.push({
16861             type: 'hr'
16862           });
16863           continue;
16864         }
16865     
16866         // blockquote
16867         if (cap = this.rules.blockquote.exec(src)) {
16868           src = src.substring(cap[0].length);
16869     
16870           this.tokens.push({
16871             type: 'blockquote_start'
16872           });
16873     
16874           cap = cap[0].replace(/^ *> ?/gm, '');
16875     
16876           // Pass `top` to keep the current
16877           // "toplevel" state. This is exactly
16878           // how markdown.pl works.
16879           this.token(cap, top, true);
16880     
16881           this.tokens.push({
16882             type: 'blockquote_end'
16883           });
16884     
16885           continue;
16886         }
16887     
16888         // list
16889         if (cap = this.rules.list.exec(src)) {
16890           src = src.substring(cap[0].length);
16891           bull = cap[2];
16892     
16893           this.tokens.push({
16894             type: 'list_start',
16895             ordered: bull.length > 1
16896           });
16897     
16898           // Get each top-level item.
16899           cap = cap[0].match(this.rules.item);
16900     
16901           next = false;
16902           l = cap.length;
16903           i = 0;
16904     
16905           for (; i < l; i++) {
16906             item = cap[i];
16907     
16908             // Remove the list item's bullet
16909             // so it is seen as the next token.
16910             space = item.length;
16911             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
16912     
16913             // Outdent whatever the
16914             // list item contains. Hacky.
16915             if (~item.indexOf('\n ')) {
16916               space -= item.length;
16917               item = !this.options.pedantic
16918                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
16919                 : item.replace(/^ {1,4}/gm, '');
16920             }
16921     
16922             // Determine whether the next list item belongs here.
16923             // Backpedal if it does not belong in this list.
16924             if (this.options.smartLists && i !== l - 1) {
16925               b = block.bullet.exec(cap[i + 1])[0];
16926               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
16927                 src = cap.slice(i + 1).join('\n') + src;
16928                 i = l - 1;
16929               }
16930             }
16931     
16932             // Determine whether item is loose or not.
16933             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
16934             // for discount behavior.
16935             loose = next || /\n\n(?!\s*$)/.test(item);
16936             if (i !== l - 1) {
16937               next = item.charAt(item.length - 1) === '\n';
16938               if (!loose) { loose = next; }
16939             }
16940     
16941             this.tokens.push({
16942               type: loose
16943                 ? 'loose_item_start'
16944                 : 'list_item_start'
16945             });
16946     
16947             // Recurse.
16948             this.token(item, false, bq);
16949     
16950             this.tokens.push({
16951               type: 'list_item_end'
16952             });
16953           }
16954     
16955           this.tokens.push({
16956             type: 'list_end'
16957           });
16958     
16959           continue;
16960         }
16961     
16962         // html
16963         if (cap = this.rules.html.exec(src)) {
16964           src = src.substring(cap[0].length);
16965           this.tokens.push({
16966             type: this.options.sanitize
16967               ? 'paragraph'
16968               : 'html',
16969             pre: !this.options.sanitizer
16970               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
16971             text: cap[0]
16972           });
16973           continue;
16974         }
16975     
16976         // def
16977         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
16978           src = src.substring(cap[0].length);
16979           this.tokens.links[cap[1].toLowerCase()] = {
16980             href: cap[2],
16981             title: cap[3]
16982           };
16983           continue;
16984         }
16985     
16986         // table (gfm)
16987         if (top && (cap = this.rules.table.exec(src))) {
16988           src = src.substring(cap[0].length);
16989     
16990           item = {
16991             type: 'table',
16992             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
16993             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
16994             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
16995           };
16996     
16997           for (i = 0; i < item.align.length; i++) {
16998             if (/^ *-+: *$/.test(item.align[i])) {
16999               item.align[i] = 'right';
17000             } else if (/^ *:-+: *$/.test(item.align[i])) {
17001               item.align[i] = 'center';
17002             } else if (/^ *:-+ *$/.test(item.align[i])) {
17003               item.align[i] = 'left';
17004             } else {
17005               item.align[i] = null;
17006             }
17007           }
17008     
17009           for (i = 0; i < item.cells.length; i++) {
17010             item.cells[i] = item.cells[i]
17011               .replace(/^ *\| *| *\| *$/g, '')
17012               .split(/ *\| */);
17013           }
17014     
17015           this.tokens.push(item);
17016     
17017           continue;
17018         }
17019     
17020         // top-level paragraph
17021         if (top && (cap = this.rules.paragraph.exec(src))) {
17022           src = src.substring(cap[0].length);
17023           this.tokens.push({
17024             type: 'paragraph',
17025             text: cap[1].charAt(cap[1].length - 1) === '\n'
17026               ? cap[1].slice(0, -1)
17027               : cap[1]
17028           });
17029           continue;
17030         }
17031     
17032         // text
17033         if (cap = this.rules.text.exec(src)) {
17034           // Top-level should never reach here.
17035           src = src.substring(cap[0].length);
17036           this.tokens.push({
17037             type: 'text',
17038             text: cap[0]
17039           });
17040           continue;
17041         }
17042     
17043         if (src) {
17044           throw new
17045             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17046         }
17047       }
17048     
17049       return this.tokens;
17050     };
17051     
17052     /**
17053      * Inline-Level Grammar
17054      */
17055     
17056     var inline = {
17057       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17058       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17059       url: noop,
17060       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17061       link: /^!?\[(inside)\]\(href\)/,
17062       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17063       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17064       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17065       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17066       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17067       br: /^ {2,}\n(?!\s*$)/,
17068       del: noop,
17069       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17070     };
17071     
17072     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17073     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17074     
17075     inline.link = replace(inline.link)
17076       ('inside', inline._inside)
17077       ('href', inline._href)
17078       ();
17079     
17080     inline.reflink = replace(inline.reflink)
17081       ('inside', inline._inside)
17082       ();
17083     
17084     /**
17085      * Normal Inline Grammar
17086      */
17087     
17088     inline.normal = merge({}, inline);
17089     
17090     /**
17091      * Pedantic Inline Grammar
17092      */
17093     
17094     inline.pedantic = merge({}, inline.normal, {
17095       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17096       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17097     });
17098     
17099     /**
17100      * GFM Inline Grammar
17101      */
17102     
17103     inline.gfm = merge({}, inline.normal, {
17104       escape: replace(inline.escape)('])', '~|])')(),
17105       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17106       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17107       text: replace(inline.text)
17108         (']|', '~]|')
17109         ('|', '|https?://|')
17110         ()
17111     });
17112     
17113     /**
17114      * GFM + Line Breaks Inline Grammar
17115      */
17116     
17117     inline.breaks = merge({}, inline.gfm, {
17118       br: replace(inline.br)('{2,}', '*')(),
17119       text: replace(inline.gfm.text)('{2,}', '*')()
17120     });
17121     
17122     /**
17123      * Inline Lexer & Compiler
17124      */
17125     
17126     function InlineLexer(links, options) {
17127       this.options = options || marked.defaults;
17128       this.links = links;
17129       this.rules = inline.normal;
17130       this.renderer = this.options.renderer || new Renderer;
17131       this.renderer.options = this.options;
17132     
17133       if (!this.links) {
17134         throw new
17135           Error('Tokens array requires a `links` property.');
17136       }
17137     
17138       if (this.options.gfm) {
17139         if (this.options.breaks) {
17140           this.rules = inline.breaks;
17141         } else {
17142           this.rules = inline.gfm;
17143         }
17144       } else if (this.options.pedantic) {
17145         this.rules = inline.pedantic;
17146       }
17147     }
17148     
17149     /**
17150      * Expose Inline Rules
17151      */
17152     
17153     InlineLexer.rules = inline;
17154     
17155     /**
17156      * Static Lexing/Compiling Method
17157      */
17158     
17159     InlineLexer.output = function(src, links, options) {
17160       var inline = new InlineLexer(links, options);
17161       return inline.output(src);
17162     };
17163     
17164     /**
17165      * Lexing/Compiling
17166      */
17167     
17168     InlineLexer.prototype.output = function(src) {
17169       var out = ''
17170         , link
17171         , text
17172         , href
17173         , cap;
17174     
17175       while (src) {
17176         // escape
17177         if (cap = this.rules.escape.exec(src)) {
17178           src = src.substring(cap[0].length);
17179           out += cap[1];
17180           continue;
17181         }
17182     
17183         // autolink
17184         if (cap = this.rules.autolink.exec(src)) {
17185           src = src.substring(cap[0].length);
17186           if (cap[2] === '@') {
17187             text = cap[1].charAt(6) === ':'
17188               ? this.mangle(cap[1].substring(7))
17189               : this.mangle(cap[1]);
17190             href = this.mangle('mailto:') + text;
17191           } else {
17192             text = escape(cap[1]);
17193             href = text;
17194           }
17195           out += this.renderer.link(href, null, text);
17196           continue;
17197         }
17198     
17199         // url (gfm)
17200         if (!this.inLink && (cap = this.rules.url.exec(src))) {
17201           src = src.substring(cap[0].length);
17202           text = escape(cap[1]);
17203           href = text;
17204           out += this.renderer.link(href, null, text);
17205           continue;
17206         }
17207     
17208         // tag
17209         if (cap = this.rules.tag.exec(src)) {
17210           if (!this.inLink && /^<a /i.test(cap[0])) {
17211             this.inLink = true;
17212           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
17213             this.inLink = false;
17214           }
17215           src = src.substring(cap[0].length);
17216           out += this.options.sanitize
17217             ? this.options.sanitizer
17218               ? this.options.sanitizer(cap[0])
17219               : escape(cap[0])
17220             : cap[0];
17221           continue;
17222         }
17223     
17224         // link
17225         if (cap = this.rules.link.exec(src)) {
17226           src = src.substring(cap[0].length);
17227           this.inLink = true;
17228           out += this.outputLink(cap, {
17229             href: cap[2],
17230             title: cap[3]
17231           });
17232           this.inLink = false;
17233           continue;
17234         }
17235     
17236         // reflink, nolink
17237         if ((cap = this.rules.reflink.exec(src))
17238             || (cap = this.rules.nolink.exec(src))) {
17239           src = src.substring(cap[0].length);
17240           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
17241           link = this.links[link.toLowerCase()];
17242           if (!link || !link.href) {
17243             out += cap[0].charAt(0);
17244             src = cap[0].substring(1) + src;
17245             continue;
17246           }
17247           this.inLink = true;
17248           out += this.outputLink(cap, link);
17249           this.inLink = false;
17250           continue;
17251         }
17252     
17253         // strong
17254         if (cap = this.rules.strong.exec(src)) {
17255           src = src.substring(cap[0].length);
17256           out += this.renderer.strong(this.output(cap[2] || cap[1]));
17257           continue;
17258         }
17259     
17260         // em
17261         if (cap = this.rules.em.exec(src)) {
17262           src = src.substring(cap[0].length);
17263           out += this.renderer.em(this.output(cap[2] || cap[1]));
17264           continue;
17265         }
17266     
17267         // code
17268         if (cap = this.rules.code.exec(src)) {
17269           src = src.substring(cap[0].length);
17270           out += this.renderer.codespan(escape(cap[2], true));
17271           continue;
17272         }
17273     
17274         // br
17275         if (cap = this.rules.br.exec(src)) {
17276           src = src.substring(cap[0].length);
17277           out += this.renderer.br();
17278           continue;
17279         }
17280     
17281         // del (gfm)
17282         if (cap = this.rules.del.exec(src)) {
17283           src = src.substring(cap[0].length);
17284           out += this.renderer.del(this.output(cap[1]));
17285           continue;
17286         }
17287     
17288         // text
17289         if (cap = this.rules.text.exec(src)) {
17290           src = src.substring(cap[0].length);
17291           out += this.renderer.text(escape(this.smartypants(cap[0])));
17292           continue;
17293         }
17294     
17295         if (src) {
17296           throw new
17297             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17298         }
17299       }
17300     
17301       return out;
17302     };
17303     
17304     /**
17305      * Compile Link
17306      */
17307     
17308     InlineLexer.prototype.outputLink = function(cap, link) {
17309       var href = escape(link.href)
17310         , title = link.title ? escape(link.title) : null;
17311     
17312       return cap[0].charAt(0) !== '!'
17313         ? this.renderer.link(href, title, this.output(cap[1]))
17314         : this.renderer.image(href, title, escape(cap[1]));
17315     };
17316     
17317     /**
17318      * Smartypants Transformations
17319      */
17320     
17321     InlineLexer.prototype.smartypants = function(text) {
17322       if (!this.options.smartypants)  { return text; }
17323       return text
17324         // em-dashes
17325         .replace(/---/g, '\u2014')
17326         // en-dashes
17327         .replace(/--/g, '\u2013')
17328         // opening singles
17329         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
17330         // closing singles & apostrophes
17331         .replace(/'/g, '\u2019')
17332         // opening doubles
17333         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
17334         // closing doubles
17335         .replace(/"/g, '\u201d')
17336         // ellipses
17337         .replace(/\.{3}/g, '\u2026');
17338     };
17339     
17340     /**
17341      * Mangle Links
17342      */
17343     
17344     InlineLexer.prototype.mangle = function(text) {
17345       if (!this.options.mangle) { return text; }
17346       var out = ''
17347         , l = text.length
17348         , i = 0
17349         , ch;
17350     
17351       for (; i < l; i++) {
17352         ch = text.charCodeAt(i);
17353         if (Math.random() > 0.5) {
17354           ch = 'x' + ch.toString(16);
17355         }
17356         out += '&#' + ch + ';';
17357       }
17358     
17359       return out;
17360     };
17361     
17362     /**
17363      * Renderer
17364      */
17365     
17366     function Renderer(options) {
17367       this.options = options || {};
17368     }
17369     
17370     Renderer.prototype.code = function(code, lang, escaped) {
17371       if (this.options.highlight) {
17372         var out = this.options.highlight(code, lang);
17373         if (out != null && out !== code) {
17374           escaped = true;
17375           code = out;
17376         }
17377       } else {
17378             // hack!!! - it's already escapeD?
17379             escaped = true;
17380       }
17381     
17382       if (!lang) {
17383         return '<pre><code>'
17384           + (escaped ? code : escape(code, true))
17385           + '\n</code></pre>';
17386       }
17387     
17388       return '<pre><code class="'
17389         + this.options.langPrefix
17390         + escape(lang, true)
17391         + '">'
17392         + (escaped ? code : escape(code, true))
17393         + '\n</code></pre>\n';
17394     };
17395     
17396     Renderer.prototype.blockquote = function(quote) {
17397       return '<blockquote>\n' + quote + '</blockquote>\n';
17398     };
17399     
17400     Renderer.prototype.html = function(html) {
17401       return html;
17402     };
17403     
17404     Renderer.prototype.heading = function(text, level, raw) {
17405       return '<h'
17406         + level
17407         + ' id="'
17408         + this.options.headerPrefix
17409         + raw.toLowerCase().replace(/[^\w]+/g, '-')
17410         + '">'
17411         + text
17412         + '</h'
17413         + level
17414         + '>\n';
17415     };
17416     
17417     Renderer.prototype.hr = function() {
17418       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
17419     };
17420     
17421     Renderer.prototype.list = function(body, ordered) {
17422       var type = ordered ? 'ol' : 'ul';
17423       return '<' + type + '>\n' + body + '</' + type + '>\n';
17424     };
17425     
17426     Renderer.prototype.listitem = function(text) {
17427       return '<li>' + text + '</li>\n';
17428     };
17429     
17430     Renderer.prototype.paragraph = function(text) {
17431       return '<p>' + text + '</p>\n';
17432     };
17433     
17434     Renderer.prototype.table = function(header, body) {
17435       return '<table class="table table-striped">\n'
17436         + '<thead>\n'
17437         + header
17438         + '</thead>\n'
17439         + '<tbody>\n'
17440         + body
17441         + '</tbody>\n'
17442         + '</table>\n';
17443     };
17444     
17445     Renderer.prototype.tablerow = function(content) {
17446       return '<tr>\n' + content + '</tr>\n';
17447     };
17448     
17449     Renderer.prototype.tablecell = function(content, flags) {
17450       var type = flags.header ? 'th' : 'td';
17451       var tag = flags.align
17452         ? '<' + type + ' style="text-align:' + flags.align + '">'
17453         : '<' + type + '>';
17454       return tag + content + '</' + type + '>\n';
17455     };
17456     
17457     // span level renderer
17458     Renderer.prototype.strong = function(text) {
17459       return '<strong>' + text + '</strong>';
17460     };
17461     
17462     Renderer.prototype.em = function(text) {
17463       return '<em>' + text + '</em>';
17464     };
17465     
17466     Renderer.prototype.codespan = function(text) {
17467       return '<code>' + text + '</code>';
17468     };
17469     
17470     Renderer.prototype.br = function() {
17471       return this.options.xhtml ? '<br/>' : '<br>';
17472     };
17473     
17474     Renderer.prototype.del = function(text) {
17475       return '<del>' + text + '</del>';
17476     };
17477     
17478     Renderer.prototype.link = function(href, title, text) {
17479       if (this.options.sanitize) {
17480         try {
17481           var prot = decodeURIComponent(unescape(href))
17482             .replace(/[^\w:]/g, '')
17483             .toLowerCase();
17484         } catch (e) {
17485           return '';
17486         }
17487         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
17488           return '';
17489         }
17490       }
17491       var out = '<a href="' + href + '"';
17492       if (title) {
17493         out += ' title="' + title + '"';
17494       }
17495       out += '>' + text + '</a>';
17496       return out;
17497     };
17498     
17499     Renderer.prototype.image = function(href, title, text) {
17500       var out = '<img src="' + href + '" alt="' + text + '"';
17501       if (title) {
17502         out += ' title="' + title + '"';
17503       }
17504       out += this.options.xhtml ? '/>' : '>';
17505       return out;
17506     };
17507     
17508     Renderer.prototype.text = function(text) {
17509       return text;
17510     };
17511     
17512     /**
17513      * Parsing & Compiling
17514      */
17515     
17516     function Parser(options) {
17517       this.tokens = [];
17518       this.token = null;
17519       this.options = options || marked.defaults;
17520       this.options.renderer = this.options.renderer || new Renderer;
17521       this.renderer = this.options.renderer;
17522       this.renderer.options = this.options;
17523     }
17524     
17525     /**
17526      * Static Parse Method
17527      */
17528     
17529     Parser.parse = function(src, options, renderer) {
17530       var parser = new Parser(options, renderer);
17531       return parser.parse(src);
17532     };
17533     
17534     /**
17535      * Parse Loop
17536      */
17537     
17538     Parser.prototype.parse = function(src) {
17539       this.inline = new InlineLexer(src.links, this.options, this.renderer);
17540       this.tokens = src.reverse();
17541     
17542       var out = '';
17543       while (this.next()) {
17544         out += this.tok();
17545       }
17546     
17547       return out;
17548     };
17549     
17550     /**
17551      * Next Token
17552      */
17553     
17554     Parser.prototype.next = function() {
17555       return this.token = this.tokens.pop();
17556     };
17557     
17558     /**
17559      * Preview Next Token
17560      */
17561     
17562     Parser.prototype.peek = function() {
17563       return this.tokens[this.tokens.length - 1] || 0;
17564     };
17565     
17566     /**
17567      * Parse Text Tokens
17568      */
17569     
17570     Parser.prototype.parseText = function() {
17571       var body = this.token.text;
17572     
17573       while (this.peek().type === 'text') {
17574         body += '\n' + this.next().text;
17575       }
17576     
17577       return this.inline.output(body);
17578     };
17579     
17580     /**
17581      * Parse Current Token
17582      */
17583     
17584     Parser.prototype.tok = function() {
17585       switch (this.token.type) {
17586         case 'space': {
17587           return '';
17588         }
17589         case 'hr': {
17590           return this.renderer.hr();
17591         }
17592         case 'heading': {
17593           return this.renderer.heading(
17594             this.inline.output(this.token.text),
17595             this.token.depth,
17596             this.token.text);
17597         }
17598         case 'code': {
17599           return this.renderer.code(this.token.text,
17600             this.token.lang,
17601             this.token.escaped);
17602         }
17603         case 'table': {
17604           var header = ''
17605             , body = ''
17606             , i
17607             , row
17608             , cell
17609             , flags
17610             , j;
17611     
17612           // header
17613           cell = '';
17614           for (i = 0; i < this.token.header.length; i++) {
17615             flags = { header: true, align: this.token.align[i] };
17616             cell += this.renderer.tablecell(
17617               this.inline.output(this.token.header[i]),
17618               { header: true, align: this.token.align[i] }
17619             );
17620           }
17621           header += this.renderer.tablerow(cell);
17622     
17623           for (i = 0; i < this.token.cells.length; i++) {
17624             row = this.token.cells[i];
17625     
17626             cell = '';
17627             for (j = 0; j < row.length; j++) {
17628               cell += this.renderer.tablecell(
17629                 this.inline.output(row[j]),
17630                 { header: false, align: this.token.align[j] }
17631               );
17632             }
17633     
17634             body += this.renderer.tablerow(cell);
17635           }
17636           return this.renderer.table(header, body);
17637         }
17638         case 'blockquote_start': {
17639           var body = '';
17640     
17641           while (this.next().type !== 'blockquote_end') {
17642             body += this.tok();
17643           }
17644     
17645           return this.renderer.blockquote(body);
17646         }
17647         case 'list_start': {
17648           var body = ''
17649             , ordered = this.token.ordered;
17650     
17651           while (this.next().type !== 'list_end') {
17652             body += this.tok();
17653           }
17654     
17655           return this.renderer.list(body, ordered);
17656         }
17657         case 'list_item_start': {
17658           var body = '';
17659     
17660           while (this.next().type !== 'list_item_end') {
17661             body += this.token.type === 'text'
17662               ? this.parseText()
17663               : this.tok();
17664           }
17665     
17666           return this.renderer.listitem(body);
17667         }
17668         case 'loose_item_start': {
17669           var body = '';
17670     
17671           while (this.next().type !== 'list_item_end') {
17672             body += this.tok();
17673           }
17674     
17675           return this.renderer.listitem(body);
17676         }
17677         case 'html': {
17678           var html = !this.token.pre && !this.options.pedantic
17679             ? this.inline.output(this.token.text)
17680             : this.token.text;
17681           return this.renderer.html(html);
17682         }
17683         case 'paragraph': {
17684           return this.renderer.paragraph(this.inline.output(this.token.text));
17685         }
17686         case 'text': {
17687           return this.renderer.paragraph(this.parseText());
17688         }
17689       }
17690     };
17691     
17692     /**
17693      * Helpers
17694      */
17695     
17696     function escape(html, encode) {
17697       return html
17698         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17699         .replace(/</g, '&lt;')
17700         .replace(/>/g, '&gt;')
17701         .replace(/"/g, '&quot;')
17702         .replace(/'/g, '&#39;');
17703     }
17704     
17705     function unescape(html) {
17706         // explicitly match decimal, hex, and named HTML entities 
17707       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17708         n = n.toLowerCase();
17709         if (n === 'colon') { return ':'; }
17710         if (n.charAt(0) === '#') {
17711           return n.charAt(1) === 'x'
17712             ? String.fromCharCode(parseInt(n.substring(2), 16))
17713             : String.fromCharCode(+n.substring(1));
17714         }
17715         return '';
17716       });
17717     }
17718     
17719     function replace(regex, opt) {
17720       regex = regex.source;
17721       opt = opt || '';
17722       return function self(name, val) {
17723         if (!name) { return new RegExp(regex, opt); }
17724         val = val.source || val;
17725         val = val.replace(/(^|[^\[])\^/g, '$1');
17726         regex = regex.replace(name, val);
17727         return self;
17728       };
17729     }
17730     
17731     function noop() {}
17732     noop.exec = noop;
17733     
17734     function merge(obj) {
17735       var i = 1
17736         , target
17737         , key;
17738     
17739       for (; i < arguments.length; i++) {
17740         target = arguments[i];
17741         for (key in target) {
17742           if (Object.prototype.hasOwnProperty.call(target, key)) {
17743             obj[key] = target[key];
17744           }
17745         }
17746       }
17747     
17748       return obj;
17749     }
17750     
17751     
17752     /**
17753      * Marked
17754      */
17755     
17756     function marked(src, opt, callback) {
17757       if (callback || typeof opt === 'function') {
17758         if (!callback) {
17759           callback = opt;
17760           opt = null;
17761         }
17762     
17763         opt = merge({}, marked.defaults, opt || {});
17764     
17765         var highlight = opt.highlight
17766           , tokens
17767           , pending
17768           , i = 0;
17769     
17770         try {
17771           tokens = Lexer.lex(src, opt)
17772         } catch (e) {
17773           return callback(e);
17774         }
17775     
17776         pending = tokens.length;
17777     
17778         var done = function(err) {
17779           if (err) {
17780             opt.highlight = highlight;
17781             return callback(err);
17782           }
17783     
17784           var out;
17785     
17786           try {
17787             out = Parser.parse(tokens, opt);
17788           } catch (e) {
17789             err = e;
17790           }
17791     
17792           opt.highlight = highlight;
17793     
17794           return err
17795             ? callback(err)
17796             : callback(null, out);
17797         };
17798     
17799         if (!highlight || highlight.length < 3) {
17800           return done();
17801         }
17802     
17803         delete opt.highlight;
17804     
17805         if (!pending) { return done(); }
17806     
17807         for (; i < tokens.length; i++) {
17808           (function(token) {
17809             if (token.type !== 'code') {
17810               return --pending || done();
17811             }
17812             return highlight(token.text, token.lang, function(err, code) {
17813               if (err) { return done(err); }
17814               if (code == null || code === token.text) {
17815                 return --pending || done();
17816               }
17817               token.text = code;
17818               token.escaped = true;
17819               --pending || done();
17820             });
17821           })(tokens[i]);
17822         }
17823     
17824         return;
17825       }
17826       try {
17827         if (opt) { opt = merge({}, marked.defaults, opt); }
17828         return Parser.parse(Lexer.lex(src, opt), opt);
17829       } catch (e) {
17830         e.message += '\nPlease report this to https://github.com/chjj/marked.';
17831         if ((opt || marked.defaults).silent) {
17832           return '<p>An error occured:</p><pre>'
17833             + escape(e.message + '', true)
17834             + '</pre>';
17835         }
17836         throw e;
17837       }
17838     }
17839     
17840     /**
17841      * Options
17842      */
17843     
17844     marked.options =
17845     marked.setOptions = function(opt) {
17846       merge(marked.defaults, opt);
17847       return marked;
17848     };
17849     
17850     marked.defaults = {
17851       gfm: true,
17852       tables: true,
17853       breaks: false,
17854       pedantic: false,
17855       sanitize: false,
17856       sanitizer: null,
17857       mangle: true,
17858       smartLists: false,
17859       silent: false,
17860       highlight: null,
17861       langPrefix: 'lang-',
17862       smartypants: false,
17863       headerPrefix: '',
17864       renderer: new Renderer,
17865       xhtml: false
17866     };
17867     
17868     /**
17869      * Expose
17870      */
17871     
17872     marked.Parser = Parser;
17873     marked.parser = Parser.parse;
17874     
17875     marked.Renderer = Renderer;
17876     
17877     marked.Lexer = Lexer;
17878     marked.lexer = Lexer.lex;
17879     
17880     marked.InlineLexer = InlineLexer;
17881     marked.inlineLexer = InlineLexer.output;
17882     
17883     marked.parse = marked;
17884     
17885     Roo.Markdown.marked = marked;
17886
17887 })();/*
17888  * Based on:
17889  * Ext JS Library 1.1.1
17890  * Copyright(c) 2006-2007, Ext JS, LLC.
17891  *
17892  * Originally Released Under LGPL - original licence link has changed is not relivant.
17893  *
17894  * Fork - LGPL
17895  * <script type="text/javascript">
17896  */
17897
17898
17899
17900 /*
17901  * These classes are derivatives of the similarly named classes in the YUI Library.
17902  * The original license:
17903  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
17904  * Code licensed under the BSD License:
17905  * http://developer.yahoo.net/yui/license.txt
17906  */
17907
17908 (function() {
17909
17910 var Event=Roo.EventManager;
17911 var Dom=Roo.lib.Dom;
17912
17913 /**
17914  * @class Roo.dd.DragDrop
17915  * @extends Roo.util.Observable
17916  * Defines the interface and base operation of items that that can be
17917  * dragged or can be drop targets.  It was designed to be extended, overriding
17918  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
17919  * Up to three html elements can be associated with a DragDrop instance:
17920  * <ul>
17921  * <li>linked element: the element that is passed into the constructor.
17922  * This is the element which defines the boundaries for interaction with
17923  * other DragDrop objects.</li>
17924  * <li>handle element(s): The drag operation only occurs if the element that
17925  * was clicked matches a handle element.  By default this is the linked
17926  * element, but there are times that you will want only a portion of the
17927  * linked element to initiate the drag operation, and the setHandleElId()
17928  * method provides a way to define this.</li>
17929  * <li>drag element: this represents the element that would be moved along
17930  * with the cursor during a drag operation.  By default, this is the linked
17931  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
17932  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
17933  * </li>
17934  * </ul>
17935  * This class should not be instantiated until the onload event to ensure that
17936  * the associated elements are available.
17937  * The following would define a DragDrop obj that would interact with any
17938  * other DragDrop obj in the "group1" group:
17939  * <pre>
17940  *  dd = new Roo.dd.DragDrop("div1", "group1");
17941  * </pre>
17942  * Since none of the event handlers have been implemented, nothing would
17943  * actually happen if you were to run the code above.  Normally you would
17944  * override this class or one of the default implementations, but you can
17945  * also override the methods you want on an instance of the class...
17946  * <pre>
17947  *  dd.onDragDrop = function(e, id) {
17948  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
17949  *  }
17950  * </pre>
17951  * @constructor
17952  * @param {String} id of the element that is linked to this instance
17953  * @param {String} sGroup the group of related DragDrop objects
17954  * @param {object} config an object containing configurable attributes
17955  *                Valid properties for DragDrop:
17956  *                    padding, isTarget, maintainOffset, primaryButtonOnly
17957  */
17958 Roo.dd.DragDrop = function(id, sGroup, config) {
17959     if (id) {
17960         this.init(id, sGroup, config);
17961     }
17962     
17963 };
17964
17965 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
17966
17967     /**
17968      * The id of the element associated with this object.  This is what we
17969      * refer to as the "linked element" because the size and position of
17970      * this element is used to determine when the drag and drop objects have
17971      * interacted.
17972      * @property id
17973      * @type String
17974      */
17975     id: null,
17976
17977     /**
17978      * Configuration attributes passed into the constructor
17979      * @property config
17980      * @type object
17981      */
17982     config: null,
17983
17984     /**
17985      * The id of the element that will be dragged.  By default this is same
17986      * as the linked element , but could be changed to another element. Ex:
17987      * Roo.dd.DDProxy
17988      * @property dragElId
17989      * @type String
17990      * @private
17991      */
17992     dragElId: null,
17993
17994     /**
17995      * the id of the element that initiates the drag operation.  By default
17996      * this is the linked element, but could be changed to be a child of this
17997      * element.  This lets us do things like only starting the drag when the
17998      * header element within the linked html element is clicked.
17999      * @property handleElId
18000      * @type String
18001      * @private
18002      */
18003     handleElId: null,
18004
18005     /**
18006      * An associative array of HTML tags that will be ignored if clicked.
18007      * @property invalidHandleTypes
18008      * @type {string: string}
18009      */
18010     invalidHandleTypes: null,
18011
18012     /**
18013      * An associative array of ids for elements that will be ignored if clicked
18014      * @property invalidHandleIds
18015      * @type {string: string}
18016      */
18017     invalidHandleIds: null,
18018
18019     /**
18020      * An indexted array of css class names for elements that will be ignored
18021      * if clicked.
18022      * @property invalidHandleClasses
18023      * @type string[]
18024      */
18025     invalidHandleClasses: null,
18026
18027     /**
18028      * The linked element's absolute X position at the time the drag was
18029      * started
18030      * @property startPageX
18031      * @type int
18032      * @private
18033      */
18034     startPageX: 0,
18035
18036     /**
18037      * The linked element's absolute X position at the time the drag was
18038      * started
18039      * @property startPageY
18040      * @type int
18041      * @private
18042      */
18043     startPageY: 0,
18044
18045     /**
18046      * The group defines a logical collection of DragDrop objects that are
18047      * related.  Instances only get events when interacting with other
18048      * DragDrop object in the same group.  This lets us define multiple
18049      * groups using a single DragDrop subclass if we want.
18050      * @property groups
18051      * @type {string: string}
18052      */
18053     groups: null,
18054
18055     /**
18056      * Individual drag/drop instances can be locked.  This will prevent
18057      * onmousedown start drag.
18058      * @property locked
18059      * @type boolean
18060      * @private
18061      */
18062     locked: false,
18063
18064     /**
18065      * Lock this instance
18066      * @method lock
18067      */
18068     lock: function() { this.locked = true; },
18069
18070     /**
18071      * Unlock this instace
18072      * @method unlock
18073      */
18074     unlock: function() { this.locked = false; },
18075
18076     /**
18077      * By default, all insances can be a drop target.  This can be disabled by
18078      * setting isTarget to false.
18079      * @method isTarget
18080      * @type boolean
18081      */
18082     isTarget: true,
18083
18084     /**
18085      * The padding configured for this drag and drop object for calculating
18086      * the drop zone intersection with this object.
18087      * @method padding
18088      * @type int[]
18089      */
18090     padding: null,
18091
18092     /**
18093      * Cached reference to the linked element
18094      * @property _domRef
18095      * @private
18096      */
18097     _domRef: null,
18098
18099     /**
18100      * Internal typeof flag
18101      * @property __ygDragDrop
18102      * @private
18103      */
18104     __ygDragDrop: true,
18105
18106     /**
18107      * Set to true when horizontal contraints are applied
18108      * @property constrainX
18109      * @type boolean
18110      * @private
18111      */
18112     constrainX: false,
18113
18114     /**
18115      * Set to true when vertical contraints are applied
18116      * @property constrainY
18117      * @type boolean
18118      * @private
18119      */
18120     constrainY: false,
18121
18122     /**
18123      * The left constraint
18124      * @property minX
18125      * @type int
18126      * @private
18127      */
18128     minX: 0,
18129
18130     /**
18131      * The right constraint
18132      * @property maxX
18133      * @type int
18134      * @private
18135      */
18136     maxX: 0,
18137
18138     /**
18139      * The up constraint
18140      * @property minY
18141      * @type int
18142      * @type int
18143      * @private
18144      */
18145     minY: 0,
18146
18147     /**
18148      * The down constraint
18149      * @property maxY
18150      * @type int
18151      * @private
18152      */
18153     maxY: 0,
18154
18155     /**
18156      * Maintain offsets when we resetconstraints.  Set to true when you want
18157      * the position of the element relative to its parent to stay the same
18158      * when the page changes
18159      *
18160      * @property maintainOffset
18161      * @type boolean
18162      */
18163     maintainOffset: false,
18164
18165     /**
18166      * Array of pixel locations the element will snap to if we specified a
18167      * horizontal graduation/interval.  This array is generated automatically
18168      * when you define a tick interval.
18169      * @property xTicks
18170      * @type int[]
18171      */
18172     xTicks: null,
18173
18174     /**
18175      * Array of pixel locations the element will snap to if we specified a
18176      * vertical graduation/interval.  This array is generated automatically
18177      * when you define a tick interval.
18178      * @property yTicks
18179      * @type int[]
18180      */
18181     yTicks: null,
18182
18183     /**
18184      * By default the drag and drop instance will only respond to the primary
18185      * button click (left button for a right-handed mouse).  Set to true to
18186      * allow drag and drop to start with any mouse click that is propogated
18187      * by the browser
18188      * @property primaryButtonOnly
18189      * @type boolean
18190      */
18191     primaryButtonOnly: true,
18192
18193     /**
18194      * The availabe property is false until the linked dom element is accessible.
18195      * @property available
18196      * @type boolean
18197      */
18198     available: false,
18199
18200     /**
18201      * By default, drags can only be initiated if the mousedown occurs in the
18202      * region the linked element is.  This is done in part to work around a
18203      * bug in some browsers that mis-report the mousedown if the previous
18204      * mouseup happened outside of the window.  This property is set to true
18205      * if outer handles are defined.
18206      *
18207      * @property hasOuterHandles
18208      * @type boolean
18209      * @default false
18210      */
18211     hasOuterHandles: false,
18212
18213     /**
18214      * Code that executes immediately before the startDrag event
18215      * @method b4StartDrag
18216      * @private
18217      */
18218     b4StartDrag: function(x, y) { },
18219
18220     /**
18221      * Abstract method called after a drag/drop object is clicked
18222      * and the drag or mousedown time thresholds have beeen met.
18223      * @method startDrag
18224      * @param {int} X click location
18225      * @param {int} Y click location
18226      */
18227     startDrag: function(x, y) { /* override this */ },
18228
18229     /**
18230      * Code that executes immediately before the onDrag event
18231      * @method b4Drag
18232      * @private
18233      */
18234     b4Drag: function(e) { },
18235
18236     /**
18237      * Abstract method called during the onMouseMove event while dragging an
18238      * object.
18239      * @method onDrag
18240      * @param {Event} e the mousemove event
18241      */
18242     onDrag: function(e) { /* override this */ },
18243
18244     /**
18245      * Abstract method called when this element fist begins hovering over
18246      * another DragDrop obj
18247      * @method onDragEnter
18248      * @param {Event} e the mousemove event
18249      * @param {String|DragDrop[]} id In POINT mode, the element
18250      * id this is hovering over.  In INTERSECT mode, an array of one or more
18251      * dragdrop items being hovered over.
18252      */
18253     onDragEnter: function(e, id) { /* override this */ },
18254
18255     /**
18256      * Code that executes immediately before the onDragOver event
18257      * @method b4DragOver
18258      * @private
18259      */
18260     b4DragOver: function(e) { },
18261
18262     /**
18263      * Abstract method called when this element is hovering over another
18264      * DragDrop obj
18265      * @method onDragOver
18266      * @param {Event} e the mousemove event
18267      * @param {String|DragDrop[]} id In POINT mode, the element
18268      * id this is hovering over.  In INTERSECT mode, an array of dd items
18269      * being hovered over.
18270      */
18271     onDragOver: function(e, id) { /* override this */ },
18272
18273     /**
18274      * Code that executes immediately before the onDragOut event
18275      * @method b4DragOut
18276      * @private
18277      */
18278     b4DragOut: function(e) { },
18279
18280     /**
18281      * Abstract method called when we are no longer hovering over an element
18282      * @method onDragOut
18283      * @param {Event} e the mousemove event
18284      * @param {String|DragDrop[]} id In POINT mode, the element
18285      * id this was hovering over.  In INTERSECT mode, an array of dd items
18286      * that the mouse is no longer over.
18287      */
18288     onDragOut: function(e, id) { /* override this */ },
18289
18290     /**
18291      * Code that executes immediately before the onDragDrop event
18292      * @method b4DragDrop
18293      * @private
18294      */
18295     b4DragDrop: function(e) { },
18296
18297     /**
18298      * Abstract method called when this item is dropped on another DragDrop
18299      * obj
18300      * @method onDragDrop
18301      * @param {Event} e the mouseup event
18302      * @param {String|DragDrop[]} id In POINT mode, the element
18303      * id this was dropped on.  In INTERSECT mode, an array of dd items this
18304      * was dropped on.
18305      */
18306     onDragDrop: function(e, id) { /* override this */ },
18307
18308     /**
18309      * Abstract method called when this item is dropped on an area with no
18310      * drop target
18311      * @method onInvalidDrop
18312      * @param {Event} e the mouseup event
18313      */
18314     onInvalidDrop: function(e) { /* override this */ },
18315
18316     /**
18317      * Code that executes immediately before the endDrag event
18318      * @method b4EndDrag
18319      * @private
18320      */
18321     b4EndDrag: function(e) { },
18322
18323     /**
18324      * Fired when we are done dragging the object
18325      * @method endDrag
18326      * @param {Event} e the mouseup event
18327      */
18328     endDrag: function(e) { /* override this */ },
18329
18330     /**
18331      * Code executed immediately before the onMouseDown event
18332      * @method b4MouseDown
18333      * @param {Event} e the mousedown event
18334      * @private
18335      */
18336     b4MouseDown: function(e) {  },
18337
18338     /**
18339      * Event handler that fires when a drag/drop obj gets a mousedown
18340      * @method onMouseDown
18341      * @param {Event} e the mousedown event
18342      */
18343     onMouseDown: function(e) { /* override this */ },
18344
18345     /**
18346      * Event handler that fires when a drag/drop obj gets a mouseup
18347      * @method onMouseUp
18348      * @param {Event} e the mouseup event
18349      */
18350     onMouseUp: function(e) { /* override this */ },
18351
18352     /**
18353      * Override the onAvailable method to do what is needed after the initial
18354      * position was determined.
18355      * @method onAvailable
18356      */
18357     onAvailable: function () {
18358     },
18359
18360     /*
18361      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
18362      * @type Object
18363      */
18364     defaultPadding : {left:0, right:0, top:0, bottom:0},
18365
18366     /*
18367      * Initializes the drag drop object's constraints to restrict movement to a certain element.
18368  *
18369  * Usage:
18370  <pre><code>
18371  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
18372                 { dragElId: "existingProxyDiv" });
18373  dd.startDrag = function(){
18374      this.constrainTo("parent-id");
18375  };
18376  </code></pre>
18377  * Or you can initalize it using the {@link Roo.Element} object:
18378  <pre><code>
18379  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
18380      startDrag : function(){
18381          this.constrainTo("parent-id");
18382      }
18383  });
18384  </code></pre>
18385      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
18386      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
18387      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
18388      * an object containing the sides to pad. For example: {right:10, bottom:10}
18389      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
18390      */
18391     constrainTo : function(constrainTo, pad, inContent){
18392         if(typeof pad == "number"){
18393             pad = {left: pad, right:pad, top:pad, bottom:pad};
18394         }
18395         pad = pad || this.defaultPadding;
18396         var b = Roo.get(this.getEl()).getBox();
18397         var ce = Roo.get(constrainTo);
18398         var s = ce.getScroll();
18399         var c, cd = ce.dom;
18400         if(cd == document.body){
18401             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
18402         }else{
18403             xy = ce.getXY();
18404             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
18405         }
18406
18407
18408         var topSpace = b.y - c.y;
18409         var leftSpace = b.x - c.x;
18410
18411         this.resetConstraints();
18412         this.setXConstraint(leftSpace - (pad.left||0), // left
18413                 c.width - leftSpace - b.width - (pad.right||0) //right
18414         );
18415         this.setYConstraint(topSpace - (pad.top||0), //top
18416                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
18417         );
18418     },
18419
18420     /**
18421      * Returns a reference to the linked element
18422      * @method getEl
18423      * @return {HTMLElement} the html element
18424      */
18425     getEl: function() {
18426         if (!this._domRef) {
18427             this._domRef = Roo.getDom(this.id);
18428         }
18429
18430         return this._domRef;
18431     },
18432
18433     /**
18434      * Returns a reference to the actual element to drag.  By default this is
18435      * the same as the html element, but it can be assigned to another
18436      * element. An example of this can be found in Roo.dd.DDProxy
18437      * @method getDragEl
18438      * @return {HTMLElement} the html element
18439      */
18440     getDragEl: function() {
18441         return Roo.getDom(this.dragElId);
18442     },
18443
18444     /**
18445      * Sets up the DragDrop object.  Must be called in the constructor of any
18446      * Roo.dd.DragDrop subclass
18447      * @method init
18448      * @param id the id of the linked element
18449      * @param {String} sGroup the group of related items
18450      * @param {object} config configuration attributes
18451      */
18452     init: function(id, sGroup, config) {
18453         this.initTarget(id, sGroup, config);
18454         if (!Roo.isTouch) {
18455             Event.on(this.id, "mousedown", this.handleMouseDown, this);
18456         }
18457         Event.on(this.id, "touchstart", this.handleMouseDown, this);
18458         // Event.on(this.id, "selectstart", Event.preventDefault);
18459     },
18460
18461     /**
18462      * Initializes Targeting functionality only... the object does not
18463      * get a mousedown handler.
18464      * @method initTarget
18465      * @param id the id of the linked element
18466      * @param {String} sGroup the group of related items
18467      * @param {object} config configuration attributes
18468      */
18469     initTarget: function(id, sGroup, config) {
18470
18471         // configuration attributes
18472         this.config = config || {};
18473
18474         // create a local reference to the drag and drop manager
18475         this.DDM = Roo.dd.DDM;
18476         // initialize the groups array
18477         this.groups = {};
18478
18479         // assume that we have an element reference instead of an id if the
18480         // parameter is not a string
18481         if (typeof id !== "string") {
18482             id = Roo.id(id);
18483         }
18484
18485         // set the id
18486         this.id = id;
18487
18488         // add to an interaction group
18489         this.addToGroup((sGroup) ? sGroup : "default");
18490
18491         // We don't want to register this as the handle with the manager
18492         // so we just set the id rather than calling the setter.
18493         this.handleElId = id;
18494
18495         // the linked element is the element that gets dragged by default
18496         this.setDragElId(id);
18497
18498         // by default, clicked anchors will not start drag operations.
18499         this.invalidHandleTypes = { A: "A" };
18500         this.invalidHandleIds = {};
18501         this.invalidHandleClasses = [];
18502
18503         this.applyConfig();
18504
18505         this.handleOnAvailable();
18506     },
18507
18508     /**
18509      * Applies the configuration parameters that were passed into the constructor.
18510      * This is supposed to happen at each level through the inheritance chain.  So
18511      * a DDProxy implentation will execute apply config on DDProxy, DD, and
18512      * DragDrop in order to get all of the parameters that are available in
18513      * each object.
18514      * @method applyConfig
18515      */
18516     applyConfig: function() {
18517
18518         // configurable properties:
18519         //    padding, isTarget, maintainOffset, primaryButtonOnly
18520         this.padding           = this.config.padding || [0, 0, 0, 0];
18521         this.isTarget          = (this.config.isTarget !== false);
18522         this.maintainOffset    = (this.config.maintainOffset);
18523         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
18524
18525     },
18526
18527     /**
18528      * Executed when the linked element is available
18529      * @method handleOnAvailable
18530      * @private
18531      */
18532     handleOnAvailable: function() {
18533         this.available = true;
18534         this.resetConstraints();
18535         this.onAvailable();
18536     },
18537
18538      /**
18539      * Configures the padding for the target zone in px.  Effectively expands
18540      * (or reduces) the virtual object size for targeting calculations.
18541      * Supports css-style shorthand; if only one parameter is passed, all sides
18542      * will have that padding, and if only two are passed, the top and bottom
18543      * will have the first param, the left and right the second.
18544      * @method setPadding
18545      * @param {int} iTop    Top pad
18546      * @param {int} iRight  Right pad
18547      * @param {int} iBot    Bot pad
18548      * @param {int} iLeft   Left pad
18549      */
18550     setPadding: function(iTop, iRight, iBot, iLeft) {
18551         // this.padding = [iLeft, iRight, iTop, iBot];
18552         if (!iRight && 0 !== iRight) {
18553             this.padding = [iTop, iTop, iTop, iTop];
18554         } else if (!iBot && 0 !== iBot) {
18555             this.padding = [iTop, iRight, iTop, iRight];
18556         } else {
18557             this.padding = [iTop, iRight, iBot, iLeft];
18558         }
18559     },
18560
18561     /**
18562      * Stores the initial placement of the linked element.
18563      * @method setInitialPosition
18564      * @param {int} diffX   the X offset, default 0
18565      * @param {int} diffY   the Y offset, default 0
18566      */
18567     setInitPosition: function(diffX, diffY) {
18568         var el = this.getEl();
18569
18570         if (!this.DDM.verifyEl(el)) {
18571             return;
18572         }
18573
18574         var dx = diffX || 0;
18575         var dy = diffY || 0;
18576
18577         var p = Dom.getXY( el );
18578
18579         this.initPageX = p[0] - dx;
18580         this.initPageY = p[1] - dy;
18581
18582         this.lastPageX = p[0];
18583         this.lastPageY = p[1];
18584
18585
18586         this.setStartPosition(p);
18587     },
18588
18589     /**
18590      * Sets the start position of the element.  This is set when the obj
18591      * is initialized, the reset when a drag is started.
18592      * @method setStartPosition
18593      * @param pos current position (from previous lookup)
18594      * @private
18595      */
18596     setStartPosition: function(pos) {
18597         var p = pos || Dom.getXY( this.getEl() );
18598         this.deltaSetXY = null;
18599
18600         this.startPageX = p[0];
18601         this.startPageY = p[1];
18602     },
18603
18604     /**
18605      * Add this instance to a group of related drag/drop objects.  All
18606      * instances belong to at least one group, and can belong to as many
18607      * groups as needed.
18608      * @method addToGroup
18609      * @param sGroup {string} the name of the group
18610      */
18611     addToGroup: function(sGroup) {
18612         this.groups[sGroup] = true;
18613         this.DDM.regDragDrop(this, sGroup);
18614     },
18615
18616     /**
18617      * Remove's this instance from the supplied interaction group
18618      * @method removeFromGroup
18619      * @param {string}  sGroup  The group to drop
18620      */
18621     removeFromGroup: function(sGroup) {
18622         if (this.groups[sGroup]) {
18623             delete this.groups[sGroup];
18624         }
18625
18626         this.DDM.removeDDFromGroup(this, sGroup);
18627     },
18628
18629     /**
18630      * Allows you to specify that an element other than the linked element
18631      * will be moved with the cursor during a drag
18632      * @method setDragElId
18633      * @param id {string} the id of the element that will be used to initiate the drag
18634      */
18635     setDragElId: function(id) {
18636         this.dragElId = id;
18637     },
18638
18639     /**
18640      * Allows you to specify a child of the linked element that should be
18641      * used to initiate the drag operation.  An example of this would be if
18642      * you have a content div with text and links.  Clicking anywhere in the
18643      * content area would normally start the drag operation.  Use this method
18644      * to specify that an element inside of the content div is the element
18645      * that starts the drag operation.
18646      * @method setHandleElId
18647      * @param id {string} the id of the element that will be used to
18648      * initiate the drag.
18649      */
18650     setHandleElId: function(id) {
18651         if (typeof id !== "string") {
18652             id = Roo.id(id);
18653         }
18654         this.handleElId = id;
18655         this.DDM.regHandle(this.id, id);
18656     },
18657
18658     /**
18659      * Allows you to set an element outside of the linked element as a drag
18660      * handle
18661      * @method setOuterHandleElId
18662      * @param id the id of the element that will be used to initiate the drag
18663      */
18664     setOuterHandleElId: function(id) {
18665         if (typeof id !== "string") {
18666             id = Roo.id(id);
18667         }
18668         Event.on(id, "mousedown",
18669                 this.handleMouseDown, this);
18670         this.setHandleElId(id);
18671
18672         this.hasOuterHandles = true;
18673     },
18674
18675     /**
18676      * Remove all drag and drop hooks for this element
18677      * @method unreg
18678      */
18679     unreg: function() {
18680         Event.un(this.id, "mousedown",
18681                 this.handleMouseDown);
18682         Event.un(this.id, "touchstart",
18683                 this.handleMouseDown);
18684         this._domRef = null;
18685         this.DDM._remove(this);
18686     },
18687
18688     destroy : function(){
18689         this.unreg();
18690     },
18691
18692     /**
18693      * Returns true if this instance is locked, or the drag drop mgr is locked
18694      * (meaning that all drag/drop is disabled on the page.)
18695      * @method isLocked
18696      * @return {boolean} true if this obj or all drag/drop is locked, else
18697      * false
18698      */
18699     isLocked: function() {
18700         return (this.DDM.isLocked() || this.locked);
18701     },
18702
18703     /**
18704      * Fired when this object is clicked
18705      * @method handleMouseDown
18706      * @param {Event} e
18707      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
18708      * @private
18709      */
18710     handleMouseDown: function(e, oDD){
18711      
18712         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
18713             //Roo.log('not touch/ button !=0');
18714             return;
18715         }
18716         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
18717             return; // double touch..
18718         }
18719         
18720
18721         if (this.isLocked()) {
18722             //Roo.log('locked');
18723             return;
18724         }
18725
18726         this.DDM.refreshCache(this.groups);
18727 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
18728         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
18729         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
18730             //Roo.log('no outer handes or not over target');
18731                 // do nothing.
18732         } else {
18733 //            Roo.log('check validator');
18734             if (this.clickValidator(e)) {
18735 //                Roo.log('validate success');
18736                 // set the initial element position
18737                 this.setStartPosition();
18738
18739
18740                 this.b4MouseDown(e);
18741                 this.onMouseDown(e);
18742
18743                 this.DDM.handleMouseDown(e, this);
18744
18745                 this.DDM.stopEvent(e);
18746             } else {
18747
18748
18749             }
18750         }
18751     },
18752
18753     clickValidator: function(e) {
18754         var target = e.getTarget();
18755         return ( this.isValidHandleChild(target) &&
18756                     (this.id == this.handleElId ||
18757                         this.DDM.handleWasClicked(target, this.id)) );
18758     },
18759
18760     /**
18761      * Allows you to specify a tag name that should not start a drag operation
18762      * when clicked.  This is designed to facilitate embedding links within a
18763      * drag handle that do something other than start the drag.
18764      * @method addInvalidHandleType
18765      * @param {string} tagName the type of element to exclude
18766      */
18767     addInvalidHandleType: function(tagName) {
18768         var type = tagName.toUpperCase();
18769         this.invalidHandleTypes[type] = type;
18770     },
18771
18772     /**
18773      * Lets you to specify an element id for a child of a drag handle
18774      * that should not initiate a drag
18775      * @method addInvalidHandleId
18776      * @param {string} id the element id of the element you wish to ignore
18777      */
18778     addInvalidHandleId: function(id) {
18779         if (typeof id !== "string") {
18780             id = Roo.id(id);
18781         }
18782         this.invalidHandleIds[id] = id;
18783     },
18784
18785     /**
18786      * Lets you specify a css class of elements that will not initiate a drag
18787      * @method addInvalidHandleClass
18788      * @param {string} cssClass the class of the elements you wish to ignore
18789      */
18790     addInvalidHandleClass: function(cssClass) {
18791         this.invalidHandleClasses.push(cssClass);
18792     },
18793
18794     /**
18795      * Unsets an excluded tag name set by addInvalidHandleType
18796      * @method removeInvalidHandleType
18797      * @param {string} tagName the type of element to unexclude
18798      */
18799     removeInvalidHandleType: function(tagName) {
18800         var type = tagName.toUpperCase();
18801         // this.invalidHandleTypes[type] = null;
18802         delete this.invalidHandleTypes[type];
18803     },
18804
18805     /**
18806      * Unsets an invalid handle id
18807      * @method removeInvalidHandleId
18808      * @param {string} id the id of the element to re-enable
18809      */
18810     removeInvalidHandleId: function(id) {
18811         if (typeof id !== "string") {
18812             id = Roo.id(id);
18813         }
18814         delete this.invalidHandleIds[id];
18815     },
18816
18817     /**
18818      * Unsets an invalid css class
18819      * @method removeInvalidHandleClass
18820      * @param {string} cssClass the class of the element(s) you wish to
18821      * re-enable
18822      */
18823     removeInvalidHandleClass: function(cssClass) {
18824         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
18825             if (this.invalidHandleClasses[i] == cssClass) {
18826                 delete this.invalidHandleClasses[i];
18827             }
18828         }
18829     },
18830
18831     /**
18832      * Checks the tag exclusion list to see if this click should be ignored
18833      * @method isValidHandleChild
18834      * @param {HTMLElement} node the HTMLElement to evaluate
18835      * @return {boolean} true if this is a valid tag type, false if not
18836      */
18837     isValidHandleChild: function(node) {
18838
18839         var valid = true;
18840         // var n = (node.nodeName == "#text") ? node.parentNode : node;
18841         var nodeName;
18842         try {
18843             nodeName = node.nodeName.toUpperCase();
18844         } catch(e) {
18845             nodeName = node.nodeName;
18846         }
18847         valid = valid && !this.invalidHandleTypes[nodeName];
18848         valid = valid && !this.invalidHandleIds[node.id];
18849
18850         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
18851             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
18852         }
18853
18854
18855         return valid;
18856
18857     },
18858
18859     /**
18860      * Create the array of horizontal tick marks if an interval was specified
18861      * in setXConstraint().
18862      * @method setXTicks
18863      * @private
18864      */
18865     setXTicks: function(iStartX, iTickSize) {
18866         this.xTicks = [];
18867         this.xTickSize = iTickSize;
18868
18869         var tickMap = {};
18870
18871         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
18872             if (!tickMap[i]) {
18873                 this.xTicks[this.xTicks.length] = i;
18874                 tickMap[i] = true;
18875             }
18876         }
18877
18878         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
18879             if (!tickMap[i]) {
18880                 this.xTicks[this.xTicks.length] = i;
18881                 tickMap[i] = true;
18882             }
18883         }
18884
18885         this.xTicks.sort(this.DDM.numericSort) ;
18886     },
18887
18888     /**
18889      * Create the array of vertical tick marks if an interval was specified in
18890      * setYConstraint().
18891      * @method setYTicks
18892      * @private
18893      */
18894     setYTicks: function(iStartY, iTickSize) {
18895         this.yTicks = [];
18896         this.yTickSize = iTickSize;
18897
18898         var tickMap = {};
18899
18900         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
18901             if (!tickMap[i]) {
18902                 this.yTicks[this.yTicks.length] = i;
18903                 tickMap[i] = true;
18904             }
18905         }
18906
18907         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
18908             if (!tickMap[i]) {
18909                 this.yTicks[this.yTicks.length] = i;
18910                 tickMap[i] = true;
18911             }
18912         }
18913
18914         this.yTicks.sort(this.DDM.numericSort) ;
18915     },
18916
18917     /**
18918      * By default, the element can be dragged any place on the screen.  Use
18919      * this method to limit the horizontal travel of the element.  Pass in
18920      * 0,0 for the parameters if you want to lock the drag to the y axis.
18921      * @method setXConstraint
18922      * @param {int} iLeft the number of pixels the element can move to the left
18923      * @param {int} iRight the number of pixels the element can move to the
18924      * right
18925      * @param {int} iTickSize optional parameter for specifying that the
18926      * element
18927      * should move iTickSize pixels at a time.
18928      */
18929     setXConstraint: function(iLeft, iRight, iTickSize) {
18930         this.leftConstraint = iLeft;
18931         this.rightConstraint = iRight;
18932
18933         this.minX = this.initPageX - iLeft;
18934         this.maxX = this.initPageX + iRight;
18935         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
18936
18937         this.constrainX = true;
18938     },
18939
18940     /**
18941      * Clears any constraints applied to this instance.  Also clears ticks
18942      * since they can't exist independent of a constraint at this time.
18943      * @method clearConstraints
18944      */
18945     clearConstraints: function() {
18946         this.constrainX = false;
18947         this.constrainY = false;
18948         this.clearTicks();
18949     },
18950
18951     /**
18952      * Clears any tick interval defined for this instance
18953      * @method clearTicks
18954      */
18955     clearTicks: function() {
18956         this.xTicks = null;
18957         this.yTicks = null;
18958         this.xTickSize = 0;
18959         this.yTickSize = 0;
18960     },
18961
18962     /**
18963      * By default, the element can be dragged any place on the screen.  Set
18964      * this to limit the vertical travel of the element.  Pass in 0,0 for the
18965      * parameters if you want to lock the drag to the x axis.
18966      * @method setYConstraint
18967      * @param {int} iUp the number of pixels the element can move up
18968      * @param {int} iDown the number of pixels the element can move down
18969      * @param {int} iTickSize optional parameter for specifying that the
18970      * element should move iTickSize pixels at a time.
18971      */
18972     setYConstraint: function(iUp, iDown, iTickSize) {
18973         this.topConstraint = iUp;
18974         this.bottomConstraint = iDown;
18975
18976         this.minY = this.initPageY - iUp;
18977         this.maxY = this.initPageY + iDown;
18978         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
18979
18980         this.constrainY = true;
18981
18982     },
18983
18984     /**
18985      * resetConstraints must be called if you manually reposition a dd element.
18986      * @method resetConstraints
18987      * @param {boolean} maintainOffset
18988      */
18989     resetConstraints: function() {
18990
18991
18992         // Maintain offsets if necessary
18993         if (this.initPageX || this.initPageX === 0) {
18994             // figure out how much this thing has moved
18995             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
18996             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
18997
18998             this.setInitPosition(dx, dy);
18999
19000         // This is the first time we have detected the element's position
19001         } else {
19002             this.setInitPosition();
19003         }
19004
19005         if (this.constrainX) {
19006             this.setXConstraint( this.leftConstraint,
19007                                  this.rightConstraint,
19008                                  this.xTickSize        );
19009         }
19010
19011         if (this.constrainY) {
19012             this.setYConstraint( this.topConstraint,
19013                                  this.bottomConstraint,
19014                                  this.yTickSize         );
19015         }
19016     },
19017
19018     /**
19019      * Normally the drag element is moved pixel by pixel, but we can specify
19020      * that it move a number of pixels at a time.  This method resolves the
19021      * location when we have it set up like this.
19022      * @method getTick
19023      * @param {int} val where we want to place the object
19024      * @param {int[]} tickArray sorted array of valid points
19025      * @return {int} the closest tick
19026      * @private
19027      */
19028     getTick: function(val, tickArray) {
19029
19030         if (!tickArray) {
19031             // If tick interval is not defined, it is effectively 1 pixel,
19032             // so we return the value passed to us.
19033             return val;
19034         } else if (tickArray[0] >= val) {
19035             // The value is lower than the first tick, so we return the first
19036             // tick.
19037             return tickArray[0];
19038         } else {
19039             for (var i=0, len=tickArray.length; i<len; ++i) {
19040                 var next = i + 1;
19041                 if (tickArray[next] && tickArray[next] >= val) {
19042                     var diff1 = val - tickArray[i];
19043                     var diff2 = tickArray[next] - val;
19044                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19045                 }
19046             }
19047
19048             // The value is larger than the last tick, so we return the last
19049             // tick.
19050             return tickArray[tickArray.length - 1];
19051         }
19052     },
19053
19054     /**
19055      * toString method
19056      * @method toString
19057      * @return {string} string representation of the dd obj
19058      */
19059     toString: function() {
19060         return ("DragDrop " + this.id);
19061     }
19062
19063 });
19064
19065 })();
19066 /*
19067  * Based on:
19068  * Ext JS Library 1.1.1
19069  * Copyright(c) 2006-2007, Ext JS, LLC.
19070  *
19071  * Originally Released Under LGPL - original licence link has changed is not relivant.
19072  *
19073  * Fork - LGPL
19074  * <script type="text/javascript">
19075  */
19076
19077
19078 /**
19079  * The drag and drop utility provides a framework for building drag and drop
19080  * applications.  In addition to enabling drag and drop for specific elements,
19081  * the drag and drop elements are tracked by the manager class, and the
19082  * interactions between the various elements are tracked during the drag and
19083  * the implementing code is notified about these important moments.
19084  */
19085
19086 // Only load the library once.  Rewriting the manager class would orphan
19087 // existing drag and drop instances.
19088 if (!Roo.dd.DragDropMgr) {
19089
19090 /**
19091  * @class Roo.dd.DragDropMgr
19092  * DragDropMgr is a singleton that tracks the element interaction for
19093  * all DragDrop items in the window.  Generally, you will not call
19094  * this class directly, but it does have helper methods that could
19095  * be useful in your DragDrop implementations.
19096  * @singleton
19097  */
19098 Roo.dd.DragDropMgr = function() {
19099
19100     var Event = Roo.EventManager;
19101
19102     return {
19103
19104         /**
19105          * Two dimensional Array of registered DragDrop objects.  The first
19106          * dimension is the DragDrop item group, the second the DragDrop
19107          * object.
19108          * @property ids
19109          * @type {string: string}
19110          * @private
19111          * @static
19112          */
19113         ids: {},
19114
19115         /**
19116          * Array of element ids defined as drag handles.  Used to determine
19117          * if the element that generated the mousedown event is actually the
19118          * handle and not the html element itself.
19119          * @property handleIds
19120          * @type {string: string}
19121          * @private
19122          * @static
19123          */
19124         handleIds: {},
19125
19126         /**
19127          * the DragDrop object that is currently being dragged
19128          * @property dragCurrent
19129          * @type DragDrop
19130          * @private
19131          * @static
19132          **/
19133         dragCurrent: null,
19134
19135         /**
19136          * the DragDrop object(s) that are being hovered over
19137          * @property dragOvers
19138          * @type Array
19139          * @private
19140          * @static
19141          */
19142         dragOvers: {},
19143
19144         /**
19145          * the X distance between the cursor and the object being dragged
19146          * @property deltaX
19147          * @type int
19148          * @private
19149          * @static
19150          */
19151         deltaX: 0,
19152
19153         /**
19154          * the Y distance between the cursor and the object being dragged
19155          * @property deltaY
19156          * @type int
19157          * @private
19158          * @static
19159          */
19160         deltaY: 0,
19161
19162         /**
19163          * Flag to determine if we should prevent the default behavior of the
19164          * events we define. By default this is true, but this can be set to
19165          * false if you need the default behavior (not recommended)
19166          * @property preventDefault
19167          * @type boolean
19168          * @static
19169          */
19170         preventDefault: true,
19171
19172         /**
19173          * Flag to determine if we should stop the propagation of the events
19174          * we generate. This is true by default but you may want to set it to
19175          * false if the html element contains other features that require the
19176          * mouse click.
19177          * @property stopPropagation
19178          * @type boolean
19179          * @static
19180          */
19181         stopPropagation: true,
19182
19183         /**
19184          * Internal flag that is set to true when drag and drop has been
19185          * intialized
19186          * @property initialized
19187          * @private
19188          * @static
19189          */
19190         initalized: false,
19191
19192         /**
19193          * All drag and drop can be disabled.
19194          * @property locked
19195          * @private
19196          * @static
19197          */
19198         locked: false,
19199
19200         /**
19201          * Called the first time an element is registered.
19202          * @method init
19203          * @private
19204          * @static
19205          */
19206         init: function() {
19207             this.initialized = true;
19208         },
19209
19210         /**
19211          * In point mode, drag and drop interaction is defined by the
19212          * location of the cursor during the drag/drop
19213          * @property POINT
19214          * @type int
19215          * @static
19216          */
19217         POINT: 0,
19218
19219         /**
19220          * In intersect mode, drag and drop interactio nis defined by the
19221          * overlap of two or more drag and drop objects.
19222          * @property INTERSECT
19223          * @type int
19224          * @static
19225          */
19226         INTERSECT: 1,
19227
19228         /**
19229          * The current drag and drop mode.  Default: POINT
19230          * @property mode
19231          * @type int
19232          * @static
19233          */
19234         mode: 0,
19235
19236         /**
19237          * Runs method on all drag and drop objects
19238          * @method _execOnAll
19239          * @private
19240          * @static
19241          */
19242         _execOnAll: function(sMethod, args) {
19243             for (var i in this.ids) {
19244                 for (var j in this.ids[i]) {
19245                     var oDD = this.ids[i][j];
19246                     if (! this.isTypeOfDD(oDD)) {
19247                         continue;
19248                     }
19249                     oDD[sMethod].apply(oDD, args);
19250                 }
19251             }
19252         },
19253
19254         /**
19255          * Drag and drop initialization.  Sets up the global event handlers
19256          * @method _onLoad
19257          * @private
19258          * @static
19259          */
19260         _onLoad: function() {
19261
19262             this.init();
19263
19264             if (!Roo.isTouch) {
19265                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
19266                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
19267             }
19268             Event.on(document, "touchend",   this.handleMouseUp, this, true);
19269             Event.on(document, "touchmove", this.handleMouseMove, this, true);
19270             
19271             Event.on(window,   "unload",    this._onUnload, this, true);
19272             Event.on(window,   "resize",    this._onResize, this, true);
19273             // Event.on(window,   "mouseout",    this._test);
19274
19275         },
19276
19277         /**
19278          * Reset constraints on all drag and drop objs
19279          * @method _onResize
19280          * @private
19281          * @static
19282          */
19283         _onResize: function(e) {
19284             this._execOnAll("resetConstraints", []);
19285         },
19286
19287         /**
19288          * Lock all drag and drop functionality
19289          * @method lock
19290          * @static
19291          */
19292         lock: function() { this.locked = true; },
19293
19294         /**
19295          * Unlock all drag and drop functionality
19296          * @method unlock
19297          * @static
19298          */
19299         unlock: function() { this.locked = false; },
19300
19301         /**
19302          * Is drag and drop locked?
19303          * @method isLocked
19304          * @return {boolean} True if drag and drop is locked, false otherwise.
19305          * @static
19306          */
19307         isLocked: function() { return this.locked; },
19308
19309         /**
19310          * Location cache that is set for all drag drop objects when a drag is
19311          * initiated, cleared when the drag is finished.
19312          * @property locationCache
19313          * @private
19314          * @static
19315          */
19316         locationCache: {},
19317
19318         /**
19319          * Set useCache to false if you want to force object the lookup of each
19320          * drag and drop linked element constantly during a drag.
19321          * @property useCache
19322          * @type boolean
19323          * @static
19324          */
19325         useCache: true,
19326
19327         /**
19328          * The number of pixels that the mouse needs to move after the
19329          * mousedown before the drag is initiated.  Default=3;
19330          * @property clickPixelThresh
19331          * @type int
19332          * @static
19333          */
19334         clickPixelThresh: 3,
19335
19336         /**
19337          * The number of milliseconds after the mousedown event to initiate the
19338          * drag if we don't get a mouseup event. Default=1000
19339          * @property clickTimeThresh
19340          * @type int
19341          * @static
19342          */
19343         clickTimeThresh: 350,
19344
19345         /**
19346          * Flag that indicates that either the drag pixel threshold or the
19347          * mousdown time threshold has been met
19348          * @property dragThreshMet
19349          * @type boolean
19350          * @private
19351          * @static
19352          */
19353         dragThreshMet: false,
19354
19355         /**
19356          * Timeout used for the click time threshold
19357          * @property clickTimeout
19358          * @type Object
19359          * @private
19360          * @static
19361          */
19362         clickTimeout: null,
19363
19364         /**
19365          * The X position of the mousedown event stored for later use when a
19366          * drag threshold is met.
19367          * @property startX
19368          * @type int
19369          * @private
19370          * @static
19371          */
19372         startX: 0,
19373
19374         /**
19375          * The Y position of the mousedown event stored for later use when a
19376          * drag threshold is met.
19377          * @property startY
19378          * @type int
19379          * @private
19380          * @static
19381          */
19382         startY: 0,
19383
19384         /**
19385          * Each DragDrop instance must be registered with the DragDropMgr.
19386          * This is executed in DragDrop.init()
19387          * @method regDragDrop
19388          * @param {DragDrop} oDD the DragDrop object to register
19389          * @param {String} sGroup the name of the group this element belongs to
19390          * @static
19391          */
19392         regDragDrop: function(oDD, sGroup) {
19393             if (!this.initialized) { this.init(); }
19394
19395             if (!this.ids[sGroup]) {
19396                 this.ids[sGroup] = {};
19397             }
19398             this.ids[sGroup][oDD.id] = oDD;
19399         },
19400
19401         /**
19402          * Removes the supplied dd instance from the supplied group. Executed
19403          * by DragDrop.removeFromGroup, so don't call this function directly.
19404          * @method removeDDFromGroup
19405          * @private
19406          * @static
19407          */
19408         removeDDFromGroup: function(oDD, sGroup) {
19409             if (!this.ids[sGroup]) {
19410                 this.ids[sGroup] = {};
19411             }
19412
19413             var obj = this.ids[sGroup];
19414             if (obj && obj[oDD.id]) {
19415                 delete obj[oDD.id];
19416             }
19417         },
19418
19419         /**
19420          * Unregisters a drag and drop item.  This is executed in
19421          * DragDrop.unreg, use that method instead of calling this directly.
19422          * @method _remove
19423          * @private
19424          * @static
19425          */
19426         _remove: function(oDD) {
19427             for (var g in oDD.groups) {
19428                 if (g && this.ids[g][oDD.id]) {
19429                     delete this.ids[g][oDD.id];
19430                 }
19431             }
19432             delete this.handleIds[oDD.id];
19433         },
19434
19435         /**
19436          * Each DragDrop handle element must be registered.  This is done
19437          * automatically when executing DragDrop.setHandleElId()
19438          * @method regHandle
19439          * @param {String} sDDId the DragDrop id this element is a handle for
19440          * @param {String} sHandleId the id of the element that is the drag
19441          * handle
19442          * @static
19443          */
19444         regHandle: function(sDDId, sHandleId) {
19445             if (!this.handleIds[sDDId]) {
19446                 this.handleIds[sDDId] = {};
19447             }
19448             this.handleIds[sDDId][sHandleId] = sHandleId;
19449         },
19450
19451         /**
19452          * Utility function to determine if a given element has been
19453          * registered as a drag drop item.
19454          * @method isDragDrop
19455          * @param {String} id the element id to check
19456          * @return {boolean} true if this element is a DragDrop item,
19457          * false otherwise
19458          * @static
19459          */
19460         isDragDrop: function(id) {
19461             return ( this.getDDById(id) ) ? true : false;
19462         },
19463
19464         /**
19465          * Returns the drag and drop instances that are in all groups the
19466          * passed in instance belongs to.
19467          * @method getRelated
19468          * @param {DragDrop} p_oDD the obj to get related data for
19469          * @param {boolean} bTargetsOnly if true, only return targetable objs
19470          * @return {DragDrop[]} the related instances
19471          * @static
19472          */
19473         getRelated: function(p_oDD, bTargetsOnly) {
19474             var oDDs = [];
19475             for (var i in p_oDD.groups) {
19476                 for (j in this.ids[i]) {
19477                     var dd = this.ids[i][j];
19478                     if (! this.isTypeOfDD(dd)) {
19479                         continue;
19480                     }
19481                     if (!bTargetsOnly || dd.isTarget) {
19482                         oDDs[oDDs.length] = dd;
19483                     }
19484                 }
19485             }
19486
19487             return oDDs;
19488         },
19489
19490         /**
19491          * Returns true if the specified dd target is a legal target for
19492          * the specifice drag obj
19493          * @method isLegalTarget
19494          * @param {DragDrop} the drag obj
19495          * @param {DragDrop} the target
19496          * @return {boolean} true if the target is a legal target for the
19497          * dd obj
19498          * @static
19499          */
19500         isLegalTarget: function (oDD, oTargetDD) {
19501             var targets = this.getRelated(oDD, true);
19502             for (var i=0, len=targets.length;i<len;++i) {
19503                 if (targets[i].id == oTargetDD.id) {
19504                     return true;
19505                 }
19506             }
19507
19508             return false;
19509         },
19510
19511         /**
19512          * My goal is to be able to transparently determine if an object is
19513          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
19514          * returns "object", oDD.constructor.toString() always returns
19515          * "DragDrop" and not the name of the subclass.  So for now it just
19516          * evaluates a well-known variable in DragDrop.
19517          * @method isTypeOfDD
19518          * @param {Object} the object to evaluate
19519          * @return {boolean} true if typeof oDD = DragDrop
19520          * @static
19521          */
19522         isTypeOfDD: function (oDD) {
19523             return (oDD && oDD.__ygDragDrop);
19524         },
19525
19526         /**
19527          * Utility function to determine if a given element has been
19528          * registered as a drag drop handle for the given Drag Drop object.
19529          * @method isHandle
19530          * @param {String} id the element id to check
19531          * @return {boolean} true if this element is a DragDrop handle, false
19532          * otherwise
19533          * @static
19534          */
19535         isHandle: function(sDDId, sHandleId) {
19536             return ( this.handleIds[sDDId] &&
19537                             this.handleIds[sDDId][sHandleId] );
19538         },
19539
19540         /**
19541          * Returns the DragDrop instance for a given id
19542          * @method getDDById
19543          * @param {String} id the id of the DragDrop object
19544          * @return {DragDrop} the drag drop object, null if it is not found
19545          * @static
19546          */
19547         getDDById: function(id) {
19548             for (var i in this.ids) {
19549                 if (this.ids[i][id]) {
19550                     return this.ids[i][id];
19551                 }
19552             }
19553             return null;
19554         },
19555
19556         /**
19557          * Fired after a registered DragDrop object gets the mousedown event.
19558          * Sets up the events required to track the object being dragged
19559          * @method handleMouseDown
19560          * @param {Event} e the event
19561          * @param oDD the DragDrop object being dragged
19562          * @private
19563          * @static
19564          */
19565         handleMouseDown: function(e, oDD) {
19566             if(Roo.QuickTips){
19567                 Roo.QuickTips.disable();
19568             }
19569             this.currentTarget = e.getTarget();
19570
19571             this.dragCurrent = oDD;
19572
19573             var el = oDD.getEl();
19574
19575             // track start position
19576             this.startX = e.getPageX();
19577             this.startY = e.getPageY();
19578
19579             this.deltaX = this.startX - el.offsetLeft;
19580             this.deltaY = this.startY - el.offsetTop;
19581
19582             this.dragThreshMet = false;
19583
19584             this.clickTimeout = setTimeout(
19585                     function() {
19586                         var DDM = Roo.dd.DDM;
19587                         DDM.startDrag(DDM.startX, DDM.startY);
19588                     },
19589                     this.clickTimeThresh );
19590         },
19591
19592         /**
19593          * Fired when either the drag pixel threshol or the mousedown hold
19594          * time threshold has been met.
19595          * @method startDrag
19596          * @param x {int} the X position of the original mousedown
19597          * @param y {int} the Y position of the original mousedown
19598          * @static
19599          */
19600         startDrag: function(x, y) {
19601             clearTimeout(this.clickTimeout);
19602             if (this.dragCurrent) {
19603                 this.dragCurrent.b4StartDrag(x, y);
19604                 this.dragCurrent.startDrag(x, y);
19605             }
19606             this.dragThreshMet = true;
19607         },
19608
19609         /**
19610          * Internal function to handle the mouseup event.  Will be invoked
19611          * from the context of the document.
19612          * @method handleMouseUp
19613          * @param {Event} e the event
19614          * @private
19615          * @static
19616          */
19617         handleMouseUp: function(e) {
19618
19619             if(Roo.QuickTips){
19620                 Roo.QuickTips.enable();
19621             }
19622             if (! this.dragCurrent) {
19623                 return;
19624             }
19625
19626             clearTimeout(this.clickTimeout);
19627
19628             if (this.dragThreshMet) {
19629                 this.fireEvents(e, true);
19630             } else {
19631             }
19632
19633             this.stopDrag(e);
19634
19635             this.stopEvent(e);
19636         },
19637
19638         /**
19639          * Utility to stop event propagation and event default, if these
19640          * features are turned on.
19641          * @method stopEvent
19642          * @param {Event} e the event as returned by this.getEvent()
19643          * @static
19644          */
19645         stopEvent: function(e){
19646             if(this.stopPropagation) {
19647                 e.stopPropagation();
19648             }
19649
19650             if (this.preventDefault) {
19651                 e.preventDefault();
19652             }
19653         },
19654
19655         /**
19656          * Internal function to clean up event handlers after the drag
19657          * operation is complete
19658          * @method stopDrag
19659          * @param {Event} e the event
19660          * @private
19661          * @static
19662          */
19663         stopDrag: function(e) {
19664             // Fire the drag end event for the item that was dragged
19665             if (this.dragCurrent) {
19666                 if (this.dragThreshMet) {
19667                     this.dragCurrent.b4EndDrag(e);
19668                     this.dragCurrent.endDrag(e);
19669                 }
19670
19671                 this.dragCurrent.onMouseUp(e);
19672             }
19673
19674             this.dragCurrent = null;
19675             this.dragOvers = {};
19676         },
19677
19678         /**
19679          * Internal function to handle the mousemove event.  Will be invoked
19680          * from the context of the html element.
19681          *
19682          * @TODO figure out what we can do about mouse events lost when the
19683          * user drags objects beyond the window boundary.  Currently we can
19684          * detect this in internet explorer by verifying that the mouse is
19685          * down during the mousemove event.  Firefox doesn't give us the
19686          * button state on the mousemove event.
19687          * @method handleMouseMove
19688          * @param {Event} e the event
19689          * @private
19690          * @static
19691          */
19692         handleMouseMove: function(e) {
19693             if (! this.dragCurrent) {
19694                 return true;
19695             }
19696
19697             // var button = e.which || e.button;
19698
19699             // check for IE mouseup outside of page boundary
19700             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
19701                 this.stopEvent(e);
19702                 return this.handleMouseUp(e);
19703             }
19704
19705             if (!this.dragThreshMet) {
19706                 var diffX = Math.abs(this.startX - e.getPageX());
19707                 var diffY = Math.abs(this.startY - e.getPageY());
19708                 if (diffX > this.clickPixelThresh ||
19709                             diffY > this.clickPixelThresh) {
19710                     this.startDrag(this.startX, this.startY);
19711                 }
19712             }
19713
19714             if (this.dragThreshMet) {
19715                 this.dragCurrent.b4Drag(e);
19716                 this.dragCurrent.onDrag(e);
19717                 if(!this.dragCurrent.moveOnly){
19718                     this.fireEvents(e, false);
19719                 }
19720             }
19721
19722             this.stopEvent(e);
19723
19724             return true;
19725         },
19726
19727         /**
19728          * Iterates over all of the DragDrop elements to find ones we are
19729          * hovering over or dropping on
19730          * @method fireEvents
19731          * @param {Event} e the event
19732          * @param {boolean} isDrop is this a drop op or a mouseover op?
19733          * @private
19734          * @static
19735          */
19736         fireEvents: function(e, isDrop) {
19737             var dc = this.dragCurrent;
19738
19739             // If the user did the mouse up outside of the window, we could
19740             // get here even though we have ended the drag.
19741             if (!dc || dc.isLocked()) {
19742                 return;
19743             }
19744
19745             var pt = e.getPoint();
19746
19747             // cache the previous dragOver array
19748             var oldOvers = [];
19749
19750             var outEvts   = [];
19751             var overEvts  = [];
19752             var dropEvts  = [];
19753             var enterEvts = [];
19754
19755             // Check to see if the object(s) we were hovering over is no longer
19756             // being hovered over so we can fire the onDragOut event
19757             for (var i in this.dragOvers) {
19758
19759                 var ddo = this.dragOvers[i];
19760
19761                 if (! this.isTypeOfDD(ddo)) {
19762                     continue;
19763                 }
19764
19765                 if (! this.isOverTarget(pt, ddo, this.mode)) {
19766                     outEvts.push( ddo );
19767                 }
19768
19769                 oldOvers[i] = true;
19770                 delete this.dragOvers[i];
19771             }
19772
19773             for (var sGroup in dc.groups) {
19774
19775                 if ("string" != typeof sGroup) {
19776                     continue;
19777                 }
19778
19779                 for (i in this.ids[sGroup]) {
19780                     var oDD = this.ids[sGroup][i];
19781                     if (! this.isTypeOfDD(oDD)) {
19782                         continue;
19783                     }
19784
19785                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
19786                         if (this.isOverTarget(pt, oDD, this.mode)) {
19787                             // look for drop interactions
19788                             if (isDrop) {
19789                                 dropEvts.push( oDD );
19790                             // look for drag enter and drag over interactions
19791                             } else {
19792
19793                                 // initial drag over: dragEnter fires
19794                                 if (!oldOvers[oDD.id]) {
19795                                     enterEvts.push( oDD );
19796                                 // subsequent drag overs: dragOver fires
19797                                 } else {
19798                                     overEvts.push( oDD );
19799                                 }
19800
19801                                 this.dragOvers[oDD.id] = oDD;
19802                             }
19803                         }
19804                     }
19805                 }
19806             }
19807
19808             if (this.mode) {
19809                 if (outEvts.length) {
19810                     dc.b4DragOut(e, outEvts);
19811                     dc.onDragOut(e, outEvts);
19812                 }
19813
19814                 if (enterEvts.length) {
19815                     dc.onDragEnter(e, enterEvts);
19816                 }
19817
19818                 if (overEvts.length) {
19819                     dc.b4DragOver(e, overEvts);
19820                     dc.onDragOver(e, overEvts);
19821                 }
19822
19823                 if (dropEvts.length) {
19824                     dc.b4DragDrop(e, dropEvts);
19825                     dc.onDragDrop(e, dropEvts);
19826                 }
19827
19828             } else {
19829                 // fire dragout events
19830                 var len = 0;
19831                 for (i=0, len=outEvts.length; i<len; ++i) {
19832                     dc.b4DragOut(e, outEvts[i].id);
19833                     dc.onDragOut(e, outEvts[i].id);
19834                 }
19835
19836                 // fire enter events
19837                 for (i=0,len=enterEvts.length; i<len; ++i) {
19838                     // dc.b4DragEnter(e, oDD.id);
19839                     dc.onDragEnter(e, enterEvts[i].id);
19840                 }
19841
19842                 // fire over events
19843                 for (i=0,len=overEvts.length; i<len; ++i) {
19844                     dc.b4DragOver(e, overEvts[i].id);
19845                     dc.onDragOver(e, overEvts[i].id);
19846                 }
19847
19848                 // fire drop events
19849                 for (i=0, len=dropEvts.length; i<len; ++i) {
19850                     dc.b4DragDrop(e, dropEvts[i].id);
19851                     dc.onDragDrop(e, dropEvts[i].id);
19852                 }
19853
19854             }
19855
19856             // notify about a drop that did not find a target
19857             if (isDrop && !dropEvts.length) {
19858                 dc.onInvalidDrop(e);
19859             }
19860
19861         },
19862
19863         /**
19864          * Helper function for getting the best match from the list of drag
19865          * and drop objects returned by the drag and drop events when we are
19866          * in INTERSECT mode.  It returns either the first object that the
19867          * cursor is over, or the object that has the greatest overlap with
19868          * the dragged element.
19869          * @method getBestMatch
19870          * @param  {DragDrop[]} dds The array of drag and drop objects
19871          * targeted
19872          * @return {DragDrop}       The best single match
19873          * @static
19874          */
19875         getBestMatch: function(dds) {
19876             var winner = null;
19877             // Return null if the input is not what we expect
19878             //if (!dds || !dds.length || dds.length == 0) {
19879                // winner = null;
19880             // If there is only one item, it wins
19881             //} else if (dds.length == 1) {
19882
19883             var len = dds.length;
19884
19885             if (len == 1) {
19886                 winner = dds[0];
19887             } else {
19888                 // Loop through the targeted items
19889                 for (var i=0; i<len; ++i) {
19890                     var dd = dds[i];
19891                     // If the cursor is over the object, it wins.  If the
19892                     // cursor is over multiple matches, the first one we come
19893                     // to wins.
19894                     if (dd.cursorIsOver) {
19895                         winner = dd;
19896                         break;
19897                     // Otherwise the object with the most overlap wins
19898                     } else {
19899                         if (!winner ||
19900                             winner.overlap.getArea() < dd.overlap.getArea()) {
19901                             winner = dd;
19902                         }
19903                     }
19904                 }
19905             }
19906
19907             return winner;
19908         },
19909
19910         /**
19911          * Refreshes the cache of the top-left and bottom-right points of the
19912          * drag and drop objects in the specified group(s).  This is in the
19913          * format that is stored in the drag and drop instance, so typical
19914          * usage is:
19915          * <code>
19916          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
19917          * </code>
19918          * Alternatively:
19919          * <code>
19920          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
19921          * </code>
19922          * @TODO this really should be an indexed array.  Alternatively this
19923          * method could accept both.
19924          * @method refreshCache
19925          * @param {Object} groups an associative array of groups to refresh
19926          * @static
19927          */
19928         refreshCache: function(groups) {
19929             for (var sGroup in groups) {
19930                 if ("string" != typeof sGroup) {
19931                     continue;
19932                 }
19933                 for (var i in this.ids[sGroup]) {
19934                     var oDD = this.ids[sGroup][i];
19935
19936                     if (this.isTypeOfDD(oDD)) {
19937                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
19938                         var loc = this.getLocation(oDD);
19939                         if (loc) {
19940                             this.locationCache[oDD.id] = loc;
19941                         } else {
19942                             delete this.locationCache[oDD.id];
19943                             // this will unregister the drag and drop object if
19944                             // the element is not in a usable state
19945                             // oDD.unreg();
19946                         }
19947                     }
19948                 }
19949             }
19950         },
19951
19952         /**
19953          * This checks to make sure an element exists and is in the DOM.  The
19954          * main purpose is to handle cases where innerHTML is used to remove
19955          * drag and drop objects from the DOM.  IE provides an 'unspecified
19956          * error' when trying to access the offsetParent of such an element
19957          * @method verifyEl
19958          * @param {HTMLElement} el the element to check
19959          * @return {boolean} true if the element looks usable
19960          * @static
19961          */
19962         verifyEl: function(el) {
19963             if (el) {
19964                 var parent;
19965                 if(Roo.isIE){
19966                     try{
19967                         parent = el.offsetParent;
19968                     }catch(e){}
19969                 }else{
19970                     parent = el.offsetParent;
19971                 }
19972                 if (parent) {
19973                     return true;
19974                 }
19975             }
19976
19977             return false;
19978         },
19979
19980         /**
19981          * Returns a Region object containing the drag and drop element's position
19982          * and size, including the padding configured for it
19983          * @method getLocation
19984          * @param {DragDrop} oDD the drag and drop object to get the
19985          *                       location for
19986          * @return {Roo.lib.Region} a Region object representing the total area
19987          *                             the element occupies, including any padding
19988          *                             the instance is configured for.
19989          * @static
19990          */
19991         getLocation: function(oDD) {
19992             if (! this.isTypeOfDD(oDD)) {
19993                 return null;
19994             }
19995
19996             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
19997
19998             try {
19999                 pos= Roo.lib.Dom.getXY(el);
20000             } catch (e) { }
20001
20002             if (!pos) {
20003                 return null;
20004             }
20005
20006             x1 = pos[0];
20007             x2 = x1 + el.offsetWidth;
20008             y1 = pos[1];
20009             y2 = y1 + el.offsetHeight;
20010
20011             t = y1 - oDD.padding[0];
20012             r = x2 + oDD.padding[1];
20013             b = y2 + oDD.padding[2];
20014             l = x1 - oDD.padding[3];
20015
20016             return new Roo.lib.Region( t, r, b, l );
20017         },
20018
20019         /**
20020          * Checks the cursor location to see if it over the target
20021          * @method isOverTarget
20022          * @param {Roo.lib.Point} pt The point to evaluate
20023          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20024          * @return {boolean} true if the mouse is over the target
20025          * @private
20026          * @static
20027          */
20028         isOverTarget: function(pt, oTarget, intersect) {
20029             // use cache if available
20030             var loc = this.locationCache[oTarget.id];
20031             if (!loc || !this.useCache) {
20032                 loc = this.getLocation(oTarget);
20033                 this.locationCache[oTarget.id] = loc;
20034
20035             }
20036
20037             if (!loc) {
20038                 return false;
20039             }
20040
20041             oTarget.cursorIsOver = loc.contains( pt );
20042
20043             // DragDrop is using this as a sanity check for the initial mousedown
20044             // in this case we are done.  In POINT mode, if the drag obj has no
20045             // contraints, we are also done. Otherwise we need to evaluate the
20046             // location of the target as related to the actual location of the
20047             // dragged element.
20048             var dc = this.dragCurrent;
20049             if (!dc || !dc.getTargetCoord ||
20050                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20051                 return oTarget.cursorIsOver;
20052             }
20053
20054             oTarget.overlap = null;
20055
20056             // Get the current location of the drag element, this is the
20057             // location of the mouse event less the delta that represents
20058             // where the original mousedown happened on the element.  We
20059             // need to consider constraints and ticks as well.
20060             var pos = dc.getTargetCoord(pt.x, pt.y);
20061
20062             var el = dc.getDragEl();
20063             var curRegion = new Roo.lib.Region( pos.y,
20064                                                    pos.x + el.offsetWidth,
20065                                                    pos.y + el.offsetHeight,
20066                                                    pos.x );
20067
20068             var overlap = curRegion.intersect(loc);
20069
20070             if (overlap) {
20071                 oTarget.overlap = overlap;
20072                 return (intersect) ? true : oTarget.cursorIsOver;
20073             } else {
20074                 return false;
20075             }
20076         },
20077
20078         /**
20079          * unload event handler
20080          * @method _onUnload
20081          * @private
20082          * @static
20083          */
20084         _onUnload: function(e, me) {
20085             Roo.dd.DragDropMgr.unregAll();
20086         },
20087
20088         /**
20089          * Cleans up the drag and drop events and objects.
20090          * @method unregAll
20091          * @private
20092          * @static
20093          */
20094         unregAll: function() {
20095
20096             if (this.dragCurrent) {
20097                 this.stopDrag();
20098                 this.dragCurrent = null;
20099             }
20100
20101             this._execOnAll("unreg", []);
20102
20103             for (i in this.elementCache) {
20104                 delete this.elementCache[i];
20105             }
20106
20107             this.elementCache = {};
20108             this.ids = {};
20109         },
20110
20111         /**
20112          * A cache of DOM elements
20113          * @property elementCache
20114          * @private
20115          * @static
20116          */
20117         elementCache: {},
20118
20119         /**
20120          * Get the wrapper for the DOM element specified
20121          * @method getElWrapper
20122          * @param {String} id the id of the element to get
20123          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20124          * @private
20125          * @deprecated This wrapper isn't that useful
20126          * @static
20127          */
20128         getElWrapper: function(id) {
20129             var oWrapper = this.elementCache[id];
20130             if (!oWrapper || !oWrapper.el) {
20131                 oWrapper = this.elementCache[id] =
20132                     new this.ElementWrapper(Roo.getDom(id));
20133             }
20134             return oWrapper;
20135         },
20136
20137         /**
20138          * Returns the actual DOM element
20139          * @method getElement
20140          * @param {String} id the id of the elment to get
20141          * @return {Object} The element
20142          * @deprecated use Roo.getDom instead
20143          * @static
20144          */
20145         getElement: function(id) {
20146             return Roo.getDom(id);
20147         },
20148
20149         /**
20150          * Returns the style property for the DOM element (i.e.,
20151          * document.getElById(id).style)
20152          * @method getCss
20153          * @param {String} id the id of the elment to get
20154          * @return {Object} The style property of the element
20155          * @deprecated use Roo.getDom instead
20156          * @static
20157          */
20158         getCss: function(id) {
20159             var el = Roo.getDom(id);
20160             return (el) ? el.style : null;
20161         },
20162
20163         /**
20164          * Inner class for cached elements
20165          * @class DragDropMgr.ElementWrapper
20166          * @for DragDropMgr
20167          * @private
20168          * @deprecated
20169          */
20170         ElementWrapper: function(el) {
20171                 /**
20172                  * The element
20173                  * @property el
20174                  */
20175                 this.el = el || null;
20176                 /**
20177                  * The element id
20178                  * @property id
20179                  */
20180                 this.id = this.el && el.id;
20181                 /**
20182                  * A reference to the style property
20183                  * @property css
20184                  */
20185                 this.css = this.el && el.style;
20186             },
20187
20188         /**
20189          * Returns the X position of an html element
20190          * @method getPosX
20191          * @param el the element for which to get the position
20192          * @return {int} the X coordinate
20193          * @for DragDropMgr
20194          * @deprecated use Roo.lib.Dom.getX instead
20195          * @static
20196          */
20197         getPosX: function(el) {
20198             return Roo.lib.Dom.getX(el);
20199         },
20200
20201         /**
20202          * Returns the Y position of an html element
20203          * @method getPosY
20204          * @param el the element for which to get the position
20205          * @return {int} the Y coordinate
20206          * @deprecated use Roo.lib.Dom.getY instead
20207          * @static
20208          */
20209         getPosY: function(el) {
20210             return Roo.lib.Dom.getY(el);
20211         },
20212
20213         /**
20214          * Swap two nodes.  In IE, we use the native method, for others we
20215          * emulate the IE behavior
20216          * @method swapNode
20217          * @param n1 the first node to swap
20218          * @param n2 the other node to swap
20219          * @static
20220          */
20221         swapNode: function(n1, n2) {
20222             if (n1.swapNode) {
20223                 n1.swapNode(n2);
20224             } else {
20225                 var p = n2.parentNode;
20226                 var s = n2.nextSibling;
20227
20228                 if (s == n1) {
20229                     p.insertBefore(n1, n2);
20230                 } else if (n2 == n1.nextSibling) {
20231                     p.insertBefore(n2, n1);
20232                 } else {
20233                     n1.parentNode.replaceChild(n2, n1);
20234                     p.insertBefore(n1, s);
20235                 }
20236             }
20237         },
20238
20239         /**
20240          * Returns the current scroll position
20241          * @method getScroll
20242          * @private
20243          * @static
20244          */
20245         getScroll: function () {
20246             var t, l, dde=document.documentElement, db=document.body;
20247             if (dde && (dde.scrollTop || dde.scrollLeft)) {
20248                 t = dde.scrollTop;
20249                 l = dde.scrollLeft;
20250             } else if (db) {
20251                 t = db.scrollTop;
20252                 l = db.scrollLeft;
20253             } else {
20254
20255             }
20256             return { top: t, left: l };
20257         },
20258
20259         /**
20260          * Returns the specified element style property
20261          * @method getStyle
20262          * @param {HTMLElement} el          the element
20263          * @param {string}      styleProp   the style property
20264          * @return {string} The value of the style property
20265          * @deprecated use Roo.lib.Dom.getStyle
20266          * @static
20267          */
20268         getStyle: function(el, styleProp) {
20269             return Roo.fly(el).getStyle(styleProp);
20270         },
20271
20272         /**
20273          * Gets the scrollTop
20274          * @method getScrollTop
20275          * @return {int} the document's scrollTop
20276          * @static
20277          */
20278         getScrollTop: function () { return this.getScroll().top; },
20279
20280         /**
20281          * Gets the scrollLeft
20282          * @method getScrollLeft
20283          * @return {int} the document's scrollTop
20284          * @static
20285          */
20286         getScrollLeft: function () { return this.getScroll().left; },
20287
20288         /**
20289          * Sets the x/y position of an element to the location of the
20290          * target element.
20291          * @method moveToEl
20292          * @param {HTMLElement} moveEl      The element to move
20293          * @param {HTMLElement} targetEl    The position reference element
20294          * @static
20295          */
20296         moveToEl: function (moveEl, targetEl) {
20297             var aCoord = Roo.lib.Dom.getXY(targetEl);
20298             Roo.lib.Dom.setXY(moveEl, aCoord);
20299         },
20300
20301         /**
20302          * Numeric array sort function
20303          * @method numericSort
20304          * @static
20305          */
20306         numericSort: function(a, b) { return (a - b); },
20307
20308         /**
20309          * Internal counter
20310          * @property _timeoutCount
20311          * @private
20312          * @static
20313          */
20314         _timeoutCount: 0,
20315
20316         /**
20317          * Trying to make the load order less important.  Without this we get
20318          * an error if this file is loaded before the Event Utility.
20319          * @method _addListeners
20320          * @private
20321          * @static
20322          */
20323         _addListeners: function() {
20324             var DDM = Roo.dd.DDM;
20325             if ( Roo.lib.Event && document ) {
20326                 DDM._onLoad();
20327             } else {
20328                 if (DDM._timeoutCount > 2000) {
20329                 } else {
20330                     setTimeout(DDM._addListeners, 10);
20331                     if (document && document.body) {
20332                         DDM._timeoutCount += 1;
20333                     }
20334                 }
20335             }
20336         },
20337
20338         /**
20339          * Recursively searches the immediate parent and all child nodes for
20340          * the handle element in order to determine wheter or not it was
20341          * clicked.
20342          * @method handleWasClicked
20343          * @param node the html element to inspect
20344          * @static
20345          */
20346         handleWasClicked: function(node, id) {
20347             if (this.isHandle(id, node.id)) {
20348                 return true;
20349             } else {
20350                 // check to see if this is a text node child of the one we want
20351                 var p = node.parentNode;
20352
20353                 while (p) {
20354                     if (this.isHandle(id, p.id)) {
20355                         return true;
20356                     } else {
20357                         p = p.parentNode;
20358                     }
20359                 }
20360             }
20361
20362             return false;
20363         }
20364
20365     };
20366
20367 }();
20368
20369 // shorter alias, save a few bytes
20370 Roo.dd.DDM = Roo.dd.DragDropMgr;
20371 Roo.dd.DDM._addListeners();
20372
20373 }/*
20374  * Based on:
20375  * Ext JS Library 1.1.1
20376  * Copyright(c) 2006-2007, Ext JS, LLC.
20377  *
20378  * Originally Released Under LGPL - original licence link has changed is not relivant.
20379  *
20380  * Fork - LGPL
20381  * <script type="text/javascript">
20382  */
20383
20384 /**
20385  * @class Roo.dd.DD
20386  * A DragDrop implementation where the linked element follows the
20387  * mouse cursor during a drag.
20388  * @extends Roo.dd.DragDrop
20389  * @constructor
20390  * @param {String} id the id of the linked element
20391  * @param {String} sGroup the group of related DragDrop items
20392  * @param {object} config an object containing configurable attributes
20393  *                Valid properties for DD:
20394  *                    scroll
20395  */
20396 Roo.dd.DD = function(id, sGroup, config) {
20397     if (id) {
20398         this.init(id, sGroup, config);
20399     }
20400 };
20401
20402 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
20403
20404     /**
20405      * When set to true, the utility automatically tries to scroll the browser
20406      * window wehn a drag and drop element is dragged near the viewport boundary.
20407      * Defaults to true.
20408      * @property scroll
20409      * @type boolean
20410      */
20411     scroll: true,
20412
20413     /**
20414      * Sets the pointer offset to the distance between the linked element's top
20415      * left corner and the location the element was clicked
20416      * @method autoOffset
20417      * @param {int} iPageX the X coordinate of the click
20418      * @param {int} iPageY the Y coordinate of the click
20419      */
20420     autoOffset: function(iPageX, iPageY) {
20421         var x = iPageX - this.startPageX;
20422         var y = iPageY - this.startPageY;
20423         this.setDelta(x, y);
20424     },
20425
20426     /**
20427      * Sets the pointer offset.  You can call this directly to force the
20428      * offset to be in a particular location (e.g., pass in 0,0 to set it
20429      * to the center of the object)
20430      * @method setDelta
20431      * @param {int} iDeltaX the distance from the left
20432      * @param {int} iDeltaY the distance from the top
20433      */
20434     setDelta: function(iDeltaX, iDeltaY) {
20435         this.deltaX = iDeltaX;
20436         this.deltaY = iDeltaY;
20437     },
20438
20439     /**
20440      * Sets the drag element to the location of the mousedown or click event,
20441      * maintaining the cursor location relative to the location on the element
20442      * that was clicked.  Override this if you want to place the element in a
20443      * location other than where the cursor is.
20444      * @method setDragElPos
20445      * @param {int} iPageX the X coordinate of the mousedown or drag event
20446      * @param {int} iPageY the Y coordinate of the mousedown or drag event
20447      */
20448     setDragElPos: function(iPageX, iPageY) {
20449         // the first time we do this, we are going to check to make sure
20450         // the element has css positioning
20451
20452         var el = this.getDragEl();
20453         this.alignElWithMouse(el, iPageX, iPageY);
20454     },
20455
20456     /**
20457      * Sets the element to the location of the mousedown or click event,
20458      * maintaining the cursor location relative to the location on the element
20459      * that was clicked.  Override this if you want to place the element in a
20460      * location other than where the cursor is.
20461      * @method alignElWithMouse
20462      * @param {HTMLElement} el the element to move
20463      * @param {int} iPageX the X coordinate of the mousedown or drag event
20464      * @param {int} iPageY the Y coordinate of the mousedown or drag event
20465      */
20466     alignElWithMouse: function(el, iPageX, iPageY) {
20467         var oCoord = this.getTargetCoord(iPageX, iPageY);
20468         var fly = el.dom ? el : Roo.fly(el);
20469         if (!this.deltaSetXY) {
20470             var aCoord = [oCoord.x, oCoord.y];
20471             fly.setXY(aCoord);
20472             var newLeft = fly.getLeft(true);
20473             var newTop  = fly.getTop(true);
20474             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
20475         } else {
20476             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
20477         }
20478
20479         this.cachePosition(oCoord.x, oCoord.y);
20480         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
20481         return oCoord;
20482     },
20483
20484     /**
20485      * Saves the most recent position so that we can reset the constraints and
20486      * tick marks on-demand.  We need to know this so that we can calculate the
20487      * number of pixels the element is offset from its original position.
20488      * @method cachePosition
20489      * @param iPageX the current x position (optional, this just makes it so we
20490      * don't have to look it up again)
20491      * @param iPageY the current y position (optional, this just makes it so we
20492      * don't have to look it up again)
20493      */
20494     cachePosition: function(iPageX, iPageY) {
20495         if (iPageX) {
20496             this.lastPageX = iPageX;
20497             this.lastPageY = iPageY;
20498         } else {
20499             var aCoord = Roo.lib.Dom.getXY(this.getEl());
20500             this.lastPageX = aCoord[0];
20501             this.lastPageY = aCoord[1];
20502         }
20503     },
20504
20505     /**
20506      * Auto-scroll the window if the dragged object has been moved beyond the
20507      * visible window boundary.
20508      * @method autoScroll
20509      * @param {int} x the drag element's x position
20510      * @param {int} y the drag element's y position
20511      * @param {int} h the height of the drag element
20512      * @param {int} w the width of the drag element
20513      * @private
20514      */
20515     autoScroll: function(x, y, h, w) {
20516
20517         if (this.scroll) {
20518             // The client height
20519             var clientH = Roo.lib.Dom.getViewWidth();
20520
20521             // The client width
20522             var clientW = Roo.lib.Dom.getViewHeight();
20523
20524             // The amt scrolled down
20525             var st = this.DDM.getScrollTop();
20526
20527             // The amt scrolled right
20528             var sl = this.DDM.getScrollLeft();
20529
20530             // Location of the bottom of the element
20531             var bot = h + y;
20532
20533             // Location of the right of the element
20534             var right = w + x;
20535
20536             // The distance from the cursor to the bottom of the visible area,
20537             // adjusted so that we don't scroll if the cursor is beyond the
20538             // element drag constraints
20539             var toBot = (clientH + st - y - this.deltaY);
20540
20541             // The distance from the cursor to the right of the visible area
20542             var toRight = (clientW + sl - x - this.deltaX);
20543
20544
20545             // How close to the edge the cursor must be before we scroll
20546             // var thresh = (document.all) ? 100 : 40;
20547             var thresh = 40;
20548
20549             // How many pixels to scroll per autoscroll op.  This helps to reduce
20550             // clunky scrolling. IE is more sensitive about this ... it needs this
20551             // value to be higher.
20552             var scrAmt = (document.all) ? 80 : 30;
20553
20554             // Scroll down if we are near the bottom of the visible page and the
20555             // obj extends below the crease
20556             if ( bot > clientH && toBot < thresh ) {
20557                 window.scrollTo(sl, st + scrAmt);
20558             }
20559
20560             // Scroll up if the window is scrolled down and the top of the object
20561             // goes above the top border
20562             if ( y < st && st > 0 && y - st < thresh ) {
20563                 window.scrollTo(sl, st - scrAmt);
20564             }
20565
20566             // Scroll right if the obj is beyond the right border and the cursor is
20567             // near the border.
20568             if ( right > clientW && toRight < thresh ) {
20569                 window.scrollTo(sl + scrAmt, st);
20570             }
20571
20572             // Scroll left if the window has been scrolled to the right and the obj
20573             // extends past the left border
20574             if ( x < sl && sl > 0 && x - sl < thresh ) {
20575                 window.scrollTo(sl - scrAmt, st);
20576             }
20577         }
20578     },
20579
20580     /**
20581      * Finds the location the element should be placed if we want to move
20582      * it to where the mouse location less the click offset would place us.
20583      * @method getTargetCoord
20584      * @param {int} iPageX the X coordinate of the click
20585      * @param {int} iPageY the Y coordinate of the click
20586      * @return an object that contains the coordinates (Object.x and Object.y)
20587      * @private
20588      */
20589     getTargetCoord: function(iPageX, iPageY) {
20590
20591
20592         var x = iPageX - this.deltaX;
20593         var y = iPageY - this.deltaY;
20594
20595         if (this.constrainX) {
20596             if (x < this.minX) { x = this.minX; }
20597             if (x > this.maxX) { x = this.maxX; }
20598         }
20599
20600         if (this.constrainY) {
20601             if (y < this.minY) { y = this.minY; }
20602             if (y > this.maxY) { y = this.maxY; }
20603         }
20604
20605         x = this.getTick(x, this.xTicks);
20606         y = this.getTick(y, this.yTicks);
20607
20608
20609         return {x:x, y:y};
20610     },
20611
20612     /*
20613      * Sets up config options specific to this class. Overrides
20614      * Roo.dd.DragDrop, but all versions of this method through the
20615      * inheritance chain are called
20616      */
20617     applyConfig: function() {
20618         Roo.dd.DD.superclass.applyConfig.call(this);
20619         this.scroll = (this.config.scroll !== false);
20620     },
20621
20622     /*
20623      * Event that fires prior to the onMouseDown event.  Overrides
20624      * Roo.dd.DragDrop.
20625      */
20626     b4MouseDown: function(e) {
20627         // this.resetConstraints();
20628         this.autoOffset(e.getPageX(),
20629                             e.getPageY());
20630     },
20631
20632     /*
20633      * Event that fires prior to the onDrag event.  Overrides
20634      * Roo.dd.DragDrop.
20635      */
20636     b4Drag: function(e) {
20637         this.setDragElPos(e.getPageX(),
20638                             e.getPageY());
20639     },
20640
20641     toString: function() {
20642         return ("DD " + this.id);
20643     }
20644
20645     //////////////////////////////////////////////////////////////////////////
20646     // Debugging ygDragDrop events that can be overridden
20647     //////////////////////////////////////////////////////////////////////////
20648     /*
20649     startDrag: function(x, y) {
20650     },
20651
20652     onDrag: function(e) {
20653     },
20654
20655     onDragEnter: function(e, id) {
20656     },
20657
20658     onDragOver: function(e, id) {
20659     },
20660
20661     onDragOut: function(e, id) {
20662     },
20663
20664     onDragDrop: function(e, id) {
20665     },
20666
20667     endDrag: function(e) {
20668     }
20669
20670     */
20671
20672 });/*
20673  * Based on:
20674  * Ext JS Library 1.1.1
20675  * Copyright(c) 2006-2007, Ext JS, LLC.
20676  *
20677  * Originally Released Under LGPL - original licence link has changed is not relivant.
20678  *
20679  * Fork - LGPL
20680  * <script type="text/javascript">
20681  */
20682
20683 /**
20684  * @class Roo.dd.DDProxy
20685  * A DragDrop implementation that inserts an empty, bordered div into
20686  * the document that follows the cursor during drag operations.  At the time of
20687  * the click, the frame div is resized to the dimensions of the linked html
20688  * element, and moved to the exact location of the linked element.
20689  *
20690  * References to the "frame" element refer to the single proxy element that
20691  * was created to be dragged in place of all DDProxy elements on the
20692  * page.
20693  *
20694  * @extends Roo.dd.DD
20695  * @constructor
20696  * @param {String} id the id of the linked html element
20697  * @param {String} sGroup the group of related DragDrop objects
20698  * @param {object} config an object containing configurable attributes
20699  *                Valid properties for DDProxy in addition to those in DragDrop:
20700  *                   resizeFrame, centerFrame, dragElId
20701  */
20702 Roo.dd.DDProxy = function(id, sGroup, config) {
20703     if (id) {
20704         this.init(id, sGroup, config);
20705         this.initFrame();
20706     }
20707 };
20708
20709 /**
20710  * The default drag frame div id
20711  * @property Roo.dd.DDProxy.dragElId
20712  * @type String
20713  * @static
20714  */
20715 Roo.dd.DDProxy.dragElId = "ygddfdiv";
20716
20717 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
20718
20719     /**
20720      * By default we resize the drag frame to be the same size as the element
20721      * we want to drag (this is to get the frame effect).  We can turn it off
20722      * if we want a different behavior.
20723      * @property resizeFrame
20724      * @type boolean
20725      */
20726     resizeFrame: true,
20727
20728     /**
20729      * By default the frame is positioned exactly where the drag element is, so
20730      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
20731      * you do not have constraints on the obj is to have the drag frame centered
20732      * around the cursor.  Set centerFrame to true for this effect.
20733      * @property centerFrame
20734      * @type boolean
20735      */
20736     centerFrame: false,
20737
20738     /**
20739      * Creates the proxy element if it does not yet exist
20740      * @method createFrame
20741      */
20742     createFrame: function() {
20743         var self = this;
20744         var body = document.body;
20745
20746         if (!body || !body.firstChild) {
20747             setTimeout( function() { self.createFrame(); }, 50 );
20748             return;
20749         }
20750
20751         var div = this.getDragEl();
20752
20753         if (!div) {
20754             div    = document.createElement("div");
20755             div.id = this.dragElId;
20756             var s  = div.style;
20757
20758             s.position   = "absolute";
20759             s.visibility = "hidden";
20760             s.cursor     = "move";
20761             s.border     = "2px solid #aaa";
20762             s.zIndex     = 999;
20763
20764             // appendChild can blow up IE if invoked prior to the window load event
20765             // while rendering a table.  It is possible there are other scenarios
20766             // that would cause this to happen as well.
20767             body.insertBefore(div, body.firstChild);
20768         }
20769     },
20770
20771     /**
20772      * Initialization for the drag frame element.  Must be called in the
20773      * constructor of all subclasses
20774      * @method initFrame
20775      */
20776     initFrame: function() {
20777         this.createFrame();
20778     },
20779
20780     applyConfig: function() {
20781         Roo.dd.DDProxy.superclass.applyConfig.call(this);
20782
20783         this.resizeFrame = (this.config.resizeFrame !== false);
20784         this.centerFrame = (this.config.centerFrame);
20785         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
20786     },
20787
20788     /**
20789      * Resizes the drag frame to the dimensions of the clicked object, positions
20790      * it over the object, and finally displays it
20791      * @method showFrame
20792      * @param {int} iPageX X click position
20793      * @param {int} iPageY Y click position
20794      * @private
20795      */
20796     showFrame: function(iPageX, iPageY) {
20797         var el = this.getEl();
20798         var dragEl = this.getDragEl();
20799         var s = dragEl.style;
20800
20801         this._resizeProxy();
20802
20803         if (this.centerFrame) {
20804             this.setDelta( Math.round(parseInt(s.width,  10)/2),
20805                            Math.round(parseInt(s.height, 10)/2) );
20806         }
20807
20808         this.setDragElPos(iPageX, iPageY);
20809
20810         Roo.fly(dragEl).show();
20811     },
20812
20813     /**
20814      * The proxy is automatically resized to the dimensions of the linked
20815      * element when a drag is initiated, unless resizeFrame is set to false
20816      * @method _resizeProxy
20817      * @private
20818      */
20819     _resizeProxy: function() {
20820         if (this.resizeFrame) {
20821             var el = this.getEl();
20822             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
20823         }
20824     },
20825
20826     // overrides Roo.dd.DragDrop
20827     b4MouseDown: function(e) {
20828         var x = e.getPageX();
20829         var y = e.getPageY();
20830         this.autoOffset(x, y);
20831         this.setDragElPos(x, y);
20832     },
20833
20834     // overrides Roo.dd.DragDrop
20835     b4StartDrag: function(x, y) {
20836         // show the drag frame
20837         this.showFrame(x, y);
20838     },
20839
20840     // overrides Roo.dd.DragDrop
20841     b4EndDrag: function(e) {
20842         Roo.fly(this.getDragEl()).hide();
20843     },
20844
20845     // overrides Roo.dd.DragDrop
20846     // By default we try to move the element to the last location of the frame.
20847     // This is so that the default behavior mirrors that of Roo.dd.DD.
20848     endDrag: function(e) {
20849
20850         var lel = this.getEl();
20851         var del = this.getDragEl();
20852
20853         // Show the drag frame briefly so we can get its position
20854         del.style.visibility = "";
20855
20856         this.beforeMove();
20857         // Hide the linked element before the move to get around a Safari
20858         // rendering bug.
20859         lel.style.visibility = "hidden";
20860         Roo.dd.DDM.moveToEl(lel, del);
20861         del.style.visibility = "hidden";
20862         lel.style.visibility = "";
20863
20864         this.afterDrag();
20865     },
20866
20867     beforeMove : function(){
20868
20869     },
20870
20871     afterDrag : function(){
20872
20873     },
20874
20875     toString: function() {
20876         return ("DDProxy " + this.id);
20877     }
20878
20879 });
20880 /*
20881  * Based on:
20882  * Ext JS Library 1.1.1
20883  * Copyright(c) 2006-2007, Ext JS, LLC.
20884  *
20885  * Originally Released Under LGPL - original licence link has changed is not relivant.
20886  *
20887  * Fork - LGPL
20888  * <script type="text/javascript">
20889  */
20890
20891  /**
20892  * @class Roo.dd.DDTarget
20893  * A DragDrop implementation that does not move, but can be a drop
20894  * target.  You would get the same result by simply omitting implementation
20895  * for the event callbacks, but this way we reduce the processing cost of the
20896  * event listener and the callbacks.
20897  * @extends Roo.dd.DragDrop
20898  * @constructor
20899  * @param {String} id the id of the element that is a drop target
20900  * @param {String} sGroup the group of related DragDrop objects
20901  * @param {object} config an object containing configurable attributes
20902  *                 Valid properties for DDTarget in addition to those in
20903  *                 DragDrop:
20904  *                    none
20905  */
20906 Roo.dd.DDTarget = function(id, sGroup, config) {
20907     if (id) {
20908         this.initTarget(id, sGroup, config);
20909     }
20910     if (config.listeners || config.events) { 
20911        Roo.dd.DragDrop.superclass.constructor.call(this,  { 
20912             listeners : config.listeners || {}, 
20913             events : config.events || {} 
20914         });    
20915     }
20916 };
20917
20918 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
20919 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
20920     toString: function() {
20921         return ("DDTarget " + this.id);
20922     }
20923 });
20924 /*
20925  * Based on:
20926  * Ext JS Library 1.1.1
20927  * Copyright(c) 2006-2007, Ext JS, LLC.
20928  *
20929  * Originally Released Under LGPL - original licence link has changed is not relivant.
20930  *
20931  * Fork - LGPL
20932  * <script type="text/javascript">
20933  */
20934  
20935
20936 /**
20937  * @class Roo.dd.ScrollManager
20938  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
20939  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
20940  * @singleton
20941  */
20942 Roo.dd.ScrollManager = function(){
20943     var ddm = Roo.dd.DragDropMgr;
20944     var els = {};
20945     var dragEl = null;
20946     var proc = {};
20947     
20948     
20949     
20950     var onStop = function(e){
20951         dragEl = null;
20952         clearProc();
20953     };
20954     
20955     var triggerRefresh = function(){
20956         if(ddm.dragCurrent){
20957              ddm.refreshCache(ddm.dragCurrent.groups);
20958         }
20959     };
20960     
20961     var doScroll = function(){
20962         if(ddm.dragCurrent){
20963             var dds = Roo.dd.ScrollManager;
20964             if(!dds.animate){
20965                 if(proc.el.scroll(proc.dir, dds.increment)){
20966                     triggerRefresh();
20967                 }
20968             }else{
20969                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
20970             }
20971         }
20972     };
20973     
20974     var clearProc = function(){
20975         if(proc.id){
20976             clearInterval(proc.id);
20977         }
20978         proc.id = 0;
20979         proc.el = null;
20980         proc.dir = "";
20981     };
20982     
20983     var startProc = function(el, dir){
20984          Roo.log('scroll startproc');
20985         clearProc();
20986         proc.el = el;
20987         proc.dir = dir;
20988         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
20989     };
20990     
20991     var onFire = function(e, isDrop){
20992        
20993         if(isDrop || !ddm.dragCurrent){ return; }
20994         var dds = Roo.dd.ScrollManager;
20995         if(!dragEl || dragEl != ddm.dragCurrent){
20996             dragEl = ddm.dragCurrent;
20997             // refresh regions on drag start
20998             dds.refreshCache();
20999         }
21000         
21001         var xy = Roo.lib.Event.getXY(e);
21002         var pt = new Roo.lib.Point(xy[0], xy[1]);
21003         for(var id in els){
21004             var el = els[id], r = el._region;
21005             if(r && r.contains(pt) && el.isScrollable()){
21006                 if(r.bottom - pt.y <= dds.thresh){
21007                     if(proc.el != el){
21008                         startProc(el, "down");
21009                     }
21010                     return;
21011                 }else if(r.right - pt.x <= dds.thresh){
21012                     if(proc.el != el){
21013                         startProc(el, "left");
21014                     }
21015                     return;
21016                 }else if(pt.y - r.top <= dds.thresh){
21017                     if(proc.el != el){
21018                         startProc(el, "up");
21019                     }
21020                     return;
21021                 }else if(pt.x - r.left <= dds.thresh){
21022                     if(proc.el != el){
21023                         startProc(el, "right");
21024                     }
21025                     return;
21026                 }
21027             }
21028         }
21029         clearProc();
21030     };
21031     
21032     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21033     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21034     
21035     return {
21036         /**
21037          * Registers new overflow element(s) to auto scroll
21038          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21039          */
21040         register : function(el){
21041             if(el instanceof Array){
21042                 for(var i = 0, len = el.length; i < len; i++) {
21043                         this.register(el[i]);
21044                 }
21045             }else{
21046                 el = Roo.get(el);
21047                 els[el.id] = el;
21048             }
21049             Roo.dd.ScrollManager.els = els;
21050         },
21051         
21052         /**
21053          * Unregisters overflow element(s) so they are no longer scrolled
21054          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21055          */
21056         unregister : function(el){
21057             if(el instanceof Array){
21058                 for(var i = 0, len = el.length; i < len; i++) {
21059                         this.unregister(el[i]);
21060                 }
21061             }else{
21062                 el = Roo.get(el);
21063                 delete els[el.id];
21064             }
21065         },
21066         
21067         /**
21068          * The number of pixels from the edge of a container the pointer needs to be to 
21069          * trigger scrolling (defaults to 25)
21070          * @type Number
21071          */
21072         thresh : 25,
21073         
21074         /**
21075          * The number of pixels to scroll in each scroll increment (defaults to 50)
21076          * @type Number
21077          */
21078         increment : 100,
21079         
21080         /**
21081          * The frequency of scrolls in milliseconds (defaults to 500)
21082          * @type Number
21083          */
21084         frequency : 500,
21085         
21086         /**
21087          * True to animate the scroll (defaults to true)
21088          * @type Boolean
21089          */
21090         animate: true,
21091         
21092         /**
21093          * The animation duration in seconds - 
21094          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21095          * @type Number
21096          */
21097         animDuration: .4,
21098         
21099         /**
21100          * Manually trigger a cache refresh.
21101          */
21102         refreshCache : function(){
21103             for(var id in els){
21104                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21105                     els[id]._region = els[id].getRegion();
21106                 }
21107             }
21108         }
21109     };
21110 }();/*
21111  * Based on:
21112  * Ext JS Library 1.1.1
21113  * Copyright(c) 2006-2007, Ext JS, LLC.
21114  *
21115  * Originally Released Under LGPL - original licence link has changed is not relivant.
21116  *
21117  * Fork - LGPL
21118  * <script type="text/javascript">
21119  */
21120  
21121
21122 /**
21123  * @class Roo.dd.Registry
21124  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21125  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21126  * @singleton
21127  */
21128 Roo.dd.Registry = function(){
21129     var elements = {}; 
21130     var handles = {}; 
21131     var autoIdSeed = 0;
21132
21133     var getId = function(el, autogen){
21134         if(typeof el == "string"){
21135             return el;
21136         }
21137         var id = el.id;
21138         if(!id && autogen !== false){
21139             id = "roodd-" + (++autoIdSeed);
21140             el.id = id;
21141         }
21142         return id;
21143     };
21144     
21145     return {
21146     /**
21147      * Register a drag drop element
21148      * @param {String|HTMLElement} element The id or DOM node to register
21149      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21150      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21151      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21152      * populated in the data object (if applicable):
21153      * <pre>
21154 Value      Description<br />
21155 ---------  ------------------------------------------<br />
21156 handles    Array of DOM nodes that trigger dragging<br />
21157            for the element being registered<br />
21158 isHandle   True if the element passed in triggers<br />
21159            dragging itself, else false
21160 </pre>
21161      */
21162         register : function(el, data){
21163             data = data || {};
21164             if(typeof el == "string"){
21165                 el = document.getElementById(el);
21166             }
21167             data.ddel = el;
21168             elements[getId(el)] = data;
21169             if(data.isHandle !== false){
21170                 handles[data.ddel.id] = data;
21171             }
21172             if(data.handles){
21173                 var hs = data.handles;
21174                 for(var i = 0, len = hs.length; i < len; i++){
21175                         handles[getId(hs[i])] = data;
21176                 }
21177             }
21178         },
21179
21180     /**
21181      * Unregister a drag drop element
21182      * @param {String|HTMLElement}  element The id or DOM node to unregister
21183      */
21184         unregister : function(el){
21185             var id = getId(el, false);
21186             var data = elements[id];
21187             if(data){
21188                 delete elements[id];
21189                 if(data.handles){
21190                     var hs = data.handles;
21191                     for(var i = 0, len = hs.length; i < len; i++){
21192                         delete handles[getId(hs[i], false)];
21193                     }
21194                 }
21195             }
21196         },
21197
21198     /**
21199      * Returns the handle registered for a DOM Node by id
21200      * @param {String|HTMLElement} id The DOM node or id to look up
21201      * @return {Object} handle The custom handle data
21202      */
21203         getHandle : function(id){
21204             if(typeof id != "string"){ // must be element?
21205                 id = id.id;
21206             }
21207             return handles[id];
21208         },
21209
21210     /**
21211      * Returns the handle that is registered for the DOM node that is the target of the event
21212      * @param {Event} e The event
21213      * @return {Object} handle The custom handle data
21214      */
21215         getHandleFromEvent : function(e){
21216             var t = Roo.lib.Event.getTarget(e);
21217             return t ? handles[t.id] : null;
21218         },
21219
21220     /**
21221      * Returns a custom data object that is registered for a DOM node by id
21222      * @param {String|HTMLElement} id The DOM node or id to look up
21223      * @return {Object} data The custom data
21224      */
21225         getTarget : function(id){
21226             if(typeof id != "string"){ // must be element?
21227                 id = id.id;
21228             }
21229             return elements[id];
21230         },
21231
21232     /**
21233      * Returns a custom data object that is registered for the DOM node that is the target of the event
21234      * @param {Event} e The event
21235      * @return {Object} data The custom data
21236      */
21237         getTargetFromEvent : function(e){
21238             var t = Roo.lib.Event.getTarget(e);
21239             return t ? elements[t.id] || handles[t.id] : null;
21240         }
21241     };
21242 }();/*
21243  * Based on:
21244  * Ext JS Library 1.1.1
21245  * Copyright(c) 2006-2007, Ext JS, LLC.
21246  *
21247  * Originally Released Under LGPL - original licence link has changed is not relivant.
21248  *
21249  * Fork - LGPL
21250  * <script type="text/javascript">
21251  */
21252  
21253
21254 /**
21255  * @class Roo.dd.StatusProxy
21256  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
21257  * default drag proxy used by all Roo.dd components.
21258  * @constructor
21259  * @param {Object} config
21260  */
21261 Roo.dd.StatusProxy = function(config){
21262     Roo.apply(this, config);
21263     this.id = this.id || Roo.id();
21264     this.el = new Roo.Layer({
21265         dh: {
21266             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
21267                 {tag: "div", cls: "x-dd-drop-icon"},
21268                 {tag: "div", cls: "x-dd-drag-ghost"}
21269             ]
21270         }, 
21271         shadow: !config || config.shadow !== false
21272     });
21273     this.ghost = Roo.get(this.el.dom.childNodes[1]);
21274     this.dropStatus = this.dropNotAllowed;
21275 };
21276
21277 Roo.dd.StatusProxy.prototype = {
21278     /**
21279      * @cfg {String} dropAllowed
21280      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
21281      */
21282     dropAllowed : "x-dd-drop-ok",
21283     /**
21284      * @cfg {String} dropNotAllowed
21285      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
21286      */
21287     dropNotAllowed : "x-dd-drop-nodrop",
21288
21289     /**
21290      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
21291      * over the current target element.
21292      * @param {String} cssClass The css class for the new drop status indicator image
21293      */
21294     setStatus : function(cssClass){
21295         cssClass = cssClass || this.dropNotAllowed;
21296         if(this.dropStatus != cssClass){
21297             this.el.replaceClass(this.dropStatus, cssClass);
21298             this.dropStatus = cssClass;
21299         }
21300     },
21301
21302     /**
21303      * Resets the status indicator to the default dropNotAllowed value
21304      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
21305      */
21306     reset : function(clearGhost){
21307         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
21308         this.dropStatus = this.dropNotAllowed;
21309         if(clearGhost){
21310             this.ghost.update("");
21311         }
21312     },
21313
21314     /**
21315      * Updates the contents of the ghost element
21316      * @param {String} html The html that will replace the current innerHTML of the ghost element
21317      */
21318     update : function(html){
21319         if(typeof html == "string"){
21320             this.ghost.update(html);
21321         }else{
21322             this.ghost.update("");
21323             html.style.margin = "0";
21324             this.ghost.dom.appendChild(html);
21325         }
21326         // ensure float = none set?? cant remember why though.
21327         var el = this.ghost.dom.firstChild;
21328                 if(el){
21329                         Roo.fly(el).setStyle('float', 'none');
21330                 }
21331     },
21332     
21333     /**
21334      * Returns the underlying proxy {@link Roo.Layer}
21335      * @return {Roo.Layer} el
21336     */
21337     getEl : function(){
21338         return this.el;
21339     },
21340
21341     /**
21342      * Returns the ghost element
21343      * @return {Roo.Element} el
21344      */
21345     getGhost : function(){
21346         return this.ghost;
21347     },
21348
21349     /**
21350      * Hides the proxy
21351      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
21352      */
21353     hide : function(clear){
21354         this.el.hide();
21355         if(clear){
21356             this.reset(true);
21357         }
21358     },
21359
21360     /**
21361      * Stops the repair animation if it's currently running
21362      */
21363     stop : function(){
21364         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
21365             this.anim.stop();
21366         }
21367     },
21368
21369     /**
21370      * Displays this proxy
21371      */
21372     show : function(){
21373         this.el.show();
21374     },
21375
21376     /**
21377      * Force the Layer to sync its shadow and shim positions to the element
21378      */
21379     sync : function(){
21380         this.el.sync();
21381     },
21382
21383     /**
21384      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
21385      * invalid drop operation by the item being dragged.
21386      * @param {Array} xy The XY position of the element ([x, y])
21387      * @param {Function} callback The function to call after the repair is complete
21388      * @param {Object} scope The scope in which to execute the callback
21389      */
21390     repair : function(xy, callback, scope){
21391         this.callback = callback;
21392         this.scope = scope;
21393         if(xy && this.animRepair !== false){
21394             this.el.addClass("x-dd-drag-repair");
21395             this.el.hideUnders(true);
21396             this.anim = this.el.shift({
21397                 duration: this.repairDuration || .5,
21398                 easing: 'easeOut',
21399                 xy: xy,
21400                 stopFx: true,
21401                 callback: this.afterRepair,
21402                 scope: this
21403             });
21404         }else{
21405             this.afterRepair();
21406         }
21407     },
21408
21409     // private
21410     afterRepair : function(){
21411         this.hide(true);
21412         if(typeof this.callback == "function"){
21413             this.callback.call(this.scope || this);
21414         }
21415         this.callback = null;
21416         this.scope = null;
21417     }
21418 };/*
21419  * Based on:
21420  * Ext JS Library 1.1.1
21421  * Copyright(c) 2006-2007, Ext JS, LLC.
21422  *
21423  * Originally Released Under LGPL - original licence link has changed is not relivant.
21424  *
21425  * Fork - LGPL
21426  * <script type="text/javascript">
21427  */
21428
21429 /**
21430  * @class Roo.dd.DragSource
21431  * @extends Roo.dd.DDProxy
21432  * A simple class that provides the basic implementation needed to make any element draggable.
21433  * @constructor
21434  * @param {String/HTMLElement/Element} el The container element
21435  * @param {Object} config
21436  */
21437 Roo.dd.DragSource = function(el, config){
21438     this.el = Roo.get(el);
21439     this.dragData = {};
21440     
21441     Roo.apply(this, config);
21442     
21443     if(!this.proxy){
21444         this.proxy = new Roo.dd.StatusProxy();
21445     }
21446
21447     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
21448           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
21449     
21450     this.dragging = false;
21451 };
21452
21453 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
21454     /**
21455      * @cfg {String} dropAllowed
21456      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
21457      */
21458     dropAllowed : "x-dd-drop-ok",
21459     /**
21460      * @cfg {String} dropNotAllowed
21461      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
21462      */
21463     dropNotAllowed : "x-dd-drop-nodrop",
21464
21465     /**
21466      * Returns the data object associated with this drag source
21467      * @return {Object} data An object containing arbitrary data
21468      */
21469     getDragData : function(e){
21470         return this.dragData;
21471     },
21472
21473     // private
21474     onDragEnter : function(e, id){
21475         var target = Roo.dd.DragDropMgr.getDDById(id);
21476         this.cachedTarget = target;
21477         if(this.beforeDragEnter(target, e, id) !== false){
21478             if(target.isNotifyTarget){
21479                 var status = target.notifyEnter(this, e, this.dragData);
21480                 this.proxy.setStatus(status);
21481             }else{
21482                 this.proxy.setStatus(this.dropAllowed);
21483             }
21484             
21485             if(this.afterDragEnter){
21486                 /**
21487                  * An empty function by default, but provided so that you can perform a custom action
21488                  * when the dragged item enters the drop target by providing an implementation.
21489                  * @param {Roo.dd.DragDrop} target The drop target
21490                  * @param {Event} e The event object
21491                  * @param {String} id The id of the dragged element
21492                  * @method afterDragEnter
21493                  */
21494                 this.afterDragEnter(target, e, id);
21495             }
21496         }
21497     },
21498
21499     /**
21500      * An empty function by default, but provided so that you can perform a custom action
21501      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
21502      * @param {Roo.dd.DragDrop} target The drop target
21503      * @param {Event} e The event object
21504      * @param {String} id The id of the dragged element
21505      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21506      */
21507     beforeDragEnter : function(target, e, id){
21508         return true;
21509     },
21510
21511     // private
21512     alignElWithMouse: function() {
21513         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
21514         this.proxy.sync();
21515     },
21516
21517     // private
21518     onDragOver : function(e, id){
21519         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21520         if(this.beforeDragOver(target, e, id) !== false){
21521             if(target.isNotifyTarget){
21522                 var status = target.notifyOver(this, e, this.dragData);
21523                 this.proxy.setStatus(status);
21524             }
21525
21526             if(this.afterDragOver){
21527                 /**
21528                  * An empty function by default, but provided so that you can perform a custom action
21529                  * while the dragged item is over the drop target by providing an implementation.
21530                  * @param {Roo.dd.DragDrop} target The drop target
21531                  * @param {Event} e The event object
21532                  * @param {String} id The id of the dragged element
21533                  * @method afterDragOver
21534                  */
21535                 this.afterDragOver(target, e, id);
21536             }
21537         }
21538     },
21539
21540     /**
21541      * An empty function by default, but provided so that you can perform a custom action
21542      * while the dragged item is over the drop target and optionally cancel the onDragOver.
21543      * @param {Roo.dd.DragDrop} target The drop target
21544      * @param {Event} e The event object
21545      * @param {String} id The id of the dragged element
21546      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21547      */
21548     beforeDragOver : function(target, e, id){
21549         return true;
21550     },
21551
21552     // private
21553     onDragOut : function(e, id){
21554         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21555         if(this.beforeDragOut(target, e, id) !== false){
21556             if(target.isNotifyTarget){
21557                 target.notifyOut(this, e, this.dragData);
21558             }
21559             this.proxy.reset();
21560             if(this.afterDragOut){
21561                 /**
21562                  * An empty function by default, but provided so that you can perform a custom action
21563                  * after the dragged item is dragged out of the target without dropping.
21564                  * @param {Roo.dd.DragDrop} target The drop target
21565                  * @param {Event} e The event object
21566                  * @param {String} id The id of the dragged element
21567                  * @method afterDragOut
21568                  */
21569                 this.afterDragOut(target, e, id);
21570             }
21571         }
21572         this.cachedTarget = null;
21573     },
21574
21575     /**
21576      * An empty function by default, but provided so that you can perform a custom action before the dragged
21577      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
21578      * @param {Roo.dd.DragDrop} target The drop target
21579      * @param {Event} e The event object
21580      * @param {String} id The id of the dragged element
21581      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21582      */
21583     beforeDragOut : function(target, e, id){
21584         return true;
21585     },
21586     
21587     // private
21588     onDragDrop : function(e, id){
21589         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21590         if(this.beforeDragDrop(target, e, id) !== false){
21591             if(target.isNotifyTarget){
21592                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
21593                     this.onValidDrop(target, e, id);
21594                 }else{
21595                     this.onInvalidDrop(target, e, id);
21596                 }
21597             }else{
21598                 this.onValidDrop(target, e, id);
21599             }
21600             
21601             if(this.afterDragDrop){
21602                 /**
21603                  * An empty function by default, but provided so that you can perform a custom action
21604                  * after a valid drag drop has occurred by providing an implementation.
21605                  * @param {Roo.dd.DragDrop} target The drop target
21606                  * @param {Event} e The event object
21607                  * @param {String} id The id of the dropped element
21608                  * @method afterDragDrop
21609                  */
21610                 this.afterDragDrop(target, e, id);
21611             }
21612         }
21613         delete this.cachedTarget;
21614     },
21615
21616     /**
21617      * An empty function by default, but provided so that you can perform a custom action before the dragged
21618      * item is dropped onto the target and optionally cancel the onDragDrop.
21619      * @param {Roo.dd.DragDrop} target The drop target
21620      * @param {Event} e The event object
21621      * @param {String} id The id of the dragged element
21622      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
21623      */
21624     beforeDragDrop : function(target, e, id){
21625         return true;
21626     },
21627
21628     // private
21629     onValidDrop : function(target, e, id){
21630         this.hideProxy();
21631         if(this.afterValidDrop){
21632             /**
21633              * An empty function by default, but provided so that you can perform a custom action
21634              * after a valid drop has occurred by providing an implementation.
21635              * @param {Object} target The target DD 
21636              * @param {Event} e The event object
21637              * @param {String} id The id of the dropped element
21638              * @method afterInvalidDrop
21639              */
21640             this.afterValidDrop(target, e, id);
21641         }
21642     },
21643
21644     // private
21645     getRepairXY : function(e, data){
21646         return this.el.getXY();  
21647     },
21648
21649     // private
21650     onInvalidDrop : function(target, e, id){
21651         this.beforeInvalidDrop(target, e, id);
21652         if(this.cachedTarget){
21653             if(this.cachedTarget.isNotifyTarget){
21654                 this.cachedTarget.notifyOut(this, e, this.dragData);
21655             }
21656             this.cacheTarget = null;
21657         }
21658         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
21659
21660         if(this.afterInvalidDrop){
21661             /**
21662              * An empty function by default, but provided so that you can perform a custom action
21663              * after an invalid drop has occurred by providing an implementation.
21664              * @param {Event} e The event object
21665              * @param {String} id The id of the dropped element
21666              * @method afterInvalidDrop
21667              */
21668             this.afterInvalidDrop(e, id);
21669         }
21670     },
21671
21672     // private
21673     afterRepair : function(){
21674         if(Roo.enableFx){
21675             this.el.highlight(this.hlColor || "c3daf9");
21676         }
21677         this.dragging = false;
21678     },
21679
21680     /**
21681      * An empty function by default, but provided so that you can perform a custom action after an invalid
21682      * drop has occurred.
21683      * @param {Roo.dd.DragDrop} target The drop target
21684      * @param {Event} e The event object
21685      * @param {String} id The id of the dragged element
21686      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
21687      */
21688     beforeInvalidDrop : function(target, e, id){
21689         return true;
21690     },
21691
21692     // private
21693     handleMouseDown : function(e){
21694         if(this.dragging) {
21695             return;
21696         }
21697         var data = this.getDragData(e);
21698         if(data && this.onBeforeDrag(data, e) !== false){
21699             this.dragData = data;
21700             this.proxy.stop();
21701             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
21702         } 
21703     },
21704
21705     /**
21706      * An empty function by default, but provided so that you can perform a custom action before the initial
21707      * drag event begins and optionally cancel it.
21708      * @param {Object} data An object containing arbitrary data to be shared with drop targets
21709      * @param {Event} e The event object
21710      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21711      */
21712     onBeforeDrag : function(data, e){
21713         return true;
21714     },
21715
21716     /**
21717      * An empty function by default, but provided so that you can perform a custom action once the initial
21718      * drag event has begun.  The drag cannot be canceled from this function.
21719      * @param {Number} x The x position of the click on the dragged object
21720      * @param {Number} y The y position of the click on the dragged object
21721      */
21722     onStartDrag : Roo.emptyFn,
21723
21724     // private - YUI override
21725     startDrag : function(x, y){
21726         this.proxy.reset();
21727         this.dragging = true;
21728         this.proxy.update("");
21729         this.onInitDrag(x, y);
21730         this.proxy.show();
21731     },
21732
21733     // private
21734     onInitDrag : function(x, y){
21735         var clone = this.el.dom.cloneNode(true);
21736         clone.id = Roo.id(); // prevent duplicate ids
21737         this.proxy.update(clone);
21738         this.onStartDrag(x, y);
21739         return true;
21740     },
21741
21742     /**
21743      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
21744      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
21745      */
21746     getProxy : function(){
21747         return this.proxy;  
21748     },
21749
21750     /**
21751      * Hides the drag source's {@link Roo.dd.StatusProxy}
21752      */
21753     hideProxy : function(){
21754         this.proxy.hide();  
21755         this.proxy.reset(true);
21756         this.dragging = false;
21757     },
21758
21759     // private
21760     triggerCacheRefresh : function(){
21761         Roo.dd.DDM.refreshCache(this.groups);
21762     },
21763
21764     // private - override to prevent hiding
21765     b4EndDrag: function(e) {
21766     },
21767
21768     // private - override to prevent moving
21769     endDrag : function(e){
21770         this.onEndDrag(this.dragData, e);
21771     },
21772
21773     // private
21774     onEndDrag : function(data, e){
21775     },
21776     
21777     // private - pin to cursor
21778     autoOffset : function(x, y) {
21779         this.setDelta(-12, -20);
21780     }    
21781 });/*
21782  * Based on:
21783  * Ext JS Library 1.1.1
21784  * Copyright(c) 2006-2007, Ext JS, LLC.
21785  *
21786  * Originally Released Under LGPL - original licence link has changed is not relivant.
21787  *
21788  * Fork - LGPL
21789  * <script type="text/javascript">
21790  */
21791
21792
21793 /**
21794  * @class Roo.dd.DropTarget
21795  * @extends Roo.dd.DDTarget
21796  * A simple class that provides the basic implementation needed to make any element a drop target that can have
21797  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
21798  * @constructor
21799  * @param {String/HTMLElement/Element} el The container element
21800  * @param {Object} config
21801  */
21802 Roo.dd.DropTarget = function(el, config){
21803     this.el = Roo.get(el);
21804     
21805     var listeners = false; ;
21806     if (config && config.listeners) {
21807         listeners= config.listeners;
21808         delete config.listeners;
21809     }
21810     Roo.apply(this, config);
21811     
21812     if(this.containerScroll){
21813         Roo.dd.ScrollManager.register(this.el);
21814     }
21815     this.addEvents( {
21816          /**
21817          * @scope Roo.dd.DropTarget
21818          */
21819          
21820          /**
21821          * @event enter
21822          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
21823          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
21824          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
21825          * 
21826          * IMPORTANT : it should set this.overClass and this.dropAllowed
21827          * 
21828          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21829          * @param {Event} e The event
21830          * @param {Object} data An object containing arbitrary data supplied by the drag source
21831          */
21832         "enter" : true,
21833         
21834          /**
21835          * @event over
21836          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
21837          * This method will be called on every mouse movement while the drag source is over the drop target.
21838          * This default implementation simply returns the dropAllowed config value.
21839          * 
21840          * IMPORTANT : it should set this.dropAllowed
21841          * 
21842          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21843          * @param {Event} e The event
21844          * @param {Object} data An object containing arbitrary data supplied by the drag source
21845          
21846          */
21847         "over" : true,
21848         /**
21849          * @event out
21850          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
21851          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
21852          * overClass (if any) from the drop element.
21853          * 
21854          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21855          * @param {Event} e The event
21856          * @param {Object} data An object containing arbitrary data supplied by the drag source
21857          */
21858          "out" : true,
21859          
21860         /**
21861          * @event drop
21862          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
21863          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
21864          * implementation that does something to process the drop event and returns true so that the drag source's
21865          * repair action does not run.
21866          * 
21867          * IMPORTANT : it should set this.success
21868          * 
21869          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21870          * @param {Event} e The event
21871          * @param {Object} data An object containing arbitrary data supplied by the drag source
21872         */
21873          "drop" : true
21874     });
21875             
21876      
21877     Roo.dd.DropTarget.superclass.constructor.call(  this, 
21878         this.el.dom, 
21879         this.ddGroup || this.group,
21880         {
21881             isTarget: true,
21882             listeners : listeners || {} 
21883            
21884         
21885         }
21886     );
21887
21888 };
21889
21890 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
21891     /**
21892      * @cfg {String} overClass
21893      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
21894      */
21895      /**
21896      * @cfg {String} ddGroup
21897      * The drag drop group to handle drop events for
21898      */
21899      
21900     /**
21901      * @cfg {String} dropAllowed
21902      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
21903      */
21904     dropAllowed : "x-dd-drop-ok",
21905     /**
21906      * @cfg {String} dropNotAllowed
21907      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
21908      */
21909     dropNotAllowed : "x-dd-drop-nodrop",
21910     /**
21911      * @cfg {boolean} success
21912      * set this after drop listener.. 
21913      */
21914     success : false,
21915     /**
21916      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
21917      * if the drop point is valid for over/enter..
21918      */
21919     valid : false,
21920     // private
21921     isTarget : true,
21922
21923     // private
21924     isNotifyTarget : true,
21925     
21926     /**
21927      * @hide
21928      */
21929     notifyEnter : function(dd, e, data)
21930     {
21931         this.valid = true;
21932         this.fireEvent('enter', dd, e, data);
21933         if(this.overClass){
21934             this.el.addClass(this.overClass);
21935         }
21936         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
21937             this.valid ? this.dropAllowed : this.dropNotAllowed
21938         );
21939     },
21940
21941     /**
21942      * @hide
21943      */
21944     notifyOver : function(dd, e, data)
21945     {
21946         this.valid = true;
21947         this.fireEvent('over', dd, e, data);
21948         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
21949             this.valid ? this.dropAllowed : this.dropNotAllowed
21950         );
21951     },
21952
21953     /**
21954      * @hide
21955      */
21956     notifyOut : function(dd, e, data)
21957     {
21958         this.fireEvent('out', dd, e, data);
21959         if(this.overClass){
21960             this.el.removeClass(this.overClass);
21961         }
21962     },
21963
21964     /**
21965      * @hide
21966      */
21967     notifyDrop : function(dd, e, data)
21968     {
21969         this.success = false;
21970         this.fireEvent('drop', dd, e, data);
21971         return this.success;
21972     }
21973 });/*
21974  * Based on:
21975  * Ext JS Library 1.1.1
21976  * Copyright(c) 2006-2007, Ext JS, LLC.
21977  *
21978  * Originally Released Under LGPL - original licence link has changed is not relivant.
21979  *
21980  * Fork - LGPL
21981  * <script type="text/javascript">
21982  */
21983
21984
21985 /**
21986  * @class Roo.dd.DragZone
21987  * @extends Roo.dd.DragSource
21988  * This class provides a container DD instance that proxies for multiple child node sources.<br />
21989  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
21990  * @constructor
21991  * @param {String/HTMLElement/Element} el The container element
21992  * @param {Object} config
21993  */
21994 Roo.dd.DragZone = function(el, config){
21995     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
21996     if(this.containerScroll){
21997         Roo.dd.ScrollManager.register(this.el);
21998     }
21999 };
22000
22001 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22002     /**
22003      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22004      * for auto scrolling during drag operations.
22005      */
22006     /**
22007      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22008      * method after a failed drop (defaults to "c3daf9" - light blue)
22009      */
22010
22011     /**
22012      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22013      * for a valid target to drag based on the mouse down. Override this method
22014      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22015      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22016      * @param {EventObject} e The mouse down event
22017      * @return {Object} The dragData
22018      */
22019     getDragData : function(e){
22020         return Roo.dd.Registry.getHandleFromEvent(e);
22021     },
22022     
22023     /**
22024      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22025      * this.dragData.ddel
22026      * @param {Number} x The x position of the click on the dragged object
22027      * @param {Number} y The y position of the click on the dragged object
22028      * @return {Boolean} true to continue the drag, false to cancel
22029      */
22030     onInitDrag : function(x, y){
22031         this.proxy.update(this.dragData.ddel.cloneNode(true));
22032         this.onStartDrag(x, y);
22033         return true;
22034     },
22035     
22036     /**
22037      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22038      */
22039     afterRepair : function(){
22040         if(Roo.enableFx){
22041             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22042         }
22043         this.dragging = false;
22044     },
22045
22046     /**
22047      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22048      * the XY of this.dragData.ddel
22049      * @param {EventObject} e The mouse up event
22050      * @return {Array} The xy location (e.g. [100, 200])
22051      */
22052     getRepairXY : function(e){
22053         return Roo.Element.fly(this.dragData.ddel).getXY();  
22054     }
22055 });/*
22056  * Based on:
22057  * Ext JS Library 1.1.1
22058  * Copyright(c) 2006-2007, Ext JS, LLC.
22059  *
22060  * Originally Released Under LGPL - original licence link has changed is not relivant.
22061  *
22062  * Fork - LGPL
22063  * <script type="text/javascript">
22064  */
22065 /**
22066  * @class Roo.dd.DropZone
22067  * @extends Roo.dd.DropTarget
22068  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22069  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22070  * @constructor
22071  * @param {String/HTMLElement/Element} el The container element
22072  * @param {Object} config
22073  */
22074 Roo.dd.DropZone = function(el, config){
22075     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22076 };
22077
22078 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22079     /**
22080      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22081      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22082      * provide your own custom lookup.
22083      * @param {Event} e The event
22084      * @return {Object} data The custom data
22085      */
22086     getTargetFromEvent : function(e){
22087         return Roo.dd.Registry.getTargetFromEvent(e);
22088     },
22089
22090     /**
22091      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22092      * that it has registered.  This method has no default implementation and should be overridden to provide
22093      * node-specific processing if necessary.
22094      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22095      * {@link #getTargetFromEvent} for this node)
22096      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22097      * @param {Event} e The event
22098      * @param {Object} data An object containing arbitrary data supplied by the drag source
22099      */
22100     onNodeEnter : function(n, dd, e, data){
22101         
22102     },
22103
22104     /**
22105      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22106      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22107      * overridden to provide the proper feedback.
22108      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22109      * {@link #getTargetFromEvent} for this node)
22110      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22111      * @param {Event} e The event
22112      * @param {Object} data An object containing arbitrary data supplied by the drag source
22113      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22114      * underlying {@link Roo.dd.StatusProxy} can be updated
22115      */
22116     onNodeOver : function(n, dd, e, data){
22117         return this.dropAllowed;
22118     },
22119
22120     /**
22121      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22122      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22123      * node-specific processing if necessary.
22124      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22125      * {@link #getTargetFromEvent} for this node)
22126      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22127      * @param {Event} e The event
22128      * @param {Object} data An object containing arbitrary data supplied by the drag source
22129      */
22130     onNodeOut : function(n, dd, e, data){
22131         
22132     },
22133
22134     /**
22135      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22136      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22137      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22138      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22139      * {@link #getTargetFromEvent} for this node)
22140      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22141      * @param {Event} e The event
22142      * @param {Object} data An object containing arbitrary data supplied by the drag source
22143      * @return {Boolean} True if the drop was valid, else false
22144      */
22145     onNodeDrop : function(n, dd, e, data){
22146         return false;
22147     },
22148
22149     /**
22150      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22151      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22152      * it should be overridden to provide the proper feedback if necessary.
22153      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22154      * @param {Event} e The event
22155      * @param {Object} data An object containing arbitrary data supplied by the drag source
22156      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22157      * underlying {@link Roo.dd.StatusProxy} can be updated
22158      */
22159     onContainerOver : function(dd, e, data){
22160         return this.dropNotAllowed;
22161     },
22162
22163     /**
22164      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
22165      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
22166      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
22167      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
22168      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22169      * @param {Event} e The event
22170      * @param {Object} data An object containing arbitrary data supplied by the drag source
22171      * @return {Boolean} True if the drop was valid, else false
22172      */
22173     onContainerDrop : function(dd, e, data){
22174         return false;
22175     },
22176
22177     /**
22178      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
22179      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
22180      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
22181      * you should override this method and provide a custom implementation.
22182      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22183      * @param {Event} e The event
22184      * @param {Object} data An object containing arbitrary data supplied by the drag source
22185      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22186      * underlying {@link Roo.dd.StatusProxy} can be updated
22187      */
22188     notifyEnter : function(dd, e, data){
22189         return this.dropNotAllowed;
22190     },
22191
22192     /**
22193      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
22194      * This method will be called on every mouse movement while the drag source is over the drop zone.
22195      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
22196      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
22197      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
22198      * registered node, it will call {@link #onContainerOver}.
22199      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22200      * @param {Event} e The event
22201      * @param {Object} data An object containing arbitrary data supplied by the drag source
22202      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22203      * underlying {@link Roo.dd.StatusProxy} can be updated
22204      */
22205     notifyOver : function(dd, e, data){
22206         var n = this.getTargetFromEvent(e);
22207         if(!n){ // not over valid drop target
22208             if(this.lastOverNode){
22209                 this.onNodeOut(this.lastOverNode, dd, e, data);
22210                 this.lastOverNode = null;
22211             }
22212             return this.onContainerOver(dd, e, data);
22213         }
22214         if(this.lastOverNode != n){
22215             if(this.lastOverNode){
22216                 this.onNodeOut(this.lastOverNode, dd, e, data);
22217             }
22218             this.onNodeEnter(n, dd, e, data);
22219             this.lastOverNode = n;
22220         }
22221         return this.onNodeOver(n, dd, e, data);
22222     },
22223
22224     /**
22225      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
22226      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
22227      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
22228      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22229      * @param {Event} e The event
22230      * @param {Object} data An object containing arbitrary data supplied by the drag zone
22231      */
22232     notifyOut : function(dd, e, data){
22233         if(this.lastOverNode){
22234             this.onNodeOut(this.lastOverNode, dd, e, data);
22235             this.lastOverNode = null;
22236         }
22237     },
22238
22239     /**
22240      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
22241      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
22242      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
22243      * otherwise it will call {@link #onContainerDrop}.
22244      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22245      * @param {Event} e The event
22246      * @param {Object} data An object containing arbitrary data supplied by the drag source
22247      * @return {Boolean} True if the drop was valid, else false
22248      */
22249     notifyDrop : function(dd, e, data){
22250         if(this.lastOverNode){
22251             this.onNodeOut(this.lastOverNode, dd, e, data);
22252             this.lastOverNode = null;
22253         }
22254         var n = this.getTargetFromEvent(e);
22255         return n ?
22256             this.onNodeDrop(n, dd, e, data) :
22257             this.onContainerDrop(dd, e, data);
22258     },
22259
22260     // private
22261     triggerCacheRefresh : function(){
22262         Roo.dd.DDM.refreshCache(this.groups);
22263     }  
22264 });