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          * Looks at  the scrollable parent element
7168          */
7169         findScrollableParent : function()
7170         {
7171             var overflowRegex = /(auto|scroll)/;
7172             
7173             if(this.getStyle('position') === 'fixed'){
7174                 return Roo.isIOS ? Roo.get(document.body) : Roo.get(document.documentElement);
7175             }
7176             
7177             var excludeStaticParent = this.getStyle('position') === "absolute";
7178             
7179             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7180                 
7181                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7182                     continue;
7183                 }
7184                 
7185                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7186                     return parent;
7187                 }
7188                 
7189                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7190                     return Roo.isIOS ? Roo.get(document.body) : Roo.get(document.documentElement);
7191                 }
7192             }
7193             
7194             return Roo.isIOS ? Roo.get(document.body) : Roo.get(document.documentElement);
7195         },
7196
7197         /**
7198          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7199          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7200          * @param {String} selector The simple selector to test
7201          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7202                 search as a number or element (defaults to 10 || document.body)
7203          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7204          */
7205         up : function(simpleSelector, maxDepth){
7206             return this.findParentNode(simpleSelector, maxDepth, true);
7207         },
7208
7209
7210
7211         /**
7212          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7213          * @param {String} selector The simple selector to test
7214          * @return {Boolean} True if this element matches the selector, else false
7215          */
7216         is : function(simpleSelector){
7217             return Roo.DomQuery.is(this.dom, simpleSelector);
7218         },
7219
7220         /**
7221          * Perform animation on this element.
7222          * @param {Object} args The YUI animation control args
7223          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7224          * @param {Function} onComplete (optional) Function to call when animation completes
7225          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7226          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7227          * @return {Roo.Element} this
7228          */
7229         animate : function(args, duration, onComplete, easing, animType){
7230             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7231             return this;
7232         },
7233
7234         /*
7235          * @private Internal animation call
7236          */
7237         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7238             animType = animType || 'run';
7239             opt = opt || {};
7240             var anim = Roo.lib.Anim[animType](
7241                 this.dom, args,
7242                 (opt.duration || defaultDur) || .35,
7243                 (opt.easing || defaultEase) || 'easeOut',
7244                 function(){
7245                     Roo.callback(cb, this);
7246                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7247                 },
7248                 this
7249             );
7250             opt.anim = anim;
7251             return anim;
7252         },
7253
7254         // private legacy anim prep
7255         preanim : function(a, i){
7256             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7257         },
7258
7259         /**
7260          * Removes worthless text nodes
7261          * @param {Boolean} forceReclean (optional) By default the element
7262          * keeps track if it has been cleaned already so
7263          * you can call this over and over. However, if you update the element and
7264          * need to force a reclean, you can pass true.
7265          */
7266         clean : function(forceReclean){
7267             if(this.isCleaned && forceReclean !== true){
7268                 return this;
7269             }
7270             var ns = /\S/;
7271             var d = this.dom, n = d.firstChild, ni = -1;
7272             while(n){
7273                 var nx = n.nextSibling;
7274                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7275                     d.removeChild(n);
7276                 }else{
7277                     n.nodeIndex = ++ni;
7278                 }
7279                 n = nx;
7280             }
7281             this.isCleaned = true;
7282             return this;
7283         },
7284
7285         // private
7286         calcOffsetsTo : function(el){
7287             el = Roo.get(el);
7288             var d = el.dom;
7289             var restorePos = false;
7290             if(el.getStyle('position') == 'static'){
7291                 el.position('relative');
7292                 restorePos = true;
7293             }
7294             var x = 0, y =0;
7295             var op = this.dom;
7296             while(op && op != d && op.tagName != 'HTML'){
7297                 x+= op.offsetLeft;
7298                 y+= op.offsetTop;
7299                 op = op.offsetParent;
7300             }
7301             if(restorePos){
7302                 el.position('static');
7303             }
7304             return [x, y];
7305         },
7306
7307         /**
7308          * Scrolls this element into view within the passed container.
7309          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7310          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7311          * @return {Roo.Element} this
7312          */
7313         scrollIntoView : function(container, hscroll){
7314             var c = Roo.getDom(container) || document.body;
7315             var el = this.dom;
7316
7317             var o = this.calcOffsetsTo(c),
7318                 l = o[0],
7319                 t = o[1],
7320                 b = t+el.offsetHeight,
7321                 r = l+el.offsetWidth;
7322
7323             var ch = c.clientHeight;
7324             var ct = parseInt(c.scrollTop, 10);
7325             var cl = parseInt(c.scrollLeft, 10);
7326             var cb = ct + ch;
7327             var cr = cl + c.clientWidth;
7328
7329             if(t < ct){
7330                 c.scrollTop = t;
7331             }else if(b > cb){
7332                 c.scrollTop = b-ch;
7333             }
7334
7335             if(hscroll !== false){
7336                 if(l < cl){
7337                     c.scrollLeft = l;
7338                 }else if(r > cr){
7339                     c.scrollLeft = r-c.clientWidth;
7340                 }
7341             }
7342             return this;
7343         },
7344
7345         // private
7346         scrollChildIntoView : function(child, hscroll){
7347             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7348         },
7349
7350         /**
7351          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7352          * the new height may not be available immediately.
7353          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7354          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7355          * @param {Function} onComplete (optional) Function to call when animation completes
7356          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7357          * @return {Roo.Element} this
7358          */
7359         autoHeight : function(animate, duration, onComplete, easing){
7360             var oldHeight = this.getHeight();
7361             this.clip();
7362             this.setHeight(1); // force clipping
7363             setTimeout(function(){
7364                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7365                 if(!animate){
7366                     this.setHeight(height);
7367                     this.unclip();
7368                     if(typeof onComplete == "function"){
7369                         onComplete();
7370                     }
7371                 }else{
7372                     this.setHeight(oldHeight); // restore original height
7373                     this.setHeight(height, animate, duration, function(){
7374                         this.unclip();
7375                         if(typeof onComplete == "function") { onComplete(); }
7376                     }.createDelegate(this), easing);
7377                 }
7378             }.createDelegate(this), 0);
7379             return this;
7380         },
7381
7382         /**
7383          * Returns true if this element is an ancestor of the passed element
7384          * @param {HTMLElement/String} el The element to check
7385          * @return {Boolean} True if this element is an ancestor of el, else false
7386          */
7387         contains : function(el){
7388             if(!el){return false;}
7389             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7390         },
7391
7392         /**
7393          * Checks whether the element is currently visible using both visibility and display properties.
7394          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7395          * @return {Boolean} True if the element is currently visible, else false
7396          */
7397         isVisible : function(deep) {
7398             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7399             if(deep !== true || !vis){
7400                 return vis;
7401             }
7402             var p = this.dom.parentNode;
7403             while(p && p.tagName.toLowerCase() != "body"){
7404                 if(!Roo.fly(p, '_isVisible').isVisible()){
7405                     return false;
7406                 }
7407                 p = p.parentNode;
7408             }
7409             return true;
7410         },
7411
7412         /**
7413          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7414          * @param {String} selector The CSS selector
7415          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7416          * @return {CompositeElement/CompositeElementLite} The composite element
7417          */
7418         select : function(selector, unique){
7419             return El.select(selector, unique, this.dom);
7420         },
7421
7422         /**
7423          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7424          * @param {String} selector The CSS selector
7425          * @return {Array} An array of the matched nodes
7426          */
7427         query : function(selector, unique){
7428             return Roo.DomQuery.select(selector, this.dom);
7429         },
7430
7431         /**
7432          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7433          * @param {String} selector The CSS selector
7434          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7435          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7436          */
7437         child : function(selector, returnDom){
7438             var n = Roo.DomQuery.selectNode(selector, this.dom);
7439             return returnDom ? n : Roo.get(n);
7440         },
7441
7442         /**
7443          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7444          * @param {String} selector The CSS selector
7445          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7446          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7447          */
7448         down : function(selector, returnDom){
7449             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7450             return returnDom ? n : Roo.get(n);
7451         },
7452
7453         /**
7454          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7455          * @param {String} group The group the DD object is member of
7456          * @param {Object} config The DD config object
7457          * @param {Object} overrides An object containing methods to override/implement on the DD object
7458          * @return {Roo.dd.DD} The DD object
7459          */
7460         initDD : function(group, config, overrides){
7461             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7462             return Roo.apply(dd, overrides);
7463         },
7464
7465         /**
7466          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7467          * @param {String} group The group the DDProxy object is member of
7468          * @param {Object} config The DDProxy config object
7469          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7470          * @return {Roo.dd.DDProxy} The DDProxy object
7471          */
7472         initDDProxy : function(group, config, overrides){
7473             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7474             return Roo.apply(dd, overrides);
7475         },
7476
7477         /**
7478          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7479          * @param {String} group The group the DDTarget object is member of
7480          * @param {Object} config The DDTarget config object
7481          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7482          * @return {Roo.dd.DDTarget} The DDTarget object
7483          */
7484         initDDTarget : function(group, config, overrides){
7485             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7486             return Roo.apply(dd, overrides);
7487         },
7488
7489         /**
7490          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7491          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7492          * @param {Boolean} visible Whether the element is visible
7493          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7494          * @return {Roo.Element} this
7495          */
7496          setVisible : function(visible, animate){
7497             if(!animate || !A){
7498                 if(this.visibilityMode == El.DISPLAY){
7499                     this.setDisplayed(visible);
7500                 }else{
7501                     this.fixDisplay();
7502                     this.dom.style.visibility = visible ? "visible" : "hidden";
7503                 }
7504             }else{
7505                 // closure for composites
7506                 var dom = this.dom;
7507                 var visMode = this.visibilityMode;
7508                 if(visible){
7509                     this.setOpacity(.01);
7510                     this.setVisible(true);
7511                 }
7512                 this.anim({opacity: { to: (visible?1:0) }},
7513                       this.preanim(arguments, 1),
7514                       null, .35, 'easeIn', function(){
7515                          if(!visible){
7516                              if(visMode == El.DISPLAY){
7517                                  dom.style.display = "none";
7518                              }else{
7519                                  dom.style.visibility = "hidden";
7520                              }
7521                              Roo.get(dom).setOpacity(1);
7522                          }
7523                      });
7524             }
7525             return this;
7526         },
7527
7528         /**
7529          * Returns true if display is not "none"
7530          * @return {Boolean}
7531          */
7532         isDisplayed : function() {
7533             return this.getStyle("display") != "none";
7534         },
7535
7536         /**
7537          * Toggles the element's visibility or display, depending on visibility mode.
7538          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7539          * @return {Roo.Element} this
7540          */
7541         toggle : function(animate){
7542             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7543             return this;
7544         },
7545
7546         /**
7547          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7548          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7549          * @return {Roo.Element} this
7550          */
7551         setDisplayed : function(value) {
7552             if(typeof value == "boolean"){
7553                value = value ? this.originalDisplay : "none";
7554             }
7555             this.setStyle("display", value);
7556             return this;
7557         },
7558
7559         /**
7560          * Tries to focus the element. Any exceptions are caught and ignored.
7561          * @return {Roo.Element} this
7562          */
7563         focus : function() {
7564             try{
7565                 this.dom.focus();
7566             }catch(e){}
7567             return this;
7568         },
7569
7570         /**
7571          * Tries to blur the element. Any exceptions are caught and ignored.
7572          * @return {Roo.Element} this
7573          */
7574         blur : function() {
7575             try{
7576                 this.dom.blur();
7577             }catch(e){}
7578             return this;
7579         },
7580
7581         /**
7582          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7583          * @param {String/Array} className The CSS class to add, or an array of classes
7584          * @return {Roo.Element} this
7585          */
7586         addClass : function(className){
7587             if(className instanceof Array){
7588                 for(var i = 0, len = className.length; i < len; i++) {
7589                     this.addClass(className[i]);
7590                 }
7591             }else{
7592                 if(className && !this.hasClass(className)){
7593                     this.dom.className = this.dom.className + " " + className;
7594                 }
7595             }
7596             return this;
7597         },
7598
7599         /**
7600          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7601          * @param {String/Array} className The CSS class to add, or an array of classes
7602          * @return {Roo.Element} this
7603          */
7604         radioClass : function(className){
7605             var siblings = this.dom.parentNode.childNodes;
7606             for(var i = 0; i < siblings.length; i++) {
7607                 var s = siblings[i];
7608                 if(s.nodeType == 1){
7609                     Roo.get(s).removeClass(className);
7610                 }
7611             }
7612             this.addClass(className);
7613             return this;
7614         },
7615
7616         /**
7617          * Removes one or more CSS classes from the element.
7618          * @param {String/Array} className The CSS class to remove, or an array of classes
7619          * @return {Roo.Element} this
7620          */
7621         removeClass : function(className){
7622             if(!className || !this.dom.className){
7623                 return this;
7624             }
7625             if(className instanceof Array){
7626                 for(var i = 0, len = className.length; i < len; i++) {
7627                     this.removeClass(className[i]);
7628                 }
7629             }else{
7630                 if(this.hasClass(className)){
7631                     var re = this.classReCache[className];
7632                     if (!re) {
7633                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7634                        this.classReCache[className] = re;
7635                     }
7636                     this.dom.className =
7637                         this.dom.className.replace(re, " ");
7638                 }
7639             }
7640             return this;
7641         },
7642
7643         // private
7644         classReCache: {},
7645
7646         /**
7647          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7648          * @param {String} className The CSS class to toggle
7649          * @return {Roo.Element} this
7650          */
7651         toggleClass : function(className){
7652             if(this.hasClass(className)){
7653                 this.removeClass(className);
7654             }else{
7655                 this.addClass(className);
7656             }
7657             return this;
7658         },
7659
7660         /**
7661          * Checks if the specified CSS class exists on this element's DOM node.
7662          * @param {String} className The CSS class to check for
7663          * @return {Boolean} True if the class exists, else false
7664          */
7665         hasClass : function(className){
7666             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7667         },
7668
7669         /**
7670          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7671          * @param {String} oldClassName The CSS class to replace
7672          * @param {String} newClassName The replacement CSS class
7673          * @return {Roo.Element} this
7674          */
7675         replaceClass : function(oldClassName, newClassName){
7676             this.removeClass(oldClassName);
7677             this.addClass(newClassName);
7678             return this;
7679         },
7680
7681         /**
7682          * Returns an object with properties matching the styles requested.
7683          * For example, el.getStyles('color', 'font-size', 'width') might return
7684          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7685          * @param {String} style1 A style name
7686          * @param {String} style2 A style name
7687          * @param {String} etc.
7688          * @return {Object} The style object
7689          */
7690         getStyles : function(){
7691             var a = arguments, len = a.length, r = {};
7692             for(var i = 0; i < len; i++){
7693                 r[a[i]] = this.getStyle(a[i]);
7694             }
7695             return r;
7696         },
7697
7698         /**
7699          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7700          * @param {String} property The style property whose value is returned.
7701          * @return {String} The current value of the style property for this element.
7702          */
7703         getStyle : function(){
7704             return view && view.getComputedStyle ?
7705                 function(prop){
7706                     var el = this.dom, v, cs, camel;
7707                     if(prop == 'float'){
7708                         prop = "cssFloat";
7709                     }
7710                     if(el.style && (v = el.style[prop])){
7711                         return v;
7712                     }
7713                     if(cs = view.getComputedStyle(el, "")){
7714                         if(!(camel = propCache[prop])){
7715                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7716                         }
7717                         return cs[camel];
7718                     }
7719                     return null;
7720                 } :
7721                 function(prop){
7722                     var el = this.dom, v, cs, camel;
7723                     if(prop == 'opacity'){
7724                         if(typeof el.style.filter == 'string'){
7725                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7726                             if(m){
7727                                 var fv = parseFloat(m[1]);
7728                                 if(!isNaN(fv)){
7729                                     return fv ? fv / 100 : 0;
7730                                 }
7731                             }
7732                         }
7733                         return 1;
7734                     }else if(prop == 'float'){
7735                         prop = "styleFloat";
7736                     }
7737                     if(!(camel = propCache[prop])){
7738                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7739                     }
7740                     if(v = el.style[camel]){
7741                         return v;
7742                     }
7743                     if(cs = el.currentStyle){
7744                         return cs[camel];
7745                     }
7746                     return null;
7747                 };
7748         }(),
7749
7750         /**
7751          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7752          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7753          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7754          * @return {Roo.Element} this
7755          */
7756         setStyle : function(prop, value){
7757             if(typeof prop == "string"){
7758                 
7759                 if (prop == 'float') {
7760                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7761                     return this;
7762                 }
7763                 
7764                 var camel;
7765                 if(!(camel = propCache[prop])){
7766                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7767                 }
7768                 
7769                 if(camel == 'opacity') {
7770                     this.setOpacity(value);
7771                 }else{
7772                     this.dom.style[camel] = value;
7773                 }
7774             }else{
7775                 for(var style in prop){
7776                     if(typeof prop[style] != "function"){
7777                        this.setStyle(style, prop[style]);
7778                     }
7779                 }
7780             }
7781             return this;
7782         },
7783
7784         /**
7785          * More flexible version of {@link #setStyle} for setting style properties.
7786          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7787          * a function which returns such a specification.
7788          * @return {Roo.Element} this
7789          */
7790         applyStyles : function(style){
7791             Roo.DomHelper.applyStyles(this.dom, style);
7792             return this;
7793         },
7794
7795         /**
7796           * 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).
7797           * @return {Number} The X position of the element
7798           */
7799         getX : function(){
7800             return D.getX(this.dom);
7801         },
7802
7803         /**
7804           * 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).
7805           * @return {Number} The Y position of the element
7806           */
7807         getY : function(){
7808             return D.getY(this.dom);
7809         },
7810
7811         /**
7812           * 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).
7813           * @return {Array} The XY position of the element
7814           */
7815         getXY : function(){
7816             return D.getXY(this.dom);
7817         },
7818
7819         /**
7820          * 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).
7821          * @param {Number} The X position of the element
7822          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7823          * @return {Roo.Element} this
7824          */
7825         setX : function(x, animate){
7826             if(!animate || !A){
7827                 D.setX(this.dom, x);
7828             }else{
7829                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7830             }
7831             return this;
7832         },
7833
7834         /**
7835          * 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).
7836          * @param {Number} The Y position of the element
7837          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7838          * @return {Roo.Element} this
7839          */
7840         setY : function(y, animate){
7841             if(!animate || !A){
7842                 D.setY(this.dom, y);
7843             }else{
7844                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7845             }
7846             return this;
7847         },
7848
7849         /**
7850          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7851          * @param {String} left The left CSS property value
7852          * @return {Roo.Element} this
7853          */
7854         setLeft : function(left){
7855             this.setStyle("left", this.addUnits(left));
7856             return this;
7857         },
7858
7859         /**
7860          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7861          * @param {String} top The top CSS property value
7862          * @return {Roo.Element} this
7863          */
7864         setTop : function(top){
7865             this.setStyle("top", this.addUnits(top));
7866             return this;
7867         },
7868
7869         /**
7870          * Sets the element's CSS right style.
7871          * @param {String} right The right CSS property value
7872          * @return {Roo.Element} this
7873          */
7874         setRight : function(right){
7875             this.setStyle("right", this.addUnits(right));
7876             return this;
7877         },
7878
7879         /**
7880          * Sets the element's CSS bottom style.
7881          * @param {String} bottom The bottom CSS property value
7882          * @return {Roo.Element} this
7883          */
7884         setBottom : function(bottom){
7885             this.setStyle("bottom", this.addUnits(bottom));
7886             return this;
7887         },
7888
7889         /**
7890          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7891          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7892          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7893          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7894          * @return {Roo.Element} this
7895          */
7896         setXY : function(pos, animate){
7897             if(!animate || !A){
7898                 D.setXY(this.dom, pos);
7899             }else{
7900                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
7901             }
7902             return this;
7903         },
7904
7905         /**
7906          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7907          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7908          * @param {Number} x X value for new position (coordinates are page-based)
7909          * @param {Number} y Y value for new position (coordinates are page-based)
7910          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7911          * @return {Roo.Element} this
7912          */
7913         setLocation : function(x, y, animate){
7914             this.setXY([x, y], this.preanim(arguments, 2));
7915             return this;
7916         },
7917
7918         /**
7919          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7920          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7921          * @param {Number} x X value for new position (coordinates are page-based)
7922          * @param {Number} y Y value for new position (coordinates are page-based)
7923          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7924          * @return {Roo.Element} this
7925          */
7926         moveTo : function(x, y, animate){
7927             this.setXY([x, y], this.preanim(arguments, 2));
7928             return this;
7929         },
7930
7931         /**
7932          * Returns the region of the given element.
7933          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
7934          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
7935          */
7936         getRegion : function(){
7937             return D.getRegion(this.dom);
7938         },
7939
7940         /**
7941          * Returns the offset height of the element
7942          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
7943          * @return {Number} The element's height
7944          */
7945         getHeight : function(contentHeight){
7946             var h = this.dom.offsetHeight || 0;
7947             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
7948         },
7949
7950         /**
7951          * Returns the offset width of the element
7952          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
7953          * @return {Number} The element's width
7954          */
7955         getWidth : function(contentWidth){
7956             var w = this.dom.offsetWidth || 0;
7957             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
7958         },
7959
7960         /**
7961          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
7962          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
7963          * if a height has not been set using CSS.
7964          * @return {Number}
7965          */
7966         getComputedHeight : function(){
7967             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
7968             if(!h){
7969                 h = parseInt(this.getStyle('height'), 10) || 0;
7970                 if(!this.isBorderBox()){
7971                     h += this.getFrameWidth('tb');
7972                 }
7973             }
7974             return h;
7975         },
7976
7977         /**
7978          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
7979          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
7980          * if a width has not been set using CSS.
7981          * @return {Number}
7982          */
7983         getComputedWidth : function(){
7984             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
7985             if(!w){
7986                 w = parseInt(this.getStyle('width'), 10) || 0;
7987                 if(!this.isBorderBox()){
7988                     w += this.getFrameWidth('lr');
7989                 }
7990             }
7991             return w;
7992         },
7993
7994         /**
7995          * Returns the size of the element.
7996          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
7997          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
7998          */
7999         getSize : function(contentSize){
8000             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8001         },
8002
8003         /**
8004          * Returns the width and height of the viewport.
8005          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8006          */
8007         getViewSize : function(){
8008             var d = this.dom, doc = document, aw = 0, ah = 0;
8009             if(d == doc || d == doc.body){
8010                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8011             }else{
8012                 return {
8013                     width : d.clientWidth,
8014                     height: d.clientHeight
8015                 };
8016             }
8017         },
8018
8019         /**
8020          * Returns the value of the "value" attribute
8021          * @param {Boolean} asNumber true to parse the value as a number
8022          * @return {String/Number}
8023          */
8024         getValue : function(asNumber){
8025             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8026         },
8027
8028         // private
8029         adjustWidth : function(width){
8030             if(typeof width == "number"){
8031                 if(this.autoBoxAdjust && !this.isBorderBox()){
8032                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8033                 }
8034                 if(width < 0){
8035                     width = 0;
8036                 }
8037             }
8038             return width;
8039         },
8040
8041         // private
8042         adjustHeight : function(height){
8043             if(typeof height == "number"){
8044                if(this.autoBoxAdjust && !this.isBorderBox()){
8045                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8046                }
8047                if(height < 0){
8048                    height = 0;
8049                }
8050             }
8051             return height;
8052         },
8053
8054         /**
8055          * Set the width of the element
8056          * @param {Number} width The new width
8057          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8058          * @return {Roo.Element} this
8059          */
8060         setWidth : function(width, animate){
8061             width = this.adjustWidth(width);
8062             if(!animate || !A){
8063                 this.dom.style.width = this.addUnits(width);
8064             }else{
8065                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8066             }
8067             return this;
8068         },
8069
8070         /**
8071          * Set the height of the element
8072          * @param {Number} height The new height
8073          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8074          * @return {Roo.Element} this
8075          */
8076          setHeight : function(height, animate){
8077             height = this.adjustHeight(height);
8078             if(!animate || !A){
8079                 this.dom.style.height = this.addUnits(height);
8080             }else{
8081                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8082             }
8083             return this;
8084         },
8085
8086         /**
8087          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8088          * @param {Number} width The new width
8089          * @param {Number} height The new height
8090          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8091          * @return {Roo.Element} this
8092          */
8093          setSize : function(width, height, animate){
8094             if(typeof width == "object"){ // in case of object from getSize()
8095                 height = width.height; width = width.width;
8096             }
8097             width = this.adjustWidth(width); height = this.adjustHeight(height);
8098             if(!animate || !A){
8099                 this.dom.style.width = this.addUnits(width);
8100                 this.dom.style.height = this.addUnits(height);
8101             }else{
8102                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8103             }
8104             return this;
8105         },
8106
8107         /**
8108          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8109          * @param {Number} x X value for new position (coordinates are page-based)
8110          * @param {Number} y Y value for new position (coordinates are page-based)
8111          * @param {Number} width The new width
8112          * @param {Number} height The new height
8113          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8114          * @return {Roo.Element} this
8115          */
8116         setBounds : function(x, y, width, height, animate){
8117             if(!animate || !A){
8118                 this.setSize(width, height);
8119                 this.setLocation(x, y);
8120             }else{
8121                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8122                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8123                               this.preanim(arguments, 4), 'motion');
8124             }
8125             return this;
8126         },
8127
8128         /**
8129          * 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.
8130          * @param {Roo.lib.Region} region The region to fill
8131          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8132          * @return {Roo.Element} this
8133          */
8134         setRegion : function(region, animate){
8135             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8136             return this;
8137         },
8138
8139         /**
8140          * Appends an event handler
8141          *
8142          * @param {String}   eventName     The type of event to append
8143          * @param {Function} fn        The method the event invokes
8144          * @param {Object} scope       (optional) The scope (this object) of the fn
8145          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8146          */
8147         addListener : function(eventName, fn, scope, options){
8148             if (this.dom) {
8149                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8150             }
8151         },
8152
8153         /**
8154          * Removes an event handler from this element
8155          * @param {String} eventName the type of event to remove
8156          * @param {Function} fn the method the event invokes
8157          * @return {Roo.Element} this
8158          */
8159         removeListener : function(eventName, fn){
8160             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8161             return this;
8162         },
8163
8164         /**
8165          * Removes all previous added listeners from this element
8166          * @return {Roo.Element} this
8167          */
8168         removeAllListeners : function(){
8169             E.purgeElement(this.dom);
8170             return this;
8171         },
8172
8173         relayEvent : function(eventName, observable){
8174             this.on(eventName, function(e){
8175                 observable.fireEvent(eventName, e);
8176             });
8177         },
8178
8179         /**
8180          * Set the opacity of the element
8181          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8182          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8183          * @return {Roo.Element} this
8184          */
8185          setOpacity : function(opacity, animate){
8186             if(!animate || !A){
8187                 var s = this.dom.style;
8188                 if(Roo.isIE){
8189                     s.zoom = 1;
8190                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8191                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8192                 }else{
8193                     s.opacity = opacity;
8194                 }
8195             }else{
8196                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8197             }
8198             return this;
8199         },
8200
8201         /**
8202          * Gets the left X coordinate
8203          * @param {Boolean} local True to get the local css position instead of page coordinate
8204          * @return {Number}
8205          */
8206         getLeft : function(local){
8207             if(!local){
8208                 return this.getX();
8209             }else{
8210                 return parseInt(this.getStyle("left"), 10) || 0;
8211             }
8212         },
8213
8214         /**
8215          * Gets the right X coordinate of the element (element X position + element width)
8216          * @param {Boolean} local True to get the local css position instead of page coordinate
8217          * @return {Number}
8218          */
8219         getRight : function(local){
8220             if(!local){
8221                 return this.getX() + this.getWidth();
8222             }else{
8223                 return (this.getLeft(true) + this.getWidth()) || 0;
8224             }
8225         },
8226
8227         /**
8228          * Gets the top Y coordinate
8229          * @param {Boolean} local True to get the local css position instead of page coordinate
8230          * @return {Number}
8231          */
8232         getTop : function(local) {
8233             if(!local){
8234                 return this.getY();
8235             }else{
8236                 return parseInt(this.getStyle("top"), 10) || 0;
8237             }
8238         },
8239
8240         /**
8241          * Gets the bottom Y coordinate of the element (element Y position + element height)
8242          * @param {Boolean} local True to get the local css position instead of page coordinate
8243          * @return {Number}
8244          */
8245         getBottom : function(local){
8246             if(!local){
8247                 return this.getY() + this.getHeight();
8248             }else{
8249                 return (this.getTop(true) + this.getHeight()) || 0;
8250             }
8251         },
8252
8253         /**
8254         * Initializes positioning on this element. If a desired position is not passed, it will make the
8255         * the element positioned relative IF it is not already positioned.
8256         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8257         * @param {Number} zIndex (optional) The zIndex to apply
8258         * @param {Number} x (optional) Set the page X position
8259         * @param {Number} y (optional) Set the page Y position
8260         */
8261         position : function(pos, zIndex, x, y){
8262             if(!pos){
8263                if(this.getStyle('position') == 'static'){
8264                    this.setStyle('position', 'relative');
8265                }
8266             }else{
8267                 this.setStyle("position", pos);
8268             }
8269             if(zIndex){
8270                 this.setStyle("z-index", zIndex);
8271             }
8272             if(x !== undefined && y !== undefined){
8273                 this.setXY([x, y]);
8274             }else if(x !== undefined){
8275                 this.setX(x);
8276             }else if(y !== undefined){
8277                 this.setY(y);
8278             }
8279         },
8280
8281         /**
8282         * Clear positioning back to the default when the document was loaded
8283         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8284         * @return {Roo.Element} this
8285          */
8286         clearPositioning : function(value){
8287             value = value ||'';
8288             this.setStyle({
8289                 "left": value,
8290                 "right": value,
8291                 "top": value,
8292                 "bottom": value,
8293                 "z-index": "",
8294                 "position" : "static"
8295             });
8296             return this;
8297         },
8298
8299         /**
8300         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8301         * snapshot before performing an update and then restoring the element.
8302         * @return {Object}
8303         */
8304         getPositioning : function(){
8305             var l = this.getStyle("left");
8306             var t = this.getStyle("top");
8307             return {
8308                 "position" : this.getStyle("position"),
8309                 "left" : l,
8310                 "right" : l ? "" : this.getStyle("right"),
8311                 "top" : t,
8312                 "bottom" : t ? "" : this.getStyle("bottom"),
8313                 "z-index" : this.getStyle("z-index")
8314             };
8315         },
8316
8317         /**
8318          * Gets the width of the border(s) for the specified side(s)
8319          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8320          * passing lr would get the border (l)eft width + the border (r)ight width.
8321          * @return {Number} The width of the sides passed added together
8322          */
8323         getBorderWidth : function(side){
8324             return this.addStyles(side, El.borders);
8325         },
8326
8327         /**
8328          * Gets the width of the padding(s) for the specified side(s)
8329          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8330          * passing lr would get the padding (l)eft + the padding (r)ight.
8331          * @return {Number} The padding of the sides passed added together
8332          */
8333         getPadding : function(side){
8334             return this.addStyles(side, El.paddings);
8335         },
8336
8337         /**
8338         * Set positioning with an object returned by getPositioning().
8339         * @param {Object} posCfg
8340         * @return {Roo.Element} this
8341          */
8342         setPositioning : function(pc){
8343             this.applyStyles(pc);
8344             if(pc.right == "auto"){
8345                 this.dom.style.right = "";
8346             }
8347             if(pc.bottom == "auto"){
8348                 this.dom.style.bottom = "";
8349             }
8350             return this;
8351         },
8352
8353         // private
8354         fixDisplay : function(){
8355             if(this.getStyle("display") == "none"){
8356                 this.setStyle("visibility", "hidden");
8357                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8358                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8359                     this.setStyle("display", "block");
8360                 }
8361             }
8362         },
8363
8364         /**
8365          * Quick set left and top adding default units
8366          * @param {String} left The left CSS property value
8367          * @param {String} top The top CSS property value
8368          * @return {Roo.Element} this
8369          */
8370          setLeftTop : function(left, top){
8371             this.dom.style.left = this.addUnits(left);
8372             this.dom.style.top = this.addUnits(top);
8373             return this;
8374         },
8375
8376         /**
8377          * Move this element relative to its current position.
8378          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8379          * @param {Number} distance How far to move the element in pixels
8380          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8381          * @return {Roo.Element} this
8382          */
8383          move : function(direction, distance, animate){
8384             var xy = this.getXY();
8385             direction = direction.toLowerCase();
8386             switch(direction){
8387                 case "l":
8388                 case "left":
8389                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8390                     break;
8391                case "r":
8392                case "right":
8393                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8394                     break;
8395                case "t":
8396                case "top":
8397                case "up":
8398                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8399                     break;
8400                case "b":
8401                case "bottom":
8402                case "down":
8403                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8404                     break;
8405             }
8406             return this;
8407         },
8408
8409         /**
8410          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8411          * @return {Roo.Element} this
8412          */
8413         clip : function(){
8414             if(!this.isClipped){
8415                this.isClipped = true;
8416                this.originalClip = {
8417                    "o": this.getStyle("overflow"),
8418                    "x": this.getStyle("overflow-x"),
8419                    "y": this.getStyle("overflow-y")
8420                };
8421                this.setStyle("overflow", "hidden");
8422                this.setStyle("overflow-x", "hidden");
8423                this.setStyle("overflow-y", "hidden");
8424             }
8425             return this;
8426         },
8427
8428         /**
8429          *  Return clipping (overflow) to original clipping before clip() was called
8430          * @return {Roo.Element} this
8431          */
8432         unclip : function(){
8433             if(this.isClipped){
8434                 this.isClipped = false;
8435                 var o = this.originalClip;
8436                 if(o.o){this.setStyle("overflow", o.o);}
8437                 if(o.x){this.setStyle("overflow-x", o.x);}
8438                 if(o.y){this.setStyle("overflow-y", o.y);}
8439             }
8440             return this;
8441         },
8442
8443
8444         /**
8445          * Gets the x,y coordinates specified by the anchor position on the element.
8446          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8447          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8448          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8449          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8450          * @return {Array} [x, y] An array containing the element's x and y coordinates
8451          */
8452         getAnchorXY : function(anchor, local, s){
8453             //Passing a different size is useful for pre-calculating anchors,
8454             //especially for anchored animations that change the el size.
8455
8456             var w, h, vp = false;
8457             if(!s){
8458                 var d = this.dom;
8459                 if(d == document.body || d == document){
8460                     vp = true;
8461                     w = D.getViewWidth(); h = D.getViewHeight();
8462                 }else{
8463                     w = this.getWidth(); h = this.getHeight();
8464                 }
8465             }else{
8466                 w = s.width;  h = s.height;
8467             }
8468             var x = 0, y = 0, r = Math.round;
8469             switch((anchor || "tl").toLowerCase()){
8470                 case "c":
8471                     x = r(w*.5);
8472                     y = r(h*.5);
8473                 break;
8474                 case "t":
8475                     x = r(w*.5);
8476                     y = 0;
8477                 break;
8478                 case "l":
8479                     x = 0;
8480                     y = r(h*.5);
8481                 break;
8482                 case "r":
8483                     x = w;
8484                     y = r(h*.5);
8485                 break;
8486                 case "b":
8487                     x = r(w*.5);
8488                     y = h;
8489                 break;
8490                 case "tl":
8491                     x = 0;
8492                     y = 0;
8493                 break;
8494                 case "bl":
8495                     x = 0;
8496                     y = h;
8497                 break;
8498                 case "br":
8499                     x = w;
8500                     y = h;
8501                 break;
8502                 case "tr":
8503                     x = w;
8504                     y = 0;
8505                 break;
8506             }
8507             if(local === true){
8508                 return [x, y];
8509             }
8510             if(vp){
8511                 var sc = this.getScroll();
8512                 return [x + sc.left, y + sc.top];
8513             }
8514             //Add the element's offset xy
8515             var o = this.getXY();
8516             return [x+o[0], y+o[1]];
8517         },
8518
8519         /**
8520          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8521          * supported position values.
8522          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8523          * @param {String} position The position to align to.
8524          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8525          * @return {Array} [x, y]
8526          */
8527         getAlignToXY : function(el, p, o){
8528             el = Roo.get(el);
8529             var d = this.dom;
8530             if(!el.dom){
8531                 throw "Element.alignTo with an element that doesn't exist";
8532             }
8533             var c = false; //constrain to viewport
8534             var p1 = "", p2 = "";
8535             o = o || [0,0];
8536
8537             if(!p){
8538                 p = "tl-bl";
8539             }else if(p == "?"){
8540                 p = "tl-bl?";
8541             }else if(p.indexOf("-") == -1){
8542                 p = "tl-" + p;
8543             }
8544             p = p.toLowerCase();
8545             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8546             if(!m){
8547                throw "Element.alignTo with an invalid alignment " + p;
8548             }
8549             p1 = m[1]; p2 = m[2]; c = !!m[3];
8550
8551             //Subtract the aligned el's internal xy from the target's offset xy
8552             //plus custom offset to get the aligned el's new offset xy
8553             var a1 = this.getAnchorXY(p1, true);
8554             var a2 = el.getAnchorXY(p2, false);
8555             var x = a2[0] - a1[0] + o[0];
8556             var y = a2[1] - a1[1] + o[1];
8557             if(c){
8558                 //constrain the aligned el to viewport if necessary
8559                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8560                 // 5px of margin for ie
8561                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8562
8563                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8564                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8565                 //otherwise swap the aligned el to the opposite border of the target.
8566                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8567                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8568                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t"));
8569                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8570
8571                var doc = document;
8572                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8573                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8574
8575                if((x+w) > dw + scrollX){
8576                     x = swapX ? r.left-w : dw+scrollX-w;
8577                 }
8578                if(x < scrollX){
8579                    x = swapX ? r.right : scrollX;
8580                }
8581                if((y+h) > dh + scrollY){
8582                     y = swapY ? r.top-h : dh+scrollY-h;
8583                 }
8584                if (y < scrollY){
8585                    y = swapY ? r.bottom : scrollY;
8586                }
8587             }
8588             return [x,y];
8589         },
8590
8591         // private
8592         getConstrainToXY : function(){
8593             var os = {top:0, left:0, bottom:0, right: 0};
8594
8595             return function(el, local, offsets, proposedXY){
8596                 el = Roo.get(el);
8597                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8598
8599                 var vw, vh, vx = 0, vy = 0;
8600                 if(el.dom == document.body || el.dom == document){
8601                     vw = Roo.lib.Dom.getViewWidth();
8602                     vh = Roo.lib.Dom.getViewHeight();
8603                 }else{
8604                     vw = el.dom.clientWidth;
8605                     vh = el.dom.clientHeight;
8606                     if(!local){
8607                         var vxy = el.getXY();
8608                         vx = vxy[0];
8609                         vy = vxy[1];
8610                     }
8611                 }
8612
8613                 var s = el.getScroll();
8614
8615                 vx += offsets.left + s.left;
8616                 vy += offsets.top + s.top;
8617
8618                 vw -= offsets.right;
8619                 vh -= offsets.bottom;
8620
8621                 var vr = vx+vw;
8622                 var vb = vy+vh;
8623
8624                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8625                 var x = xy[0], y = xy[1];
8626                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8627
8628                 // only move it if it needs it
8629                 var moved = false;
8630
8631                 // first validate right/bottom
8632                 if((x + w) > vr){
8633                     x = vr - w;
8634                     moved = true;
8635                 }
8636                 if((y + h) > vb){
8637                     y = vb - h;
8638                     moved = true;
8639                 }
8640                 // then make sure top/left isn't negative
8641                 if(x < vx){
8642                     x = vx;
8643                     moved = true;
8644                 }
8645                 if(y < vy){
8646                     y = vy;
8647                     moved = true;
8648                 }
8649                 return moved ? [x, y] : false;
8650             };
8651         }(),
8652
8653         // private
8654         adjustForConstraints : function(xy, parent, offsets){
8655             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8656         },
8657
8658         /**
8659          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8660          * document it aligns it to the viewport.
8661          * The position parameter is optional, and can be specified in any one of the following formats:
8662          * <ul>
8663          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8664          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8665          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8666          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8667          *   <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
8668          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8669          * </ul>
8670          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8671          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8672          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8673          * that specified in order to enforce the viewport constraints.
8674          * Following are all of the supported anchor positions:
8675     <pre>
8676     Value  Description
8677     -----  -----------------------------
8678     tl     The top left corner (default)
8679     t      The center of the top edge
8680     tr     The top right corner
8681     l      The center of the left edge
8682     c      In the center of the element
8683     r      The center of the right edge
8684     bl     The bottom left corner
8685     b      The center of the bottom edge
8686     br     The bottom right corner
8687     </pre>
8688     Example Usage:
8689     <pre><code>
8690     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8691     el.alignTo("other-el");
8692
8693     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8694     el.alignTo("other-el", "tr?");
8695
8696     // align the bottom right corner of el with the center left edge of other-el
8697     el.alignTo("other-el", "br-l?");
8698
8699     // align the center of el with the bottom left corner of other-el and
8700     // adjust the x position by -6 pixels (and the y position by 0)
8701     el.alignTo("other-el", "c-bl", [-6, 0]);
8702     </code></pre>
8703          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8704          * @param {String} position The position to align to.
8705          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8706          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8707          * @return {Roo.Element} this
8708          */
8709         alignTo : function(element, position, offsets, animate){
8710             var xy = this.getAlignToXY(element, position, offsets);
8711             this.setXY(xy, this.preanim(arguments, 3));
8712             return this;
8713         },
8714
8715         /**
8716          * Anchors an element to another element and realigns it when the window is resized.
8717          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8718          * @param {String} position The position to align to.
8719          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8720          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8721          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8722          * is a number, it is used as the buffer delay (defaults to 50ms).
8723          * @param {Function} callback The function to call after the animation finishes
8724          * @return {Roo.Element} this
8725          */
8726         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8727             var action = function(){
8728                 this.alignTo(el, alignment, offsets, animate);
8729                 Roo.callback(callback, this);
8730             };
8731             Roo.EventManager.onWindowResize(action, this);
8732             var tm = typeof monitorScroll;
8733             if(tm != 'undefined'){
8734                 Roo.EventManager.on(window, 'scroll', action, this,
8735                     {buffer: tm == 'number' ? monitorScroll : 50});
8736             }
8737             action.call(this); // align immediately
8738             return this;
8739         },
8740         /**
8741          * Clears any opacity settings from this element. Required in some cases for IE.
8742          * @return {Roo.Element} this
8743          */
8744         clearOpacity : function(){
8745             if (window.ActiveXObject) {
8746                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8747                     this.dom.style.filter = "";
8748                 }
8749             } else {
8750                 this.dom.style.opacity = "";
8751                 this.dom.style["-moz-opacity"] = "";
8752                 this.dom.style["-khtml-opacity"] = "";
8753             }
8754             return this;
8755         },
8756
8757         /**
8758          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8759          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8760          * @return {Roo.Element} this
8761          */
8762         hide : function(animate){
8763             this.setVisible(false, this.preanim(arguments, 0));
8764             return this;
8765         },
8766
8767         /**
8768         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8769         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8770          * @return {Roo.Element} this
8771          */
8772         show : function(animate){
8773             this.setVisible(true, this.preanim(arguments, 0));
8774             return this;
8775         },
8776
8777         /**
8778          * @private Test if size has a unit, otherwise appends the default
8779          */
8780         addUnits : function(size){
8781             return Roo.Element.addUnits(size, this.defaultUnit);
8782         },
8783
8784         /**
8785          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8786          * @return {Roo.Element} this
8787          */
8788         beginMeasure : function(){
8789             var el = this.dom;
8790             if(el.offsetWidth || el.offsetHeight){
8791                 return this; // offsets work already
8792             }
8793             var changed = [];
8794             var p = this.dom, b = document.body; // start with this element
8795             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8796                 var pe = Roo.get(p);
8797                 if(pe.getStyle('display') == 'none'){
8798                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8799                     p.style.visibility = "hidden";
8800                     p.style.display = "block";
8801                 }
8802                 p = p.parentNode;
8803             }
8804             this._measureChanged = changed;
8805             return this;
8806
8807         },
8808
8809         /**
8810          * Restores displays to before beginMeasure was called
8811          * @return {Roo.Element} this
8812          */
8813         endMeasure : function(){
8814             var changed = this._measureChanged;
8815             if(changed){
8816                 for(var i = 0, len = changed.length; i < len; i++) {
8817                     var r = changed[i];
8818                     r.el.style.visibility = r.visibility;
8819                     r.el.style.display = "none";
8820                 }
8821                 this._measureChanged = null;
8822             }
8823             return this;
8824         },
8825
8826         /**
8827         * Update the innerHTML of this element, optionally searching for and processing scripts
8828         * @param {String} html The new HTML
8829         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8830         * @param {Function} callback For async script loading you can be noticed when the update completes
8831         * @return {Roo.Element} this
8832          */
8833         update : function(html, loadScripts, callback){
8834             if(typeof html == "undefined"){
8835                 html = "";
8836             }
8837             if(loadScripts !== true){
8838                 this.dom.innerHTML = html;
8839                 if(typeof callback == "function"){
8840                     callback();
8841                 }
8842                 return this;
8843             }
8844             var id = Roo.id();
8845             var dom = this.dom;
8846
8847             html += '<span id="' + id + '"></span>';
8848
8849             E.onAvailable(id, function(){
8850                 var hd = document.getElementsByTagName("head")[0];
8851                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8852                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8853                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8854
8855                 var match;
8856                 while(match = re.exec(html)){
8857                     var attrs = match[1];
8858                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8859                     if(srcMatch && srcMatch[2]){
8860                        var s = document.createElement("script");
8861                        s.src = srcMatch[2];
8862                        var typeMatch = attrs.match(typeRe);
8863                        if(typeMatch && typeMatch[2]){
8864                            s.type = typeMatch[2];
8865                        }
8866                        hd.appendChild(s);
8867                     }else if(match[2] && match[2].length > 0){
8868                         if(window.execScript) {
8869                            window.execScript(match[2]);
8870                         } else {
8871                             /**
8872                              * eval:var:id
8873                              * eval:var:dom
8874                              * eval:var:html
8875                              * 
8876                              */
8877                            window.eval(match[2]);
8878                         }
8879                     }
8880                 }
8881                 var el = document.getElementById(id);
8882                 if(el){el.parentNode.removeChild(el);}
8883                 if(typeof callback == "function"){
8884                     callback();
8885                 }
8886             });
8887             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
8888             return this;
8889         },
8890
8891         /**
8892          * Direct access to the UpdateManager update() method (takes the same parameters).
8893          * @param {String/Function} url The url for this request or a function to call to get the url
8894          * @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}
8895          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
8896          * @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.
8897          * @return {Roo.Element} this
8898          */
8899         load : function(){
8900             var um = this.getUpdateManager();
8901             um.update.apply(um, arguments);
8902             return this;
8903         },
8904
8905         /**
8906         * Gets this element's UpdateManager
8907         * @return {Roo.UpdateManager} The UpdateManager
8908         */
8909         getUpdateManager : function(){
8910             if(!this.updateManager){
8911                 this.updateManager = new Roo.UpdateManager(this);
8912             }
8913             return this.updateManager;
8914         },
8915
8916         /**
8917          * Disables text selection for this element (normalized across browsers)
8918          * @return {Roo.Element} this
8919          */
8920         unselectable : function(){
8921             this.dom.unselectable = "on";
8922             this.swallowEvent("selectstart", true);
8923             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
8924             this.addClass("x-unselectable");
8925             return this;
8926         },
8927
8928         /**
8929         * Calculates the x, y to center this element on the screen
8930         * @return {Array} The x, y values [x, y]
8931         */
8932         getCenterXY : function(){
8933             return this.getAlignToXY(document, 'c-c');
8934         },
8935
8936         /**
8937         * Centers the Element in either the viewport, or another Element.
8938         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
8939         */
8940         center : function(centerIn){
8941             this.alignTo(centerIn || document, 'c-c');
8942             return this;
8943         },
8944
8945         /**
8946          * Tests various css rules/browsers to determine if this element uses a border box
8947          * @return {Boolean}
8948          */
8949         isBorderBox : function(){
8950             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
8951         },
8952
8953         /**
8954          * Return a box {x, y, width, height} that can be used to set another elements
8955          * size/location to match this element.
8956          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
8957          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
8958          * @return {Object} box An object in the format {x, y, width, height}
8959          */
8960         getBox : function(contentBox, local){
8961             var xy;
8962             if(!local){
8963                 xy = this.getXY();
8964             }else{
8965                 var left = parseInt(this.getStyle("left"), 10) || 0;
8966                 var top = parseInt(this.getStyle("top"), 10) || 0;
8967                 xy = [left, top];
8968             }
8969             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
8970             if(!contentBox){
8971                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
8972             }else{
8973                 var l = this.getBorderWidth("l")+this.getPadding("l");
8974                 var r = this.getBorderWidth("r")+this.getPadding("r");
8975                 var t = this.getBorderWidth("t")+this.getPadding("t");
8976                 var b = this.getBorderWidth("b")+this.getPadding("b");
8977                 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)};
8978             }
8979             bx.right = bx.x + bx.width;
8980             bx.bottom = bx.y + bx.height;
8981             return bx;
8982         },
8983
8984         /**
8985          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
8986          for more information about the sides.
8987          * @param {String} sides
8988          * @return {Number}
8989          */
8990         getFrameWidth : function(sides, onlyContentBox){
8991             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
8992         },
8993
8994         /**
8995          * 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.
8996          * @param {Object} box The box to fill {x, y, width, height}
8997          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
8998          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8999          * @return {Roo.Element} this
9000          */
9001         setBox : function(box, adjust, animate){
9002             var w = box.width, h = box.height;
9003             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9004                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9005                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9006             }
9007             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9008             return this;
9009         },
9010
9011         /**
9012          * Forces the browser to repaint this element
9013          * @return {Roo.Element} this
9014          */
9015          repaint : function(){
9016             var dom = this.dom;
9017             this.addClass("x-repaint");
9018             setTimeout(function(){
9019                 Roo.get(dom).removeClass("x-repaint");
9020             }, 1);
9021             return this;
9022         },
9023
9024         /**
9025          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9026          * then it returns the calculated width of the sides (see getPadding)
9027          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9028          * @return {Object/Number}
9029          */
9030         getMargins : function(side){
9031             if(!side){
9032                 return {
9033                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9034                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9035                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9036                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9037                 };
9038             }else{
9039                 return this.addStyles(side, El.margins);
9040              }
9041         },
9042
9043         // private
9044         addStyles : function(sides, styles){
9045             var val = 0, v, w;
9046             for(var i = 0, len = sides.length; i < len; i++){
9047                 v = this.getStyle(styles[sides.charAt(i)]);
9048                 if(v){
9049                      w = parseInt(v, 10);
9050                      if(w){ val += w; }
9051                 }
9052             }
9053             return val;
9054         },
9055
9056         /**
9057          * Creates a proxy element of this element
9058          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9059          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9060          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9061          * @return {Roo.Element} The new proxy element
9062          */
9063         createProxy : function(config, renderTo, matchBox){
9064             if(renderTo){
9065                 renderTo = Roo.getDom(renderTo);
9066             }else{
9067                 renderTo = document.body;
9068             }
9069             config = typeof config == "object" ?
9070                 config : {tag : "div", cls: config};
9071             var proxy = Roo.DomHelper.append(renderTo, config, true);
9072             if(matchBox){
9073                proxy.setBox(this.getBox());
9074             }
9075             return proxy;
9076         },
9077
9078         /**
9079          * Puts a mask over this element to disable user interaction. Requires core.css.
9080          * This method can only be applied to elements which accept child nodes.
9081          * @param {String} msg (optional) A message to display in the mask
9082          * @param {String} msgCls (optional) A css class to apply to the msg element
9083          * @return {Element} The mask  element
9084          */
9085         mask : function(msg, msgCls)
9086         {
9087             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9088                 this.setStyle("position", "relative");
9089             }
9090             if(!this._mask){
9091                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9092             }
9093             this.addClass("x-masked");
9094             this._mask.setDisplayed(true);
9095             
9096             // we wander
9097             var z = 0;
9098             var dom = this.dom;
9099             while (dom && dom.style) {
9100                 if (!isNaN(parseInt(dom.style.zIndex))) {
9101                     z = Math.max(z, parseInt(dom.style.zIndex));
9102                 }
9103                 dom = dom.parentNode;
9104             }
9105             // if we are masking the body - then it hides everything..
9106             if (this.dom == document.body) {
9107                 z = 1000000;
9108                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9109                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9110             }
9111            
9112             if(typeof msg == 'string'){
9113                 if(!this._maskMsg){
9114                     this._maskMsg = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask-msg", cn:{tag:'div'}}, true);
9115                 }
9116                 var mm = this._maskMsg;
9117                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9118                 if (mm.dom.firstChild) { // weird IE issue?
9119                     mm.dom.firstChild.innerHTML = msg;
9120                 }
9121                 mm.setDisplayed(true);
9122                 mm.center(this);
9123                 mm.setStyle('z-index', z + 102);
9124             }
9125             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9126                 this._mask.setHeight(this.getHeight());
9127             }
9128             this._mask.setStyle('z-index', z + 100);
9129             
9130             return this._mask;
9131         },
9132
9133         /**
9134          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9135          * it is cached for reuse.
9136          */
9137         unmask : function(removeEl){
9138             if(this._mask){
9139                 if(removeEl === true){
9140                     this._mask.remove();
9141                     delete this._mask;
9142                     if(this._maskMsg){
9143                         this._maskMsg.remove();
9144                         delete this._maskMsg;
9145                     }
9146                 }else{
9147                     this._mask.setDisplayed(false);
9148                     if(this._maskMsg){
9149                         this._maskMsg.setDisplayed(false);
9150                     }
9151                 }
9152             }
9153             this.removeClass("x-masked");
9154         },
9155
9156         /**
9157          * Returns true if this element is masked
9158          * @return {Boolean}
9159          */
9160         isMasked : function(){
9161             return this._mask && this._mask.isVisible();
9162         },
9163
9164         /**
9165          * Creates an iframe shim for this element to keep selects and other windowed objects from
9166          * showing through.
9167          * @return {Roo.Element} The new shim element
9168          */
9169         createShim : function(){
9170             var el = document.createElement('iframe');
9171             el.frameBorder = 'no';
9172             el.className = 'roo-shim';
9173             if(Roo.isIE && Roo.isSecure){
9174                 el.src = Roo.SSL_SECURE_URL;
9175             }
9176             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9177             shim.autoBoxAdjust = false;
9178             return shim;
9179         },
9180
9181         /**
9182          * Removes this element from the DOM and deletes it from the cache
9183          */
9184         remove : function(){
9185             if(this.dom.parentNode){
9186                 this.dom.parentNode.removeChild(this.dom);
9187             }
9188             delete El.cache[this.dom.id];
9189         },
9190
9191         /**
9192          * Sets up event handlers to add and remove a css class when the mouse is over this element
9193          * @param {String} className
9194          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9195          * mouseout events for children elements
9196          * @return {Roo.Element} this
9197          */
9198         addClassOnOver : function(className, preventFlicker){
9199             this.on("mouseover", function(){
9200                 Roo.fly(this, '_internal').addClass(className);
9201             }, this.dom);
9202             var removeFn = function(e){
9203                 if(preventFlicker !== true || !e.within(this, true)){
9204                     Roo.fly(this, '_internal').removeClass(className);
9205                 }
9206             };
9207             this.on("mouseout", removeFn, this.dom);
9208             return this;
9209         },
9210
9211         /**
9212          * Sets up event handlers to add and remove a css class when this element has the focus
9213          * @param {String} className
9214          * @return {Roo.Element} this
9215          */
9216         addClassOnFocus : function(className){
9217             this.on("focus", function(){
9218                 Roo.fly(this, '_internal').addClass(className);
9219             }, this.dom);
9220             this.on("blur", function(){
9221                 Roo.fly(this, '_internal').removeClass(className);
9222             }, this.dom);
9223             return this;
9224         },
9225         /**
9226          * 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)
9227          * @param {String} className
9228          * @return {Roo.Element} this
9229          */
9230         addClassOnClick : function(className){
9231             var dom = this.dom;
9232             this.on("mousedown", function(){
9233                 Roo.fly(dom, '_internal').addClass(className);
9234                 var d = Roo.get(document);
9235                 var fn = function(){
9236                     Roo.fly(dom, '_internal').removeClass(className);
9237                     d.removeListener("mouseup", fn);
9238                 };
9239                 d.on("mouseup", fn);
9240             });
9241             return this;
9242         },
9243
9244         /**
9245          * Stops the specified event from bubbling and optionally prevents the default action
9246          * @param {String} eventName
9247          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9248          * @return {Roo.Element} this
9249          */
9250         swallowEvent : function(eventName, preventDefault){
9251             var fn = function(e){
9252                 e.stopPropagation();
9253                 if(preventDefault){
9254                     e.preventDefault();
9255                 }
9256             };
9257             if(eventName instanceof Array){
9258                 for(var i = 0, len = eventName.length; i < len; i++){
9259                      this.on(eventName[i], fn);
9260                 }
9261                 return this;
9262             }
9263             this.on(eventName, fn);
9264             return this;
9265         },
9266
9267         /**
9268          * @private
9269          */
9270       fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9271
9272         /**
9273          * Sizes this element to its parent element's dimensions performing
9274          * neccessary box adjustments.
9275          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9276          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9277          * @return {Roo.Element} this
9278          */
9279         fitToParent : function(monitorResize, targetParent) {
9280           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9281           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9282           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9283             return;
9284           }
9285           var p = Roo.get(targetParent || this.dom.parentNode);
9286           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9287           if (monitorResize === true) {
9288             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9289             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9290           }
9291           return this;
9292         },
9293
9294         /**
9295          * Gets the next sibling, skipping text nodes
9296          * @return {HTMLElement} The next sibling or null
9297          */
9298         getNextSibling : function(){
9299             var n = this.dom.nextSibling;
9300             while(n && n.nodeType != 1){
9301                 n = n.nextSibling;
9302             }
9303             return n;
9304         },
9305
9306         /**
9307          * Gets the previous sibling, skipping text nodes
9308          * @return {HTMLElement} The previous sibling or null
9309          */
9310         getPrevSibling : function(){
9311             var n = this.dom.previousSibling;
9312             while(n && n.nodeType != 1){
9313                 n = n.previousSibling;
9314             }
9315             return n;
9316         },
9317
9318
9319         /**
9320          * Appends the passed element(s) to this element
9321          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9322          * @return {Roo.Element} this
9323          */
9324         appendChild: function(el){
9325             el = Roo.get(el);
9326             el.appendTo(this);
9327             return this;
9328         },
9329
9330         /**
9331          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9332          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9333          * automatically generated with the specified attributes.
9334          * @param {HTMLElement} insertBefore (optional) a child element of this element
9335          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9336          * @return {Roo.Element} The new child element
9337          */
9338         createChild: function(config, insertBefore, returnDom){
9339             config = config || {tag:'div'};
9340             if(insertBefore){
9341                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9342             }
9343             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9344         },
9345
9346         /**
9347          * Appends this element to the passed element
9348          * @param {String/HTMLElement/Element} el The new parent element
9349          * @return {Roo.Element} this
9350          */
9351         appendTo: function(el){
9352             el = Roo.getDom(el);
9353             el.appendChild(this.dom);
9354             return this;
9355         },
9356
9357         /**
9358          * Inserts this element before the passed element in the DOM
9359          * @param {String/HTMLElement/Element} el The element to insert before
9360          * @return {Roo.Element} this
9361          */
9362         insertBefore: function(el){
9363             el = Roo.getDom(el);
9364             el.parentNode.insertBefore(this.dom, el);
9365             return this;
9366         },
9367
9368         /**
9369          * Inserts this element after the passed element in the DOM
9370          * @param {String/HTMLElement/Element} el The element to insert after
9371          * @return {Roo.Element} this
9372          */
9373         insertAfter: function(el){
9374             el = Roo.getDom(el);
9375             el.parentNode.insertBefore(this.dom, el.nextSibling);
9376             return this;
9377         },
9378
9379         /**
9380          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9381          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9382          * @return {Roo.Element} The new child
9383          */
9384         insertFirst: function(el, returnDom){
9385             el = el || {};
9386             if(typeof el == 'object' && !el.nodeType){ // dh config
9387                 return this.createChild(el, this.dom.firstChild, returnDom);
9388             }else{
9389                 el = Roo.getDom(el);
9390                 this.dom.insertBefore(el, this.dom.firstChild);
9391                 return !returnDom ? Roo.get(el) : el;
9392             }
9393         },
9394
9395         /**
9396          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9397          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9398          * @param {String} where (optional) 'before' or 'after' defaults to before
9399          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9400          * @return {Roo.Element} the inserted Element
9401          */
9402         insertSibling: function(el, where, returnDom){
9403             where = where ? where.toLowerCase() : 'before';
9404             el = el || {};
9405             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9406
9407             if(typeof el == 'object' && !el.nodeType){ // dh config
9408                 if(where == 'after' && !this.dom.nextSibling){
9409                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9410                 }else{
9411                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9412                 }
9413
9414             }else{
9415                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9416                             where == 'before' ? this.dom : this.dom.nextSibling);
9417                 if(!returnDom){
9418                     rt = Roo.get(rt);
9419                 }
9420             }
9421             return rt;
9422         },
9423
9424         /**
9425          * Creates and wraps this element with another element
9426          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9427          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9428          * @return {HTMLElement/Element} The newly created wrapper element
9429          */
9430         wrap: function(config, returnDom){
9431             if(!config){
9432                 config = {tag: "div"};
9433             }
9434             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9435             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9436             return newEl;
9437         },
9438
9439         /**
9440          * Replaces the passed element with this element
9441          * @param {String/HTMLElement/Element} el The element to replace
9442          * @return {Roo.Element} this
9443          */
9444         replace: function(el){
9445             el = Roo.get(el);
9446             this.insertBefore(el);
9447             el.remove();
9448             return this;
9449         },
9450
9451         /**
9452          * Inserts an html fragment into this element
9453          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9454          * @param {String} html The HTML fragment
9455          * @param {Boolean} returnEl True to return an Roo.Element
9456          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9457          */
9458         insertHtml : function(where, html, returnEl){
9459             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9460             return returnEl ? Roo.get(el) : el;
9461         },
9462
9463         /**
9464          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9465          * @param {Object} o The object with the attributes
9466          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9467          * @return {Roo.Element} this
9468          */
9469         set : function(o, useSet){
9470             var el = this.dom;
9471             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9472             for(var attr in o){
9473                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9474                 if(attr=="cls"){
9475                     el.className = o["cls"];
9476                 }else{
9477                     if(useSet) {
9478                         el.setAttribute(attr, o[attr]);
9479                     } else {
9480                         el[attr] = o[attr];
9481                     }
9482                 }
9483             }
9484             if(o.style){
9485                 Roo.DomHelper.applyStyles(el, o.style);
9486             }
9487             return this;
9488         },
9489
9490         /**
9491          * Convenience method for constructing a KeyMap
9492          * @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:
9493          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9494          * @param {Function} fn The function to call
9495          * @param {Object} scope (optional) The scope of the function
9496          * @return {Roo.KeyMap} The KeyMap created
9497          */
9498         addKeyListener : function(key, fn, scope){
9499             var config;
9500             if(typeof key != "object" || key instanceof Array){
9501                 config = {
9502                     key: key,
9503                     fn: fn,
9504                     scope: scope
9505                 };
9506             }else{
9507                 config = {
9508                     key : key.key,
9509                     shift : key.shift,
9510                     ctrl : key.ctrl,
9511                     alt : key.alt,
9512                     fn: fn,
9513                     scope: scope
9514                 };
9515             }
9516             return new Roo.KeyMap(this, config);
9517         },
9518
9519         /**
9520          * Creates a KeyMap for this element
9521          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9522          * @return {Roo.KeyMap} The KeyMap created
9523          */
9524         addKeyMap : function(config){
9525             return new Roo.KeyMap(this, config);
9526         },
9527
9528         /**
9529          * Returns true if this element is scrollable.
9530          * @return {Boolean}
9531          */
9532          isScrollable : function(){
9533             var dom = this.dom;
9534             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9535         },
9536
9537         /**
9538          * 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().
9539          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9540          * @param {Number} value The new scroll value
9541          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9542          * @return {Element} this
9543          */
9544
9545         scrollTo : function(side, value, animate){
9546             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9547             if(!animate || !A){
9548                 this.dom[prop] = value;
9549             }else{
9550                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9551                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9552             }
9553             return this;
9554         },
9555
9556         /**
9557          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9558          * within this element's scrollable range.
9559          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9560          * @param {Number} distance How far to scroll the element in pixels
9561          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9562          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9563          * was scrolled as far as it could go.
9564          */
9565          scroll : function(direction, distance, animate){
9566              if(!this.isScrollable()){
9567                  return;
9568              }
9569              var el = this.dom;
9570              var l = el.scrollLeft, t = el.scrollTop;
9571              var w = el.scrollWidth, h = el.scrollHeight;
9572              var cw = el.clientWidth, ch = el.clientHeight;
9573              direction = direction.toLowerCase();
9574              var scrolled = false;
9575              var a = this.preanim(arguments, 2);
9576              switch(direction){
9577                  case "l":
9578                  case "left":
9579                      if(w - l > cw){
9580                          var v = Math.min(l + distance, w-cw);
9581                          this.scrollTo("left", v, a);
9582                          scrolled = true;
9583                      }
9584                      break;
9585                 case "r":
9586                 case "right":
9587                      if(l > 0){
9588                          var v = Math.max(l - distance, 0);
9589                          this.scrollTo("left", v, a);
9590                          scrolled = true;
9591                      }
9592                      break;
9593                 case "t":
9594                 case "top":
9595                 case "up":
9596                      if(t > 0){
9597                          var v = Math.max(t - distance, 0);
9598                          this.scrollTo("top", v, a);
9599                          scrolled = true;
9600                      }
9601                      break;
9602                 case "b":
9603                 case "bottom":
9604                 case "down":
9605                      if(h - t > ch){
9606                          var v = Math.min(t + distance, h-ch);
9607                          this.scrollTo("top", v, a);
9608                          scrolled = true;
9609                      }
9610                      break;
9611              }
9612              return scrolled;
9613         },
9614
9615         /**
9616          * Translates the passed page coordinates into left/top css values for this element
9617          * @param {Number/Array} x The page x or an array containing [x, y]
9618          * @param {Number} y The page y
9619          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9620          */
9621         translatePoints : function(x, y){
9622             if(typeof x == 'object' || x instanceof Array){
9623                 y = x[1]; x = x[0];
9624             }
9625             var p = this.getStyle('position');
9626             var o = this.getXY();
9627
9628             var l = parseInt(this.getStyle('left'), 10);
9629             var t = parseInt(this.getStyle('top'), 10);
9630
9631             if(isNaN(l)){
9632                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9633             }
9634             if(isNaN(t)){
9635                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9636             }
9637
9638             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9639         },
9640
9641         /**
9642          * Returns the current scroll position of the element.
9643          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9644          */
9645         getScroll : function(){
9646             var d = this.dom, doc = document;
9647             if(d == doc || d == doc.body){
9648                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9649                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9650                 return {left: l, top: t};
9651             }else{
9652                 return {left: d.scrollLeft, top: d.scrollTop};
9653             }
9654         },
9655
9656         /**
9657          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9658          * are convert to standard 6 digit hex color.
9659          * @param {String} attr The css attribute
9660          * @param {String} defaultValue The default value to use when a valid color isn't found
9661          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9662          * YUI color anims.
9663          */
9664         getColor : function(attr, defaultValue, prefix){
9665             var v = this.getStyle(attr);
9666             if(!v || v == "transparent" || v == "inherit") {
9667                 return defaultValue;
9668             }
9669             var color = typeof prefix == "undefined" ? "#" : prefix;
9670             if(v.substr(0, 4) == "rgb("){
9671                 var rvs = v.slice(4, v.length -1).split(",");
9672                 for(var i = 0; i < 3; i++){
9673                     var h = parseInt(rvs[i]).toString(16);
9674                     if(h < 16){
9675                         h = "0" + h;
9676                     }
9677                     color += h;
9678                 }
9679             } else {
9680                 if(v.substr(0, 1) == "#"){
9681                     if(v.length == 4) {
9682                         for(var i = 1; i < 4; i++){
9683                             var c = v.charAt(i);
9684                             color +=  c + c;
9685                         }
9686                     }else if(v.length == 7){
9687                         color += v.substr(1);
9688                     }
9689                 }
9690             }
9691             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9692         },
9693
9694         /**
9695          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9696          * gradient background, rounded corners and a 4-way shadow.
9697          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9698          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9699          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9700          * @return {Roo.Element} this
9701          */
9702         boxWrap : function(cls){
9703             cls = cls || 'x-box';
9704             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9705             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9706             return el;
9707         },
9708
9709         /**
9710          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9711          * @param {String} namespace The namespace in which to look for the attribute
9712          * @param {String} name The attribute name
9713          * @return {String} The attribute value
9714          */
9715         getAttributeNS : Roo.isIE ? function(ns, name){
9716             var d = this.dom;
9717             var type = typeof d[ns+":"+name];
9718             if(type != 'undefined' && type != 'unknown'){
9719                 return d[ns+":"+name];
9720             }
9721             return d[name];
9722         } : function(ns, name){
9723             var d = this.dom;
9724             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9725         },
9726         
9727         
9728         /**
9729          * Sets or Returns the value the dom attribute value
9730          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9731          * @param {String} value (optional) The value to set the attribute to
9732          * @return {String} The attribute value
9733          */
9734         attr : function(name){
9735             if (arguments.length > 1) {
9736                 this.dom.setAttribute(name, arguments[1]);
9737                 return arguments[1];
9738             }
9739             if (typeof(name) == 'object') {
9740                 for(var i in name) {
9741                     this.attr(i, name[i]);
9742                 }
9743                 return name;
9744             }
9745             
9746             
9747             if (!this.dom.hasAttribute(name)) {
9748                 return undefined;
9749             }
9750             return this.dom.getAttribute(name);
9751         }
9752         
9753         
9754         
9755     };
9756
9757     var ep = El.prototype;
9758
9759     /**
9760      * Appends an event handler (Shorthand for addListener)
9761      * @param {String}   eventName     The type of event to append
9762      * @param {Function} fn        The method the event invokes
9763      * @param {Object} scope       (optional) The scope (this object) of the fn
9764      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9765      * @method
9766      */
9767     ep.on = ep.addListener;
9768         // backwards compat
9769     ep.mon = ep.addListener;
9770
9771     /**
9772      * Removes an event handler from this element (shorthand for removeListener)
9773      * @param {String} eventName the type of event to remove
9774      * @param {Function} fn the method the event invokes
9775      * @return {Roo.Element} this
9776      * @method
9777      */
9778     ep.un = ep.removeListener;
9779
9780     /**
9781      * true to automatically adjust width and height settings for box-model issues (default to true)
9782      */
9783     ep.autoBoxAdjust = true;
9784
9785     // private
9786     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9787
9788     // private
9789     El.addUnits = function(v, defaultUnit){
9790         if(v === "" || v == "auto"){
9791             return v;
9792         }
9793         if(v === undefined){
9794             return '';
9795         }
9796         if(typeof v == "number" || !El.unitPattern.test(v)){
9797             return v + (defaultUnit || 'px');
9798         }
9799         return v;
9800     };
9801
9802     // special markup used throughout Roo when box wrapping elements
9803     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>';
9804     /**
9805      * Visibility mode constant - Use visibility to hide element
9806      * @static
9807      * @type Number
9808      */
9809     El.VISIBILITY = 1;
9810     /**
9811      * Visibility mode constant - Use display to hide element
9812      * @static
9813      * @type Number
9814      */
9815     El.DISPLAY = 2;
9816
9817     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9818     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9819     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9820
9821
9822
9823     /**
9824      * @private
9825      */
9826     El.cache = {};
9827
9828     var docEl;
9829
9830     /**
9831      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9832      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9833      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9834      * @return {Element} The Element object
9835      * @static
9836      */
9837     El.get = function(el){
9838         var ex, elm, id;
9839         if(!el){ return null; }
9840         if(typeof el == "string"){ // element id
9841             if(!(elm = document.getElementById(el))){
9842                 return null;
9843             }
9844             if(ex = El.cache[el]){
9845                 ex.dom = elm;
9846             }else{
9847                 ex = El.cache[el] = new El(elm);
9848             }
9849             return ex;
9850         }else if(el.tagName){ // dom element
9851             if(!(id = el.id)){
9852                 id = Roo.id(el);
9853             }
9854             if(ex = El.cache[id]){
9855                 ex.dom = el;
9856             }else{
9857                 ex = El.cache[id] = new El(el);
9858             }
9859             return ex;
9860         }else if(el instanceof El){
9861             if(el != docEl){
9862                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
9863                                                               // catch case where it hasn't been appended
9864                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
9865             }
9866             return el;
9867         }else if(el.isComposite){
9868             return el;
9869         }else if(el instanceof Array){
9870             return El.select(el);
9871         }else if(el == document){
9872             // create a bogus element object representing the document object
9873             if(!docEl){
9874                 var f = function(){};
9875                 f.prototype = El.prototype;
9876                 docEl = new f();
9877                 docEl.dom = document;
9878             }
9879             return docEl;
9880         }
9881         return null;
9882     };
9883
9884     // private
9885     El.uncache = function(el){
9886         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
9887             if(a[i]){
9888                 delete El.cache[a[i].id || a[i]];
9889             }
9890         }
9891     };
9892
9893     // private
9894     // Garbage collection - uncache elements/purge listeners on orphaned elements
9895     // so we don't hold a reference and cause the browser to retain them
9896     El.garbageCollect = function(){
9897         if(!Roo.enableGarbageCollector){
9898             clearInterval(El.collectorThread);
9899             return;
9900         }
9901         for(var eid in El.cache){
9902             var el = El.cache[eid], d = el.dom;
9903             // -------------------------------------------------------
9904             // Determining what is garbage:
9905             // -------------------------------------------------------
9906             // !d
9907             // dom node is null, definitely garbage
9908             // -------------------------------------------------------
9909             // !d.parentNode
9910             // no parentNode == direct orphan, definitely garbage
9911             // -------------------------------------------------------
9912             // !d.offsetParent && !document.getElementById(eid)
9913             // display none elements have no offsetParent so we will
9914             // also try to look it up by it's id. However, check
9915             // offsetParent first so we don't do unneeded lookups.
9916             // This enables collection of elements that are not orphans
9917             // directly, but somewhere up the line they have an orphan
9918             // parent.
9919             // -------------------------------------------------------
9920             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
9921                 delete El.cache[eid];
9922                 if(d && Roo.enableListenerCollection){
9923                     E.purgeElement(d);
9924                 }
9925             }
9926         }
9927     }
9928     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
9929
9930
9931     // dom is optional
9932     El.Flyweight = function(dom){
9933         this.dom = dom;
9934     };
9935     El.Flyweight.prototype = El.prototype;
9936
9937     El._flyweights = {};
9938     /**
9939      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
9940      * the dom node can be overwritten by other code.
9941      * @param {String/HTMLElement} el The dom node or id
9942      * @param {String} named (optional) Allows for creation of named reusable flyweights to
9943      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
9944      * @static
9945      * @return {Element} The shared Element object
9946      */
9947     El.fly = function(el, named){
9948         named = named || '_global';
9949         el = Roo.getDom(el);
9950         if(!el){
9951             return null;
9952         }
9953         if(!El._flyweights[named]){
9954             El._flyweights[named] = new El.Flyweight();
9955         }
9956         El._flyweights[named].dom = el;
9957         return El._flyweights[named];
9958     };
9959
9960     /**
9961      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9962      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9963      * Shorthand of {@link Roo.Element#get}
9964      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9965      * @return {Element} The Element object
9966      * @member Roo
9967      * @method get
9968      */
9969     Roo.get = El.get;
9970     /**
9971      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
9972      * the dom node can be overwritten by other code.
9973      * Shorthand of {@link Roo.Element#fly}
9974      * @param {String/HTMLElement} el The dom node or id
9975      * @param {String} named (optional) Allows for creation of named reusable flyweights to
9976      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
9977      * @static
9978      * @return {Element} The shared Element object
9979      * @member Roo
9980      * @method fly
9981      */
9982     Roo.fly = El.fly;
9983
9984     // speedy lookup for elements never to box adjust
9985     var noBoxAdjust = Roo.isStrict ? {
9986         select:1
9987     } : {
9988         input:1, select:1, textarea:1
9989     };
9990     if(Roo.isIE || Roo.isGecko){
9991         noBoxAdjust['button'] = 1;
9992     }
9993
9994
9995     Roo.EventManager.on(window, 'unload', function(){
9996         delete El.cache;
9997         delete El._flyweights;
9998     });
9999 })();
10000
10001
10002
10003
10004 if(Roo.DomQuery){
10005     Roo.Element.selectorFunction = Roo.DomQuery.select;
10006 }
10007
10008 Roo.Element.select = function(selector, unique, root){
10009     var els;
10010     if(typeof selector == "string"){
10011         els = Roo.Element.selectorFunction(selector, root);
10012     }else if(selector.length !== undefined){
10013         els = selector;
10014     }else{
10015         throw "Invalid selector";
10016     }
10017     if(unique === true){
10018         return new Roo.CompositeElement(els);
10019     }else{
10020         return new Roo.CompositeElementLite(els);
10021     }
10022 };
10023 /**
10024  * Selects elements based on the passed CSS selector to enable working on them as 1.
10025  * @param {String/Array} selector The CSS selector or an array of elements
10026  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10027  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10028  * @return {CompositeElementLite/CompositeElement}
10029  * @member Roo
10030  * @method select
10031  */
10032 Roo.select = Roo.Element.select;
10033
10034
10035
10036
10037
10038
10039
10040
10041
10042
10043
10044
10045
10046
10047 /*
10048  * Based on:
10049  * Ext JS Library 1.1.1
10050  * Copyright(c) 2006-2007, Ext JS, LLC.
10051  *
10052  * Originally Released Under LGPL - original licence link has changed is not relivant.
10053  *
10054  * Fork - LGPL
10055  * <script type="text/javascript">
10056  */
10057
10058
10059
10060 //Notifies Element that fx methods are available
10061 Roo.enableFx = true;
10062
10063 /**
10064  * @class Roo.Fx
10065  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10066  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10067  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10068  * Element effects to work.</p><br/>
10069  *
10070  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10071  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10072  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10073  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10074  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10075  * expected results and should be done with care.</p><br/>
10076  *
10077  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10078  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10079 <pre>
10080 Value  Description
10081 -----  -----------------------------
10082 tl     The top left corner
10083 t      The center of the top edge
10084 tr     The top right corner
10085 l      The center of the left edge
10086 r      The center of the right edge
10087 bl     The bottom left corner
10088 b      The center of the bottom edge
10089 br     The bottom right corner
10090 </pre>
10091  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10092  * below are common options that can be passed to any Fx method.</b>
10093  * @cfg {Function} callback A function called when the effect is finished
10094  * @cfg {Object} scope The scope of the effect function
10095  * @cfg {String} easing A valid Easing value for the effect
10096  * @cfg {String} afterCls A css class to apply after the effect
10097  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10098  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10099  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10100  * effects that end with the element being visually hidden, ignored otherwise)
10101  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10102  * a function which returns such a specification that will be applied to the Element after the effect finishes
10103  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10104  * @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
10105  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10106  */
10107 Roo.Fx = {
10108         /**
10109          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10110          * origin for the slide effect.  This function automatically handles wrapping the element with
10111          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10112          * Usage:
10113          *<pre><code>
10114 // default: slide the element in from the top
10115 el.slideIn();
10116
10117 // custom: slide the element in from the right with a 2-second duration
10118 el.slideIn('r', { duration: 2 });
10119
10120 // common config options shown with default values
10121 el.slideIn('t', {
10122     easing: 'easeOut',
10123     duration: .5
10124 });
10125 </code></pre>
10126          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10127          * @param {Object} options (optional) Object literal with any of the Fx config options
10128          * @return {Roo.Element} The Element
10129          */
10130     slideIn : function(anchor, o){
10131         var el = this.getFxEl();
10132         o = o || {};
10133
10134         el.queueFx(o, function(){
10135
10136             anchor = anchor || "t";
10137
10138             // fix display to visibility
10139             this.fixDisplay();
10140
10141             // restore values after effect
10142             var r = this.getFxRestore();
10143             var b = this.getBox();
10144             // fixed size for slide
10145             this.setSize(b);
10146
10147             // wrap if needed
10148             var wrap = this.fxWrap(r.pos, o, "hidden");
10149
10150             var st = this.dom.style;
10151             st.visibility = "visible";
10152             st.position = "absolute";
10153
10154             // clear out temp styles after slide and unwrap
10155             var after = function(){
10156                 el.fxUnwrap(wrap, r.pos, o);
10157                 st.width = r.width;
10158                 st.height = r.height;
10159                 el.afterFx(o);
10160             };
10161             // time to calc the positions
10162             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10163
10164             switch(anchor.toLowerCase()){
10165                 case "t":
10166                     wrap.setSize(b.width, 0);
10167                     st.left = st.bottom = "0";
10168                     a = {height: bh};
10169                 break;
10170                 case "l":
10171                     wrap.setSize(0, b.height);
10172                     st.right = st.top = "0";
10173                     a = {width: bw};
10174                 break;
10175                 case "r":
10176                     wrap.setSize(0, b.height);
10177                     wrap.setX(b.right);
10178                     st.left = st.top = "0";
10179                     a = {width: bw, points: pt};
10180                 break;
10181                 case "b":
10182                     wrap.setSize(b.width, 0);
10183                     wrap.setY(b.bottom);
10184                     st.left = st.top = "0";
10185                     a = {height: bh, points: pt};
10186                 break;
10187                 case "tl":
10188                     wrap.setSize(0, 0);
10189                     st.right = st.bottom = "0";
10190                     a = {width: bw, height: bh};
10191                 break;
10192                 case "bl":
10193                     wrap.setSize(0, 0);
10194                     wrap.setY(b.y+b.height);
10195                     st.right = st.top = "0";
10196                     a = {width: bw, height: bh, points: pt};
10197                 break;
10198                 case "br":
10199                     wrap.setSize(0, 0);
10200                     wrap.setXY([b.right, b.bottom]);
10201                     st.left = st.top = "0";
10202                     a = {width: bw, height: bh, points: pt};
10203                 break;
10204                 case "tr":
10205                     wrap.setSize(0, 0);
10206                     wrap.setX(b.x+b.width);
10207                     st.left = st.bottom = "0";
10208                     a = {width: bw, height: bh, points: pt};
10209                 break;
10210             }
10211             this.dom.style.visibility = "visible";
10212             wrap.show();
10213
10214             arguments.callee.anim = wrap.fxanim(a,
10215                 o,
10216                 'motion',
10217                 .5,
10218                 'easeOut', after);
10219         });
10220         return this;
10221     },
10222     
10223         /**
10224          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10225          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10226          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10227          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10228          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10229          * Usage:
10230          *<pre><code>
10231 // default: slide the element out to the top
10232 el.slideOut();
10233
10234 // custom: slide the element out to the right with a 2-second duration
10235 el.slideOut('r', { duration: 2 });
10236
10237 // common config options shown with default values
10238 el.slideOut('t', {
10239     easing: 'easeOut',
10240     duration: .5,
10241     remove: false,
10242     useDisplay: false
10243 });
10244 </code></pre>
10245          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10246          * @param {Object} options (optional) Object literal with any of the Fx config options
10247          * @return {Roo.Element} The Element
10248          */
10249     slideOut : function(anchor, o){
10250         var el = this.getFxEl();
10251         o = o || {};
10252
10253         el.queueFx(o, function(){
10254
10255             anchor = anchor || "t";
10256
10257             // restore values after effect
10258             var r = this.getFxRestore();
10259             
10260             var b = this.getBox();
10261             // fixed size for slide
10262             this.setSize(b);
10263
10264             // wrap if needed
10265             var wrap = this.fxWrap(r.pos, o, "visible");
10266
10267             var st = this.dom.style;
10268             st.visibility = "visible";
10269             st.position = "absolute";
10270
10271             wrap.setSize(b);
10272
10273             var after = function(){
10274                 if(o.useDisplay){
10275                     el.setDisplayed(false);
10276                 }else{
10277                     el.hide();
10278                 }
10279
10280                 el.fxUnwrap(wrap, r.pos, o);
10281
10282                 st.width = r.width;
10283                 st.height = r.height;
10284
10285                 el.afterFx(o);
10286             };
10287
10288             var a, zero = {to: 0};
10289             switch(anchor.toLowerCase()){
10290                 case "t":
10291                     st.left = st.bottom = "0";
10292                     a = {height: zero};
10293                 break;
10294                 case "l":
10295                     st.right = st.top = "0";
10296                     a = {width: zero};
10297                 break;
10298                 case "r":
10299                     st.left = st.top = "0";
10300                     a = {width: zero, points: {to:[b.right, b.y]}};
10301                 break;
10302                 case "b":
10303                     st.left = st.top = "0";
10304                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10305                 break;
10306                 case "tl":
10307                     st.right = st.bottom = "0";
10308                     a = {width: zero, height: zero};
10309                 break;
10310                 case "bl":
10311                     st.right = st.top = "0";
10312                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10313                 break;
10314                 case "br":
10315                     st.left = st.top = "0";
10316                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10317                 break;
10318                 case "tr":
10319                     st.left = st.bottom = "0";
10320                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10321                 break;
10322             }
10323
10324             arguments.callee.anim = wrap.fxanim(a,
10325                 o,
10326                 'motion',
10327                 .5,
10328                 "easeOut", after);
10329         });
10330         return this;
10331     },
10332
10333         /**
10334          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10335          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10336          * The element must be removed from the DOM using the 'remove' config option if desired.
10337          * Usage:
10338          *<pre><code>
10339 // default
10340 el.puff();
10341
10342 // common config options shown with default values
10343 el.puff({
10344     easing: 'easeOut',
10345     duration: .5,
10346     remove: false,
10347     useDisplay: false
10348 });
10349 </code></pre>
10350          * @param {Object} options (optional) Object literal with any of the Fx config options
10351          * @return {Roo.Element} The Element
10352          */
10353     puff : function(o){
10354         var el = this.getFxEl();
10355         o = o || {};
10356
10357         el.queueFx(o, function(){
10358             this.clearOpacity();
10359             this.show();
10360
10361             // restore values after effect
10362             var r = this.getFxRestore();
10363             var st = this.dom.style;
10364
10365             var after = function(){
10366                 if(o.useDisplay){
10367                     el.setDisplayed(false);
10368                 }else{
10369                     el.hide();
10370                 }
10371
10372                 el.clearOpacity();
10373
10374                 el.setPositioning(r.pos);
10375                 st.width = r.width;
10376                 st.height = r.height;
10377                 st.fontSize = '';
10378                 el.afterFx(o);
10379             };
10380
10381             var width = this.getWidth();
10382             var height = this.getHeight();
10383
10384             arguments.callee.anim = this.fxanim({
10385                     width : {to: this.adjustWidth(width * 2)},
10386                     height : {to: this.adjustHeight(height * 2)},
10387                     points : {by: [-(width * .5), -(height * .5)]},
10388                     opacity : {to: 0},
10389                     fontSize: {to:200, unit: "%"}
10390                 },
10391                 o,
10392                 'motion',
10393                 .5,
10394                 "easeOut", after);
10395         });
10396         return this;
10397     },
10398
10399         /**
10400          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10401          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10402          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10403          * Usage:
10404          *<pre><code>
10405 // default
10406 el.switchOff();
10407
10408 // all config options shown with default values
10409 el.switchOff({
10410     easing: 'easeIn',
10411     duration: .3,
10412     remove: false,
10413     useDisplay: false
10414 });
10415 </code></pre>
10416          * @param {Object} options (optional) Object literal with any of the Fx config options
10417          * @return {Roo.Element} The Element
10418          */
10419     switchOff : function(o){
10420         var el = this.getFxEl();
10421         o = o || {};
10422
10423         el.queueFx(o, function(){
10424             this.clearOpacity();
10425             this.clip();
10426
10427             // restore values after effect
10428             var r = this.getFxRestore();
10429             var st = this.dom.style;
10430
10431             var after = function(){
10432                 if(o.useDisplay){
10433                     el.setDisplayed(false);
10434                 }else{
10435                     el.hide();
10436                 }
10437
10438                 el.clearOpacity();
10439                 el.setPositioning(r.pos);
10440                 st.width = r.width;
10441                 st.height = r.height;
10442
10443                 el.afterFx(o);
10444             };
10445
10446             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10447                 this.clearOpacity();
10448                 (function(){
10449                     this.fxanim({
10450                         height:{to:1},
10451                         points:{by:[0, this.getHeight() * .5]}
10452                     }, o, 'motion', 0.3, 'easeIn', after);
10453                 }).defer(100, this);
10454             });
10455         });
10456         return this;
10457     },
10458
10459     /**
10460      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10461      * changed using the "attr" config option) and then fading back to the original color. If no original
10462      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10463      * Usage:
10464 <pre><code>
10465 // default: highlight background to yellow
10466 el.highlight();
10467
10468 // custom: highlight foreground text to blue for 2 seconds
10469 el.highlight("0000ff", { attr: 'color', duration: 2 });
10470
10471 // common config options shown with default values
10472 el.highlight("ffff9c", {
10473     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10474     endColor: (current color) or "ffffff",
10475     easing: 'easeIn',
10476     duration: 1
10477 });
10478 </code></pre>
10479      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10480      * @param {Object} options (optional) Object literal with any of the Fx config options
10481      * @return {Roo.Element} The Element
10482      */ 
10483     highlight : function(color, o){
10484         var el = this.getFxEl();
10485         o = o || {};
10486
10487         el.queueFx(o, function(){
10488             color = color || "ffff9c";
10489             attr = o.attr || "backgroundColor";
10490
10491             this.clearOpacity();
10492             this.show();
10493
10494             var origColor = this.getColor(attr);
10495             var restoreColor = this.dom.style[attr];
10496             endColor = (o.endColor || origColor) || "ffffff";
10497
10498             var after = function(){
10499                 el.dom.style[attr] = restoreColor;
10500                 el.afterFx(o);
10501             };
10502
10503             var a = {};
10504             a[attr] = {from: color, to: endColor};
10505             arguments.callee.anim = this.fxanim(a,
10506                 o,
10507                 'color',
10508                 1,
10509                 'easeIn', after);
10510         });
10511         return this;
10512     },
10513
10514    /**
10515     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10516     * Usage:
10517 <pre><code>
10518 // default: a single light blue ripple
10519 el.frame();
10520
10521 // custom: 3 red ripples lasting 3 seconds total
10522 el.frame("ff0000", 3, { duration: 3 });
10523
10524 // common config options shown with default values
10525 el.frame("C3DAF9", 1, {
10526     duration: 1 //duration of entire animation (not each individual ripple)
10527     // Note: Easing is not configurable and will be ignored if included
10528 });
10529 </code></pre>
10530     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10531     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10532     * @param {Object} options (optional) Object literal with any of the Fx config options
10533     * @return {Roo.Element} The Element
10534     */
10535     frame : function(color, count, o){
10536         var el = this.getFxEl();
10537         o = o || {};
10538
10539         el.queueFx(o, function(){
10540             color = color || "#C3DAF9";
10541             if(color.length == 6){
10542                 color = "#" + color;
10543             }
10544             count = count || 1;
10545             duration = o.duration || 1;
10546             this.show();
10547
10548             var b = this.getBox();
10549             var animFn = function(){
10550                 var proxy = this.createProxy({
10551
10552                      style:{
10553                         visbility:"hidden",
10554                         position:"absolute",
10555                         "z-index":"35000", // yee haw
10556                         border:"0px solid " + color
10557                      }
10558                   });
10559                 var scale = Roo.isBorderBox ? 2 : 1;
10560                 proxy.animate({
10561                     top:{from:b.y, to:b.y - 20},
10562                     left:{from:b.x, to:b.x - 20},
10563                     borderWidth:{from:0, to:10},
10564                     opacity:{from:1, to:0},
10565                     height:{from:b.height, to:(b.height + (20*scale))},
10566                     width:{from:b.width, to:(b.width + (20*scale))}
10567                 }, duration, function(){
10568                     proxy.remove();
10569                 });
10570                 if(--count > 0){
10571                      animFn.defer((duration/2)*1000, this);
10572                 }else{
10573                     el.afterFx(o);
10574                 }
10575             };
10576             animFn.call(this);
10577         });
10578         return this;
10579     },
10580
10581    /**
10582     * Creates a pause before any subsequent queued effects begin.  If there are
10583     * no effects queued after the pause it will have no effect.
10584     * Usage:
10585 <pre><code>
10586 el.pause(1);
10587 </code></pre>
10588     * @param {Number} seconds The length of time to pause (in seconds)
10589     * @return {Roo.Element} The Element
10590     */
10591     pause : function(seconds){
10592         var el = this.getFxEl();
10593         var o = {};
10594
10595         el.queueFx(o, function(){
10596             setTimeout(function(){
10597                 el.afterFx(o);
10598             }, seconds * 1000);
10599         });
10600         return this;
10601     },
10602
10603    /**
10604     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10605     * using the "endOpacity" config option.
10606     * Usage:
10607 <pre><code>
10608 // default: fade in from opacity 0 to 100%
10609 el.fadeIn();
10610
10611 // custom: fade in from opacity 0 to 75% over 2 seconds
10612 el.fadeIn({ endOpacity: .75, duration: 2});
10613
10614 // common config options shown with default values
10615 el.fadeIn({
10616     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10617     easing: 'easeOut',
10618     duration: .5
10619 });
10620 </code></pre>
10621     * @param {Object} options (optional) Object literal with any of the Fx config options
10622     * @return {Roo.Element} The Element
10623     */
10624     fadeIn : function(o){
10625         var el = this.getFxEl();
10626         o = o || {};
10627         el.queueFx(o, function(){
10628             this.setOpacity(0);
10629             this.fixDisplay();
10630             this.dom.style.visibility = 'visible';
10631             var to = o.endOpacity || 1;
10632             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10633                 o, null, .5, "easeOut", function(){
10634                 if(to == 1){
10635                     this.clearOpacity();
10636                 }
10637                 el.afterFx(o);
10638             });
10639         });
10640         return this;
10641     },
10642
10643    /**
10644     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10645     * using the "endOpacity" config option.
10646     * Usage:
10647 <pre><code>
10648 // default: fade out from the element's current opacity to 0
10649 el.fadeOut();
10650
10651 // custom: fade out from the element's current opacity to 25% over 2 seconds
10652 el.fadeOut({ endOpacity: .25, duration: 2});
10653
10654 // common config options shown with default values
10655 el.fadeOut({
10656     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10657     easing: 'easeOut',
10658     duration: .5
10659     remove: false,
10660     useDisplay: false
10661 });
10662 </code></pre>
10663     * @param {Object} options (optional) Object literal with any of the Fx config options
10664     * @return {Roo.Element} The Element
10665     */
10666     fadeOut : function(o){
10667         var el = this.getFxEl();
10668         o = o || {};
10669         el.queueFx(o, function(){
10670             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10671                 o, null, .5, "easeOut", function(){
10672                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10673                      this.dom.style.display = "none";
10674                 }else{
10675                      this.dom.style.visibility = "hidden";
10676                 }
10677                 this.clearOpacity();
10678                 el.afterFx(o);
10679             });
10680         });
10681         return this;
10682     },
10683
10684    /**
10685     * Animates the transition of an element's dimensions from a starting height/width
10686     * to an ending height/width.
10687     * Usage:
10688 <pre><code>
10689 // change height and width to 100x100 pixels
10690 el.scale(100, 100);
10691
10692 // common config options shown with default values.  The height and width will default to
10693 // the element's existing values if passed as null.
10694 el.scale(
10695     [element's width],
10696     [element's height], {
10697     easing: 'easeOut',
10698     duration: .35
10699 });
10700 </code></pre>
10701     * @param {Number} width  The new width (pass undefined to keep the original width)
10702     * @param {Number} height  The new height (pass undefined to keep the original height)
10703     * @param {Object} options (optional) Object literal with any of the Fx config options
10704     * @return {Roo.Element} The Element
10705     */
10706     scale : function(w, h, o){
10707         this.shift(Roo.apply({}, o, {
10708             width: w,
10709             height: h
10710         }));
10711         return this;
10712     },
10713
10714    /**
10715     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10716     * Any of these properties not specified in the config object will not be changed.  This effect 
10717     * requires that at least one new dimension, position or opacity setting must be passed in on
10718     * the config object in order for the function to have any effect.
10719     * Usage:
10720 <pre><code>
10721 // slide the element horizontally to x position 200 while changing the height and opacity
10722 el.shift({ x: 200, height: 50, opacity: .8 });
10723
10724 // common config options shown with default values.
10725 el.shift({
10726     width: [element's width],
10727     height: [element's height],
10728     x: [element's x position],
10729     y: [element's y position],
10730     opacity: [element's opacity],
10731     easing: 'easeOut',
10732     duration: .35
10733 });
10734 </code></pre>
10735     * @param {Object} options  Object literal with any of the Fx config options
10736     * @return {Roo.Element} The Element
10737     */
10738     shift : function(o){
10739         var el = this.getFxEl();
10740         o = o || {};
10741         el.queueFx(o, function(){
10742             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10743             if(w !== undefined){
10744                 a.width = {to: this.adjustWidth(w)};
10745             }
10746             if(h !== undefined){
10747                 a.height = {to: this.adjustHeight(h)};
10748             }
10749             if(x !== undefined || y !== undefined){
10750                 a.points = {to: [
10751                     x !== undefined ? x : this.getX(),
10752                     y !== undefined ? y : this.getY()
10753                 ]};
10754             }
10755             if(op !== undefined){
10756                 a.opacity = {to: op};
10757             }
10758             if(o.xy !== undefined){
10759                 a.points = {to: o.xy};
10760             }
10761             arguments.callee.anim = this.fxanim(a,
10762                 o, 'motion', .35, "easeOut", function(){
10763                 el.afterFx(o);
10764             });
10765         });
10766         return this;
10767     },
10768
10769         /**
10770          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10771          * ending point of the effect.
10772          * Usage:
10773          *<pre><code>
10774 // default: slide the element downward while fading out
10775 el.ghost();
10776
10777 // custom: slide the element out to the right with a 2-second duration
10778 el.ghost('r', { duration: 2 });
10779
10780 // common config options shown with default values
10781 el.ghost('b', {
10782     easing: 'easeOut',
10783     duration: .5
10784     remove: false,
10785     useDisplay: false
10786 });
10787 </code></pre>
10788          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10789          * @param {Object} options (optional) Object literal with any of the Fx config options
10790          * @return {Roo.Element} The Element
10791          */
10792     ghost : function(anchor, o){
10793         var el = this.getFxEl();
10794         o = o || {};
10795
10796         el.queueFx(o, function(){
10797             anchor = anchor || "b";
10798
10799             // restore values after effect
10800             var r = this.getFxRestore();
10801             var w = this.getWidth(),
10802                 h = this.getHeight();
10803
10804             var st = this.dom.style;
10805
10806             var after = function(){
10807                 if(o.useDisplay){
10808                     el.setDisplayed(false);
10809                 }else{
10810                     el.hide();
10811                 }
10812
10813                 el.clearOpacity();
10814                 el.setPositioning(r.pos);
10815                 st.width = r.width;
10816                 st.height = r.height;
10817
10818                 el.afterFx(o);
10819             };
10820
10821             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10822             switch(anchor.toLowerCase()){
10823                 case "t":
10824                     pt.by = [0, -h];
10825                 break;
10826                 case "l":
10827                     pt.by = [-w, 0];
10828                 break;
10829                 case "r":
10830                     pt.by = [w, 0];
10831                 break;
10832                 case "b":
10833                     pt.by = [0, h];
10834                 break;
10835                 case "tl":
10836                     pt.by = [-w, -h];
10837                 break;
10838                 case "bl":
10839                     pt.by = [-w, h];
10840                 break;
10841                 case "br":
10842                     pt.by = [w, h];
10843                 break;
10844                 case "tr":
10845                     pt.by = [w, -h];
10846                 break;
10847             }
10848
10849             arguments.callee.anim = this.fxanim(a,
10850                 o,
10851                 'motion',
10852                 .5,
10853                 "easeOut", after);
10854         });
10855         return this;
10856     },
10857
10858         /**
10859          * Ensures that all effects queued after syncFx is called on the element are
10860          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10861          * @return {Roo.Element} The Element
10862          */
10863     syncFx : function(){
10864         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10865             block : false,
10866             concurrent : true,
10867             stopFx : false
10868         });
10869         return this;
10870     },
10871
10872         /**
10873          * Ensures that all effects queued after sequenceFx is called on the element are
10874          * run in sequence.  This is the opposite of {@link #syncFx}.
10875          * @return {Roo.Element} The Element
10876          */
10877     sequenceFx : function(){
10878         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10879             block : false,
10880             concurrent : false,
10881             stopFx : false
10882         });
10883         return this;
10884     },
10885
10886         /* @private */
10887     nextFx : function(){
10888         var ef = this.fxQueue[0];
10889         if(ef){
10890             ef.call(this);
10891         }
10892     },
10893
10894         /**
10895          * Returns true if the element has any effects actively running or queued, else returns false.
10896          * @return {Boolean} True if element has active effects, else false
10897          */
10898     hasActiveFx : function(){
10899         return this.fxQueue && this.fxQueue[0];
10900     },
10901
10902         /**
10903          * Stops any running effects and clears the element's internal effects queue if it contains
10904          * any additional effects that haven't started yet.
10905          * @return {Roo.Element} The Element
10906          */
10907     stopFx : function(){
10908         if(this.hasActiveFx()){
10909             var cur = this.fxQueue[0];
10910             if(cur && cur.anim && cur.anim.isAnimated()){
10911                 this.fxQueue = [cur]; // clear out others
10912                 cur.anim.stop(true);
10913             }
10914         }
10915         return this;
10916     },
10917
10918         /* @private */
10919     beforeFx : function(o){
10920         if(this.hasActiveFx() && !o.concurrent){
10921            if(o.stopFx){
10922                this.stopFx();
10923                return true;
10924            }
10925            return false;
10926         }
10927         return true;
10928     },
10929
10930         /**
10931          * Returns true if the element is currently blocking so that no other effect can be queued
10932          * until this effect is finished, else returns false if blocking is not set.  This is commonly
10933          * used to ensure that an effect initiated by a user action runs to completion prior to the
10934          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
10935          * @return {Boolean} True if blocking, else false
10936          */
10937     hasFxBlock : function(){
10938         var q = this.fxQueue;
10939         return q && q[0] && q[0].block;
10940     },
10941
10942         /* @private */
10943     queueFx : function(o, fn){
10944         if(!this.fxQueue){
10945             this.fxQueue = [];
10946         }
10947         if(!this.hasFxBlock()){
10948             Roo.applyIf(o, this.fxDefaults);
10949             if(!o.concurrent){
10950                 var run = this.beforeFx(o);
10951                 fn.block = o.block;
10952                 this.fxQueue.push(fn);
10953                 if(run){
10954                     this.nextFx();
10955                 }
10956             }else{
10957                 fn.call(this);
10958             }
10959         }
10960         return this;
10961     },
10962
10963         /* @private */
10964     fxWrap : function(pos, o, vis){
10965         var wrap;
10966         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
10967             var wrapXY;
10968             if(o.fixPosition){
10969                 wrapXY = this.getXY();
10970             }
10971             var div = document.createElement("div");
10972             div.style.visibility = vis;
10973             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
10974             wrap.setPositioning(pos);
10975             if(wrap.getStyle("position") == "static"){
10976                 wrap.position("relative");
10977             }
10978             this.clearPositioning('auto');
10979             wrap.clip();
10980             wrap.dom.appendChild(this.dom);
10981             if(wrapXY){
10982                 wrap.setXY(wrapXY);
10983             }
10984         }
10985         return wrap;
10986     },
10987
10988         /* @private */
10989     fxUnwrap : function(wrap, pos, o){
10990         this.clearPositioning();
10991         this.setPositioning(pos);
10992         if(!o.wrap){
10993             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
10994             wrap.remove();
10995         }
10996     },
10997
10998         /* @private */
10999     getFxRestore : function(){
11000         var st = this.dom.style;
11001         return {pos: this.getPositioning(), width: st.width, height : st.height};
11002     },
11003
11004         /* @private */
11005     afterFx : function(o){
11006         if(o.afterStyle){
11007             this.applyStyles(o.afterStyle);
11008         }
11009         if(o.afterCls){
11010             this.addClass(o.afterCls);
11011         }
11012         if(o.remove === true){
11013             this.remove();
11014         }
11015         Roo.callback(o.callback, o.scope, [this]);
11016         if(!o.concurrent){
11017             this.fxQueue.shift();
11018             this.nextFx();
11019         }
11020     },
11021
11022         /* @private */
11023     getFxEl : function(){ // support for composite element fx
11024         return Roo.get(this.dom);
11025     },
11026
11027         /* @private */
11028     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11029         animType = animType || 'run';
11030         opt = opt || {};
11031         var anim = Roo.lib.Anim[animType](
11032             this.dom, args,
11033             (opt.duration || defaultDur) || .35,
11034             (opt.easing || defaultEase) || 'easeOut',
11035             function(){
11036                 Roo.callback(cb, this);
11037             },
11038             this
11039         );
11040         opt.anim = anim;
11041         return anim;
11042     }
11043 };
11044
11045 // backwords compat
11046 Roo.Fx.resize = Roo.Fx.scale;
11047
11048 //When included, Roo.Fx is automatically applied to Element so that all basic
11049 //effects are available directly via the Element API
11050 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11051  * Based on:
11052  * Ext JS Library 1.1.1
11053  * Copyright(c) 2006-2007, Ext JS, LLC.
11054  *
11055  * Originally Released Under LGPL - original licence link has changed is not relivant.
11056  *
11057  * Fork - LGPL
11058  * <script type="text/javascript">
11059  */
11060
11061
11062 /**
11063  * @class Roo.CompositeElement
11064  * Standard composite class. Creates a Roo.Element for every element in the collection.
11065  * <br><br>
11066  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11067  * actions will be performed on all the elements in this collection.</b>
11068  * <br><br>
11069  * All methods return <i>this</i> and can be chained.
11070  <pre><code>
11071  var els = Roo.select("#some-el div.some-class", true);
11072  // or select directly from an existing element
11073  var el = Roo.get('some-el');
11074  el.select('div.some-class', true);
11075
11076  els.setWidth(100); // all elements become 100 width
11077  els.hide(true); // all elements fade out and hide
11078  // or
11079  els.setWidth(100).hide(true);
11080  </code></pre>
11081  */
11082 Roo.CompositeElement = function(els){
11083     this.elements = [];
11084     this.addElements(els);
11085 };
11086 Roo.CompositeElement.prototype = {
11087     isComposite: true,
11088     addElements : function(els){
11089         if(!els) {
11090             return this;
11091         }
11092         if(typeof els == "string"){
11093             els = Roo.Element.selectorFunction(els);
11094         }
11095         var yels = this.elements;
11096         var index = yels.length-1;
11097         for(var i = 0, len = els.length; i < len; i++) {
11098                 yels[++index] = Roo.get(els[i]);
11099         }
11100         return this;
11101     },
11102
11103     /**
11104     * Clears this composite and adds the elements returned by the passed selector.
11105     * @param {String/Array} els A string CSS selector, an array of elements or an element
11106     * @return {CompositeElement} this
11107     */
11108     fill : function(els){
11109         this.elements = [];
11110         this.add(els);
11111         return this;
11112     },
11113
11114     /**
11115     * Filters this composite to only elements that match the passed selector.
11116     * @param {String} selector A string CSS selector
11117     * @param {Boolean} inverse return inverse filter (not matches)
11118     * @return {CompositeElement} this
11119     */
11120     filter : function(selector, inverse){
11121         var els = [];
11122         inverse = inverse || false;
11123         this.each(function(el){
11124             var match = inverse ? !el.is(selector) : el.is(selector);
11125             if(match){
11126                 els[els.length] = el.dom;
11127             }
11128         });
11129         this.fill(els);
11130         return this;
11131     },
11132
11133     invoke : function(fn, args){
11134         var els = this.elements;
11135         for(var i = 0, len = els.length; i < len; i++) {
11136                 Roo.Element.prototype[fn].apply(els[i], args);
11137         }
11138         return this;
11139     },
11140     /**
11141     * Adds elements to this composite.
11142     * @param {String/Array} els A string CSS selector, an array of elements or an element
11143     * @return {CompositeElement} this
11144     */
11145     add : function(els){
11146         if(typeof els == "string"){
11147             this.addElements(Roo.Element.selectorFunction(els));
11148         }else if(els.length !== undefined){
11149             this.addElements(els);
11150         }else{
11151             this.addElements([els]);
11152         }
11153         return this;
11154     },
11155     /**
11156     * Calls the passed function passing (el, this, index) for each element in this composite.
11157     * @param {Function} fn The function to call
11158     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11159     * @return {CompositeElement} this
11160     */
11161     each : function(fn, scope){
11162         var els = this.elements;
11163         for(var i = 0, len = els.length; i < len; i++){
11164             if(fn.call(scope || els[i], els[i], this, i) === false) {
11165                 break;
11166             }
11167         }
11168         return this;
11169     },
11170
11171     /**
11172      * Returns the Element object at the specified index
11173      * @param {Number} index
11174      * @return {Roo.Element}
11175      */
11176     item : function(index){
11177         return this.elements[index] || null;
11178     },
11179
11180     /**
11181      * Returns the first Element
11182      * @return {Roo.Element}
11183      */
11184     first : function(){
11185         return this.item(0);
11186     },
11187
11188     /**
11189      * Returns the last Element
11190      * @return {Roo.Element}
11191      */
11192     last : function(){
11193         return this.item(this.elements.length-1);
11194     },
11195
11196     /**
11197      * Returns the number of elements in this composite
11198      * @return Number
11199      */
11200     getCount : function(){
11201         return this.elements.length;
11202     },
11203
11204     /**
11205      * Returns true if this composite contains the passed element
11206      * @return Boolean
11207      */
11208     contains : function(el){
11209         return this.indexOf(el) !== -1;
11210     },
11211
11212     /**
11213      * Returns true if this composite contains the passed element
11214      * @return Boolean
11215      */
11216     indexOf : function(el){
11217         return this.elements.indexOf(Roo.get(el));
11218     },
11219
11220
11221     /**
11222     * Removes the specified element(s).
11223     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11224     * or an array of any of those.
11225     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11226     * @return {CompositeElement} this
11227     */
11228     removeElement : function(el, removeDom){
11229         if(el instanceof Array){
11230             for(var i = 0, len = el.length; i < len; i++){
11231                 this.removeElement(el[i]);
11232             }
11233             return this;
11234         }
11235         var index = typeof el == 'number' ? el : this.indexOf(el);
11236         if(index !== -1){
11237             if(removeDom){
11238                 var d = this.elements[index];
11239                 if(d.dom){
11240                     d.remove();
11241                 }else{
11242                     d.parentNode.removeChild(d);
11243                 }
11244             }
11245             this.elements.splice(index, 1);
11246         }
11247         return this;
11248     },
11249
11250     /**
11251     * Replaces the specified element with the passed element.
11252     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11253     * to replace.
11254     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11255     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11256     * @return {CompositeElement} this
11257     */
11258     replaceElement : function(el, replacement, domReplace){
11259         var index = typeof el == 'number' ? el : this.indexOf(el);
11260         if(index !== -1){
11261             if(domReplace){
11262                 this.elements[index].replaceWith(replacement);
11263             }else{
11264                 this.elements.splice(index, 1, Roo.get(replacement))
11265             }
11266         }
11267         return this;
11268     },
11269
11270     /**
11271      * Removes all elements.
11272      */
11273     clear : function(){
11274         this.elements = [];
11275     }
11276 };
11277 (function(){
11278     Roo.CompositeElement.createCall = function(proto, fnName){
11279         if(!proto[fnName]){
11280             proto[fnName] = function(){
11281                 return this.invoke(fnName, arguments);
11282             };
11283         }
11284     };
11285     for(var fnName in Roo.Element.prototype){
11286         if(typeof Roo.Element.prototype[fnName] == "function"){
11287             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11288         }
11289     };
11290 })();
11291 /*
11292  * Based on:
11293  * Ext JS Library 1.1.1
11294  * Copyright(c) 2006-2007, Ext JS, LLC.
11295  *
11296  * Originally Released Under LGPL - original licence link has changed is not relivant.
11297  *
11298  * Fork - LGPL
11299  * <script type="text/javascript">
11300  */
11301
11302 /**
11303  * @class Roo.CompositeElementLite
11304  * @extends Roo.CompositeElement
11305  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11306  <pre><code>
11307  var els = Roo.select("#some-el div.some-class");
11308  // or select directly from an existing element
11309  var el = Roo.get('some-el');
11310  el.select('div.some-class');
11311
11312  els.setWidth(100); // all elements become 100 width
11313  els.hide(true); // all elements fade out and hide
11314  // or
11315  els.setWidth(100).hide(true);
11316  </code></pre><br><br>
11317  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11318  * actions will be performed on all the elements in this collection.</b>
11319  */
11320 Roo.CompositeElementLite = function(els){
11321     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11322     this.el = new Roo.Element.Flyweight();
11323 };
11324 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11325     addElements : function(els){
11326         if(els){
11327             if(els instanceof Array){
11328                 this.elements = this.elements.concat(els);
11329             }else{
11330                 var yels = this.elements;
11331                 var index = yels.length-1;
11332                 for(var i = 0, len = els.length; i < len; i++) {
11333                     yels[++index] = els[i];
11334                 }
11335             }
11336         }
11337         return this;
11338     },
11339     invoke : function(fn, args){
11340         var els = this.elements;
11341         var el = this.el;
11342         for(var i = 0, len = els.length; i < len; i++) {
11343             el.dom = els[i];
11344                 Roo.Element.prototype[fn].apply(el, args);
11345         }
11346         return this;
11347     },
11348     /**
11349      * Returns a flyweight Element of the dom element object at the specified index
11350      * @param {Number} index
11351      * @return {Roo.Element}
11352      */
11353     item : function(index){
11354         if(!this.elements[index]){
11355             return null;
11356         }
11357         this.el.dom = this.elements[index];
11358         return this.el;
11359     },
11360
11361     // fixes scope with flyweight
11362     addListener : function(eventName, handler, scope, opt){
11363         var els = this.elements;
11364         for(var i = 0, len = els.length; i < len; i++) {
11365             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11366         }
11367         return this;
11368     },
11369
11370     /**
11371     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11372     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11373     * a reference to the dom node, use el.dom.</b>
11374     * @param {Function} fn The function to call
11375     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11376     * @return {CompositeElement} this
11377     */
11378     each : function(fn, scope){
11379         var els = this.elements;
11380         var el = this.el;
11381         for(var i = 0, len = els.length; i < len; i++){
11382             el.dom = els[i];
11383                 if(fn.call(scope || el, el, this, i) === false){
11384                 break;
11385             }
11386         }
11387         return this;
11388     },
11389
11390     indexOf : function(el){
11391         return this.elements.indexOf(Roo.getDom(el));
11392     },
11393
11394     replaceElement : function(el, replacement, domReplace){
11395         var index = typeof el == 'number' ? el : this.indexOf(el);
11396         if(index !== -1){
11397             replacement = Roo.getDom(replacement);
11398             if(domReplace){
11399                 var d = this.elements[index];
11400                 d.parentNode.insertBefore(replacement, d);
11401                 d.parentNode.removeChild(d);
11402             }
11403             this.elements.splice(index, 1, replacement);
11404         }
11405         return this;
11406     }
11407 });
11408 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11409
11410 /*
11411  * Based on:
11412  * Ext JS Library 1.1.1
11413  * Copyright(c) 2006-2007, Ext JS, LLC.
11414  *
11415  * Originally Released Under LGPL - original licence link has changed is not relivant.
11416  *
11417  * Fork - LGPL
11418  * <script type="text/javascript">
11419  */
11420
11421  
11422
11423 /**
11424  * @class Roo.data.Connection
11425  * @extends Roo.util.Observable
11426  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11427  * either to a configured URL, or to a URL specified at request time.<br><br>
11428  * <p>
11429  * Requests made by this class are asynchronous, and will return immediately. No data from
11430  * the server will be available to the statement immediately following the {@link #request} call.
11431  * To process returned data, use a callback in the request options object, or an event listener.</p><br>
11432  * <p>
11433  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11434  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11435  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11436  * property and, if present, the IFRAME's XML document as the responseXML property.</p><br>
11437  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11438  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11439  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11440  * standard DOM methods.
11441  * @constructor
11442  * @param {Object} config a configuration object.
11443  */
11444 Roo.data.Connection = function(config){
11445     Roo.apply(this, config);
11446     this.addEvents({
11447         /**
11448          * @event beforerequest
11449          * Fires before a network request is made to retrieve a data object.
11450          * @param {Connection} conn This Connection object.
11451          * @param {Object} options The options config object passed to the {@link #request} method.
11452          */
11453         "beforerequest" : true,
11454         /**
11455          * @event requestcomplete
11456          * Fires if the request was successfully completed.
11457          * @param {Connection} conn This Connection object.
11458          * @param {Object} response The XHR object containing the response data.
11459          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11460          * @param {Object} options The options config object passed to the {@link #request} method.
11461          */
11462         "requestcomplete" : true,
11463         /**
11464          * @event requestexception
11465          * Fires if an error HTTP status was returned from the server.
11466          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11467          * @param {Connection} conn This Connection object.
11468          * @param {Object} response The XHR object containing the response data.
11469          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11470          * @param {Object} options The options config object passed to the {@link #request} method.
11471          */
11472         "requestexception" : true
11473     });
11474     Roo.data.Connection.superclass.constructor.call(this);
11475 };
11476
11477 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11478     /**
11479      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11480      */
11481     /**
11482      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11483      * extra parameters to each request made by this object. (defaults to undefined)
11484      */
11485     /**
11486      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11487      *  to each request made by this object. (defaults to undefined)
11488      */
11489     /**
11490      * @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)
11491      */
11492     /**
11493      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11494      */
11495     timeout : 30000,
11496     /**
11497      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11498      * @type Boolean
11499      */
11500     autoAbort:false,
11501
11502     /**
11503      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11504      * @type Boolean
11505      */
11506     disableCaching: true,
11507
11508     /**
11509      * Sends an HTTP request to a remote server.
11510      * @param {Object} options An object which may contain the following properties:<ul>
11511      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11512      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11513      * request, a url encoded string or a function to call to get either.</li>
11514      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11515      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11516      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11517      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11518      * <li>options {Object} The parameter to the request call.</li>
11519      * <li>success {Boolean} True if the request succeeded.</li>
11520      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11521      * </ul></li>
11522      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11523      * The callback is passed the following parameters:<ul>
11524      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11525      * <li>options {Object} The parameter to the request call.</li>
11526      * </ul></li>
11527      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11528      * The callback is passed the following parameters:<ul>
11529      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11530      * <li>options {Object} The parameter to the request call.</li>
11531      * </ul></li>
11532      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11533      * for the callback function. Defaults to the browser window.</li>
11534      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11535      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11536      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11537      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11538      * params for the post data. Any params will be appended to the URL.</li>
11539      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11540      * </ul>
11541      * @return {Number} transactionId
11542      */
11543     request : function(o){
11544         if(this.fireEvent("beforerequest", this, o) !== false){
11545             var p = o.params;
11546
11547             if(typeof p == "function"){
11548                 p = p.call(o.scope||window, o);
11549             }
11550             if(typeof p == "object"){
11551                 p = Roo.urlEncode(o.params);
11552             }
11553             if(this.extraParams){
11554                 var extras = Roo.urlEncode(this.extraParams);
11555                 p = p ? (p + '&' + extras) : extras;
11556             }
11557
11558             var url = o.url || this.url;
11559             if(typeof url == 'function'){
11560                 url = url.call(o.scope||window, o);
11561             }
11562
11563             if(o.form){
11564                 var form = Roo.getDom(o.form);
11565                 url = url || form.action;
11566
11567                 var enctype = form.getAttribute("enctype");
11568                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11569                     return this.doFormUpload(o, p, url);
11570                 }
11571                 var f = Roo.lib.Ajax.serializeForm(form);
11572                 p = p ? (p + '&' + f) : f;
11573             }
11574
11575             var hs = o.headers;
11576             if(this.defaultHeaders){
11577                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11578                 if(!o.headers){
11579                     o.headers = hs;
11580                 }
11581             }
11582
11583             var cb = {
11584                 success: this.handleResponse,
11585                 failure: this.handleFailure,
11586                 scope: this,
11587                 argument: {options: o},
11588                 timeout : o.timeout || this.timeout
11589             };
11590
11591             var method = o.method||this.method||(p ? "POST" : "GET");
11592
11593             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11594                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11595             }
11596
11597             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11598                 if(o.autoAbort){
11599                     this.abort();
11600                 }
11601             }else if(this.autoAbort !== false){
11602                 this.abort();
11603             }
11604
11605             if((method == 'GET' && p) || o.xmlData){
11606                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11607                 p = '';
11608             }
11609             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11610             return this.transId;
11611         }else{
11612             Roo.callback(o.callback, o.scope, [o, null, null]);
11613             return null;
11614         }
11615     },
11616
11617     /**
11618      * Determine whether this object has a request outstanding.
11619      * @param {Number} transactionId (Optional) defaults to the last transaction
11620      * @return {Boolean} True if there is an outstanding request.
11621      */
11622     isLoading : function(transId){
11623         if(transId){
11624             return Roo.lib.Ajax.isCallInProgress(transId);
11625         }else{
11626             return this.transId ? true : false;
11627         }
11628     },
11629
11630     /**
11631      * Aborts any outstanding request.
11632      * @param {Number} transactionId (Optional) defaults to the last transaction
11633      */
11634     abort : function(transId){
11635         if(transId || this.isLoading()){
11636             Roo.lib.Ajax.abort(transId || this.transId);
11637         }
11638     },
11639
11640     // private
11641     handleResponse : function(response){
11642         this.transId = false;
11643         var options = response.argument.options;
11644         response.argument = options ? options.argument : null;
11645         this.fireEvent("requestcomplete", this, response, options);
11646         Roo.callback(options.success, options.scope, [response, options]);
11647         Roo.callback(options.callback, options.scope, [options, true, response]);
11648     },
11649
11650     // private
11651     handleFailure : function(response, e){
11652         this.transId = false;
11653         var options = response.argument.options;
11654         response.argument = options ? options.argument : null;
11655         this.fireEvent("requestexception", this, response, options, e);
11656         Roo.callback(options.failure, options.scope, [response, options]);
11657         Roo.callback(options.callback, options.scope, [options, false, response]);
11658     },
11659
11660     // private
11661     doFormUpload : function(o, ps, url){
11662         var id = Roo.id();
11663         var frame = document.createElement('iframe');
11664         frame.id = id;
11665         frame.name = id;
11666         frame.className = 'x-hidden';
11667         if(Roo.isIE){
11668             frame.src = Roo.SSL_SECURE_URL;
11669         }
11670         document.body.appendChild(frame);
11671
11672         if(Roo.isIE){
11673            document.frames[id].name = id;
11674         }
11675
11676         var form = Roo.getDom(o.form);
11677         form.target = id;
11678         form.method = 'POST';
11679         form.enctype = form.encoding = 'multipart/form-data';
11680         if(url){
11681             form.action = url;
11682         }
11683
11684         var hiddens, hd;
11685         if(ps){ // add dynamic params
11686             hiddens = [];
11687             ps = Roo.urlDecode(ps, false);
11688             for(var k in ps){
11689                 if(ps.hasOwnProperty(k)){
11690                     hd = document.createElement('input');
11691                     hd.type = 'hidden';
11692                     hd.name = k;
11693                     hd.value = ps[k];
11694                     form.appendChild(hd);
11695                     hiddens.push(hd);
11696                 }
11697             }
11698         }
11699
11700         function cb(){
11701             var r = {  // bogus response object
11702                 responseText : '',
11703                 responseXML : null
11704             };
11705
11706             r.argument = o ? o.argument : null;
11707
11708             try { //
11709                 var doc;
11710                 if(Roo.isIE){
11711                     doc = frame.contentWindow.document;
11712                 }else {
11713                     doc = (frame.contentDocument || window.frames[id].document);
11714                 }
11715                 if(doc && doc.body){
11716                     r.responseText = doc.body.innerHTML;
11717                 }
11718                 if(doc && doc.XMLDocument){
11719                     r.responseXML = doc.XMLDocument;
11720                 }else {
11721                     r.responseXML = doc;
11722                 }
11723             }
11724             catch(e) {
11725                 // ignore
11726             }
11727
11728             Roo.EventManager.removeListener(frame, 'load', cb, this);
11729
11730             this.fireEvent("requestcomplete", this, r, o);
11731             Roo.callback(o.success, o.scope, [r, o]);
11732             Roo.callback(o.callback, o.scope, [o, true, r]);
11733
11734             setTimeout(function(){document.body.removeChild(frame);}, 100);
11735         }
11736
11737         Roo.EventManager.on(frame, 'load', cb, this);
11738         form.submit();
11739
11740         if(hiddens){ // remove dynamic params
11741             for(var i = 0, len = hiddens.length; i < len; i++){
11742                 form.removeChild(hiddens[i]);
11743             }
11744         }
11745     }
11746 });
11747 /*
11748  * Based on:
11749  * Ext JS Library 1.1.1
11750  * Copyright(c) 2006-2007, Ext JS, LLC.
11751  *
11752  * Originally Released Under LGPL - original licence link has changed is not relivant.
11753  *
11754  * Fork - LGPL
11755  * <script type="text/javascript">
11756  */
11757  
11758 /**
11759  * Global Ajax request class.
11760  * 
11761  * @class Roo.Ajax
11762  * @extends Roo.data.Connection
11763  * @static
11764  * 
11765  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11766  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11767  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11768  * @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)
11769  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11770  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11771  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11772  */
11773 Roo.Ajax = new Roo.data.Connection({
11774     // fix up the docs
11775     /**
11776      * @scope Roo.Ajax
11777      * @type {Boolear} 
11778      */
11779     autoAbort : false,
11780
11781     /**
11782      * Serialize the passed form into a url encoded string
11783      * @scope Roo.Ajax
11784      * @param {String/HTMLElement} form
11785      * @return {String}
11786      */
11787     serializeForm : function(form){
11788         return Roo.lib.Ajax.serializeForm(form);
11789     }
11790 });/*
11791  * Based on:
11792  * Ext JS Library 1.1.1
11793  * Copyright(c) 2006-2007, Ext JS, LLC.
11794  *
11795  * Originally Released Under LGPL - original licence link has changed is not relivant.
11796  *
11797  * Fork - LGPL
11798  * <script type="text/javascript">
11799  */
11800
11801  
11802 /**
11803  * @class Roo.UpdateManager
11804  * @extends Roo.util.Observable
11805  * Provides AJAX-style update for Element object.<br><br>
11806  * Usage:<br>
11807  * <pre><code>
11808  * // Get it from a Roo.Element object
11809  * var el = Roo.get("foo");
11810  * var mgr = el.getUpdateManager();
11811  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
11812  * ...
11813  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
11814  * <br>
11815  * // or directly (returns the same UpdateManager instance)
11816  * var mgr = new Roo.UpdateManager("myElementId");
11817  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
11818  * mgr.on("update", myFcnNeedsToKnow);
11819  * <br>
11820    // short handed call directly from the element object
11821    Roo.get("foo").load({
11822         url: "bar.php",
11823         scripts:true,
11824         params: "for=bar",
11825         text: "Loading Foo..."
11826    });
11827  * </code></pre>
11828  * @constructor
11829  * Create new UpdateManager directly.
11830  * @param {String/HTMLElement/Roo.Element} el The element to update
11831  * @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).
11832  */
11833 Roo.UpdateManager = function(el, forceNew){
11834     el = Roo.get(el);
11835     if(!forceNew && el.updateManager){
11836         return el.updateManager;
11837     }
11838     /**
11839      * The Element object
11840      * @type Roo.Element
11841      */
11842     this.el = el;
11843     /**
11844      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
11845      * @type String
11846      */
11847     this.defaultUrl = null;
11848
11849     this.addEvents({
11850         /**
11851          * @event beforeupdate
11852          * Fired before an update is made, return false from your handler and the update is cancelled.
11853          * @param {Roo.Element} el
11854          * @param {String/Object/Function} url
11855          * @param {String/Object} params
11856          */
11857         "beforeupdate": true,
11858         /**
11859          * @event update
11860          * Fired after successful update is made.
11861          * @param {Roo.Element} el
11862          * @param {Object} oResponseObject The response Object
11863          */
11864         "update": true,
11865         /**
11866          * @event failure
11867          * Fired on update failure.
11868          * @param {Roo.Element} el
11869          * @param {Object} oResponseObject The response Object
11870          */
11871         "failure": true
11872     });
11873     var d = Roo.UpdateManager.defaults;
11874     /**
11875      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
11876      * @type String
11877      */
11878     this.sslBlankUrl = d.sslBlankUrl;
11879     /**
11880      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
11881      * @type Boolean
11882      */
11883     this.disableCaching = d.disableCaching;
11884     /**
11885      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
11886      * @type String
11887      */
11888     this.indicatorText = d.indicatorText;
11889     /**
11890      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
11891      * @type String
11892      */
11893     this.showLoadIndicator = d.showLoadIndicator;
11894     /**
11895      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
11896      * @type Number
11897      */
11898     this.timeout = d.timeout;
11899
11900     /**
11901      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
11902      * @type Boolean
11903      */
11904     this.loadScripts = d.loadScripts;
11905
11906     /**
11907      * Transaction object of current executing transaction
11908      */
11909     this.transaction = null;
11910
11911     /**
11912      * @private
11913      */
11914     this.autoRefreshProcId = null;
11915     /**
11916      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
11917      * @type Function
11918      */
11919     this.refreshDelegate = this.refresh.createDelegate(this);
11920     /**
11921      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
11922      * @type Function
11923      */
11924     this.updateDelegate = this.update.createDelegate(this);
11925     /**
11926      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
11927      * @type Function
11928      */
11929     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
11930     /**
11931      * @private
11932      */
11933     this.successDelegate = this.processSuccess.createDelegate(this);
11934     /**
11935      * @private
11936      */
11937     this.failureDelegate = this.processFailure.createDelegate(this);
11938
11939     if(!this.renderer){
11940      /**
11941       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
11942       */
11943     this.renderer = new Roo.UpdateManager.BasicRenderer();
11944     }
11945     
11946     Roo.UpdateManager.superclass.constructor.call(this);
11947 };
11948
11949 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
11950     /**
11951      * Get the Element this UpdateManager is bound to
11952      * @return {Roo.Element} The element
11953      */
11954     getEl : function(){
11955         return this.el;
11956     },
11957     /**
11958      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
11959      * @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:
11960 <pre><code>
11961 um.update({<br/>
11962     url: "your-url.php",<br/>
11963     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
11964     callback: yourFunction,<br/>
11965     scope: yourObject, //(optional scope)  <br/>
11966     discardUrl: false, <br/>
11967     nocache: false,<br/>
11968     text: "Loading...",<br/>
11969     timeout: 30,<br/>
11970     scripts: false<br/>
11971 });
11972 </code></pre>
11973      * The only required property is url. The optional properties nocache, text and scripts
11974      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
11975      * @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}
11976      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
11977      * @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.
11978      */
11979     update : function(url, params, callback, discardUrl){
11980         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
11981             var method = this.method,
11982                 cfg;
11983             if(typeof url == "object"){ // must be config object
11984                 cfg = url;
11985                 url = cfg.url;
11986                 params = params || cfg.params;
11987                 callback = callback || cfg.callback;
11988                 discardUrl = discardUrl || cfg.discardUrl;
11989                 if(callback && cfg.scope){
11990                     callback = callback.createDelegate(cfg.scope);
11991                 }
11992                 if(typeof cfg.method != "undefined"){method = cfg.method;};
11993                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
11994                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
11995                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
11996                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
11997             }
11998             this.showLoading();
11999             if(!discardUrl){
12000                 this.defaultUrl = url;
12001             }
12002             if(typeof url == "function"){
12003                 url = url.call(this);
12004             }
12005
12006             method = method || (params ? "POST" : "GET");
12007             if(method == "GET"){
12008                 url = this.prepareUrl(url);
12009             }
12010
12011             var o = Roo.apply(cfg ||{}, {
12012                 url : url,
12013                 params: params,
12014                 success: this.successDelegate,
12015                 failure: this.failureDelegate,
12016                 callback: undefined,
12017                 timeout: (this.timeout*1000),
12018                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12019             });
12020             Roo.log("updated manager called with timeout of " + o.timeout);
12021             this.transaction = Roo.Ajax.request(o);
12022         }
12023     },
12024
12025     /**
12026      * 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.
12027      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12028      * @param {String/HTMLElement} form The form Id or form element
12029      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12030      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12031      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12032      */
12033     formUpdate : function(form, url, reset, callback){
12034         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12035             if(typeof url == "function"){
12036                 url = url.call(this);
12037             }
12038             form = Roo.getDom(form);
12039             this.transaction = Roo.Ajax.request({
12040                 form: form,
12041                 url:url,
12042                 success: this.successDelegate,
12043                 failure: this.failureDelegate,
12044                 timeout: (this.timeout*1000),
12045                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12046             });
12047             this.showLoading.defer(1, this);
12048         }
12049     },
12050
12051     /**
12052      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12053      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12054      */
12055     refresh : function(callback){
12056         if(this.defaultUrl == null){
12057             return;
12058         }
12059         this.update(this.defaultUrl, null, callback, true);
12060     },
12061
12062     /**
12063      * Set this element to auto refresh.
12064      * @param {Number} interval How often to update (in seconds).
12065      * @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)
12066      * @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}
12067      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12068      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12069      */
12070     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12071         if(refreshNow){
12072             this.update(url || this.defaultUrl, params, callback, true);
12073         }
12074         if(this.autoRefreshProcId){
12075             clearInterval(this.autoRefreshProcId);
12076         }
12077         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12078     },
12079
12080     /**
12081      * Stop auto refresh on this element.
12082      */
12083      stopAutoRefresh : function(){
12084         if(this.autoRefreshProcId){
12085             clearInterval(this.autoRefreshProcId);
12086             delete this.autoRefreshProcId;
12087         }
12088     },
12089
12090     isAutoRefreshing : function(){
12091        return this.autoRefreshProcId ? true : false;
12092     },
12093     /**
12094      * Called to update the element to "Loading" state. Override to perform custom action.
12095      */
12096     showLoading : function(){
12097         if(this.showLoadIndicator){
12098             this.el.update(this.indicatorText);
12099         }
12100     },
12101
12102     /**
12103      * Adds unique parameter to query string if disableCaching = true
12104      * @private
12105      */
12106     prepareUrl : function(url){
12107         if(this.disableCaching){
12108             var append = "_dc=" + (new Date().getTime());
12109             if(url.indexOf("?") !== -1){
12110                 url += "&" + append;
12111             }else{
12112                 url += "?" + append;
12113             }
12114         }
12115         return url;
12116     },
12117
12118     /**
12119      * @private
12120      */
12121     processSuccess : function(response){
12122         this.transaction = null;
12123         if(response.argument.form && response.argument.reset){
12124             try{ // put in try/catch since some older FF releases had problems with this
12125                 response.argument.form.reset();
12126             }catch(e){}
12127         }
12128         if(this.loadScripts){
12129             this.renderer.render(this.el, response, this,
12130                 this.updateComplete.createDelegate(this, [response]));
12131         }else{
12132             this.renderer.render(this.el, response, this);
12133             this.updateComplete(response);
12134         }
12135     },
12136
12137     updateComplete : function(response){
12138         this.fireEvent("update", this.el, response);
12139         if(typeof response.argument.callback == "function"){
12140             response.argument.callback(this.el, true, response);
12141         }
12142     },
12143
12144     /**
12145      * @private
12146      */
12147     processFailure : function(response){
12148         this.transaction = null;
12149         this.fireEvent("failure", this.el, response);
12150         if(typeof response.argument.callback == "function"){
12151             response.argument.callback(this.el, false, response);
12152         }
12153     },
12154
12155     /**
12156      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12157      * @param {Object} renderer The object implementing the render() method
12158      */
12159     setRenderer : function(renderer){
12160         this.renderer = renderer;
12161     },
12162
12163     getRenderer : function(){
12164        return this.renderer;
12165     },
12166
12167     /**
12168      * Set the defaultUrl used for updates
12169      * @param {String/Function} defaultUrl The url or a function to call to get the url
12170      */
12171     setDefaultUrl : function(defaultUrl){
12172         this.defaultUrl = defaultUrl;
12173     },
12174
12175     /**
12176      * Aborts the executing transaction
12177      */
12178     abort : function(){
12179         if(this.transaction){
12180             Roo.Ajax.abort(this.transaction);
12181         }
12182     },
12183
12184     /**
12185      * Returns true if an update is in progress
12186      * @return {Boolean}
12187      */
12188     isUpdating : function(){
12189         if(this.transaction){
12190             return Roo.Ajax.isLoading(this.transaction);
12191         }
12192         return false;
12193     }
12194 });
12195
12196 /**
12197  * @class Roo.UpdateManager.defaults
12198  * @static (not really - but it helps the doc tool)
12199  * The defaults collection enables customizing the default properties of UpdateManager
12200  */
12201    Roo.UpdateManager.defaults = {
12202        /**
12203          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12204          * @type Number
12205          */
12206          timeout : 30,
12207
12208          /**
12209          * True to process scripts by default (Defaults to false).
12210          * @type Boolean
12211          */
12212         loadScripts : false,
12213
12214         /**
12215         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12216         * @type String
12217         */
12218         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12219         /**
12220          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12221          * @type Boolean
12222          */
12223         disableCaching : false,
12224         /**
12225          * Whether to show indicatorText when loading (Defaults to true).
12226          * @type Boolean
12227          */
12228         showLoadIndicator : true,
12229         /**
12230          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12231          * @type String
12232          */
12233         indicatorText : '<div class="loading-indicator">Loading...</div>'
12234    };
12235
12236 /**
12237  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12238  *Usage:
12239  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12240  * @param {String/HTMLElement/Roo.Element} el The element to update
12241  * @param {String} url The url
12242  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12243  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12244  * @static
12245  * @deprecated
12246  * @member Roo.UpdateManager
12247  */
12248 Roo.UpdateManager.updateElement = function(el, url, params, options){
12249     var um = Roo.get(el, true).getUpdateManager();
12250     Roo.apply(um, options);
12251     um.update(url, params, options ? options.callback : null);
12252 };
12253 // alias for backwards compat
12254 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12255 /**
12256  * @class Roo.UpdateManager.BasicRenderer
12257  * Default Content renderer. Updates the elements innerHTML with the responseText.
12258  */
12259 Roo.UpdateManager.BasicRenderer = function(){};
12260
12261 Roo.UpdateManager.BasicRenderer.prototype = {
12262     /**
12263      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12264      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12265      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12266      * @param {Roo.Element} el The element being rendered
12267      * @param {Object} response The YUI Connect response object
12268      * @param {UpdateManager} updateManager The calling update manager
12269      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12270      */
12271      render : function(el, response, updateManager, callback){
12272         el.update(response.responseText, updateManager.loadScripts, callback);
12273     }
12274 };
12275 /*
12276  * Based on:
12277  * Roo JS
12278  * (c)) Alan Knowles
12279  * Licence : LGPL
12280  */
12281
12282
12283 /**
12284  * @class Roo.DomTemplate
12285  * @extends Roo.Template
12286  * An effort at a dom based template engine..
12287  *
12288  * Similar to XTemplate, except it uses dom parsing to create the template..
12289  *
12290  * Supported features:
12291  *
12292  *  Tags:
12293
12294 <pre><code>
12295       {a_variable} - output encoded.
12296       {a_variable.format:("Y-m-d")} - call a method on the variable
12297       {a_variable:raw} - unencoded output
12298       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12299       {a_variable:this.method_on_template(...)} - call a method on the template object.
12300  
12301 </code></pre>
12302  *  The tpl tag:
12303 <pre><code>
12304         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12305         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12306         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12307         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12308   
12309 </code></pre>
12310  *      
12311  */
12312 Roo.DomTemplate = function()
12313 {
12314      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12315      if (this.html) {
12316         this.compile();
12317      }
12318 };
12319
12320
12321 Roo.extend(Roo.DomTemplate, Roo.Template, {
12322     /**
12323      * id counter for sub templates.
12324      */
12325     id : 0,
12326     /**
12327      * flag to indicate if dom parser is inside a pre,
12328      * it will strip whitespace if not.
12329      */
12330     inPre : false,
12331     
12332     /**
12333      * The various sub templates
12334      */
12335     tpls : false,
12336     
12337     
12338     
12339     /**
12340      *
12341      * basic tag replacing syntax
12342      * WORD:WORD()
12343      *
12344      * // you can fake an object call by doing this
12345      *  x.t:(test,tesT) 
12346      * 
12347      */
12348     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12349     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12350     
12351     iterChild : function (node, method) {
12352         
12353         var oldPre = this.inPre;
12354         if (node.tagName == 'PRE') {
12355             this.inPre = true;
12356         }
12357         for( var i = 0; i < node.childNodes.length; i++) {
12358             method.call(this, node.childNodes[i]);
12359         }
12360         this.inPre = oldPre;
12361     },
12362     
12363     
12364     
12365     /**
12366      * compile the template
12367      *
12368      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12369      *
12370      */
12371     compile: function()
12372     {
12373         var s = this.html;
12374         
12375         // covert the html into DOM...
12376         var doc = false;
12377         var div =false;
12378         try {
12379             doc = document.implementation.createHTMLDocument("");
12380             doc.documentElement.innerHTML =   this.html  ;
12381             div = doc.documentElement;
12382         } catch (e) {
12383             // old IE... - nasty -- it causes all sorts of issues.. with
12384             // images getting pulled from server..
12385             div = document.createElement('div');
12386             div.innerHTML = this.html;
12387         }
12388         //doc.documentElement.innerHTML = htmlBody
12389          
12390         
12391         
12392         this.tpls = [];
12393         var _t = this;
12394         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12395         
12396         var tpls = this.tpls;
12397         
12398         // create a top level template from the snippet..
12399         
12400         //Roo.log(div.innerHTML);
12401         
12402         var tpl = {
12403             uid : 'master',
12404             id : this.id++,
12405             attr : false,
12406             value : false,
12407             body : div.innerHTML,
12408             
12409             forCall : false,
12410             execCall : false,
12411             dom : div,
12412             isTop : true
12413             
12414         };
12415         tpls.unshift(tpl);
12416         
12417         
12418         // compile them...
12419         this.tpls = [];
12420         Roo.each(tpls, function(tp){
12421             this.compileTpl(tp);
12422             this.tpls[tp.id] = tp;
12423         }, this);
12424         
12425         this.master = tpls[0];
12426         return this;
12427         
12428         
12429     },
12430     
12431     compileNode : function(node, istop) {
12432         // test for
12433         //Roo.log(node);
12434         
12435         
12436         // skip anything not a tag..
12437         if (node.nodeType != 1) {
12438             if (node.nodeType == 3 && !this.inPre) {
12439                 // reduce white space..
12440                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12441                 
12442             }
12443             return;
12444         }
12445         
12446         var tpl = {
12447             uid : false,
12448             id : false,
12449             attr : false,
12450             value : false,
12451             body : '',
12452             
12453             forCall : false,
12454             execCall : false,
12455             dom : false,
12456             isTop : istop
12457             
12458             
12459         };
12460         
12461         
12462         switch(true) {
12463             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12464             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12465             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12466             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12467             // no default..
12468         }
12469         
12470         
12471         if (!tpl.attr) {
12472             // just itterate children..
12473             this.iterChild(node,this.compileNode);
12474             return;
12475         }
12476         tpl.uid = this.id++;
12477         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12478         node.removeAttribute('roo-'+ tpl.attr);
12479         if (tpl.attr != 'name') {
12480             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12481             node.parentNode.replaceChild(placeholder,  node);
12482         } else {
12483             
12484             var placeholder =  document.createElement('span');
12485             placeholder.className = 'roo-tpl-' + tpl.value;
12486             node.parentNode.replaceChild(placeholder,  node);
12487         }
12488         
12489         // parent now sees '{domtplXXXX}
12490         this.iterChild(node,this.compileNode);
12491         
12492         // we should now have node body...
12493         var div = document.createElement('div');
12494         div.appendChild(node);
12495         tpl.dom = node;
12496         // this has the unfortunate side effect of converting tagged attributes
12497         // eg. href="{...}" into %7C...%7D
12498         // this has been fixed by searching for those combo's although it's a bit hacky..
12499         
12500         
12501         tpl.body = div.innerHTML;
12502         
12503         
12504          
12505         tpl.id = tpl.uid;
12506         switch(tpl.attr) {
12507             case 'for' :
12508                 switch (tpl.value) {
12509                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12510                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12511                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12512                 }
12513                 break;
12514             
12515             case 'exec':
12516                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12517                 break;
12518             
12519             case 'if':     
12520                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12521                 break;
12522             
12523             case 'name':
12524                 tpl.id  = tpl.value; // replace non characters???
12525                 break;
12526             
12527         }
12528         
12529         
12530         this.tpls.push(tpl);
12531         
12532         
12533         
12534     },
12535     
12536     
12537     
12538     
12539     /**
12540      * Compile a segment of the template into a 'sub-template'
12541      *
12542      * 
12543      * 
12544      *
12545      */
12546     compileTpl : function(tpl)
12547     {
12548         var fm = Roo.util.Format;
12549         var useF = this.disableFormats !== true;
12550         
12551         var sep = Roo.isGecko ? "+\n" : ",\n";
12552         
12553         var undef = function(str) {
12554             Roo.debug && Roo.log("Property not found :"  + str);
12555             return '';
12556         };
12557           
12558         //Roo.log(tpl.body);
12559         
12560         
12561         
12562         var fn = function(m, lbrace, name, format, args)
12563         {
12564             //Roo.log("ARGS");
12565             //Roo.log(arguments);
12566             args = args ? args.replace(/\\'/g,"'") : args;
12567             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12568             if (typeof(format) == 'undefined') {
12569                 format =  'htmlEncode'; 
12570             }
12571             if (format == 'raw' ) {
12572                 format = false;
12573             }
12574             
12575             if(name.substr(0, 6) == 'domtpl'){
12576                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12577             }
12578             
12579             // build an array of options to determine if value is undefined..
12580             
12581             // basically get 'xxxx.yyyy' then do
12582             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12583             //    (function () { Roo.log("Property not found"); return ''; })() :
12584             //    ......
12585             
12586             var udef_ar = [];
12587             var lookfor = '';
12588             Roo.each(name.split('.'), function(st) {
12589                 lookfor += (lookfor.length ? '.': '') + st;
12590                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12591             });
12592             
12593             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12594             
12595             
12596             if(format && useF){
12597                 
12598                 args = args ? ',' + args : "";
12599                  
12600                 if(format.substr(0, 5) != "this."){
12601                     format = "fm." + format + '(';
12602                 }else{
12603                     format = 'this.call("'+ format.substr(5) + '", ';
12604                     args = ", values";
12605                 }
12606                 
12607                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12608             }
12609              
12610             if (args && args.length) {
12611                 // called with xxyx.yuu:(test,test)
12612                 // change to ()
12613                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12614             }
12615             // raw.. - :raw modifier..
12616             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12617             
12618         };
12619         var body;
12620         // branched to use + in gecko and [].join() in others
12621         if(Roo.isGecko){
12622             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12623                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12624                     "';};};";
12625         }else{
12626             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12627             body.push(tpl.body.replace(/(\r\n|\n)/g,
12628                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12629             body.push("'].join('');};};");
12630             body = body.join('');
12631         }
12632         
12633         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12634        
12635         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12636         eval(body);
12637         
12638         return this;
12639     },
12640      
12641     /**
12642      * same as applyTemplate, except it's done to one of the subTemplates
12643      * when using named templates, you can do:
12644      *
12645      * var str = pl.applySubTemplate('your-name', values);
12646      *
12647      * 
12648      * @param {Number} id of the template
12649      * @param {Object} values to apply to template
12650      * @param {Object} parent (normaly the instance of this object)
12651      */
12652     applySubTemplate : function(id, values, parent)
12653     {
12654         
12655         
12656         var t = this.tpls[id];
12657         
12658         
12659         try { 
12660             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12661                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12662                 return '';
12663             }
12664         } catch(e) {
12665             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12666             Roo.log(values);
12667           
12668             return '';
12669         }
12670         try { 
12671             
12672             if(t.execCall && t.execCall.call(this, values, parent)){
12673                 return '';
12674             }
12675         } catch(e) {
12676             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12677             Roo.log(values);
12678             return '';
12679         }
12680         
12681         try {
12682             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12683             parent = t.target ? values : parent;
12684             if(t.forCall && vs instanceof Array){
12685                 var buf = [];
12686                 for(var i = 0, len = vs.length; i < len; i++){
12687                     try {
12688                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12689                     } catch (e) {
12690                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12691                         Roo.log(e.body);
12692                         //Roo.log(t.compiled);
12693                         Roo.log(vs[i]);
12694                     }   
12695                 }
12696                 return buf.join('');
12697             }
12698         } catch (e) {
12699             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12700             Roo.log(values);
12701             return '';
12702         }
12703         try {
12704             return t.compiled.call(this, vs, parent);
12705         } catch (e) {
12706             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12707             Roo.log(e.body);
12708             //Roo.log(t.compiled);
12709             Roo.log(values);
12710             return '';
12711         }
12712     },
12713
12714    
12715
12716     applyTemplate : function(values){
12717         return this.master.compiled.call(this, values, {});
12718         //var s = this.subs;
12719     },
12720
12721     apply : function(){
12722         return this.applyTemplate.apply(this, arguments);
12723     }
12724
12725  });
12726
12727 Roo.DomTemplate.from = function(el){
12728     el = Roo.getDom(el);
12729     return new Roo.Domtemplate(el.value || el.innerHTML);
12730 };/*
12731  * Based on:
12732  * Ext JS Library 1.1.1
12733  * Copyright(c) 2006-2007, Ext JS, LLC.
12734  *
12735  * Originally Released Under LGPL - original licence link has changed is not relivant.
12736  *
12737  * Fork - LGPL
12738  * <script type="text/javascript">
12739  */
12740
12741 /**
12742  * @class Roo.util.DelayedTask
12743  * Provides a convenient method of performing setTimeout where a new
12744  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12745  * You can use this class to buffer
12746  * the keypress events for a certain number of milliseconds, and perform only if they stop
12747  * for that amount of time.
12748  * @constructor The parameters to this constructor serve as defaults and are not required.
12749  * @param {Function} fn (optional) The default function to timeout
12750  * @param {Object} scope (optional) The default scope of that timeout
12751  * @param {Array} args (optional) The default Array of arguments
12752  */
12753 Roo.util.DelayedTask = function(fn, scope, args){
12754     var id = null, d, t;
12755
12756     var call = function(){
12757         var now = new Date().getTime();
12758         if(now - t >= d){
12759             clearInterval(id);
12760             id = null;
12761             fn.apply(scope, args || []);
12762         }
12763     };
12764     /**
12765      * Cancels any pending timeout and queues a new one
12766      * @param {Number} delay The milliseconds to delay
12767      * @param {Function} newFn (optional) Overrides function passed to constructor
12768      * @param {Object} newScope (optional) Overrides scope passed to constructor
12769      * @param {Array} newArgs (optional) Overrides args passed to constructor
12770      */
12771     this.delay = function(delay, newFn, newScope, newArgs){
12772         if(id && delay != d){
12773             this.cancel();
12774         }
12775         d = delay;
12776         t = new Date().getTime();
12777         fn = newFn || fn;
12778         scope = newScope || scope;
12779         args = newArgs || args;
12780         if(!id){
12781             id = setInterval(call, d);
12782         }
12783     };
12784
12785     /**
12786      * Cancel the last queued timeout
12787      */
12788     this.cancel = function(){
12789         if(id){
12790             clearInterval(id);
12791             id = null;
12792         }
12793     };
12794 };/*
12795  * Based on:
12796  * Ext JS Library 1.1.1
12797  * Copyright(c) 2006-2007, Ext JS, LLC.
12798  *
12799  * Originally Released Under LGPL - original licence link has changed is not relivant.
12800  *
12801  * Fork - LGPL
12802  * <script type="text/javascript">
12803  */
12804  
12805  
12806 Roo.util.TaskRunner = function(interval){
12807     interval = interval || 10;
12808     var tasks = [], removeQueue = [];
12809     var id = 0;
12810     var running = false;
12811
12812     var stopThread = function(){
12813         running = false;
12814         clearInterval(id);
12815         id = 0;
12816     };
12817
12818     var startThread = function(){
12819         if(!running){
12820             running = true;
12821             id = setInterval(runTasks, interval);
12822         }
12823     };
12824
12825     var removeTask = function(task){
12826         removeQueue.push(task);
12827         if(task.onStop){
12828             task.onStop();
12829         }
12830     };
12831
12832     var runTasks = function(){
12833         if(removeQueue.length > 0){
12834             for(var i = 0, len = removeQueue.length; i < len; i++){
12835                 tasks.remove(removeQueue[i]);
12836             }
12837             removeQueue = [];
12838             if(tasks.length < 1){
12839                 stopThread();
12840                 return;
12841             }
12842         }
12843         var now = new Date().getTime();
12844         for(var i = 0, len = tasks.length; i < len; ++i){
12845             var t = tasks[i];
12846             var itime = now - t.taskRunTime;
12847             if(t.interval <= itime){
12848                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
12849                 t.taskRunTime = now;
12850                 if(rt === false || t.taskRunCount === t.repeat){
12851                     removeTask(t);
12852                     return;
12853                 }
12854             }
12855             if(t.duration && t.duration <= (now - t.taskStartTime)){
12856                 removeTask(t);
12857             }
12858         }
12859     };
12860
12861     /**
12862      * Queues a new task.
12863      * @param {Object} task
12864      */
12865     this.start = function(task){
12866         tasks.push(task);
12867         task.taskStartTime = new Date().getTime();
12868         task.taskRunTime = 0;
12869         task.taskRunCount = 0;
12870         startThread();
12871         return task;
12872     };
12873
12874     this.stop = function(task){
12875         removeTask(task);
12876         return task;
12877     };
12878
12879     this.stopAll = function(){
12880         stopThread();
12881         for(var i = 0, len = tasks.length; i < len; i++){
12882             if(tasks[i].onStop){
12883                 tasks[i].onStop();
12884             }
12885         }
12886         tasks = [];
12887         removeQueue = [];
12888     };
12889 };
12890
12891 Roo.TaskMgr = new Roo.util.TaskRunner();/*
12892  * Based on:
12893  * Ext JS Library 1.1.1
12894  * Copyright(c) 2006-2007, Ext JS, LLC.
12895  *
12896  * Originally Released Under LGPL - original licence link has changed is not relivant.
12897  *
12898  * Fork - LGPL
12899  * <script type="text/javascript">
12900  */
12901
12902  
12903 /**
12904  * @class Roo.util.MixedCollection
12905  * @extends Roo.util.Observable
12906  * A Collection class that maintains both numeric indexes and keys and exposes events.
12907  * @constructor
12908  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
12909  * collection (defaults to false)
12910  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
12911  * and return the key value for that item.  This is used when available to look up the key on items that
12912  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
12913  * equivalent to providing an implementation for the {@link #getKey} method.
12914  */
12915 Roo.util.MixedCollection = function(allowFunctions, keyFn){
12916     this.items = [];
12917     this.map = {};
12918     this.keys = [];
12919     this.length = 0;
12920     this.addEvents({
12921         /**
12922          * @event clear
12923          * Fires when the collection is cleared.
12924          */
12925         "clear" : true,
12926         /**
12927          * @event add
12928          * Fires when an item is added to the collection.
12929          * @param {Number} index The index at which the item was added.
12930          * @param {Object} o The item added.
12931          * @param {String} key The key associated with the added item.
12932          */
12933         "add" : true,
12934         /**
12935          * @event replace
12936          * Fires when an item is replaced in the collection.
12937          * @param {String} key he key associated with the new added.
12938          * @param {Object} old The item being replaced.
12939          * @param {Object} new The new item.
12940          */
12941         "replace" : true,
12942         /**
12943          * @event remove
12944          * Fires when an item is removed from the collection.
12945          * @param {Object} o The item being removed.
12946          * @param {String} key (optional) The key associated with the removed item.
12947          */
12948         "remove" : true,
12949         "sort" : true
12950     });
12951     this.allowFunctions = allowFunctions === true;
12952     if(keyFn){
12953         this.getKey = keyFn;
12954     }
12955     Roo.util.MixedCollection.superclass.constructor.call(this);
12956 };
12957
12958 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
12959     allowFunctions : false,
12960     
12961 /**
12962  * Adds an item to the collection.
12963  * @param {String} key The key to associate with the item
12964  * @param {Object} o The item to add.
12965  * @return {Object} The item added.
12966  */
12967     add : function(key, o){
12968         if(arguments.length == 1){
12969             o = arguments[0];
12970             key = this.getKey(o);
12971         }
12972         if(typeof key == "undefined" || key === null){
12973             this.length++;
12974             this.items.push(o);
12975             this.keys.push(null);
12976         }else{
12977             var old = this.map[key];
12978             if(old){
12979                 return this.replace(key, o);
12980             }
12981             this.length++;
12982             this.items.push(o);
12983             this.map[key] = o;
12984             this.keys.push(key);
12985         }
12986         this.fireEvent("add", this.length-1, o, key);
12987         return o;
12988     },
12989        
12990 /**
12991   * MixedCollection has a generic way to fetch keys if you implement getKey.
12992 <pre><code>
12993 // normal way
12994 var mc = new Roo.util.MixedCollection();
12995 mc.add(someEl.dom.id, someEl);
12996 mc.add(otherEl.dom.id, otherEl);
12997 //and so on
12998
12999 // using getKey
13000 var mc = new Roo.util.MixedCollection();
13001 mc.getKey = function(el){
13002    return el.dom.id;
13003 };
13004 mc.add(someEl);
13005 mc.add(otherEl);
13006
13007 // or via the constructor
13008 var mc = new Roo.util.MixedCollection(false, function(el){
13009    return el.dom.id;
13010 });
13011 mc.add(someEl);
13012 mc.add(otherEl);
13013 </code></pre>
13014  * @param o {Object} The item for which to find the key.
13015  * @return {Object} The key for the passed item.
13016  */
13017     getKey : function(o){
13018          return o.id; 
13019     },
13020    
13021 /**
13022  * Replaces an item in the collection.
13023  * @param {String} key The key associated with the item to replace, or the item to replace.
13024  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13025  * @return {Object}  The new item.
13026  */
13027     replace : function(key, o){
13028         if(arguments.length == 1){
13029             o = arguments[0];
13030             key = this.getKey(o);
13031         }
13032         var old = this.item(key);
13033         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13034              return this.add(key, o);
13035         }
13036         var index = this.indexOfKey(key);
13037         this.items[index] = o;
13038         this.map[key] = o;
13039         this.fireEvent("replace", key, old, o);
13040         return o;
13041     },
13042    
13043 /**
13044  * Adds all elements of an Array or an Object to the collection.
13045  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13046  * an Array of values, each of which are added to the collection.
13047  */
13048     addAll : function(objs){
13049         if(arguments.length > 1 || objs instanceof Array){
13050             var args = arguments.length > 1 ? arguments : objs;
13051             for(var i = 0, len = args.length; i < len; i++){
13052                 this.add(args[i]);
13053             }
13054         }else{
13055             for(var key in objs){
13056                 if(this.allowFunctions || typeof objs[key] != "function"){
13057                     this.add(key, objs[key]);
13058                 }
13059             }
13060         }
13061     },
13062    
13063 /**
13064  * Executes the specified function once for every item in the collection, passing each
13065  * item as the first and only parameter. returning false from the function will stop the iteration.
13066  * @param {Function} fn The function to execute for each item.
13067  * @param {Object} scope (optional) The scope in which to execute the function.
13068  */
13069     each : function(fn, scope){
13070         var items = [].concat(this.items); // each safe for removal
13071         for(var i = 0, len = items.length; i < len; i++){
13072             if(fn.call(scope || items[i], items[i], i, len) === false){
13073                 break;
13074             }
13075         }
13076     },
13077    
13078 /**
13079  * Executes the specified function once for every key in the collection, passing each
13080  * key, and its associated item as the first two parameters.
13081  * @param {Function} fn The function to execute for each item.
13082  * @param {Object} scope (optional) The scope in which to execute the function.
13083  */
13084     eachKey : function(fn, scope){
13085         for(var i = 0, len = this.keys.length; i < len; i++){
13086             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13087         }
13088     },
13089    
13090 /**
13091  * Returns the first item in the collection which elicits a true return value from the
13092  * passed selection function.
13093  * @param {Function} fn The selection function to execute for each item.
13094  * @param {Object} scope (optional) The scope in which to execute the function.
13095  * @return {Object} The first item in the collection which returned true from the selection function.
13096  */
13097     find : function(fn, scope){
13098         for(var i = 0, len = this.items.length; i < len; i++){
13099             if(fn.call(scope || window, this.items[i], this.keys[i])){
13100                 return this.items[i];
13101             }
13102         }
13103         return null;
13104     },
13105    
13106 /**
13107  * Inserts an item at the specified index in the collection.
13108  * @param {Number} index The index to insert the item at.
13109  * @param {String} key The key to associate with the new item, or the item itself.
13110  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13111  * @return {Object} The item inserted.
13112  */
13113     insert : function(index, key, o){
13114         if(arguments.length == 2){
13115             o = arguments[1];
13116             key = this.getKey(o);
13117         }
13118         if(index >= this.length){
13119             return this.add(key, o);
13120         }
13121         this.length++;
13122         this.items.splice(index, 0, o);
13123         if(typeof key != "undefined" && key != null){
13124             this.map[key] = o;
13125         }
13126         this.keys.splice(index, 0, key);
13127         this.fireEvent("add", index, o, key);
13128         return o;
13129     },
13130    
13131 /**
13132  * Removed an item from the collection.
13133  * @param {Object} o The item to remove.
13134  * @return {Object} The item removed.
13135  */
13136     remove : function(o){
13137         return this.removeAt(this.indexOf(o));
13138     },
13139    
13140 /**
13141  * Remove an item from a specified index in the collection.
13142  * @param {Number} index The index within the collection of the item to remove.
13143  */
13144     removeAt : function(index){
13145         if(index < this.length && index >= 0){
13146             this.length--;
13147             var o = this.items[index];
13148             this.items.splice(index, 1);
13149             var key = this.keys[index];
13150             if(typeof key != "undefined"){
13151                 delete this.map[key];
13152             }
13153             this.keys.splice(index, 1);
13154             this.fireEvent("remove", o, key);
13155         }
13156     },
13157    
13158 /**
13159  * Removed an item associated with the passed key fom the collection.
13160  * @param {String} key The key of the item to remove.
13161  */
13162     removeKey : function(key){
13163         return this.removeAt(this.indexOfKey(key));
13164     },
13165    
13166 /**
13167  * Returns the number of items in the collection.
13168  * @return {Number} the number of items in the collection.
13169  */
13170     getCount : function(){
13171         return this.length; 
13172     },
13173    
13174 /**
13175  * Returns index within the collection of the passed Object.
13176  * @param {Object} o The item to find the index of.
13177  * @return {Number} index of the item.
13178  */
13179     indexOf : function(o){
13180         if(!this.items.indexOf){
13181             for(var i = 0, len = this.items.length; i < len; i++){
13182                 if(this.items[i] == o) {
13183                     return i;
13184                 }
13185             }
13186             return -1;
13187         }else{
13188             return this.items.indexOf(o);
13189         }
13190     },
13191    
13192 /**
13193  * Returns index within the collection of the passed key.
13194  * @param {String} key The key to find the index of.
13195  * @return {Number} index of the key.
13196  */
13197     indexOfKey : function(key){
13198         if(!this.keys.indexOf){
13199             for(var i = 0, len = this.keys.length; i < len; i++){
13200                 if(this.keys[i] == key) {
13201                     return i;
13202                 }
13203             }
13204             return -1;
13205         }else{
13206             return this.keys.indexOf(key);
13207         }
13208     },
13209    
13210 /**
13211  * Returns the item associated with the passed key OR index. Key has priority over index.
13212  * @param {String/Number} key The key or index of the item.
13213  * @return {Object} The item associated with the passed key.
13214  */
13215     item : function(key){
13216         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13217         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13218     },
13219     
13220 /**
13221  * Returns the item at the specified index.
13222  * @param {Number} index The index of the item.
13223  * @return {Object}
13224  */
13225     itemAt : function(index){
13226         return this.items[index];
13227     },
13228     
13229 /**
13230  * Returns the item associated with the passed key.
13231  * @param {String/Number} key The key of the item.
13232  * @return {Object} The item associated with the passed key.
13233  */
13234     key : function(key){
13235         return this.map[key];
13236     },
13237    
13238 /**
13239  * Returns true if the collection contains the passed Object as an item.
13240  * @param {Object} o  The Object to look for in the collection.
13241  * @return {Boolean} True if the collection contains the Object as an item.
13242  */
13243     contains : function(o){
13244         return this.indexOf(o) != -1;
13245     },
13246    
13247 /**
13248  * Returns true if the collection contains the passed Object as a key.
13249  * @param {String} key The key to look for in the collection.
13250  * @return {Boolean} True if the collection contains the Object as a key.
13251  */
13252     containsKey : function(key){
13253         return typeof this.map[key] != "undefined";
13254     },
13255    
13256 /**
13257  * Removes all items from the collection.
13258  */
13259     clear : function(){
13260         this.length = 0;
13261         this.items = [];
13262         this.keys = [];
13263         this.map = {};
13264         this.fireEvent("clear");
13265     },
13266    
13267 /**
13268  * Returns the first item in the collection.
13269  * @return {Object} the first item in the collection..
13270  */
13271     first : function(){
13272         return this.items[0]; 
13273     },
13274    
13275 /**
13276  * Returns the last item in the collection.
13277  * @return {Object} the last item in the collection..
13278  */
13279     last : function(){
13280         return this.items[this.length-1];   
13281     },
13282     
13283     _sort : function(property, dir, fn){
13284         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13285         fn = fn || function(a, b){
13286             return a-b;
13287         };
13288         var c = [], k = this.keys, items = this.items;
13289         for(var i = 0, len = items.length; i < len; i++){
13290             c[c.length] = {key: k[i], value: items[i], index: i};
13291         }
13292         c.sort(function(a, b){
13293             var v = fn(a[property], b[property]) * dsc;
13294             if(v == 0){
13295                 v = (a.index < b.index ? -1 : 1);
13296             }
13297             return v;
13298         });
13299         for(var i = 0, len = c.length; i < len; i++){
13300             items[i] = c[i].value;
13301             k[i] = c[i].key;
13302         }
13303         this.fireEvent("sort", this);
13304     },
13305     
13306     /**
13307      * Sorts this collection with the passed comparison function
13308      * @param {String} direction (optional) "ASC" or "DESC"
13309      * @param {Function} fn (optional) comparison function
13310      */
13311     sort : function(dir, fn){
13312         this._sort("value", dir, fn);
13313     },
13314     
13315     /**
13316      * Sorts this collection by keys
13317      * @param {String} direction (optional) "ASC" or "DESC"
13318      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13319      */
13320     keySort : function(dir, fn){
13321         this._sort("key", dir, fn || function(a, b){
13322             return String(a).toUpperCase()-String(b).toUpperCase();
13323         });
13324     },
13325     
13326     /**
13327      * Returns a range of items in this collection
13328      * @param {Number} startIndex (optional) defaults to 0
13329      * @param {Number} endIndex (optional) default to the last item
13330      * @return {Array} An array of items
13331      */
13332     getRange : function(start, end){
13333         var items = this.items;
13334         if(items.length < 1){
13335             return [];
13336         }
13337         start = start || 0;
13338         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13339         var r = [];
13340         if(start <= end){
13341             for(var i = start; i <= end; i++) {
13342                     r[r.length] = items[i];
13343             }
13344         }else{
13345             for(var i = start; i >= end; i--) {
13346                     r[r.length] = items[i];
13347             }
13348         }
13349         return r;
13350     },
13351         
13352     /**
13353      * Filter the <i>objects</i> in this collection by a specific property. 
13354      * Returns a new collection that has been filtered.
13355      * @param {String} property A property on your objects
13356      * @param {String/RegExp} value Either string that the property values 
13357      * should start with or a RegExp to test against the property
13358      * @return {MixedCollection} The new filtered collection
13359      */
13360     filter : function(property, value){
13361         if(!value.exec){ // not a regex
13362             value = String(value);
13363             if(value.length == 0){
13364                 return this.clone();
13365             }
13366             value = new RegExp("^" + Roo.escapeRe(value), "i");
13367         }
13368         return this.filterBy(function(o){
13369             return o && value.test(o[property]);
13370         });
13371         },
13372     
13373     /**
13374      * Filter by a function. * Returns a new collection that has been filtered.
13375      * The passed function will be called with each 
13376      * object in the collection. If the function returns true, the value is included 
13377      * otherwise it is filtered.
13378      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13379      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13380      * @return {MixedCollection} The new filtered collection
13381      */
13382     filterBy : function(fn, scope){
13383         var r = new Roo.util.MixedCollection();
13384         r.getKey = this.getKey;
13385         var k = this.keys, it = this.items;
13386         for(var i = 0, len = it.length; i < len; i++){
13387             if(fn.call(scope||this, it[i], k[i])){
13388                                 r.add(k[i], it[i]);
13389                         }
13390         }
13391         return r;
13392     },
13393     
13394     /**
13395      * Creates a duplicate of this collection
13396      * @return {MixedCollection}
13397      */
13398     clone : function(){
13399         var r = new Roo.util.MixedCollection();
13400         var k = this.keys, it = this.items;
13401         for(var i = 0, len = it.length; i < len; i++){
13402             r.add(k[i], it[i]);
13403         }
13404         r.getKey = this.getKey;
13405         return r;
13406     }
13407 });
13408 /**
13409  * Returns the item associated with the passed key or index.
13410  * @method
13411  * @param {String/Number} key The key or index of the item.
13412  * @return {Object} The item associated with the passed key.
13413  */
13414 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13415  * Based on:
13416  * Ext JS Library 1.1.1
13417  * Copyright(c) 2006-2007, Ext JS, LLC.
13418  *
13419  * Originally Released Under LGPL - original licence link has changed is not relivant.
13420  *
13421  * Fork - LGPL
13422  * <script type="text/javascript">
13423  */
13424 /**
13425  * @class Roo.util.JSON
13426  * Modified version of Douglas Crockford"s json.js that doesn"t
13427  * mess with the Object prototype 
13428  * http://www.json.org/js.html
13429  * @singleton
13430  */
13431 Roo.util.JSON = new (function(){
13432     var useHasOwn = {}.hasOwnProperty ? true : false;
13433     
13434     // crashes Safari in some instances
13435     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13436     
13437     var pad = function(n) {
13438         return n < 10 ? "0" + n : n;
13439     };
13440     
13441     var m = {
13442         "\b": '\\b',
13443         "\t": '\\t',
13444         "\n": '\\n',
13445         "\f": '\\f',
13446         "\r": '\\r',
13447         '"' : '\\"',
13448         "\\": '\\\\'
13449     };
13450
13451     var encodeString = function(s){
13452         if (/["\\\x00-\x1f]/.test(s)) {
13453             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13454                 var c = m[b];
13455                 if(c){
13456                     return c;
13457                 }
13458                 c = b.charCodeAt();
13459                 return "\\u00" +
13460                     Math.floor(c / 16).toString(16) +
13461                     (c % 16).toString(16);
13462             }) + '"';
13463         }
13464         return '"' + s + '"';
13465     };
13466     
13467     var encodeArray = function(o){
13468         var a = ["["], b, i, l = o.length, v;
13469             for (i = 0; i < l; i += 1) {
13470                 v = o[i];
13471                 switch (typeof v) {
13472                     case "undefined":
13473                     case "function":
13474                     case "unknown":
13475                         break;
13476                     default:
13477                         if (b) {
13478                             a.push(',');
13479                         }
13480                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13481                         b = true;
13482                 }
13483             }
13484             a.push("]");
13485             return a.join("");
13486     };
13487     
13488     var encodeDate = function(o){
13489         return '"' + o.getFullYear() + "-" +
13490                 pad(o.getMonth() + 1) + "-" +
13491                 pad(o.getDate()) + "T" +
13492                 pad(o.getHours()) + ":" +
13493                 pad(o.getMinutes()) + ":" +
13494                 pad(o.getSeconds()) + '"';
13495     };
13496     
13497     /**
13498      * Encodes an Object, Array or other value
13499      * @param {Mixed} o The variable to encode
13500      * @return {String} The JSON string
13501      */
13502     this.encode = function(o)
13503     {
13504         // should this be extended to fully wrap stringify..
13505         
13506         if(typeof o == "undefined" || o === null){
13507             return "null";
13508         }else if(o instanceof Array){
13509             return encodeArray(o);
13510         }else if(o instanceof Date){
13511             return encodeDate(o);
13512         }else if(typeof o == "string"){
13513             return encodeString(o);
13514         }else if(typeof o == "number"){
13515             return isFinite(o) ? String(o) : "null";
13516         }else if(typeof o == "boolean"){
13517             return String(o);
13518         }else {
13519             var a = ["{"], b, i, v;
13520             for (i in o) {
13521                 if(!useHasOwn || o.hasOwnProperty(i)) {
13522                     v = o[i];
13523                     switch (typeof v) {
13524                     case "undefined":
13525                     case "function":
13526                     case "unknown":
13527                         break;
13528                     default:
13529                         if(b){
13530                             a.push(',');
13531                         }
13532                         a.push(this.encode(i), ":",
13533                                 v === null ? "null" : this.encode(v));
13534                         b = true;
13535                     }
13536                 }
13537             }
13538             a.push("}");
13539             return a.join("");
13540         }
13541     };
13542     
13543     /**
13544      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13545      * @param {String} json The JSON string
13546      * @return {Object} The resulting object
13547      */
13548     this.decode = function(json){
13549         
13550         return  /** eval:var:json */ eval("(" + json + ')');
13551     };
13552 })();
13553 /** 
13554  * Shorthand for {@link Roo.util.JSON#encode}
13555  * @member Roo encode 
13556  * @method */
13557 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13558 /** 
13559  * Shorthand for {@link Roo.util.JSON#decode}
13560  * @member Roo decode 
13561  * @method */
13562 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13563 /*
13564  * Based on:
13565  * Ext JS Library 1.1.1
13566  * Copyright(c) 2006-2007, Ext JS, LLC.
13567  *
13568  * Originally Released Under LGPL - original licence link has changed is not relivant.
13569  *
13570  * Fork - LGPL
13571  * <script type="text/javascript">
13572  */
13573  
13574 /**
13575  * @class Roo.util.Format
13576  * Reusable data formatting functions
13577  * @singleton
13578  */
13579 Roo.util.Format = function(){
13580     var trimRe = /^\s+|\s+$/g;
13581     return {
13582         /**
13583          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13584          * @param {String} value The string to truncate
13585          * @param {Number} length The maximum length to allow before truncating
13586          * @return {String} The converted text
13587          */
13588         ellipsis : function(value, len){
13589             if(value && value.length > len){
13590                 return value.substr(0, len-3)+"...";
13591             }
13592             return value;
13593         },
13594
13595         /**
13596          * Checks a reference and converts it to empty string if it is undefined
13597          * @param {Mixed} value Reference to check
13598          * @return {Mixed} Empty string if converted, otherwise the original value
13599          */
13600         undef : function(value){
13601             return typeof value != "undefined" ? value : "";
13602         },
13603
13604         /**
13605          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13606          * @param {String} value The string to encode
13607          * @return {String} The encoded text
13608          */
13609         htmlEncode : function(value){
13610             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13611         },
13612
13613         /**
13614          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13615          * @param {String} value The string to decode
13616          * @return {String} The decoded text
13617          */
13618         htmlDecode : function(value){
13619             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13620         },
13621
13622         /**
13623          * Trims any whitespace from either side of a string
13624          * @param {String} value The text to trim
13625          * @return {String} The trimmed text
13626          */
13627         trim : function(value){
13628             return String(value).replace(trimRe, "");
13629         },
13630
13631         /**
13632          * Returns a substring from within an original string
13633          * @param {String} value The original text
13634          * @param {Number} start The start index of the substring
13635          * @param {Number} length The length of the substring
13636          * @return {String} The substring
13637          */
13638         substr : function(value, start, length){
13639             return String(value).substr(start, length);
13640         },
13641
13642         /**
13643          * Converts a string to all lower case letters
13644          * @param {String} value The text to convert
13645          * @return {String} The converted text
13646          */
13647         lowercase : function(value){
13648             return String(value).toLowerCase();
13649         },
13650
13651         /**
13652          * Converts a string to all upper case letters
13653          * @param {String} value The text to convert
13654          * @return {String} The converted text
13655          */
13656         uppercase : function(value){
13657             return String(value).toUpperCase();
13658         },
13659
13660         /**
13661          * Converts the first character only of a string to upper case
13662          * @param {String} value The text to convert
13663          * @return {String} The converted text
13664          */
13665         capitalize : function(value){
13666             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13667         },
13668
13669         // private
13670         call : function(value, fn){
13671             if(arguments.length > 2){
13672                 var args = Array.prototype.slice.call(arguments, 2);
13673                 args.unshift(value);
13674                  
13675                 return /** eval:var:value */  eval(fn).apply(window, args);
13676             }else{
13677                 /** eval:var:value */
13678                 return /** eval:var:value */ eval(fn).call(window, value);
13679             }
13680         },
13681
13682        
13683         /**
13684          * safer version of Math.toFixed..??/
13685          * @param {Number/String} value The numeric value to format
13686          * @param {Number/String} value Decimal places 
13687          * @return {String} The formatted currency string
13688          */
13689         toFixed : function(v, n)
13690         {
13691             // why not use to fixed - precision is buggered???
13692             if (!n) {
13693                 return Math.round(v-0);
13694             }
13695             var fact = Math.pow(10,n+1);
13696             v = (Math.round((v-0)*fact))/fact;
13697             var z = (''+fact).substring(2);
13698             if (v == Math.floor(v)) {
13699                 return Math.floor(v) + '.' + z;
13700             }
13701             
13702             // now just padd decimals..
13703             var ps = String(v).split('.');
13704             var fd = (ps[1] + z);
13705             var r = fd.substring(0,n); 
13706             var rm = fd.substring(n); 
13707             if (rm < 5) {
13708                 return ps[0] + '.' + r;
13709             }
13710             r*=1; // turn it into a number;
13711             r++;
13712             if (String(r).length != n) {
13713                 ps[0]*=1;
13714                 ps[0]++;
13715                 r = String(r).substring(1); // chop the end off.
13716             }
13717             
13718             return ps[0] + '.' + r;
13719              
13720         },
13721         
13722         /**
13723          * Format a number as US currency
13724          * @param {Number/String} value The numeric value to format
13725          * @return {String} The formatted currency string
13726          */
13727         usMoney : function(v){
13728             return '$' + Roo.util.Format.number(v);
13729         },
13730         
13731         /**
13732          * Format a number
13733          * eventually this should probably emulate php's number_format
13734          * @param {Number/String} value The numeric value to format
13735          * @param {Number} decimals number of decimal places
13736          * @return {String} The formatted currency string
13737          */
13738         number : function(v,decimals)
13739         {
13740             // multiply and round.
13741             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13742             var mul = Math.pow(10, decimals);
13743             var zero = String(mul).substring(1);
13744             v = (Math.round((v-0)*mul))/mul;
13745             
13746             // if it's '0' number.. then
13747             
13748             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13749             v = String(v);
13750             var ps = v.split('.');
13751             var whole = ps[0];
13752             
13753             
13754             var r = /(\d+)(\d{3})/;
13755             // add comma's
13756             while (r.test(whole)) {
13757                 whole = whole.replace(r, '$1' + ',' + '$2');
13758             }
13759             
13760             
13761             var sub = ps[1] ?
13762                     // has decimals..
13763                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13764                     // does not have decimals
13765                     (decimals ? ('.' + zero) : '');
13766             
13767             
13768             return whole + sub ;
13769         },
13770         
13771         /**
13772          * Parse a value into a formatted date using the specified format pattern.
13773          * @param {Mixed} value The value to format
13774          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13775          * @return {String} The formatted date string
13776          */
13777         date : function(v, format){
13778             if(!v){
13779                 return "";
13780             }
13781             if(!(v instanceof Date)){
13782                 v = new Date(Date.parse(v));
13783             }
13784             return v.dateFormat(format || Roo.util.Format.defaults.date);
13785         },
13786
13787         /**
13788          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13789          * @param {String} format Any valid date format string
13790          * @return {Function} The date formatting function
13791          */
13792         dateRenderer : function(format){
13793             return function(v){
13794                 return Roo.util.Format.date(v, format);  
13795             };
13796         },
13797
13798         // private
13799         stripTagsRE : /<\/?[^>]+>/gi,
13800         
13801         /**
13802          * Strips all HTML tags
13803          * @param {Mixed} value The text from which to strip tags
13804          * @return {String} The stripped text
13805          */
13806         stripTags : function(v){
13807             return !v ? v : String(v).replace(this.stripTagsRE, "");
13808         }
13809     };
13810 }();
13811 Roo.util.Format.defaults = {
13812     date : 'd/M/Y'
13813 };/*
13814  * Based on:
13815  * Ext JS Library 1.1.1
13816  * Copyright(c) 2006-2007, Ext JS, LLC.
13817  *
13818  * Originally Released Under LGPL - original licence link has changed is not relivant.
13819  *
13820  * Fork - LGPL
13821  * <script type="text/javascript">
13822  */
13823
13824
13825  
13826
13827 /**
13828  * @class Roo.MasterTemplate
13829  * @extends Roo.Template
13830  * Provides a template that can have child templates. The syntax is:
13831 <pre><code>
13832 var t = new Roo.MasterTemplate(
13833         '&lt;select name="{name}"&gt;',
13834                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
13835         '&lt;/select&gt;'
13836 );
13837 t.add('options', {value: 'foo', text: 'bar'});
13838 // or you can add multiple child elements in one shot
13839 t.addAll('options', [
13840     {value: 'foo', text: 'bar'},
13841     {value: 'foo2', text: 'bar2'},
13842     {value: 'foo3', text: 'bar3'}
13843 ]);
13844 // then append, applying the master template values
13845 t.append('my-form', {name: 'my-select'});
13846 </code></pre>
13847 * A name attribute for the child template is not required if you have only one child
13848 * template or you want to refer to them by index.
13849  */
13850 Roo.MasterTemplate = function(){
13851     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
13852     this.originalHtml = this.html;
13853     var st = {};
13854     var m, re = this.subTemplateRe;
13855     re.lastIndex = 0;
13856     var subIndex = 0;
13857     while(m = re.exec(this.html)){
13858         var name = m[1], content = m[2];
13859         st[subIndex] = {
13860             name: name,
13861             index: subIndex,
13862             buffer: [],
13863             tpl : new Roo.Template(content)
13864         };
13865         if(name){
13866             st[name] = st[subIndex];
13867         }
13868         st[subIndex].tpl.compile();
13869         st[subIndex].tpl.call = this.call.createDelegate(this);
13870         subIndex++;
13871     }
13872     this.subCount = subIndex;
13873     this.subs = st;
13874 };
13875 Roo.extend(Roo.MasterTemplate, Roo.Template, {
13876     /**
13877     * The regular expression used to match sub templates
13878     * @type RegExp
13879     * @property
13880     */
13881     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
13882
13883     /**
13884      * Applies the passed values to a child template.
13885      * @param {String/Number} name (optional) The name or index of the child template
13886      * @param {Array/Object} values The values to be applied to the template
13887      * @return {MasterTemplate} this
13888      */
13889      add : function(name, values){
13890         if(arguments.length == 1){
13891             values = arguments[0];
13892             name = 0;
13893         }
13894         var s = this.subs[name];
13895         s.buffer[s.buffer.length] = s.tpl.apply(values);
13896         return this;
13897     },
13898
13899     /**
13900      * Applies all the passed values to a child template.
13901      * @param {String/Number} name (optional) The name or index of the child template
13902      * @param {Array} values The values to be applied to the template, this should be an array of objects.
13903      * @param {Boolean} reset (optional) True to reset the template first
13904      * @return {MasterTemplate} this
13905      */
13906     fill : function(name, values, reset){
13907         var a = arguments;
13908         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
13909             values = a[0];
13910             name = 0;
13911             reset = a[1];
13912         }
13913         if(reset){
13914             this.reset();
13915         }
13916         for(var i = 0, len = values.length; i < len; i++){
13917             this.add(name, values[i]);
13918         }
13919         return this;
13920     },
13921
13922     /**
13923      * Resets the template for reuse
13924      * @return {MasterTemplate} this
13925      */
13926      reset : function(){
13927         var s = this.subs;
13928         for(var i = 0; i < this.subCount; i++){
13929             s[i].buffer = [];
13930         }
13931         return this;
13932     },
13933
13934     applyTemplate : function(values){
13935         var s = this.subs;
13936         var replaceIndex = -1;
13937         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
13938             return s[++replaceIndex].buffer.join("");
13939         });
13940         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
13941     },
13942
13943     apply : function(){
13944         return this.applyTemplate.apply(this, arguments);
13945     },
13946
13947     compile : function(){return this;}
13948 });
13949
13950 /**
13951  * Alias for fill().
13952  * @method
13953  */
13954 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
13955  /**
13956  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
13957  * var tpl = Roo.MasterTemplate.from('element-id');
13958  * @param {String/HTMLElement} el
13959  * @param {Object} config
13960  * @static
13961  */
13962 Roo.MasterTemplate.from = function(el, config){
13963     el = Roo.getDom(el);
13964     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
13965 };/*
13966  * Based on:
13967  * Ext JS Library 1.1.1
13968  * Copyright(c) 2006-2007, Ext JS, LLC.
13969  *
13970  * Originally Released Under LGPL - original licence link has changed is not relivant.
13971  *
13972  * Fork - LGPL
13973  * <script type="text/javascript">
13974  */
13975
13976  
13977 /**
13978  * @class Roo.util.CSS
13979  * Utility class for manipulating CSS rules
13980  * @singleton
13981  */
13982 Roo.util.CSS = function(){
13983         var rules = null;
13984         var doc = document;
13985
13986     var camelRe = /(-[a-z])/gi;
13987     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
13988
13989    return {
13990    /**
13991     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
13992     * tag and appended to the HEAD of the document.
13993     * @param {String|Object} cssText The text containing the css rules
13994     * @param {String} id An id to add to the stylesheet for later removal
13995     * @return {StyleSheet}
13996     */
13997     createStyleSheet : function(cssText, id){
13998         var ss;
13999         var head = doc.getElementsByTagName("head")[0];
14000         var nrules = doc.createElement("style");
14001         nrules.setAttribute("type", "text/css");
14002         if(id){
14003             nrules.setAttribute("id", id);
14004         }
14005         if (typeof(cssText) != 'string') {
14006             // support object maps..
14007             // not sure if this a good idea.. 
14008             // perhaps it should be merged with the general css handling
14009             // and handle js style props.
14010             var cssTextNew = [];
14011             for(var n in cssText) {
14012                 var citems = [];
14013                 for(var k in cssText[n]) {
14014                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14015                 }
14016                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14017                 
14018             }
14019             cssText = cssTextNew.join("\n");
14020             
14021         }
14022        
14023        
14024        if(Roo.isIE){
14025            head.appendChild(nrules);
14026            ss = nrules.styleSheet;
14027            ss.cssText = cssText;
14028        }else{
14029            try{
14030                 nrules.appendChild(doc.createTextNode(cssText));
14031            }catch(e){
14032                nrules.cssText = cssText; 
14033            }
14034            head.appendChild(nrules);
14035            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14036        }
14037        this.cacheStyleSheet(ss);
14038        return ss;
14039    },
14040
14041    /**
14042     * Removes a style or link tag by id
14043     * @param {String} id The id of the tag
14044     */
14045    removeStyleSheet : function(id){
14046        var existing = doc.getElementById(id);
14047        if(existing){
14048            existing.parentNode.removeChild(existing);
14049        }
14050    },
14051
14052    /**
14053     * Dynamically swaps an existing stylesheet reference for a new one
14054     * @param {String} id The id of an existing link tag to remove
14055     * @param {String} url The href of the new stylesheet to include
14056     */
14057    swapStyleSheet : function(id, url){
14058        this.removeStyleSheet(id);
14059        var ss = doc.createElement("link");
14060        ss.setAttribute("rel", "stylesheet");
14061        ss.setAttribute("type", "text/css");
14062        ss.setAttribute("id", id);
14063        ss.setAttribute("href", url);
14064        doc.getElementsByTagName("head")[0].appendChild(ss);
14065    },
14066    
14067    /**
14068     * Refresh the rule cache if you have dynamically added stylesheets
14069     * @return {Object} An object (hash) of rules indexed by selector
14070     */
14071    refreshCache : function(){
14072        return this.getRules(true);
14073    },
14074
14075    // private
14076    cacheStyleSheet : function(stylesheet){
14077        if(!rules){
14078            rules = {};
14079        }
14080        try{// try catch for cross domain access issue
14081            var ssRules = stylesheet.cssRules || stylesheet.rules;
14082            for(var j = ssRules.length-1; j >= 0; --j){
14083                rules[ssRules[j].selectorText] = ssRules[j];
14084            }
14085        }catch(e){}
14086    },
14087    
14088    /**
14089     * Gets all css rules for the document
14090     * @param {Boolean} refreshCache true to refresh the internal cache
14091     * @return {Object} An object (hash) of rules indexed by selector
14092     */
14093    getRules : function(refreshCache){
14094                 if(rules == null || refreshCache){
14095                         rules = {};
14096                         var ds = doc.styleSheets;
14097                         for(var i =0, len = ds.length; i < len; i++){
14098                             try{
14099                         this.cacheStyleSheet(ds[i]);
14100                     }catch(e){} 
14101                 }
14102                 }
14103                 return rules;
14104         },
14105         
14106         /**
14107     * Gets an an individual CSS rule by selector(s)
14108     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14109     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14110     * @return {CSSRule} The CSS rule or null if one is not found
14111     */
14112    getRule : function(selector, refreshCache){
14113                 var rs = this.getRules(refreshCache);
14114                 if(!(selector instanceof Array)){
14115                     return rs[selector];
14116                 }
14117                 for(var i = 0; i < selector.length; i++){
14118                         if(rs[selector[i]]){
14119                                 return rs[selector[i]];
14120                         }
14121                 }
14122                 return null;
14123         },
14124         
14125         
14126         /**
14127     * Updates a rule property
14128     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14129     * @param {String} property The css property
14130     * @param {String} value The new value for the property
14131     * @return {Boolean} true If a rule was found and updated
14132     */
14133    updateRule : function(selector, property, value){
14134                 if(!(selector instanceof Array)){
14135                         var rule = this.getRule(selector);
14136                         if(rule){
14137                                 rule.style[property.replace(camelRe, camelFn)] = value;
14138                                 return true;
14139                         }
14140                 }else{
14141                         for(var i = 0; i < selector.length; i++){
14142                                 if(this.updateRule(selector[i], property, value)){
14143                                         return true;
14144                                 }
14145                         }
14146                 }
14147                 return false;
14148         }
14149    };   
14150 }();/*
14151  * Based on:
14152  * Ext JS Library 1.1.1
14153  * Copyright(c) 2006-2007, Ext JS, LLC.
14154  *
14155  * Originally Released Under LGPL - original licence link has changed is not relivant.
14156  *
14157  * Fork - LGPL
14158  * <script type="text/javascript">
14159  */
14160
14161  
14162
14163 /**
14164  * @class Roo.util.ClickRepeater
14165  * @extends Roo.util.Observable
14166  * 
14167  * A wrapper class which can be applied to any element. Fires a "click" event while the
14168  * mouse is pressed. The interval between firings may be specified in the config but
14169  * defaults to 10 milliseconds.
14170  * 
14171  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14172  * 
14173  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14174  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14175  * Similar to an autorepeat key delay.
14176  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14177  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14178  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14179  *           "interval" and "delay" are ignored. "immediate" is honored.
14180  * @cfg {Boolean} preventDefault True to prevent the default click event
14181  * @cfg {Boolean} stopDefault True to stop the default click event
14182  * 
14183  * @history
14184  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14185  *     2007-02-02 jvs Renamed to ClickRepeater
14186  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14187  *
14188  *  @constructor
14189  * @param {String/HTMLElement/Element} el The element to listen on
14190  * @param {Object} config
14191  **/
14192 Roo.util.ClickRepeater = function(el, config)
14193 {
14194     this.el = Roo.get(el);
14195     this.el.unselectable();
14196
14197     Roo.apply(this, config);
14198
14199     this.addEvents({
14200     /**
14201      * @event mousedown
14202      * Fires when the mouse button is depressed.
14203      * @param {Roo.util.ClickRepeater} this
14204      */
14205         "mousedown" : true,
14206     /**
14207      * @event click
14208      * Fires on a specified interval during the time the element is pressed.
14209      * @param {Roo.util.ClickRepeater} this
14210      */
14211         "click" : true,
14212     /**
14213      * @event mouseup
14214      * Fires when the mouse key is released.
14215      * @param {Roo.util.ClickRepeater} this
14216      */
14217         "mouseup" : true
14218     });
14219
14220     this.el.on("mousedown", this.handleMouseDown, this);
14221     if(this.preventDefault || this.stopDefault){
14222         this.el.on("click", function(e){
14223             if(this.preventDefault){
14224                 e.preventDefault();
14225             }
14226             if(this.stopDefault){
14227                 e.stopEvent();
14228             }
14229         }, this);
14230     }
14231
14232     // allow inline handler
14233     if(this.handler){
14234         this.on("click", this.handler,  this.scope || this);
14235     }
14236
14237     Roo.util.ClickRepeater.superclass.constructor.call(this);
14238 };
14239
14240 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14241     interval : 20,
14242     delay: 250,
14243     preventDefault : true,
14244     stopDefault : false,
14245     timer : 0,
14246
14247     // private
14248     handleMouseDown : function(){
14249         clearTimeout(this.timer);
14250         this.el.blur();
14251         if(this.pressClass){
14252             this.el.addClass(this.pressClass);
14253         }
14254         this.mousedownTime = new Date();
14255
14256         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14257         this.el.on("mouseout", this.handleMouseOut, this);
14258
14259         this.fireEvent("mousedown", this);
14260         this.fireEvent("click", this);
14261         
14262         this.timer = this.click.defer(this.delay || this.interval, this);
14263     },
14264
14265     // private
14266     click : function(){
14267         this.fireEvent("click", this);
14268         this.timer = this.click.defer(this.getInterval(), this);
14269     },
14270
14271     // private
14272     getInterval: function(){
14273         if(!this.accelerate){
14274             return this.interval;
14275         }
14276         var pressTime = this.mousedownTime.getElapsed();
14277         if(pressTime < 500){
14278             return 400;
14279         }else if(pressTime < 1700){
14280             return 320;
14281         }else if(pressTime < 2600){
14282             return 250;
14283         }else if(pressTime < 3500){
14284             return 180;
14285         }else if(pressTime < 4400){
14286             return 140;
14287         }else if(pressTime < 5300){
14288             return 80;
14289         }else if(pressTime < 6200){
14290             return 50;
14291         }else{
14292             return 10;
14293         }
14294     },
14295
14296     // private
14297     handleMouseOut : function(){
14298         clearTimeout(this.timer);
14299         if(this.pressClass){
14300             this.el.removeClass(this.pressClass);
14301         }
14302         this.el.on("mouseover", this.handleMouseReturn, this);
14303     },
14304
14305     // private
14306     handleMouseReturn : function(){
14307         this.el.un("mouseover", this.handleMouseReturn);
14308         if(this.pressClass){
14309             this.el.addClass(this.pressClass);
14310         }
14311         this.click();
14312     },
14313
14314     // private
14315     handleMouseUp : function(){
14316         clearTimeout(this.timer);
14317         this.el.un("mouseover", this.handleMouseReturn);
14318         this.el.un("mouseout", this.handleMouseOut);
14319         Roo.get(document).un("mouseup", this.handleMouseUp);
14320         this.el.removeClass(this.pressClass);
14321         this.fireEvent("mouseup", this);
14322     }
14323 });/*
14324  * Based on:
14325  * Ext JS Library 1.1.1
14326  * Copyright(c) 2006-2007, Ext JS, LLC.
14327  *
14328  * Originally Released Under LGPL - original licence link has changed is not relivant.
14329  *
14330  * Fork - LGPL
14331  * <script type="text/javascript">
14332  */
14333
14334  
14335 /**
14336  * @class Roo.KeyNav
14337  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14338  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14339  * way to implement custom navigation schemes for any UI component.</p>
14340  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14341  * pageUp, pageDown, del, home, end.  Usage:</p>
14342  <pre><code>
14343 var nav = new Roo.KeyNav("my-element", {
14344     "left" : function(e){
14345         this.moveLeft(e.ctrlKey);
14346     },
14347     "right" : function(e){
14348         this.moveRight(e.ctrlKey);
14349     },
14350     "enter" : function(e){
14351         this.save();
14352     },
14353     scope : this
14354 });
14355 </code></pre>
14356  * @constructor
14357  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14358  * @param {Object} config The config
14359  */
14360 Roo.KeyNav = function(el, config){
14361     this.el = Roo.get(el);
14362     Roo.apply(this, config);
14363     if(!this.disabled){
14364         this.disabled = true;
14365         this.enable();
14366     }
14367 };
14368
14369 Roo.KeyNav.prototype = {
14370     /**
14371      * @cfg {Boolean} disabled
14372      * True to disable this KeyNav instance (defaults to false)
14373      */
14374     disabled : false,
14375     /**
14376      * @cfg {String} defaultEventAction
14377      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14378      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14379      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14380      */
14381     defaultEventAction: "stopEvent",
14382     /**
14383      * @cfg {Boolean} forceKeyDown
14384      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14385      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14386      * handle keydown instead of keypress.
14387      */
14388     forceKeyDown : false,
14389
14390     // private
14391     prepareEvent : function(e){
14392         var k = e.getKey();
14393         var h = this.keyToHandler[k];
14394         //if(h && this[h]){
14395         //    e.stopPropagation();
14396         //}
14397         if(Roo.isSafari && h && k >= 37 && k <= 40){
14398             e.stopEvent();
14399         }
14400     },
14401
14402     // private
14403     relay : function(e){
14404         var k = e.getKey();
14405         var h = this.keyToHandler[k];
14406         if(h && this[h]){
14407             if(this.doRelay(e, this[h], h) !== true){
14408                 e[this.defaultEventAction]();
14409             }
14410         }
14411     },
14412
14413     // private
14414     doRelay : function(e, h, hname){
14415         return h.call(this.scope || this, e);
14416     },
14417
14418     // possible handlers
14419     enter : false,
14420     left : false,
14421     right : false,
14422     up : false,
14423     down : false,
14424     tab : false,
14425     esc : false,
14426     pageUp : false,
14427     pageDown : false,
14428     del : false,
14429     home : false,
14430     end : false,
14431
14432     // quick lookup hash
14433     keyToHandler : {
14434         37 : "left",
14435         39 : "right",
14436         38 : "up",
14437         40 : "down",
14438         33 : "pageUp",
14439         34 : "pageDown",
14440         46 : "del",
14441         36 : "home",
14442         35 : "end",
14443         13 : "enter",
14444         27 : "esc",
14445         9  : "tab"
14446     },
14447
14448         /**
14449          * Enable this KeyNav
14450          */
14451         enable: function(){
14452                 if(this.disabled){
14453             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14454             // the EventObject will normalize Safari automatically
14455             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14456                 this.el.on("keydown", this.relay,  this);
14457             }else{
14458                 this.el.on("keydown", this.prepareEvent,  this);
14459                 this.el.on("keypress", this.relay,  this);
14460             }
14461                     this.disabled = false;
14462                 }
14463         },
14464
14465         /**
14466          * Disable this KeyNav
14467          */
14468         disable: function(){
14469                 if(!this.disabled){
14470                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14471                 this.el.un("keydown", this.relay);
14472             }else{
14473                 this.el.un("keydown", this.prepareEvent);
14474                 this.el.un("keypress", this.relay);
14475             }
14476                     this.disabled = true;
14477                 }
14478         }
14479 };/*
14480  * Based on:
14481  * Ext JS Library 1.1.1
14482  * Copyright(c) 2006-2007, Ext JS, LLC.
14483  *
14484  * Originally Released Under LGPL - original licence link has changed is not relivant.
14485  *
14486  * Fork - LGPL
14487  * <script type="text/javascript">
14488  */
14489
14490  
14491 /**
14492  * @class Roo.KeyMap
14493  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14494  * The constructor accepts the same config object as defined by {@link #addBinding}.
14495  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14496  * combination it will call the function with this signature (if the match is a multi-key
14497  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14498  * A KeyMap can also handle a string representation of keys.<br />
14499  * Usage:
14500  <pre><code>
14501 // map one key by key code
14502 var map = new Roo.KeyMap("my-element", {
14503     key: 13, // or Roo.EventObject.ENTER
14504     fn: myHandler,
14505     scope: myObject
14506 });
14507
14508 // map multiple keys to one action by string
14509 var map = new Roo.KeyMap("my-element", {
14510     key: "a\r\n\t",
14511     fn: myHandler,
14512     scope: myObject
14513 });
14514
14515 // map multiple keys to multiple actions by strings and array of codes
14516 var map = new Roo.KeyMap("my-element", [
14517     {
14518         key: [10,13],
14519         fn: function(){ alert("Return was pressed"); }
14520     }, {
14521         key: "abc",
14522         fn: function(){ alert('a, b or c was pressed'); }
14523     }, {
14524         key: "\t",
14525         ctrl:true,
14526         shift:true,
14527         fn: function(){ alert('Control + shift + tab was pressed.'); }
14528     }
14529 ]);
14530 </code></pre>
14531  * <b>Note: A KeyMap starts enabled</b>
14532  * @constructor
14533  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14534  * @param {Object} config The config (see {@link #addBinding})
14535  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14536  */
14537 Roo.KeyMap = function(el, config, eventName){
14538     this.el  = Roo.get(el);
14539     this.eventName = eventName || "keydown";
14540     this.bindings = [];
14541     if(config){
14542         this.addBinding(config);
14543     }
14544     this.enable();
14545 };
14546
14547 Roo.KeyMap.prototype = {
14548     /**
14549      * True to stop the event from bubbling and prevent the default browser action if the
14550      * key was handled by the KeyMap (defaults to false)
14551      * @type Boolean
14552      */
14553     stopEvent : false,
14554
14555     /**
14556      * Add a new binding to this KeyMap. The following config object properties are supported:
14557      * <pre>
14558 Property    Type             Description
14559 ----------  ---------------  ----------------------------------------------------------------------
14560 key         String/Array     A single keycode or an array of keycodes to handle
14561 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14562 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14563 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14564 fn          Function         The function to call when KeyMap finds the expected key combination
14565 scope       Object           The scope of the callback function
14566 </pre>
14567      *
14568      * Usage:
14569      * <pre><code>
14570 // Create a KeyMap
14571 var map = new Roo.KeyMap(document, {
14572     key: Roo.EventObject.ENTER,
14573     fn: handleKey,
14574     scope: this
14575 });
14576
14577 //Add a new binding to the existing KeyMap later
14578 map.addBinding({
14579     key: 'abc',
14580     shift: true,
14581     fn: handleKey,
14582     scope: this
14583 });
14584 </code></pre>
14585      * @param {Object/Array} config A single KeyMap config or an array of configs
14586      */
14587         addBinding : function(config){
14588         if(config instanceof Array){
14589             for(var i = 0, len = config.length; i < len; i++){
14590                 this.addBinding(config[i]);
14591             }
14592             return;
14593         }
14594         var keyCode = config.key,
14595             shift = config.shift, 
14596             ctrl = config.ctrl, 
14597             alt = config.alt,
14598             fn = config.fn,
14599             scope = config.scope;
14600         if(typeof keyCode == "string"){
14601             var ks = [];
14602             var keyString = keyCode.toUpperCase();
14603             for(var j = 0, len = keyString.length; j < len; j++){
14604                 ks.push(keyString.charCodeAt(j));
14605             }
14606             keyCode = ks;
14607         }
14608         var keyArray = keyCode instanceof Array;
14609         var handler = function(e){
14610             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14611                 var k = e.getKey();
14612                 if(keyArray){
14613                     for(var i = 0, len = keyCode.length; i < len; i++){
14614                         if(keyCode[i] == k){
14615                           if(this.stopEvent){
14616                               e.stopEvent();
14617                           }
14618                           fn.call(scope || window, k, e);
14619                           return;
14620                         }
14621                     }
14622                 }else{
14623                     if(k == keyCode){
14624                         if(this.stopEvent){
14625                            e.stopEvent();
14626                         }
14627                         fn.call(scope || window, k, e);
14628                     }
14629                 }
14630             }
14631         };
14632         this.bindings.push(handler);  
14633         },
14634
14635     /**
14636      * Shorthand for adding a single key listener
14637      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14638      * following options:
14639      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14640      * @param {Function} fn The function to call
14641      * @param {Object} scope (optional) The scope of the function
14642      */
14643     on : function(key, fn, scope){
14644         var keyCode, shift, ctrl, alt;
14645         if(typeof key == "object" && !(key instanceof Array)){
14646             keyCode = key.key;
14647             shift = key.shift;
14648             ctrl = key.ctrl;
14649             alt = key.alt;
14650         }else{
14651             keyCode = key;
14652         }
14653         this.addBinding({
14654             key: keyCode,
14655             shift: shift,
14656             ctrl: ctrl,
14657             alt: alt,
14658             fn: fn,
14659             scope: scope
14660         })
14661     },
14662
14663     // private
14664     handleKeyDown : function(e){
14665             if(this.enabled){ //just in case
14666             var b = this.bindings;
14667             for(var i = 0, len = b.length; i < len; i++){
14668                 b[i].call(this, e);
14669             }
14670             }
14671         },
14672         
14673         /**
14674          * Returns true if this KeyMap is enabled
14675          * @return {Boolean} 
14676          */
14677         isEnabled : function(){
14678             return this.enabled;  
14679         },
14680         
14681         /**
14682          * Enables this KeyMap
14683          */
14684         enable: function(){
14685                 if(!this.enabled){
14686                     this.el.on(this.eventName, this.handleKeyDown, this);
14687                     this.enabled = true;
14688                 }
14689         },
14690
14691         /**
14692          * Disable this KeyMap
14693          */
14694         disable: function(){
14695                 if(this.enabled){
14696                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14697                     this.enabled = false;
14698                 }
14699         }
14700 };/*
14701  * Based on:
14702  * Ext JS Library 1.1.1
14703  * Copyright(c) 2006-2007, Ext JS, LLC.
14704  *
14705  * Originally Released Under LGPL - original licence link has changed is not relivant.
14706  *
14707  * Fork - LGPL
14708  * <script type="text/javascript">
14709  */
14710
14711  
14712 /**
14713  * @class Roo.util.TextMetrics
14714  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14715  * wide, in pixels, a given block of text will be.
14716  * @singleton
14717  */
14718 Roo.util.TextMetrics = function(){
14719     var shared;
14720     return {
14721         /**
14722          * Measures the size of the specified text
14723          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14724          * that can affect the size of the rendered text
14725          * @param {String} text The text to measure
14726          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14727          * in order to accurately measure the text height
14728          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14729          */
14730         measure : function(el, text, fixedWidth){
14731             if(!shared){
14732                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14733             }
14734             shared.bind(el);
14735             shared.setFixedWidth(fixedWidth || 'auto');
14736             return shared.getSize(text);
14737         },
14738
14739         /**
14740          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14741          * the overhead of multiple calls to initialize the style properties on each measurement.
14742          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14743          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14744          * in order to accurately measure the text height
14745          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14746          */
14747         createInstance : function(el, fixedWidth){
14748             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14749         }
14750     };
14751 }();
14752
14753  
14754
14755 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14756     var ml = new Roo.Element(document.createElement('div'));
14757     document.body.appendChild(ml.dom);
14758     ml.position('absolute');
14759     ml.setLeftTop(-1000, -1000);
14760     ml.hide();
14761
14762     if(fixedWidth){
14763         ml.setWidth(fixedWidth);
14764     }
14765      
14766     var instance = {
14767         /**
14768          * Returns the size of the specified text based on the internal element's style and width properties
14769          * @memberOf Roo.util.TextMetrics.Instance#
14770          * @param {String} text The text to measure
14771          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14772          */
14773         getSize : function(text){
14774             ml.update(text);
14775             var s = ml.getSize();
14776             ml.update('');
14777             return s;
14778         },
14779
14780         /**
14781          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
14782          * that can affect the size of the rendered text
14783          * @memberOf Roo.util.TextMetrics.Instance#
14784          * @param {String/HTMLElement} el The element, dom node or id
14785          */
14786         bind : function(el){
14787             ml.setStyle(
14788                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
14789             );
14790         },
14791
14792         /**
14793          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
14794          * to set a fixed width in order to accurately measure the text height.
14795          * @memberOf Roo.util.TextMetrics.Instance#
14796          * @param {Number} width The width to set on the element
14797          */
14798         setFixedWidth : function(width){
14799             ml.setWidth(width);
14800         },
14801
14802         /**
14803          * Returns the measured width of the specified text
14804          * @memberOf Roo.util.TextMetrics.Instance#
14805          * @param {String} text The text to measure
14806          * @return {Number} width The width in pixels
14807          */
14808         getWidth : function(text){
14809             ml.dom.style.width = 'auto';
14810             return this.getSize(text).width;
14811         },
14812
14813         /**
14814          * Returns the measured height of the specified text.  For multiline text, be sure to call
14815          * {@link #setFixedWidth} if necessary.
14816          * @memberOf Roo.util.TextMetrics.Instance#
14817          * @param {String} text The text to measure
14818          * @return {Number} height The height in pixels
14819          */
14820         getHeight : function(text){
14821             return this.getSize(text).height;
14822         }
14823     };
14824
14825     instance.bind(bindTo);
14826
14827     return instance;
14828 };
14829
14830 // backwards compat
14831 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
14832  * Based on:
14833  * Ext JS Library 1.1.1
14834  * Copyright(c) 2006-2007, Ext JS, LLC.
14835  *
14836  * Originally Released Under LGPL - original licence link has changed is not relivant.
14837  *
14838  * Fork - LGPL
14839  * <script type="text/javascript">
14840  */
14841
14842 /**
14843  * @class Roo.state.Provider
14844  * Abstract base class for state provider implementations. This class provides methods
14845  * for encoding and decoding <b>typed</b> variables including dates and defines the 
14846  * Provider interface.
14847  */
14848 Roo.state.Provider = function(){
14849     /**
14850      * @event statechange
14851      * Fires when a state change occurs.
14852      * @param {Provider} this This state provider
14853      * @param {String} key The state key which was changed
14854      * @param {String} value The encoded value for the state
14855      */
14856     this.addEvents({
14857         "statechange": true
14858     });
14859     this.state = {};
14860     Roo.state.Provider.superclass.constructor.call(this);
14861 };
14862 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
14863     /**
14864      * Returns the current value for a key
14865      * @param {String} name The key name
14866      * @param {Mixed} defaultValue A default value to return if the key's value is not found
14867      * @return {Mixed} The state data
14868      */
14869     get : function(name, defaultValue){
14870         return typeof this.state[name] == "undefined" ?
14871             defaultValue : this.state[name];
14872     },
14873     
14874     /**
14875      * Clears a value from the state
14876      * @param {String} name The key name
14877      */
14878     clear : function(name){
14879         delete this.state[name];
14880         this.fireEvent("statechange", this, name, null);
14881     },
14882     
14883     /**
14884      * Sets the value for a key
14885      * @param {String} name The key name
14886      * @param {Mixed} value The value to set
14887      */
14888     set : function(name, value){
14889         this.state[name] = value;
14890         this.fireEvent("statechange", this, name, value);
14891     },
14892     
14893     /**
14894      * Decodes a string previously encoded with {@link #encodeValue}.
14895      * @param {String} value The value to decode
14896      * @return {Mixed} The decoded value
14897      */
14898     decodeValue : function(cookie){
14899         var re = /^(a|n|d|b|s|o)\:(.*)$/;
14900         var matches = re.exec(unescape(cookie));
14901         if(!matches || !matches[1]) {
14902             return; // non state cookie
14903         }
14904         var type = matches[1];
14905         var v = matches[2];
14906         switch(type){
14907             case "n":
14908                 return parseFloat(v);
14909             case "d":
14910                 return new Date(Date.parse(v));
14911             case "b":
14912                 return (v == "1");
14913             case "a":
14914                 var all = [];
14915                 var values = v.split("^");
14916                 for(var i = 0, len = values.length; i < len; i++){
14917                     all.push(this.decodeValue(values[i]));
14918                 }
14919                 return all;
14920            case "o":
14921                 var all = {};
14922                 var values = v.split("^");
14923                 for(var i = 0, len = values.length; i < len; i++){
14924                     var kv = values[i].split("=");
14925                     all[kv[0]] = this.decodeValue(kv[1]);
14926                 }
14927                 return all;
14928            default:
14929                 return v;
14930         }
14931     },
14932     
14933     /**
14934      * Encodes a value including type information.  Decode with {@link #decodeValue}.
14935      * @param {Mixed} value The value to encode
14936      * @return {String} The encoded value
14937      */
14938     encodeValue : function(v){
14939         var enc;
14940         if(typeof v == "number"){
14941             enc = "n:" + v;
14942         }else if(typeof v == "boolean"){
14943             enc = "b:" + (v ? "1" : "0");
14944         }else if(v instanceof Date){
14945             enc = "d:" + v.toGMTString();
14946         }else if(v instanceof Array){
14947             var flat = "";
14948             for(var i = 0, len = v.length; i < len; i++){
14949                 flat += this.encodeValue(v[i]);
14950                 if(i != len-1) {
14951                     flat += "^";
14952                 }
14953             }
14954             enc = "a:" + flat;
14955         }else if(typeof v == "object"){
14956             var flat = "";
14957             for(var key in v){
14958                 if(typeof v[key] != "function"){
14959                     flat += key + "=" + this.encodeValue(v[key]) + "^";
14960                 }
14961             }
14962             enc = "o:" + flat.substring(0, flat.length-1);
14963         }else{
14964             enc = "s:" + v;
14965         }
14966         return escape(enc);        
14967     }
14968 });
14969
14970 /*
14971  * Based on:
14972  * Ext JS Library 1.1.1
14973  * Copyright(c) 2006-2007, Ext JS, LLC.
14974  *
14975  * Originally Released Under LGPL - original licence link has changed is not relivant.
14976  *
14977  * Fork - LGPL
14978  * <script type="text/javascript">
14979  */
14980 /**
14981  * @class Roo.state.Manager
14982  * This is the global state manager. By default all components that are "state aware" check this class
14983  * for state information if you don't pass them a custom state provider. In order for this class
14984  * to be useful, it must be initialized with a provider when your application initializes.
14985  <pre><code>
14986 // in your initialization function
14987 init : function(){
14988    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
14989    ...
14990    // supposed you have a {@link Roo.BorderLayout}
14991    var layout = new Roo.BorderLayout(...);
14992    layout.restoreState();
14993    // or a {Roo.BasicDialog}
14994    var dialog = new Roo.BasicDialog(...);
14995    dialog.restoreState();
14996  </code></pre>
14997  * @singleton
14998  */
14999 Roo.state.Manager = function(){
15000     var provider = new Roo.state.Provider();
15001     
15002     return {
15003         /**
15004          * Configures the default state provider for your application
15005          * @param {Provider} stateProvider The state provider to set
15006          */
15007         setProvider : function(stateProvider){
15008             provider = stateProvider;
15009         },
15010         
15011         /**
15012          * Returns the current value for a key
15013          * @param {String} name The key name
15014          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15015          * @return {Mixed} The state data
15016          */
15017         get : function(key, defaultValue){
15018             return provider.get(key, defaultValue);
15019         },
15020         
15021         /**
15022          * Sets the value for a key
15023          * @param {String} name The key name
15024          * @param {Mixed} value The state data
15025          */
15026          set : function(key, value){
15027             provider.set(key, value);
15028         },
15029         
15030         /**
15031          * Clears a value from the state
15032          * @param {String} name The key name
15033          */
15034         clear : function(key){
15035             provider.clear(key);
15036         },
15037         
15038         /**
15039          * Gets the currently configured state provider
15040          * @return {Provider} The state provider
15041          */
15042         getProvider : function(){
15043             return provider;
15044         }
15045     };
15046 }();
15047 /*
15048  * Based on:
15049  * Ext JS Library 1.1.1
15050  * Copyright(c) 2006-2007, Ext JS, LLC.
15051  *
15052  * Originally Released Under LGPL - original licence link has changed is not relivant.
15053  *
15054  * Fork - LGPL
15055  * <script type="text/javascript">
15056  */
15057 /**
15058  * @class Roo.state.CookieProvider
15059  * @extends Roo.state.Provider
15060  * The default Provider implementation which saves state via cookies.
15061  * <br />Usage:
15062  <pre><code>
15063    var cp = new Roo.state.CookieProvider({
15064        path: "/cgi-bin/",
15065        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15066        domain: "roojs.com"
15067    })
15068    Roo.state.Manager.setProvider(cp);
15069  </code></pre>
15070  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15071  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15072  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15073  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15074  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15075  * domain the page is running on including the 'www' like 'www.roojs.com')
15076  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15077  * @constructor
15078  * Create a new CookieProvider
15079  * @param {Object} config The configuration object
15080  */
15081 Roo.state.CookieProvider = function(config){
15082     Roo.state.CookieProvider.superclass.constructor.call(this);
15083     this.path = "/";
15084     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15085     this.domain = null;
15086     this.secure = false;
15087     Roo.apply(this, config);
15088     this.state = this.readCookies();
15089 };
15090
15091 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15092     // private
15093     set : function(name, value){
15094         if(typeof value == "undefined" || value === null){
15095             this.clear(name);
15096             return;
15097         }
15098         this.setCookie(name, value);
15099         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15100     },
15101
15102     // private
15103     clear : function(name){
15104         this.clearCookie(name);
15105         Roo.state.CookieProvider.superclass.clear.call(this, name);
15106     },
15107
15108     // private
15109     readCookies : function(){
15110         var cookies = {};
15111         var c = document.cookie + ";";
15112         var re = /\s?(.*?)=(.*?);/g;
15113         var matches;
15114         while((matches = re.exec(c)) != null){
15115             var name = matches[1];
15116             var value = matches[2];
15117             if(name && name.substring(0,3) == "ys-"){
15118                 cookies[name.substr(3)] = this.decodeValue(value);
15119             }
15120         }
15121         return cookies;
15122     },
15123
15124     // private
15125     setCookie : function(name, value){
15126         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15127            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15128            ((this.path == null) ? "" : ("; path=" + this.path)) +
15129            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15130            ((this.secure == true) ? "; secure" : "");
15131     },
15132
15133     // private
15134     clearCookie : function(name){
15135         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15136            ((this.path == null) ? "" : ("; path=" + this.path)) +
15137            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15138            ((this.secure == true) ? "; secure" : "");
15139     }
15140 });/*
15141  * Based on:
15142  * Ext JS Library 1.1.1
15143  * Copyright(c) 2006-2007, Ext JS, LLC.
15144  *
15145  * Originally Released Under LGPL - original licence link has changed is not relivant.
15146  *
15147  * Fork - LGPL
15148  * <script type="text/javascript">
15149  */
15150  
15151
15152 /**
15153  * @class Roo.ComponentMgr
15154  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15155  * @singleton
15156  */
15157 Roo.ComponentMgr = function(){
15158     var all = new Roo.util.MixedCollection();
15159
15160     return {
15161         /**
15162          * Registers a component.
15163          * @param {Roo.Component} c The component
15164          */
15165         register : function(c){
15166             all.add(c);
15167         },
15168
15169         /**
15170          * Unregisters a component.
15171          * @param {Roo.Component} c The component
15172          */
15173         unregister : function(c){
15174             all.remove(c);
15175         },
15176
15177         /**
15178          * Returns a component by id
15179          * @param {String} id The component id
15180          */
15181         get : function(id){
15182             return all.get(id);
15183         },
15184
15185         /**
15186          * Registers a function that will be called when a specified component is added to ComponentMgr
15187          * @param {String} id The component id
15188          * @param {Funtction} fn The callback function
15189          * @param {Object} scope The scope of the callback
15190          */
15191         onAvailable : function(id, fn, scope){
15192             all.on("add", function(index, o){
15193                 if(o.id == id){
15194                     fn.call(scope || o, o);
15195                     all.un("add", fn, scope);
15196                 }
15197             });
15198         }
15199     };
15200 }();/*
15201  * Based on:
15202  * Ext JS Library 1.1.1
15203  * Copyright(c) 2006-2007, Ext JS, LLC.
15204  *
15205  * Originally Released Under LGPL - original licence link has changed is not relivant.
15206  *
15207  * Fork - LGPL
15208  * <script type="text/javascript">
15209  */
15210  
15211 /**
15212  * @class Roo.Component
15213  * @extends Roo.util.Observable
15214  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15215  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15216  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15217  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15218  * All visual components (widgets) that require rendering into a layout should subclass Component.
15219  * @constructor
15220  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15221  * 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
15222  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15223  */
15224 Roo.Component = function(config){
15225     config = config || {};
15226     if(config.tagName || config.dom || typeof config == "string"){ // element object
15227         config = {el: config, id: config.id || config};
15228     }
15229     this.initialConfig = config;
15230
15231     Roo.apply(this, config);
15232     this.addEvents({
15233         /**
15234          * @event disable
15235          * Fires after the component is disabled.
15236              * @param {Roo.Component} this
15237              */
15238         disable : true,
15239         /**
15240          * @event enable
15241          * Fires after the component is enabled.
15242              * @param {Roo.Component} this
15243              */
15244         enable : true,
15245         /**
15246          * @event beforeshow
15247          * Fires before the component is shown.  Return false to stop the show.
15248              * @param {Roo.Component} this
15249              */
15250         beforeshow : true,
15251         /**
15252          * @event show
15253          * Fires after the component is shown.
15254              * @param {Roo.Component} this
15255              */
15256         show : true,
15257         /**
15258          * @event beforehide
15259          * Fires before the component is hidden. Return false to stop the hide.
15260              * @param {Roo.Component} this
15261              */
15262         beforehide : true,
15263         /**
15264          * @event hide
15265          * Fires after the component is hidden.
15266              * @param {Roo.Component} this
15267              */
15268         hide : true,
15269         /**
15270          * @event beforerender
15271          * Fires before the component is rendered. Return false to stop the render.
15272              * @param {Roo.Component} this
15273              */
15274         beforerender : true,
15275         /**
15276          * @event render
15277          * Fires after the component is rendered.
15278              * @param {Roo.Component} this
15279              */
15280         render : true,
15281         /**
15282          * @event beforedestroy
15283          * Fires before the component is destroyed. Return false to stop the destroy.
15284              * @param {Roo.Component} this
15285              */
15286         beforedestroy : true,
15287         /**
15288          * @event destroy
15289          * Fires after the component is destroyed.
15290              * @param {Roo.Component} this
15291              */
15292         destroy : true
15293     });
15294     if(!this.id){
15295         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15296     }
15297     Roo.ComponentMgr.register(this);
15298     Roo.Component.superclass.constructor.call(this);
15299     this.initComponent();
15300     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15301         this.render(this.renderTo);
15302         delete this.renderTo;
15303     }
15304 };
15305
15306 /** @private */
15307 Roo.Component.AUTO_ID = 1000;
15308
15309 Roo.extend(Roo.Component, Roo.util.Observable, {
15310     /**
15311      * @scope Roo.Component.prototype
15312      * @type {Boolean}
15313      * true if this component is hidden. Read-only.
15314      */
15315     hidden : false,
15316     /**
15317      * @type {Boolean}
15318      * true if this component is disabled. Read-only.
15319      */
15320     disabled : false,
15321     /**
15322      * @type {Boolean}
15323      * true if this component has been rendered. Read-only.
15324      */
15325     rendered : false,
15326     
15327     /** @cfg {String} disableClass
15328      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15329      */
15330     disabledClass : "x-item-disabled",
15331         /** @cfg {Boolean} allowDomMove
15332          * Whether the component can move the Dom node when rendering (defaults to true).
15333          */
15334     allowDomMove : true,
15335     /** @cfg {String} hideMode (display|visibility)
15336      * How this component should hidden. Supported values are
15337      * "visibility" (css visibility), "offsets" (negative offset position) and
15338      * "display" (css display) - defaults to "display".
15339      */
15340     hideMode: 'display',
15341
15342     /** @private */
15343     ctype : "Roo.Component",
15344
15345     /**
15346      * @cfg {String} actionMode 
15347      * which property holds the element that used for  hide() / show() / disable() / enable()
15348      * default is 'el' 
15349      */
15350     actionMode : "el",
15351
15352     /** @private */
15353     getActionEl : function(){
15354         return this[this.actionMode];
15355     },
15356
15357     initComponent : Roo.emptyFn,
15358     /**
15359      * If this is a lazy rendering component, render it to its container element.
15360      * @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.
15361      */
15362     render : function(container, position){
15363         if(!this.rendered && this.fireEvent("beforerender", this) !== false){
15364             if(!container && this.el){
15365                 this.el = Roo.get(this.el);
15366                 container = this.el.dom.parentNode;
15367                 this.allowDomMove = false;
15368             }
15369             this.container = Roo.get(container);
15370             this.rendered = true;
15371             if(position !== undefined){
15372                 if(typeof position == 'number'){
15373                     position = this.container.dom.childNodes[position];
15374                 }else{
15375                     position = Roo.getDom(position);
15376                 }
15377             }
15378             this.onRender(this.container, position || null);
15379             if(this.cls){
15380                 this.el.addClass(this.cls);
15381                 delete this.cls;
15382             }
15383             if(this.style){
15384                 this.el.applyStyles(this.style);
15385                 delete this.style;
15386             }
15387             this.fireEvent("render", this);
15388             this.afterRender(this.container);
15389             if(this.hidden){
15390                 this.hide();
15391             }
15392             if(this.disabled){
15393                 this.disable();
15394             }
15395         }
15396         return this;
15397     },
15398
15399     /** @private */
15400     // default function is not really useful
15401     onRender : function(ct, position){
15402         if(this.el){
15403             this.el = Roo.get(this.el);
15404             if(this.allowDomMove !== false){
15405                 ct.dom.insertBefore(this.el.dom, position);
15406             }
15407         }
15408     },
15409
15410     /** @private */
15411     getAutoCreate : function(){
15412         var cfg = typeof this.autoCreate == "object" ?
15413                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15414         if(this.id && !cfg.id){
15415             cfg.id = this.id;
15416         }
15417         return cfg;
15418     },
15419
15420     /** @private */
15421     afterRender : Roo.emptyFn,
15422
15423     /**
15424      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15425      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15426      */
15427     destroy : function(){
15428         if(this.fireEvent("beforedestroy", this) !== false){
15429             this.purgeListeners();
15430             this.beforeDestroy();
15431             if(this.rendered){
15432                 this.el.removeAllListeners();
15433                 this.el.remove();
15434                 if(this.actionMode == "container"){
15435                     this.container.remove();
15436                 }
15437             }
15438             this.onDestroy();
15439             Roo.ComponentMgr.unregister(this);
15440             this.fireEvent("destroy", this);
15441         }
15442     },
15443
15444         /** @private */
15445     beforeDestroy : function(){
15446
15447     },
15448
15449         /** @private */
15450         onDestroy : function(){
15451
15452     },
15453
15454     /**
15455      * Returns the underlying {@link Roo.Element}.
15456      * @return {Roo.Element} The element
15457      */
15458     getEl : function(){
15459         return this.el;
15460     },
15461
15462     /**
15463      * Returns the id of this component.
15464      * @return {String}
15465      */
15466     getId : function(){
15467         return this.id;
15468     },
15469
15470     /**
15471      * Try to focus this component.
15472      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15473      * @return {Roo.Component} this
15474      */
15475     focus : function(selectText){
15476         if(this.rendered){
15477             this.el.focus();
15478             if(selectText === true){
15479                 this.el.dom.select();
15480             }
15481         }
15482         return this;
15483     },
15484
15485     /** @private */
15486     blur : function(){
15487         if(this.rendered){
15488             this.el.blur();
15489         }
15490         return this;
15491     },
15492
15493     /**
15494      * Disable this component.
15495      * @return {Roo.Component} this
15496      */
15497     disable : function(){
15498         if(this.rendered){
15499             this.onDisable();
15500         }
15501         this.disabled = true;
15502         this.fireEvent("disable", this);
15503         return this;
15504     },
15505
15506         // private
15507     onDisable : function(){
15508         this.getActionEl().addClass(this.disabledClass);
15509         this.el.dom.disabled = true;
15510     },
15511
15512     /**
15513      * Enable this component.
15514      * @return {Roo.Component} this
15515      */
15516     enable : function(){
15517         if(this.rendered){
15518             this.onEnable();
15519         }
15520         this.disabled = false;
15521         this.fireEvent("enable", this);
15522         return this;
15523     },
15524
15525         // private
15526     onEnable : function(){
15527         this.getActionEl().removeClass(this.disabledClass);
15528         this.el.dom.disabled = false;
15529     },
15530
15531     /**
15532      * Convenience function for setting disabled/enabled by boolean.
15533      * @param {Boolean} disabled
15534      */
15535     setDisabled : function(disabled){
15536         this[disabled ? "disable" : "enable"]();
15537     },
15538
15539     /**
15540      * Show this component.
15541      * @return {Roo.Component} this
15542      */
15543     show: function(){
15544         if(this.fireEvent("beforeshow", this) !== false){
15545             this.hidden = false;
15546             if(this.rendered){
15547                 this.onShow();
15548             }
15549             this.fireEvent("show", this);
15550         }
15551         return this;
15552     },
15553
15554     // private
15555     onShow : function(){
15556         var ae = this.getActionEl();
15557         if(this.hideMode == 'visibility'){
15558             ae.dom.style.visibility = "visible";
15559         }else if(this.hideMode == 'offsets'){
15560             ae.removeClass('x-hidden');
15561         }else{
15562             ae.dom.style.display = "";
15563         }
15564     },
15565
15566     /**
15567      * Hide this component.
15568      * @return {Roo.Component} this
15569      */
15570     hide: function(){
15571         if(this.fireEvent("beforehide", this) !== false){
15572             this.hidden = true;
15573             if(this.rendered){
15574                 this.onHide();
15575             }
15576             this.fireEvent("hide", this);
15577         }
15578         return this;
15579     },
15580
15581     // private
15582     onHide : function(){
15583         var ae = this.getActionEl();
15584         if(this.hideMode == 'visibility'){
15585             ae.dom.style.visibility = "hidden";
15586         }else if(this.hideMode == 'offsets'){
15587             ae.addClass('x-hidden');
15588         }else{
15589             ae.dom.style.display = "none";
15590         }
15591     },
15592
15593     /**
15594      * Convenience function to hide or show this component by boolean.
15595      * @param {Boolean} visible True to show, false to hide
15596      * @return {Roo.Component} this
15597      */
15598     setVisible: function(visible){
15599         if(visible) {
15600             this.show();
15601         }else{
15602             this.hide();
15603         }
15604         return this;
15605     },
15606
15607     /**
15608      * Returns true if this component is visible.
15609      */
15610     isVisible : function(){
15611         return this.getActionEl().isVisible();
15612     },
15613
15614     cloneConfig : function(overrides){
15615         overrides = overrides || {};
15616         var id = overrides.id || Roo.id();
15617         var cfg = Roo.applyIf(overrides, this.initialConfig);
15618         cfg.id = id; // prevent dup id
15619         return new this.constructor(cfg);
15620     }
15621 });/*
15622  * Based on:
15623  * Ext JS Library 1.1.1
15624  * Copyright(c) 2006-2007, Ext JS, LLC.
15625  *
15626  * Originally Released Under LGPL - original licence link has changed is not relivant.
15627  *
15628  * Fork - LGPL
15629  * <script type="text/javascript">
15630  */
15631
15632 /**
15633  * @class Roo.BoxComponent
15634  * @extends Roo.Component
15635  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15636  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15637  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15638  * layout containers.
15639  * @constructor
15640  * @param {Roo.Element/String/Object} config The configuration options.
15641  */
15642 Roo.BoxComponent = function(config){
15643     Roo.Component.call(this, config);
15644     this.addEvents({
15645         /**
15646          * @event resize
15647          * Fires after the component is resized.
15648              * @param {Roo.Component} this
15649              * @param {Number} adjWidth The box-adjusted width that was set
15650              * @param {Number} adjHeight The box-adjusted height that was set
15651              * @param {Number} rawWidth The width that was originally specified
15652              * @param {Number} rawHeight The height that was originally specified
15653              */
15654         resize : true,
15655         /**
15656          * @event move
15657          * Fires after the component is moved.
15658              * @param {Roo.Component} this
15659              * @param {Number} x The new x position
15660              * @param {Number} y The new y position
15661              */
15662         move : true
15663     });
15664 };
15665
15666 Roo.extend(Roo.BoxComponent, Roo.Component, {
15667     // private, set in afterRender to signify that the component has been rendered
15668     boxReady : false,
15669     // private, used to defer height settings to subclasses
15670     deferHeight: false,
15671     /** @cfg {Number} width
15672      * width (optional) size of component
15673      */
15674      /** @cfg {Number} height
15675      * height (optional) size of component
15676      */
15677      
15678     /**
15679      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15680      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15681      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15682      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15683      * @return {Roo.BoxComponent} this
15684      */
15685     setSize : function(w, h){
15686         // support for standard size objects
15687         if(typeof w == 'object'){
15688             h = w.height;
15689             w = w.width;
15690         }
15691         // not rendered
15692         if(!this.boxReady){
15693             this.width = w;
15694             this.height = h;
15695             return this;
15696         }
15697
15698         // prevent recalcs when not needed
15699         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15700             return this;
15701         }
15702         this.lastSize = {width: w, height: h};
15703
15704         var adj = this.adjustSize(w, h);
15705         var aw = adj.width, ah = adj.height;
15706         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15707             var rz = this.getResizeEl();
15708             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15709                 rz.setSize(aw, ah);
15710             }else if(!this.deferHeight && ah !== undefined){
15711                 rz.setHeight(ah);
15712             }else if(aw !== undefined){
15713                 rz.setWidth(aw);
15714             }
15715             this.onResize(aw, ah, w, h);
15716             this.fireEvent('resize', this, aw, ah, w, h);
15717         }
15718         return this;
15719     },
15720
15721     /**
15722      * Gets the current size of the component's underlying element.
15723      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15724      */
15725     getSize : function(){
15726         return this.el.getSize();
15727     },
15728
15729     /**
15730      * Gets the current XY position of the component's underlying element.
15731      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15732      * @return {Array} The XY position of the element (e.g., [100, 200])
15733      */
15734     getPosition : function(local){
15735         if(local === true){
15736             return [this.el.getLeft(true), this.el.getTop(true)];
15737         }
15738         return this.xy || this.el.getXY();
15739     },
15740
15741     /**
15742      * Gets the current box measurements of the component's underlying element.
15743      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15744      * @returns {Object} box An object in the format {x, y, width, height}
15745      */
15746     getBox : function(local){
15747         var s = this.el.getSize();
15748         if(local){
15749             s.x = this.el.getLeft(true);
15750             s.y = this.el.getTop(true);
15751         }else{
15752             var xy = this.xy || this.el.getXY();
15753             s.x = xy[0];
15754             s.y = xy[1];
15755         }
15756         return s;
15757     },
15758
15759     /**
15760      * Sets the current box measurements of the component's underlying element.
15761      * @param {Object} box An object in the format {x, y, width, height}
15762      * @returns {Roo.BoxComponent} this
15763      */
15764     updateBox : function(box){
15765         this.setSize(box.width, box.height);
15766         this.setPagePosition(box.x, box.y);
15767         return this;
15768     },
15769
15770     // protected
15771     getResizeEl : function(){
15772         return this.resizeEl || this.el;
15773     },
15774
15775     // protected
15776     getPositionEl : function(){
15777         return this.positionEl || this.el;
15778     },
15779
15780     /**
15781      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
15782      * This method fires the move event.
15783      * @param {Number} left The new left
15784      * @param {Number} top The new top
15785      * @returns {Roo.BoxComponent} this
15786      */
15787     setPosition : function(x, y){
15788         this.x = x;
15789         this.y = y;
15790         if(!this.boxReady){
15791             return this;
15792         }
15793         var adj = this.adjustPosition(x, y);
15794         var ax = adj.x, ay = adj.y;
15795
15796         var el = this.getPositionEl();
15797         if(ax !== undefined || ay !== undefined){
15798             if(ax !== undefined && ay !== undefined){
15799                 el.setLeftTop(ax, ay);
15800             }else if(ax !== undefined){
15801                 el.setLeft(ax);
15802             }else if(ay !== undefined){
15803                 el.setTop(ay);
15804             }
15805             this.onPosition(ax, ay);
15806             this.fireEvent('move', this, ax, ay);
15807         }
15808         return this;
15809     },
15810
15811     /**
15812      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
15813      * This method fires the move event.
15814      * @param {Number} x The new x position
15815      * @param {Number} y The new y position
15816      * @returns {Roo.BoxComponent} this
15817      */
15818     setPagePosition : function(x, y){
15819         this.pageX = x;
15820         this.pageY = y;
15821         if(!this.boxReady){
15822             return;
15823         }
15824         if(x === undefined || y === undefined){ // cannot translate undefined points
15825             return;
15826         }
15827         var p = this.el.translatePoints(x, y);
15828         this.setPosition(p.left, p.top);
15829         return this;
15830     },
15831
15832     // private
15833     onRender : function(ct, position){
15834         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
15835         if(this.resizeEl){
15836             this.resizeEl = Roo.get(this.resizeEl);
15837         }
15838         if(this.positionEl){
15839             this.positionEl = Roo.get(this.positionEl);
15840         }
15841     },
15842
15843     // private
15844     afterRender : function(){
15845         Roo.BoxComponent.superclass.afterRender.call(this);
15846         this.boxReady = true;
15847         this.setSize(this.width, this.height);
15848         if(this.x || this.y){
15849             this.setPosition(this.x, this.y);
15850         }
15851         if(this.pageX || this.pageY){
15852             this.setPagePosition(this.pageX, this.pageY);
15853         }
15854     },
15855
15856     /**
15857      * Force the component's size to recalculate based on the underlying element's current height and width.
15858      * @returns {Roo.BoxComponent} this
15859      */
15860     syncSize : function(){
15861         delete this.lastSize;
15862         this.setSize(this.el.getWidth(), this.el.getHeight());
15863         return this;
15864     },
15865
15866     /**
15867      * Called after the component is resized, this method is empty by default but can be implemented by any
15868      * subclass that needs to perform custom logic after a resize occurs.
15869      * @param {Number} adjWidth The box-adjusted width that was set
15870      * @param {Number} adjHeight The box-adjusted height that was set
15871      * @param {Number} rawWidth The width that was originally specified
15872      * @param {Number} rawHeight The height that was originally specified
15873      */
15874     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
15875
15876     },
15877
15878     /**
15879      * Called after the component is moved, this method is empty by default but can be implemented by any
15880      * subclass that needs to perform custom logic after a move occurs.
15881      * @param {Number} x The new x position
15882      * @param {Number} y The new y position
15883      */
15884     onPosition : function(x, y){
15885
15886     },
15887
15888     // private
15889     adjustSize : function(w, h){
15890         if(this.autoWidth){
15891             w = 'auto';
15892         }
15893         if(this.autoHeight){
15894             h = 'auto';
15895         }
15896         return {width : w, height: h};
15897     },
15898
15899     // private
15900     adjustPosition : function(x, y){
15901         return {x : x, y: y};
15902     }
15903 });/*
15904  * Original code for Roojs - LGPL
15905  * <script type="text/javascript">
15906  */
15907  
15908 /**
15909  * @class Roo.XComponent
15910  * A delayed Element creator...
15911  * Or a way to group chunks of interface together.
15912  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
15913  *  used in conjunction with XComponent.build() it will create an instance of each element,
15914  *  then call addxtype() to build the User interface.
15915  * 
15916  * Mypart.xyx = new Roo.XComponent({
15917
15918     parent : 'Mypart.xyz', // empty == document.element.!!
15919     order : '001',
15920     name : 'xxxx'
15921     region : 'xxxx'
15922     disabled : function() {} 
15923      
15924     tree : function() { // return an tree of xtype declared components
15925         var MODULE = this;
15926         return 
15927         {
15928             xtype : 'NestedLayoutPanel',
15929             // technicall
15930         }
15931      ]
15932  *})
15933  *
15934  *
15935  * It can be used to build a big heiracy, with parent etc.
15936  * or you can just use this to render a single compoent to a dom element
15937  * MYPART.render(Roo.Element | String(id) | dom_element )
15938  *
15939  *
15940  * Usage patterns.
15941  *
15942  * Classic Roo
15943  *
15944  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
15945  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
15946  *
15947  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
15948  *
15949  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
15950  * - if mulitple topModules exist, the last one is defined as the top module.
15951  *
15952  * Embeded Roo
15953  * 
15954  * When the top level or multiple modules are to embedded into a existing HTML page,
15955  * the parent element can container '#id' of the element where the module will be drawn.
15956  *
15957  * Bootstrap Roo
15958  *
15959  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
15960  * it relies more on a include mechanism, where sub modules are included into an outer page.
15961  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
15962  * 
15963  * Bootstrap Roo Included elements
15964  *
15965  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
15966  * hence confusing the component builder as it thinks there are multiple top level elements. 
15967  *
15968  * 
15969  * 
15970  * @extends Roo.util.Observable
15971  * @constructor
15972  * @param cfg {Object} configuration of component
15973  * 
15974  */
15975 Roo.XComponent = function(cfg) {
15976     Roo.apply(this, cfg);
15977     this.addEvents({ 
15978         /**
15979              * @event built
15980              * Fires when this the componnt is built
15981              * @param {Roo.XComponent} c the component
15982              */
15983         'built' : true
15984         
15985     });
15986     this.region = this.region || 'center'; // default..
15987     Roo.XComponent.register(this);
15988     this.modules = false;
15989     this.el = false; // where the layout goes..
15990     
15991     
15992 }
15993 Roo.extend(Roo.XComponent, Roo.util.Observable, {
15994     /**
15995      * @property el
15996      * The created element (with Roo.factory())
15997      * @type {Roo.Layout}
15998      */
15999     el  : false,
16000     
16001     /**
16002      * @property el
16003      * for BC  - use el in new code
16004      * @type {Roo.Layout}
16005      */
16006     panel : false,
16007     
16008     /**
16009      * @property layout
16010      * for BC  - use el in new code
16011      * @type {Roo.Layout}
16012      */
16013     layout : false,
16014     
16015      /**
16016      * @cfg {Function|boolean} disabled
16017      * If this module is disabled by some rule, return true from the funtion
16018      */
16019     disabled : false,
16020     
16021     /**
16022      * @cfg {String} parent 
16023      * Name of parent element which it get xtype added to..
16024      */
16025     parent: false,
16026     
16027     /**
16028      * @cfg {String} order
16029      * Used to set the order in which elements are created (usefull for multiple tabs)
16030      */
16031     
16032     order : false,
16033     /**
16034      * @cfg {String} name
16035      * String to display while loading.
16036      */
16037     name : false,
16038     /**
16039      * @cfg {String} region
16040      * Region to render component to (defaults to center)
16041      */
16042     region : 'center',
16043     
16044     /**
16045      * @cfg {Array} items
16046      * A single item array - the first element is the root of the tree..
16047      * It's done this way to stay compatible with the Xtype system...
16048      */
16049     items : false,
16050     
16051     /**
16052      * @property _tree
16053      * The method that retuns the tree of parts that make up this compoennt 
16054      * @type {function}
16055      */
16056     _tree  : false,
16057     
16058      /**
16059      * render
16060      * render element to dom or tree
16061      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16062      */
16063     
16064     render : function(el)
16065     {
16066         
16067         el = el || false;
16068         var hp = this.parent ? 1 : 0;
16069         Roo.debug &&  Roo.log(this);
16070         
16071         var tree = this._tree ? this._tree() : this.tree();
16072
16073         
16074         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16075             // if parent is a '#.....' string, then let's use that..
16076             var ename = this.parent.substr(1);
16077             this.parent = false;
16078             Roo.debug && Roo.log(ename);
16079             switch (ename) {
16080                 case 'bootstrap-body':
16081                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16082                         // this is the BorderLayout standard?
16083                        this.parent = { el : true };
16084                        break;
16085                     }
16086                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16087                         // need to insert stuff...
16088                         this.parent =  {
16089                              el : new Roo.bootstrap.layout.Border({
16090                                  el : document.body, 
16091                      
16092                                  center: {
16093                                     titlebar: false,
16094                                     autoScroll:false,
16095                                     closeOnTab: true,
16096                                     tabPosition: 'top',
16097                                       //resizeTabs: true,
16098                                     alwaysShowTabs: true,
16099                                     hideTabs: false
16100                                      //minTabWidth: 140
16101                                  }
16102                              })
16103                         
16104                          };
16105                          break;
16106                     }
16107                          
16108                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16109                         this.parent = { el :  new  Roo.bootstrap.Body() };
16110                         Roo.debug && Roo.log("setting el to doc body");
16111                          
16112                     } else {
16113                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16114                     }
16115                     break;
16116                 case 'bootstrap':
16117                     this.parent = { el : true};
16118                     // fall through
16119                 default:
16120                     el = Roo.get(ename);
16121                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16122                         this.parent = { el : true};
16123                     }
16124                     
16125                     break;
16126             }
16127                 
16128             
16129             if (!el && !this.parent) {
16130                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16131                 return;
16132             }
16133         }
16134         
16135         Roo.debug && Roo.log("EL:");
16136         Roo.debug && Roo.log(el);
16137         Roo.debug && Roo.log("this.parent.el:");
16138         Roo.debug && Roo.log(this.parent.el);
16139         
16140
16141         // altertive root elements ??? - we need a better way to indicate these.
16142         var is_alt = Roo.XComponent.is_alt ||
16143                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16144                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16145                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16146         
16147         
16148         
16149         if (!this.parent && is_alt) {
16150             //el = Roo.get(document.body);
16151             this.parent = { el : true };
16152         }
16153             
16154             
16155         
16156         if (!this.parent) {
16157             
16158             Roo.debug && Roo.log("no parent - creating one");
16159             
16160             el = el ? Roo.get(el) : false;      
16161             
16162             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16163                 
16164                 this.parent =  {
16165                     el : new Roo.bootstrap.layout.Border({
16166                         el: el || document.body,
16167                     
16168                         center: {
16169                             titlebar: false,
16170                             autoScroll:false,
16171                             closeOnTab: true,
16172                             tabPosition: 'top',
16173                              //resizeTabs: true,
16174                             alwaysShowTabs: false,
16175                             hideTabs: true,
16176                             minTabWidth: 140,
16177                             overflow: 'visible'
16178                          }
16179                      })
16180                 };
16181             } else {
16182             
16183                 // it's a top level one..
16184                 this.parent =  {
16185                     el : new Roo.BorderLayout(el || document.body, {
16186                         center: {
16187                             titlebar: false,
16188                             autoScroll:false,
16189                             closeOnTab: true,
16190                             tabPosition: 'top',
16191                              //resizeTabs: true,
16192                             alwaysShowTabs: el && hp? false :  true,
16193                             hideTabs: el || !hp ? true :  false,
16194                             minTabWidth: 140
16195                          }
16196                     })
16197                 };
16198             }
16199         }
16200         
16201         if (!this.parent.el) {
16202                 // probably an old style ctor, which has been disabled.
16203                 return;
16204
16205         }
16206                 // The 'tree' method is  '_tree now' 
16207             
16208         tree.region = tree.region || this.region;
16209         var is_body = false;
16210         if (this.parent.el === true) {
16211             // bootstrap... - body..
16212             if (el) {
16213                 tree.el = el;
16214             }
16215             this.parent.el = Roo.factory(tree);
16216             is_body = true;
16217         }
16218         
16219         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16220         this.fireEvent('built', this);
16221         
16222         this.panel = this.el;
16223         this.layout = this.panel.layout;
16224         this.parentLayout = this.parent.layout  || false;  
16225          
16226     }
16227     
16228 });
16229
16230 Roo.apply(Roo.XComponent, {
16231     /**
16232      * @property  hideProgress
16233      * true to disable the building progress bar.. usefull on single page renders.
16234      * @type Boolean
16235      */
16236     hideProgress : false,
16237     /**
16238      * @property  buildCompleted
16239      * True when the builder has completed building the interface.
16240      * @type Boolean
16241      */
16242     buildCompleted : false,
16243      
16244     /**
16245      * @property  topModule
16246      * the upper most module - uses document.element as it's constructor.
16247      * @type Object
16248      */
16249      
16250     topModule  : false,
16251       
16252     /**
16253      * @property  modules
16254      * array of modules to be created by registration system.
16255      * @type {Array} of Roo.XComponent
16256      */
16257     
16258     modules : [],
16259     /**
16260      * @property  elmodules
16261      * array of modules to be created by which use #ID 
16262      * @type {Array} of Roo.XComponent
16263      */
16264      
16265     elmodules : [],
16266
16267      /**
16268      * @property  is_alt
16269      * Is an alternative Root - normally used by bootstrap or other systems,
16270      *    where the top element in the tree can wrap 'body' 
16271      * @type {boolean}  (default false)
16272      */
16273      
16274     is_alt : false,
16275     /**
16276      * @property  build_from_html
16277      * Build elements from html - used by bootstrap HTML stuff 
16278      *    - this is cleared after build is completed
16279      * @type {boolean}    (default false)
16280      */
16281      
16282     build_from_html : false,
16283     /**
16284      * Register components to be built later.
16285      *
16286      * This solves the following issues
16287      * - Building is not done on page load, but after an authentication process has occured.
16288      * - Interface elements are registered on page load
16289      * - Parent Interface elements may not be loaded before child, so this handles that..
16290      * 
16291      *
16292      * example:
16293      * 
16294      * MyApp.register({
16295           order : '000001',
16296           module : 'Pman.Tab.projectMgr',
16297           region : 'center',
16298           parent : 'Pman.layout',
16299           disabled : false,  // or use a function..
16300         })
16301      
16302      * * @param {Object} details about module
16303      */
16304     register : function(obj) {
16305                 
16306         Roo.XComponent.event.fireEvent('register', obj);
16307         switch(typeof(obj.disabled) ) {
16308                 
16309             case 'undefined':
16310                 break;
16311             
16312             case 'function':
16313                 if ( obj.disabled() ) {
16314                         return;
16315                 }
16316                 break;
16317             
16318             default:
16319                 if (obj.disabled) {
16320                         return;
16321                 }
16322                 break;
16323         }
16324                 
16325         this.modules.push(obj);
16326          
16327     },
16328     /**
16329      * convert a string to an object..
16330      * eg. 'AAA.BBB' -> finds AAA.BBB
16331
16332      */
16333     
16334     toObject : function(str)
16335     {
16336         if (!str || typeof(str) == 'object') {
16337             return str;
16338         }
16339         if (str.substring(0,1) == '#') {
16340             return str;
16341         }
16342
16343         var ar = str.split('.');
16344         var rt, o;
16345         rt = ar.shift();
16346             /** eval:var:o */
16347         try {
16348             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
16349         } catch (e) {
16350             throw "Module not found : " + str;
16351         }
16352         
16353         if (o === false) {
16354             throw "Module not found : " + str;
16355         }
16356         Roo.each(ar, function(e) {
16357             if (typeof(o[e]) == 'undefined') {
16358                 throw "Module not found : " + str;
16359             }
16360             o = o[e];
16361         });
16362         
16363         return o;
16364         
16365     },
16366     
16367     
16368     /**
16369      * move modules into their correct place in the tree..
16370      * 
16371      */
16372     preBuild : function ()
16373     {
16374         var _t = this;
16375         Roo.each(this.modules , function (obj)
16376         {
16377             Roo.XComponent.event.fireEvent('beforebuild', obj);
16378             
16379             var opar = obj.parent;
16380             try { 
16381                 obj.parent = this.toObject(opar);
16382             } catch(e) {
16383                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
16384                 return;
16385             }
16386             
16387             if (!obj.parent) {
16388                 Roo.debug && Roo.log("GOT top level module");
16389                 Roo.debug && Roo.log(obj);
16390                 obj.modules = new Roo.util.MixedCollection(false, 
16391                     function(o) { return o.order + '' }
16392                 );
16393                 this.topModule = obj;
16394                 return;
16395             }
16396                         // parent is a string (usually a dom element name..)
16397             if (typeof(obj.parent) == 'string') {
16398                 this.elmodules.push(obj);
16399                 return;
16400             }
16401             if (obj.parent.constructor != Roo.XComponent) {
16402                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
16403             }
16404             if (!obj.parent.modules) {
16405                 obj.parent.modules = new Roo.util.MixedCollection(false, 
16406                     function(o) { return o.order + '' }
16407                 );
16408             }
16409             if (obj.parent.disabled) {
16410                 obj.disabled = true;
16411             }
16412             obj.parent.modules.add(obj);
16413         }, this);
16414     },
16415     
16416      /**
16417      * make a list of modules to build.
16418      * @return {Array} list of modules. 
16419      */ 
16420     
16421     buildOrder : function()
16422     {
16423         var _this = this;
16424         var cmp = function(a,b) {   
16425             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
16426         };
16427         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
16428             throw "No top level modules to build";
16429         }
16430         
16431         // make a flat list in order of modules to build.
16432         var mods = this.topModule ? [ this.topModule ] : [];
16433                 
16434         
16435         // elmodules (is a list of DOM based modules )
16436         Roo.each(this.elmodules, function(e) {
16437             mods.push(e);
16438             if (!this.topModule &&
16439                 typeof(e.parent) == 'string' &&
16440                 e.parent.substring(0,1) == '#' &&
16441                 Roo.get(e.parent.substr(1))
16442                ) {
16443                 
16444                 _this.topModule = e;
16445             }
16446             
16447         });
16448
16449         
16450         // add modules to their parents..
16451         var addMod = function(m) {
16452             Roo.debug && Roo.log("build Order: add: " + m.name);
16453                 
16454             mods.push(m);
16455             if (m.modules && !m.disabled) {
16456                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
16457                 m.modules.keySort('ASC',  cmp );
16458                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
16459     
16460                 m.modules.each(addMod);
16461             } else {
16462                 Roo.debug && Roo.log("build Order: no child modules");
16463             }
16464             // not sure if this is used any more..
16465             if (m.finalize) {
16466                 m.finalize.name = m.name + " (clean up) ";
16467                 mods.push(m.finalize);
16468             }
16469             
16470         }
16471         if (this.topModule && this.topModule.modules) { 
16472             this.topModule.modules.keySort('ASC',  cmp );
16473             this.topModule.modules.each(addMod);
16474         } 
16475         return mods;
16476     },
16477     
16478      /**
16479      * Build the registered modules.
16480      * @param {Object} parent element.
16481      * @param {Function} optional method to call after module has been added.
16482      * 
16483      */ 
16484    
16485     build : function(opts) 
16486     {
16487         
16488         if (typeof(opts) != 'undefined') {
16489             Roo.apply(this,opts);
16490         }
16491         
16492         this.preBuild();
16493         var mods = this.buildOrder();
16494       
16495         //this.allmods = mods;
16496         //Roo.debug && Roo.log(mods);
16497         //return;
16498         if (!mods.length) { // should not happen
16499             throw "NO modules!!!";
16500         }
16501         
16502         
16503         var msg = "Building Interface...";
16504         // flash it up as modal - so we store the mask!?
16505         if (!this.hideProgress && Roo.MessageBox) {
16506             Roo.MessageBox.show({ title: 'loading' });
16507             Roo.MessageBox.show({
16508                title: "Please wait...",
16509                msg: msg,
16510                width:450,
16511                progress:true,
16512                closable:false,
16513                modal: false
16514               
16515             });
16516         }
16517         var total = mods.length;
16518         
16519         var _this = this;
16520         var progressRun = function() {
16521             if (!mods.length) {
16522                 Roo.debug && Roo.log('hide?');
16523                 if (!this.hideProgress && Roo.MessageBox) {
16524                     Roo.MessageBox.hide();
16525                 }
16526                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
16527                 
16528                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
16529                 
16530                 // THE END...
16531                 return false;   
16532             }
16533             
16534             var m = mods.shift();
16535             
16536             
16537             Roo.debug && Roo.log(m);
16538             // not sure if this is supported any more.. - modules that are are just function
16539             if (typeof(m) == 'function') { 
16540                 m.call(this);
16541                 return progressRun.defer(10, _this);
16542             } 
16543             
16544             
16545             msg = "Building Interface " + (total  - mods.length) + 
16546                     " of " + total + 
16547                     (m.name ? (' - ' + m.name) : '');
16548                         Roo.debug && Roo.log(msg);
16549             if (!_this.hideProgress &&  Roo.MessageBox) { 
16550                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
16551             }
16552             
16553          
16554             // is the module disabled?
16555             var disabled = (typeof(m.disabled) == 'function') ?
16556                 m.disabled.call(m.module.disabled) : m.disabled;    
16557             
16558             
16559             if (disabled) {
16560                 return progressRun(); // we do not update the display!
16561             }
16562             
16563             // now build 
16564             
16565                         
16566                         
16567             m.render();
16568             // it's 10 on top level, and 1 on others??? why...
16569             return progressRun.defer(10, _this);
16570              
16571         }
16572         progressRun.defer(1, _this);
16573      
16574         
16575         
16576     },
16577         
16578         
16579         /**
16580          * Event Object.
16581          *
16582          *
16583          */
16584         event: false, 
16585     /**
16586          * wrapper for event.on - aliased later..  
16587          * Typically use to register a event handler for register:
16588          *
16589          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
16590          *
16591          */
16592     on : false
16593    
16594     
16595     
16596 });
16597
16598 Roo.XComponent.event = new Roo.util.Observable({
16599                 events : { 
16600                         /**
16601                          * @event register
16602                          * Fires when an Component is registered,
16603                          * set the disable property on the Component to stop registration.
16604                          * @param {Roo.XComponent} c the component being registerd.
16605                          * 
16606                          */
16607                         'register' : true,
16608             /**
16609                          * @event beforebuild
16610                          * Fires before each Component is built
16611                          * can be used to apply permissions.
16612                          * @param {Roo.XComponent} c the component being registerd.
16613                          * 
16614                          */
16615                         'beforebuild' : true,
16616                         /**
16617                          * @event buildcomplete
16618                          * Fires on the top level element when all elements have been built
16619                          * @param {Roo.XComponent} the top level component.
16620                          */
16621                         'buildcomplete' : true
16622                         
16623                 }
16624 });
16625
16626 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
16627  //
16628  /**
16629  * marked - a markdown parser
16630  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
16631  * https://github.com/chjj/marked
16632  */
16633
16634
16635 /**
16636  *
16637  * Roo.Markdown - is a very crude wrapper around marked..
16638  *
16639  * usage:
16640  * 
16641  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
16642  * 
16643  * Note: move the sample code to the bottom of this
16644  * file before uncommenting it.
16645  *
16646  */
16647
16648 Roo.Markdown = {};
16649 Roo.Markdown.toHtml = function(text) {
16650     
16651     var c = new Roo.Markdown.marked.setOptions({
16652             renderer: new Roo.Markdown.marked.Renderer(),
16653             gfm: true,
16654             tables: true,
16655             breaks: false,
16656             pedantic: false,
16657             sanitize: false,
16658             smartLists: true,
16659             smartypants: false
16660           });
16661     // A FEW HACKS!!?
16662     
16663     text = text.replace(/\\\n/g,' ');
16664     return Roo.Markdown.marked(text);
16665 };
16666 //
16667 // converter
16668 //
16669 // Wraps all "globals" so that the only thing
16670 // exposed is makeHtml().
16671 //
16672 (function() {
16673     
16674     /**
16675      * Block-Level Grammar
16676      */
16677     
16678     var block = {
16679       newline: /^\n+/,
16680       code: /^( {4}[^\n]+\n*)+/,
16681       fences: noop,
16682       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
16683       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
16684       nptable: noop,
16685       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
16686       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
16687       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
16688       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
16689       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
16690       table: noop,
16691       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
16692       text: /^[^\n]+/
16693     };
16694     
16695     block.bullet = /(?:[*+-]|\d+\.)/;
16696     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
16697     block.item = replace(block.item, 'gm')
16698       (/bull/g, block.bullet)
16699       ();
16700     
16701     block.list = replace(block.list)
16702       (/bull/g, block.bullet)
16703       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
16704       ('def', '\\n+(?=' + block.def.source + ')')
16705       ();
16706     
16707     block.blockquote = replace(block.blockquote)
16708       ('def', block.def)
16709       ();
16710     
16711     block._tag = '(?!(?:'
16712       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
16713       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
16714       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
16715     
16716     block.html = replace(block.html)
16717       ('comment', /<!--[\s\S]*?-->/)
16718       ('closed', /<(tag)[\s\S]+?<\/\1>/)
16719       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
16720       (/tag/g, block._tag)
16721       ();
16722     
16723     block.paragraph = replace(block.paragraph)
16724       ('hr', block.hr)
16725       ('heading', block.heading)
16726       ('lheading', block.lheading)
16727       ('blockquote', block.blockquote)
16728       ('tag', '<' + block._tag)
16729       ('def', block.def)
16730       ();
16731     
16732     /**
16733      * Normal Block Grammar
16734      */
16735     
16736     block.normal = merge({}, block);
16737     
16738     /**
16739      * GFM Block Grammar
16740      */
16741     
16742     block.gfm = merge({}, block.normal, {
16743       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
16744       paragraph: /^/,
16745       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
16746     });
16747     
16748     block.gfm.paragraph = replace(block.paragraph)
16749       ('(?!', '(?!'
16750         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
16751         + block.list.source.replace('\\1', '\\3') + '|')
16752       ();
16753     
16754     /**
16755      * GFM + Tables Block Grammar
16756      */
16757     
16758     block.tables = merge({}, block.gfm, {
16759       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
16760       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
16761     });
16762     
16763     /**
16764      * Block Lexer
16765      */
16766     
16767     function Lexer(options) {
16768       this.tokens = [];
16769       this.tokens.links = {};
16770       this.options = options || marked.defaults;
16771       this.rules = block.normal;
16772     
16773       if (this.options.gfm) {
16774         if (this.options.tables) {
16775           this.rules = block.tables;
16776         } else {
16777           this.rules = block.gfm;
16778         }
16779       }
16780     }
16781     
16782     /**
16783      * Expose Block Rules
16784      */
16785     
16786     Lexer.rules = block;
16787     
16788     /**
16789      * Static Lex Method
16790      */
16791     
16792     Lexer.lex = function(src, options) {
16793       var lexer = new Lexer(options);
16794       return lexer.lex(src);
16795     };
16796     
16797     /**
16798      * Preprocessing
16799      */
16800     
16801     Lexer.prototype.lex = function(src) {
16802       src = src
16803         .replace(/\r\n|\r/g, '\n')
16804         .replace(/\t/g, '    ')
16805         .replace(/\u00a0/g, ' ')
16806         .replace(/\u2424/g, '\n');
16807     
16808       return this.token(src, true);
16809     };
16810     
16811     /**
16812      * Lexing
16813      */
16814     
16815     Lexer.prototype.token = function(src, top, bq) {
16816       var src = src.replace(/^ +$/gm, '')
16817         , next
16818         , loose
16819         , cap
16820         , bull
16821         , b
16822         , item
16823         , space
16824         , i
16825         , l;
16826     
16827       while (src) {
16828         // newline
16829         if (cap = this.rules.newline.exec(src)) {
16830           src = src.substring(cap[0].length);
16831           if (cap[0].length > 1) {
16832             this.tokens.push({
16833               type: 'space'
16834             });
16835           }
16836         }
16837     
16838         // code
16839         if (cap = this.rules.code.exec(src)) {
16840           src = src.substring(cap[0].length);
16841           cap = cap[0].replace(/^ {4}/gm, '');
16842           this.tokens.push({
16843             type: 'code',
16844             text: !this.options.pedantic
16845               ? cap.replace(/\n+$/, '')
16846               : cap
16847           });
16848           continue;
16849         }
16850     
16851         // fences (gfm)
16852         if (cap = this.rules.fences.exec(src)) {
16853           src = src.substring(cap[0].length);
16854           this.tokens.push({
16855             type: 'code',
16856             lang: cap[2],
16857             text: cap[3] || ''
16858           });
16859           continue;
16860         }
16861     
16862         // heading
16863         if (cap = this.rules.heading.exec(src)) {
16864           src = src.substring(cap[0].length);
16865           this.tokens.push({
16866             type: 'heading',
16867             depth: cap[1].length,
16868             text: cap[2]
16869           });
16870           continue;
16871         }
16872     
16873         // table no leading pipe (gfm)
16874         if (top && (cap = this.rules.nptable.exec(src))) {
16875           src = src.substring(cap[0].length);
16876     
16877           item = {
16878             type: 'table',
16879             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
16880             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
16881             cells: cap[3].replace(/\n$/, '').split('\n')
16882           };
16883     
16884           for (i = 0; i < item.align.length; i++) {
16885             if (/^ *-+: *$/.test(item.align[i])) {
16886               item.align[i] = 'right';
16887             } else if (/^ *:-+: *$/.test(item.align[i])) {
16888               item.align[i] = 'center';
16889             } else if (/^ *:-+ *$/.test(item.align[i])) {
16890               item.align[i] = 'left';
16891             } else {
16892               item.align[i] = null;
16893             }
16894           }
16895     
16896           for (i = 0; i < item.cells.length; i++) {
16897             item.cells[i] = item.cells[i].split(/ *\| */);
16898           }
16899     
16900           this.tokens.push(item);
16901     
16902           continue;
16903         }
16904     
16905         // lheading
16906         if (cap = this.rules.lheading.exec(src)) {
16907           src = src.substring(cap[0].length);
16908           this.tokens.push({
16909             type: 'heading',
16910             depth: cap[2] === '=' ? 1 : 2,
16911             text: cap[1]
16912           });
16913           continue;
16914         }
16915     
16916         // hr
16917         if (cap = this.rules.hr.exec(src)) {
16918           src = src.substring(cap[0].length);
16919           this.tokens.push({
16920             type: 'hr'
16921           });
16922           continue;
16923         }
16924     
16925         // blockquote
16926         if (cap = this.rules.blockquote.exec(src)) {
16927           src = src.substring(cap[0].length);
16928     
16929           this.tokens.push({
16930             type: 'blockquote_start'
16931           });
16932     
16933           cap = cap[0].replace(/^ *> ?/gm, '');
16934     
16935           // Pass `top` to keep the current
16936           // "toplevel" state. This is exactly
16937           // how markdown.pl works.
16938           this.token(cap, top, true);
16939     
16940           this.tokens.push({
16941             type: 'blockquote_end'
16942           });
16943     
16944           continue;
16945         }
16946     
16947         // list
16948         if (cap = this.rules.list.exec(src)) {
16949           src = src.substring(cap[0].length);
16950           bull = cap[2];
16951     
16952           this.tokens.push({
16953             type: 'list_start',
16954             ordered: bull.length > 1
16955           });
16956     
16957           // Get each top-level item.
16958           cap = cap[0].match(this.rules.item);
16959     
16960           next = false;
16961           l = cap.length;
16962           i = 0;
16963     
16964           for (; i < l; i++) {
16965             item = cap[i];
16966     
16967             // Remove the list item's bullet
16968             // so it is seen as the next token.
16969             space = item.length;
16970             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
16971     
16972             // Outdent whatever the
16973             // list item contains. Hacky.
16974             if (~item.indexOf('\n ')) {
16975               space -= item.length;
16976               item = !this.options.pedantic
16977                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
16978                 : item.replace(/^ {1,4}/gm, '');
16979             }
16980     
16981             // Determine whether the next list item belongs here.
16982             // Backpedal if it does not belong in this list.
16983             if (this.options.smartLists && i !== l - 1) {
16984               b = block.bullet.exec(cap[i + 1])[0];
16985               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
16986                 src = cap.slice(i + 1).join('\n') + src;
16987                 i = l - 1;
16988               }
16989             }
16990     
16991             // Determine whether item is loose or not.
16992             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
16993             // for discount behavior.
16994             loose = next || /\n\n(?!\s*$)/.test(item);
16995             if (i !== l - 1) {
16996               next = item.charAt(item.length - 1) === '\n';
16997               if (!loose) { loose = next; }
16998             }
16999     
17000             this.tokens.push({
17001               type: loose
17002                 ? 'loose_item_start'
17003                 : 'list_item_start'
17004             });
17005     
17006             // Recurse.
17007             this.token(item, false, bq);
17008     
17009             this.tokens.push({
17010               type: 'list_item_end'
17011             });
17012           }
17013     
17014           this.tokens.push({
17015             type: 'list_end'
17016           });
17017     
17018           continue;
17019         }
17020     
17021         // html
17022         if (cap = this.rules.html.exec(src)) {
17023           src = src.substring(cap[0].length);
17024           this.tokens.push({
17025             type: this.options.sanitize
17026               ? 'paragraph'
17027               : 'html',
17028             pre: !this.options.sanitizer
17029               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17030             text: cap[0]
17031           });
17032           continue;
17033         }
17034     
17035         // def
17036         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17037           src = src.substring(cap[0].length);
17038           this.tokens.links[cap[1].toLowerCase()] = {
17039             href: cap[2],
17040             title: cap[3]
17041           };
17042           continue;
17043         }
17044     
17045         // table (gfm)
17046         if (top && (cap = this.rules.table.exec(src))) {
17047           src = src.substring(cap[0].length);
17048     
17049           item = {
17050             type: 'table',
17051             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17052             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17053             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17054           };
17055     
17056           for (i = 0; i < item.align.length; i++) {
17057             if (/^ *-+: *$/.test(item.align[i])) {
17058               item.align[i] = 'right';
17059             } else if (/^ *:-+: *$/.test(item.align[i])) {
17060               item.align[i] = 'center';
17061             } else if (/^ *:-+ *$/.test(item.align[i])) {
17062               item.align[i] = 'left';
17063             } else {
17064               item.align[i] = null;
17065             }
17066           }
17067     
17068           for (i = 0; i < item.cells.length; i++) {
17069             item.cells[i] = item.cells[i]
17070               .replace(/^ *\| *| *\| *$/g, '')
17071               .split(/ *\| */);
17072           }
17073     
17074           this.tokens.push(item);
17075     
17076           continue;
17077         }
17078     
17079         // top-level paragraph
17080         if (top && (cap = this.rules.paragraph.exec(src))) {
17081           src = src.substring(cap[0].length);
17082           this.tokens.push({
17083             type: 'paragraph',
17084             text: cap[1].charAt(cap[1].length - 1) === '\n'
17085               ? cap[1].slice(0, -1)
17086               : cap[1]
17087           });
17088           continue;
17089         }
17090     
17091         // text
17092         if (cap = this.rules.text.exec(src)) {
17093           // Top-level should never reach here.
17094           src = src.substring(cap[0].length);
17095           this.tokens.push({
17096             type: 'text',
17097             text: cap[0]
17098           });
17099           continue;
17100         }
17101     
17102         if (src) {
17103           throw new
17104             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17105         }
17106       }
17107     
17108       return this.tokens;
17109     };
17110     
17111     /**
17112      * Inline-Level Grammar
17113      */
17114     
17115     var inline = {
17116       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17117       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17118       url: noop,
17119       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17120       link: /^!?\[(inside)\]\(href\)/,
17121       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17122       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17123       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17124       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17125       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17126       br: /^ {2,}\n(?!\s*$)/,
17127       del: noop,
17128       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17129     };
17130     
17131     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17132     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17133     
17134     inline.link = replace(inline.link)
17135       ('inside', inline._inside)
17136       ('href', inline._href)
17137       ();
17138     
17139     inline.reflink = replace(inline.reflink)
17140       ('inside', inline._inside)
17141       ();
17142     
17143     /**
17144      * Normal Inline Grammar
17145      */
17146     
17147     inline.normal = merge({}, inline);
17148     
17149     /**
17150      * Pedantic Inline Grammar
17151      */
17152     
17153     inline.pedantic = merge({}, inline.normal, {
17154       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17155       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17156     });
17157     
17158     /**
17159      * GFM Inline Grammar
17160      */
17161     
17162     inline.gfm = merge({}, inline.normal, {
17163       escape: replace(inline.escape)('])', '~|])')(),
17164       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17165       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17166       text: replace(inline.text)
17167         (']|', '~]|')
17168         ('|', '|https?://|')
17169         ()
17170     });
17171     
17172     /**
17173      * GFM + Line Breaks Inline Grammar
17174      */
17175     
17176     inline.breaks = merge({}, inline.gfm, {
17177       br: replace(inline.br)('{2,}', '*')(),
17178       text: replace(inline.gfm.text)('{2,}', '*')()
17179     });
17180     
17181     /**
17182      * Inline Lexer & Compiler
17183      */
17184     
17185     function InlineLexer(links, options) {
17186       this.options = options || marked.defaults;
17187       this.links = links;
17188       this.rules = inline.normal;
17189       this.renderer = this.options.renderer || new Renderer;
17190       this.renderer.options = this.options;
17191     
17192       if (!this.links) {
17193         throw new
17194           Error('Tokens array requires a `links` property.');
17195       }
17196     
17197       if (this.options.gfm) {
17198         if (this.options.breaks) {
17199           this.rules = inline.breaks;
17200         } else {
17201           this.rules = inline.gfm;
17202         }
17203       } else if (this.options.pedantic) {
17204         this.rules = inline.pedantic;
17205       }
17206     }
17207     
17208     /**
17209      * Expose Inline Rules
17210      */
17211     
17212     InlineLexer.rules = inline;
17213     
17214     /**
17215      * Static Lexing/Compiling Method
17216      */
17217     
17218     InlineLexer.output = function(src, links, options) {
17219       var inline = new InlineLexer(links, options);
17220       return inline.output(src);
17221     };
17222     
17223     /**
17224      * Lexing/Compiling
17225      */
17226     
17227     InlineLexer.prototype.output = function(src) {
17228       var out = ''
17229         , link
17230         , text
17231         , href
17232         , cap;
17233     
17234       while (src) {
17235         // escape
17236         if (cap = this.rules.escape.exec(src)) {
17237           src = src.substring(cap[0].length);
17238           out += cap[1];
17239           continue;
17240         }
17241     
17242         // autolink
17243         if (cap = this.rules.autolink.exec(src)) {
17244           src = src.substring(cap[0].length);
17245           if (cap[2] === '@') {
17246             text = cap[1].charAt(6) === ':'
17247               ? this.mangle(cap[1].substring(7))
17248               : this.mangle(cap[1]);
17249             href = this.mangle('mailto:') + text;
17250           } else {
17251             text = escape(cap[1]);
17252             href = text;
17253           }
17254           out += this.renderer.link(href, null, text);
17255           continue;
17256         }
17257     
17258         // url (gfm)
17259         if (!this.inLink && (cap = this.rules.url.exec(src))) {
17260           src = src.substring(cap[0].length);
17261           text = escape(cap[1]);
17262           href = text;
17263           out += this.renderer.link(href, null, text);
17264           continue;
17265         }
17266     
17267         // tag
17268         if (cap = this.rules.tag.exec(src)) {
17269           if (!this.inLink && /^<a /i.test(cap[0])) {
17270             this.inLink = true;
17271           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
17272             this.inLink = false;
17273           }
17274           src = src.substring(cap[0].length);
17275           out += this.options.sanitize
17276             ? this.options.sanitizer
17277               ? this.options.sanitizer(cap[0])
17278               : escape(cap[0])
17279             : cap[0];
17280           continue;
17281         }
17282     
17283         // link
17284         if (cap = this.rules.link.exec(src)) {
17285           src = src.substring(cap[0].length);
17286           this.inLink = true;
17287           out += this.outputLink(cap, {
17288             href: cap[2],
17289             title: cap[3]
17290           });
17291           this.inLink = false;
17292           continue;
17293         }
17294     
17295         // reflink, nolink
17296         if ((cap = this.rules.reflink.exec(src))
17297             || (cap = this.rules.nolink.exec(src))) {
17298           src = src.substring(cap[0].length);
17299           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
17300           link = this.links[link.toLowerCase()];
17301           if (!link || !link.href) {
17302             out += cap[0].charAt(0);
17303             src = cap[0].substring(1) + src;
17304             continue;
17305           }
17306           this.inLink = true;
17307           out += this.outputLink(cap, link);
17308           this.inLink = false;
17309           continue;
17310         }
17311     
17312         // strong
17313         if (cap = this.rules.strong.exec(src)) {
17314           src = src.substring(cap[0].length);
17315           out += this.renderer.strong(this.output(cap[2] || cap[1]));
17316           continue;
17317         }
17318     
17319         // em
17320         if (cap = this.rules.em.exec(src)) {
17321           src = src.substring(cap[0].length);
17322           out += this.renderer.em(this.output(cap[2] || cap[1]));
17323           continue;
17324         }
17325     
17326         // code
17327         if (cap = this.rules.code.exec(src)) {
17328           src = src.substring(cap[0].length);
17329           out += this.renderer.codespan(escape(cap[2], true));
17330           continue;
17331         }
17332     
17333         // br
17334         if (cap = this.rules.br.exec(src)) {
17335           src = src.substring(cap[0].length);
17336           out += this.renderer.br();
17337           continue;
17338         }
17339     
17340         // del (gfm)
17341         if (cap = this.rules.del.exec(src)) {
17342           src = src.substring(cap[0].length);
17343           out += this.renderer.del(this.output(cap[1]));
17344           continue;
17345         }
17346     
17347         // text
17348         if (cap = this.rules.text.exec(src)) {
17349           src = src.substring(cap[0].length);
17350           out += this.renderer.text(escape(this.smartypants(cap[0])));
17351           continue;
17352         }
17353     
17354         if (src) {
17355           throw new
17356             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17357         }
17358       }
17359     
17360       return out;
17361     };
17362     
17363     /**
17364      * Compile Link
17365      */
17366     
17367     InlineLexer.prototype.outputLink = function(cap, link) {
17368       var href = escape(link.href)
17369         , title = link.title ? escape(link.title) : null;
17370     
17371       return cap[0].charAt(0) !== '!'
17372         ? this.renderer.link(href, title, this.output(cap[1]))
17373         : this.renderer.image(href, title, escape(cap[1]));
17374     };
17375     
17376     /**
17377      * Smartypants Transformations
17378      */
17379     
17380     InlineLexer.prototype.smartypants = function(text) {
17381       if (!this.options.smartypants)  { return text; }
17382       return text
17383         // em-dashes
17384         .replace(/---/g, '\u2014')
17385         // en-dashes
17386         .replace(/--/g, '\u2013')
17387         // opening singles
17388         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
17389         // closing singles & apostrophes
17390         .replace(/'/g, '\u2019')
17391         // opening doubles
17392         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
17393         // closing doubles
17394         .replace(/"/g, '\u201d')
17395         // ellipses
17396         .replace(/\.{3}/g, '\u2026');
17397     };
17398     
17399     /**
17400      * Mangle Links
17401      */
17402     
17403     InlineLexer.prototype.mangle = function(text) {
17404       if (!this.options.mangle) { return text; }
17405       var out = ''
17406         , l = text.length
17407         , i = 0
17408         , ch;
17409     
17410       for (; i < l; i++) {
17411         ch = text.charCodeAt(i);
17412         if (Math.random() > 0.5) {
17413           ch = 'x' + ch.toString(16);
17414         }
17415         out += '&#' + ch + ';';
17416       }
17417     
17418       return out;
17419     };
17420     
17421     /**
17422      * Renderer
17423      */
17424     
17425     function Renderer(options) {
17426       this.options = options || {};
17427     }
17428     
17429     Renderer.prototype.code = function(code, lang, escaped) {
17430       if (this.options.highlight) {
17431         var out = this.options.highlight(code, lang);
17432         if (out != null && out !== code) {
17433           escaped = true;
17434           code = out;
17435         }
17436       } else {
17437             // hack!!! - it's already escapeD?
17438             escaped = true;
17439       }
17440     
17441       if (!lang) {
17442         return '<pre><code>'
17443           + (escaped ? code : escape(code, true))
17444           + '\n</code></pre>';
17445       }
17446     
17447       return '<pre><code class="'
17448         + this.options.langPrefix
17449         + escape(lang, true)
17450         + '">'
17451         + (escaped ? code : escape(code, true))
17452         + '\n</code></pre>\n';
17453     };
17454     
17455     Renderer.prototype.blockquote = function(quote) {
17456       return '<blockquote>\n' + quote + '</blockquote>\n';
17457     };
17458     
17459     Renderer.prototype.html = function(html) {
17460       return html;
17461     };
17462     
17463     Renderer.prototype.heading = function(text, level, raw) {
17464       return '<h'
17465         + level
17466         + ' id="'
17467         + this.options.headerPrefix
17468         + raw.toLowerCase().replace(/[^\w]+/g, '-')
17469         + '">'
17470         + text
17471         + '</h'
17472         + level
17473         + '>\n';
17474     };
17475     
17476     Renderer.prototype.hr = function() {
17477       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
17478     };
17479     
17480     Renderer.prototype.list = function(body, ordered) {
17481       var type = ordered ? 'ol' : 'ul';
17482       return '<' + type + '>\n' + body + '</' + type + '>\n';
17483     };
17484     
17485     Renderer.prototype.listitem = function(text) {
17486       return '<li>' + text + '</li>\n';
17487     };
17488     
17489     Renderer.prototype.paragraph = function(text) {
17490       return '<p>' + text + '</p>\n';
17491     };
17492     
17493     Renderer.prototype.table = function(header, body) {
17494       return '<table class="table table-striped">\n'
17495         + '<thead>\n'
17496         + header
17497         + '</thead>\n'
17498         + '<tbody>\n'
17499         + body
17500         + '</tbody>\n'
17501         + '</table>\n';
17502     };
17503     
17504     Renderer.prototype.tablerow = function(content) {
17505       return '<tr>\n' + content + '</tr>\n';
17506     };
17507     
17508     Renderer.prototype.tablecell = function(content, flags) {
17509       var type = flags.header ? 'th' : 'td';
17510       var tag = flags.align
17511         ? '<' + type + ' style="text-align:' + flags.align + '">'
17512         : '<' + type + '>';
17513       return tag + content + '</' + type + '>\n';
17514     };
17515     
17516     // span level renderer
17517     Renderer.prototype.strong = function(text) {
17518       return '<strong>' + text + '</strong>';
17519     };
17520     
17521     Renderer.prototype.em = function(text) {
17522       return '<em>' + text + '</em>';
17523     };
17524     
17525     Renderer.prototype.codespan = function(text) {
17526       return '<code>' + text + '</code>';
17527     };
17528     
17529     Renderer.prototype.br = function() {
17530       return this.options.xhtml ? '<br/>' : '<br>';
17531     };
17532     
17533     Renderer.prototype.del = function(text) {
17534       return '<del>' + text + '</del>';
17535     };
17536     
17537     Renderer.prototype.link = function(href, title, text) {
17538       if (this.options.sanitize) {
17539         try {
17540           var prot = decodeURIComponent(unescape(href))
17541             .replace(/[^\w:]/g, '')
17542             .toLowerCase();
17543         } catch (e) {
17544           return '';
17545         }
17546         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
17547           return '';
17548         }
17549       }
17550       var out = '<a href="' + href + '"';
17551       if (title) {
17552         out += ' title="' + title + '"';
17553       }
17554       out += '>' + text + '</a>';
17555       return out;
17556     };
17557     
17558     Renderer.prototype.image = function(href, title, text) {
17559       var out = '<img src="' + href + '" alt="' + text + '"';
17560       if (title) {
17561         out += ' title="' + title + '"';
17562       }
17563       out += this.options.xhtml ? '/>' : '>';
17564       return out;
17565     };
17566     
17567     Renderer.prototype.text = function(text) {
17568       return text;
17569     };
17570     
17571     /**
17572      * Parsing & Compiling
17573      */
17574     
17575     function Parser(options) {
17576       this.tokens = [];
17577       this.token = null;
17578       this.options = options || marked.defaults;
17579       this.options.renderer = this.options.renderer || new Renderer;
17580       this.renderer = this.options.renderer;
17581       this.renderer.options = this.options;
17582     }
17583     
17584     /**
17585      * Static Parse Method
17586      */
17587     
17588     Parser.parse = function(src, options, renderer) {
17589       var parser = new Parser(options, renderer);
17590       return parser.parse(src);
17591     };
17592     
17593     /**
17594      * Parse Loop
17595      */
17596     
17597     Parser.prototype.parse = function(src) {
17598       this.inline = new InlineLexer(src.links, this.options, this.renderer);
17599       this.tokens = src.reverse();
17600     
17601       var out = '';
17602       while (this.next()) {
17603         out += this.tok();
17604       }
17605     
17606       return out;
17607     };
17608     
17609     /**
17610      * Next Token
17611      */
17612     
17613     Parser.prototype.next = function() {
17614       return this.token = this.tokens.pop();
17615     };
17616     
17617     /**
17618      * Preview Next Token
17619      */
17620     
17621     Parser.prototype.peek = function() {
17622       return this.tokens[this.tokens.length - 1] || 0;
17623     };
17624     
17625     /**
17626      * Parse Text Tokens
17627      */
17628     
17629     Parser.prototype.parseText = function() {
17630       var body = this.token.text;
17631     
17632       while (this.peek().type === 'text') {
17633         body += '\n' + this.next().text;
17634       }
17635     
17636       return this.inline.output(body);
17637     };
17638     
17639     /**
17640      * Parse Current Token
17641      */
17642     
17643     Parser.prototype.tok = function() {
17644       switch (this.token.type) {
17645         case 'space': {
17646           return '';
17647         }
17648         case 'hr': {
17649           return this.renderer.hr();
17650         }
17651         case 'heading': {
17652           return this.renderer.heading(
17653             this.inline.output(this.token.text),
17654             this.token.depth,
17655             this.token.text);
17656         }
17657         case 'code': {
17658           return this.renderer.code(this.token.text,
17659             this.token.lang,
17660             this.token.escaped);
17661         }
17662         case 'table': {
17663           var header = ''
17664             , body = ''
17665             , i
17666             , row
17667             , cell
17668             , flags
17669             , j;
17670     
17671           // header
17672           cell = '';
17673           for (i = 0; i < this.token.header.length; i++) {
17674             flags = { header: true, align: this.token.align[i] };
17675             cell += this.renderer.tablecell(
17676               this.inline.output(this.token.header[i]),
17677               { header: true, align: this.token.align[i] }
17678             );
17679           }
17680           header += this.renderer.tablerow(cell);
17681     
17682           for (i = 0; i < this.token.cells.length; i++) {
17683             row = this.token.cells[i];
17684     
17685             cell = '';
17686             for (j = 0; j < row.length; j++) {
17687               cell += this.renderer.tablecell(
17688                 this.inline.output(row[j]),
17689                 { header: false, align: this.token.align[j] }
17690               );
17691             }
17692     
17693             body += this.renderer.tablerow(cell);
17694           }
17695           return this.renderer.table(header, body);
17696         }
17697         case 'blockquote_start': {
17698           var body = '';
17699     
17700           while (this.next().type !== 'blockquote_end') {
17701             body += this.tok();
17702           }
17703     
17704           return this.renderer.blockquote(body);
17705         }
17706         case 'list_start': {
17707           var body = ''
17708             , ordered = this.token.ordered;
17709     
17710           while (this.next().type !== 'list_end') {
17711             body += this.tok();
17712           }
17713     
17714           return this.renderer.list(body, ordered);
17715         }
17716         case 'list_item_start': {
17717           var body = '';
17718     
17719           while (this.next().type !== 'list_item_end') {
17720             body += this.token.type === 'text'
17721               ? this.parseText()
17722               : this.tok();
17723           }
17724     
17725           return this.renderer.listitem(body);
17726         }
17727         case 'loose_item_start': {
17728           var body = '';
17729     
17730           while (this.next().type !== 'list_item_end') {
17731             body += this.tok();
17732           }
17733     
17734           return this.renderer.listitem(body);
17735         }
17736         case 'html': {
17737           var html = !this.token.pre && !this.options.pedantic
17738             ? this.inline.output(this.token.text)
17739             : this.token.text;
17740           return this.renderer.html(html);
17741         }
17742         case 'paragraph': {
17743           return this.renderer.paragraph(this.inline.output(this.token.text));
17744         }
17745         case 'text': {
17746           return this.renderer.paragraph(this.parseText());
17747         }
17748       }
17749     };
17750     
17751     /**
17752      * Helpers
17753      */
17754     
17755     function escape(html, encode) {
17756       return html
17757         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17758         .replace(/</g, '&lt;')
17759         .replace(/>/g, '&gt;')
17760         .replace(/"/g, '&quot;')
17761         .replace(/'/g, '&#39;');
17762     }
17763     
17764     function unescape(html) {
17765         // explicitly match decimal, hex, and named HTML entities 
17766       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17767         n = n.toLowerCase();
17768         if (n === 'colon') { return ':'; }
17769         if (n.charAt(0) === '#') {
17770           return n.charAt(1) === 'x'
17771             ? String.fromCharCode(parseInt(n.substring(2), 16))
17772             : String.fromCharCode(+n.substring(1));
17773         }
17774         return '';
17775       });
17776     }
17777     
17778     function replace(regex, opt) {
17779       regex = regex.source;
17780       opt = opt || '';
17781       return function self(name, val) {
17782         if (!name) { return new RegExp(regex, opt); }
17783         val = val.source || val;
17784         val = val.replace(/(^|[^\[])\^/g, '$1');
17785         regex = regex.replace(name, val);
17786         return self;
17787       };
17788     }
17789     
17790     function noop() {}
17791     noop.exec = noop;
17792     
17793     function merge(obj) {
17794       var i = 1
17795         , target
17796         , key;
17797     
17798       for (; i < arguments.length; i++) {
17799         target = arguments[i];
17800         for (key in target) {
17801           if (Object.prototype.hasOwnProperty.call(target, key)) {
17802             obj[key] = target[key];
17803           }
17804         }
17805       }
17806     
17807       return obj;
17808     }
17809     
17810     
17811     /**
17812      * Marked
17813      */
17814     
17815     function marked(src, opt, callback) {
17816       if (callback || typeof opt === 'function') {
17817         if (!callback) {
17818           callback = opt;
17819           opt = null;
17820         }
17821     
17822         opt = merge({}, marked.defaults, opt || {});
17823     
17824         var highlight = opt.highlight
17825           , tokens
17826           , pending
17827           , i = 0;
17828     
17829         try {
17830           tokens = Lexer.lex(src, opt)
17831         } catch (e) {
17832           return callback(e);
17833         }
17834     
17835         pending = tokens.length;
17836     
17837         var done = function(err) {
17838           if (err) {
17839             opt.highlight = highlight;
17840             return callback(err);
17841           }
17842     
17843           var out;
17844     
17845           try {
17846             out = Parser.parse(tokens, opt);
17847           } catch (e) {
17848             err = e;
17849           }
17850     
17851           opt.highlight = highlight;
17852     
17853           return err
17854             ? callback(err)
17855             : callback(null, out);
17856         };
17857     
17858         if (!highlight || highlight.length < 3) {
17859           return done();
17860         }
17861     
17862         delete opt.highlight;
17863     
17864         if (!pending) { return done(); }
17865     
17866         for (; i < tokens.length; i++) {
17867           (function(token) {
17868             if (token.type !== 'code') {
17869               return --pending || done();
17870             }
17871             return highlight(token.text, token.lang, function(err, code) {
17872               if (err) { return done(err); }
17873               if (code == null || code === token.text) {
17874                 return --pending || done();
17875               }
17876               token.text = code;
17877               token.escaped = true;
17878               --pending || done();
17879             });
17880           })(tokens[i]);
17881         }
17882     
17883         return;
17884       }
17885       try {
17886         if (opt) { opt = merge({}, marked.defaults, opt); }
17887         return Parser.parse(Lexer.lex(src, opt), opt);
17888       } catch (e) {
17889         e.message += '\nPlease report this to https://github.com/chjj/marked.';
17890         if ((opt || marked.defaults).silent) {
17891           return '<p>An error occured:</p><pre>'
17892             + escape(e.message + '', true)
17893             + '</pre>';
17894         }
17895         throw e;
17896       }
17897     }
17898     
17899     /**
17900      * Options
17901      */
17902     
17903     marked.options =
17904     marked.setOptions = function(opt) {
17905       merge(marked.defaults, opt);
17906       return marked;
17907     };
17908     
17909     marked.defaults = {
17910       gfm: true,
17911       tables: true,
17912       breaks: false,
17913       pedantic: false,
17914       sanitize: false,
17915       sanitizer: null,
17916       mangle: true,
17917       smartLists: false,
17918       silent: false,
17919       highlight: null,
17920       langPrefix: 'lang-',
17921       smartypants: false,
17922       headerPrefix: '',
17923       renderer: new Renderer,
17924       xhtml: false
17925     };
17926     
17927     /**
17928      * Expose
17929      */
17930     
17931     marked.Parser = Parser;
17932     marked.parser = Parser.parse;
17933     
17934     marked.Renderer = Renderer;
17935     
17936     marked.Lexer = Lexer;
17937     marked.lexer = Lexer.lex;
17938     
17939     marked.InlineLexer = InlineLexer;
17940     marked.inlineLexer = InlineLexer.output;
17941     
17942     marked.parse = marked;
17943     
17944     Roo.Markdown.marked = marked;
17945
17946 })();/*
17947  * Based on:
17948  * Ext JS Library 1.1.1
17949  * Copyright(c) 2006-2007, Ext JS, LLC.
17950  *
17951  * Originally Released Under LGPL - original licence link has changed is not relivant.
17952  *
17953  * Fork - LGPL
17954  * <script type="text/javascript">
17955  */
17956
17957
17958
17959 /*
17960  * These classes are derivatives of the similarly named classes in the YUI Library.
17961  * The original license:
17962  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
17963  * Code licensed under the BSD License:
17964  * http://developer.yahoo.net/yui/license.txt
17965  */
17966
17967 (function() {
17968
17969 var Event=Roo.EventManager;
17970 var Dom=Roo.lib.Dom;
17971
17972 /**
17973  * @class Roo.dd.DragDrop
17974  * @extends Roo.util.Observable
17975  * Defines the interface and base operation of items that that can be
17976  * dragged or can be drop targets.  It was designed to be extended, overriding
17977  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
17978  * Up to three html elements can be associated with a DragDrop instance:
17979  * <ul>
17980  * <li>linked element: the element that is passed into the constructor.
17981  * This is the element which defines the boundaries for interaction with
17982  * other DragDrop objects.</li>
17983  * <li>handle element(s): The drag operation only occurs if the element that
17984  * was clicked matches a handle element.  By default this is the linked
17985  * element, but there are times that you will want only a portion of the
17986  * linked element to initiate the drag operation, and the setHandleElId()
17987  * method provides a way to define this.</li>
17988  * <li>drag element: this represents the element that would be moved along
17989  * with the cursor during a drag operation.  By default, this is the linked
17990  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
17991  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
17992  * </li>
17993  * </ul>
17994  * This class should not be instantiated until the onload event to ensure that
17995  * the associated elements are available.
17996  * The following would define a DragDrop obj that would interact with any
17997  * other DragDrop obj in the "group1" group:
17998  * <pre>
17999  *  dd = new Roo.dd.DragDrop("div1", "group1");
18000  * </pre>
18001  * Since none of the event handlers have been implemented, nothing would
18002  * actually happen if you were to run the code above.  Normally you would
18003  * override this class or one of the default implementations, but you can
18004  * also override the methods you want on an instance of the class...
18005  * <pre>
18006  *  dd.onDragDrop = function(e, id) {
18007  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18008  *  }
18009  * </pre>
18010  * @constructor
18011  * @param {String} id of the element that is linked to this instance
18012  * @param {String} sGroup the group of related DragDrop objects
18013  * @param {object} config an object containing configurable attributes
18014  *                Valid properties for DragDrop:
18015  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18016  */
18017 Roo.dd.DragDrop = function(id, sGroup, config) {
18018     if (id) {
18019         this.init(id, sGroup, config);
18020     }
18021     
18022 };
18023
18024 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18025
18026     /**
18027      * The id of the element associated with this object.  This is what we
18028      * refer to as the "linked element" because the size and position of
18029      * this element is used to determine when the drag and drop objects have
18030      * interacted.
18031      * @property id
18032      * @type String
18033      */
18034     id: null,
18035
18036     /**
18037      * Configuration attributes passed into the constructor
18038      * @property config
18039      * @type object
18040      */
18041     config: null,
18042
18043     /**
18044      * The id of the element that will be dragged.  By default this is same
18045      * as the linked element , but could be changed to another element. Ex:
18046      * Roo.dd.DDProxy
18047      * @property dragElId
18048      * @type String
18049      * @private
18050      */
18051     dragElId: null,
18052
18053     /**
18054      * the id of the element that initiates the drag operation.  By default
18055      * this is the linked element, but could be changed to be a child of this
18056      * element.  This lets us do things like only starting the drag when the
18057      * header element within the linked html element is clicked.
18058      * @property handleElId
18059      * @type String
18060      * @private
18061      */
18062     handleElId: null,
18063
18064     /**
18065      * An associative array of HTML tags that will be ignored if clicked.
18066      * @property invalidHandleTypes
18067      * @type {string: string}
18068      */
18069     invalidHandleTypes: null,
18070
18071     /**
18072      * An associative array of ids for elements that will be ignored if clicked
18073      * @property invalidHandleIds
18074      * @type {string: string}
18075      */
18076     invalidHandleIds: null,
18077
18078     /**
18079      * An indexted array of css class names for elements that will be ignored
18080      * if clicked.
18081      * @property invalidHandleClasses
18082      * @type string[]
18083      */
18084     invalidHandleClasses: null,
18085
18086     /**
18087      * The linked element's absolute X position at the time the drag was
18088      * started
18089      * @property startPageX
18090      * @type int
18091      * @private
18092      */
18093     startPageX: 0,
18094
18095     /**
18096      * The linked element's absolute X position at the time the drag was
18097      * started
18098      * @property startPageY
18099      * @type int
18100      * @private
18101      */
18102     startPageY: 0,
18103
18104     /**
18105      * The group defines a logical collection of DragDrop objects that are
18106      * related.  Instances only get events when interacting with other
18107      * DragDrop object in the same group.  This lets us define multiple
18108      * groups using a single DragDrop subclass if we want.
18109      * @property groups
18110      * @type {string: string}
18111      */
18112     groups: null,
18113
18114     /**
18115      * Individual drag/drop instances can be locked.  This will prevent
18116      * onmousedown start drag.
18117      * @property locked
18118      * @type boolean
18119      * @private
18120      */
18121     locked: false,
18122
18123     /**
18124      * Lock this instance
18125      * @method lock
18126      */
18127     lock: function() { this.locked = true; },
18128
18129     /**
18130      * Unlock this instace
18131      * @method unlock
18132      */
18133     unlock: function() { this.locked = false; },
18134
18135     /**
18136      * By default, all insances can be a drop target.  This can be disabled by
18137      * setting isTarget to false.
18138      * @method isTarget
18139      * @type boolean
18140      */
18141     isTarget: true,
18142
18143     /**
18144      * The padding configured for this drag and drop object for calculating
18145      * the drop zone intersection with this object.
18146      * @method padding
18147      * @type int[]
18148      */
18149     padding: null,
18150
18151     /**
18152      * Cached reference to the linked element
18153      * @property _domRef
18154      * @private
18155      */
18156     _domRef: null,
18157
18158     /**
18159      * Internal typeof flag
18160      * @property __ygDragDrop
18161      * @private
18162      */
18163     __ygDragDrop: true,
18164
18165     /**
18166      * Set to true when horizontal contraints are applied
18167      * @property constrainX
18168      * @type boolean
18169      * @private
18170      */
18171     constrainX: false,
18172
18173     /**
18174      * Set to true when vertical contraints are applied
18175      * @property constrainY
18176      * @type boolean
18177      * @private
18178      */
18179     constrainY: false,
18180
18181     /**
18182      * The left constraint
18183      * @property minX
18184      * @type int
18185      * @private
18186      */
18187     minX: 0,
18188
18189     /**
18190      * The right constraint
18191      * @property maxX
18192      * @type int
18193      * @private
18194      */
18195     maxX: 0,
18196
18197     /**
18198      * The up constraint
18199      * @property minY
18200      * @type int
18201      * @type int
18202      * @private
18203      */
18204     minY: 0,
18205
18206     /**
18207      * The down constraint
18208      * @property maxY
18209      * @type int
18210      * @private
18211      */
18212     maxY: 0,
18213
18214     /**
18215      * Maintain offsets when we resetconstraints.  Set to true when you want
18216      * the position of the element relative to its parent to stay the same
18217      * when the page changes
18218      *
18219      * @property maintainOffset
18220      * @type boolean
18221      */
18222     maintainOffset: false,
18223
18224     /**
18225      * Array of pixel locations the element will snap to if we specified a
18226      * horizontal graduation/interval.  This array is generated automatically
18227      * when you define a tick interval.
18228      * @property xTicks
18229      * @type int[]
18230      */
18231     xTicks: null,
18232
18233     /**
18234      * Array of pixel locations the element will snap to if we specified a
18235      * vertical graduation/interval.  This array is generated automatically
18236      * when you define a tick interval.
18237      * @property yTicks
18238      * @type int[]
18239      */
18240     yTicks: null,
18241
18242     /**
18243      * By default the drag and drop instance will only respond to the primary
18244      * button click (left button for a right-handed mouse).  Set to true to
18245      * allow drag and drop to start with any mouse click that is propogated
18246      * by the browser
18247      * @property primaryButtonOnly
18248      * @type boolean
18249      */
18250     primaryButtonOnly: true,
18251
18252     /**
18253      * The availabe property is false until the linked dom element is accessible.
18254      * @property available
18255      * @type boolean
18256      */
18257     available: false,
18258
18259     /**
18260      * By default, drags can only be initiated if the mousedown occurs in the
18261      * region the linked element is.  This is done in part to work around a
18262      * bug in some browsers that mis-report the mousedown if the previous
18263      * mouseup happened outside of the window.  This property is set to true
18264      * if outer handles are defined.
18265      *
18266      * @property hasOuterHandles
18267      * @type boolean
18268      * @default false
18269      */
18270     hasOuterHandles: false,
18271
18272     /**
18273      * Code that executes immediately before the startDrag event
18274      * @method b4StartDrag
18275      * @private
18276      */
18277     b4StartDrag: function(x, y) { },
18278
18279     /**
18280      * Abstract method called after a drag/drop object is clicked
18281      * and the drag or mousedown time thresholds have beeen met.
18282      * @method startDrag
18283      * @param {int} X click location
18284      * @param {int} Y click location
18285      */
18286     startDrag: function(x, y) { /* override this */ },
18287
18288     /**
18289      * Code that executes immediately before the onDrag event
18290      * @method b4Drag
18291      * @private
18292      */
18293     b4Drag: function(e) { },
18294
18295     /**
18296      * Abstract method called during the onMouseMove event while dragging an
18297      * object.
18298      * @method onDrag
18299      * @param {Event} e the mousemove event
18300      */
18301     onDrag: function(e) { /* override this */ },
18302
18303     /**
18304      * Abstract method called when this element fist begins hovering over
18305      * another DragDrop obj
18306      * @method onDragEnter
18307      * @param {Event} e the mousemove event
18308      * @param {String|DragDrop[]} id In POINT mode, the element
18309      * id this is hovering over.  In INTERSECT mode, an array of one or more
18310      * dragdrop items being hovered over.
18311      */
18312     onDragEnter: function(e, id) { /* override this */ },
18313
18314     /**
18315      * Code that executes immediately before the onDragOver event
18316      * @method b4DragOver
18317      * @private
18318      */
18319     b4DragOver: function(e) { },
18320
18321     /**
18322      * Abstract method called when this element is hovering over another
18323      * DragDrop obj
18324      * @method onDragOver
18325      * @param {Event} e the mousemove event
18326      * @param {String|DragDrop[]} id In POINT mode, the element
18327      * id this is hovering over.  In INTERSECT mode, an array of dd items
18328      * being hovered over.
18329      */
18330     onDragOver: function(e, id) { /* override this */ },
18331
18332     /**
18333      * Code that executes immediately before the onDragOut event
18334      * @method b4DragOut
18335      * @private
18336      */
18337     b4DragOut: function(e) { },
18338
18339     /**
18340      * Abstract method called when we are no longer hovering over an element
18341      * @method onDragOut
18342      * @param {Event} e the mousemove event
18343      * @param {String|DragDrop[]} id In POINT mode, the element
18344      * id this was hovering over.  In INTERSECT mode, an array of dd items
18345      * that the mouse is no longer over.
18346      */
18347     onDragOut: function(e, id) { /* override this */ },
18348
18349     /**
18350      * Code that executes immediately before the onDragDrop event
18351      * @method b4DragDrop
18352      * @private
18353      */
18354     b4DragDrop: function(e) { },
18355
18356     /**
18357      * Abstract method called when this item is dropped on another DragDrop
18358      * obj
18359      * @method onDragDrop
18360      * @param {Event} e the mouseup event
18361      * @param {String|DragDrop[]} id In POINT mode, the element
18362      * id this was dropped on.  In INTERSECT mode, an array of dd items this
18363      * was dropped on.
18364      */
18365     onDragDrop: function(e, id) { /* override this */ },
18366
18367     /**
18368      * Abstract method called when this item is dropped on an area with no
18369      * drop target
18370      * @method onInvalidDrop
18371      * @param {Event} e the mouseup event
18372      */
18373     onInvalidDrop: function(e) { /* override this */ },
18374
18375     /**
18376      * Code that executes immediately before the endDrag event
18377      * @method b4EndDrag
18378      * @private
18379      */
18380     b4EndDrag: function(e) { },
18381
18382     /**
18383      * Fired when we are done dragging the object
18384      * @method endDrag
18385      * @param {Event} e the mouseup event
18386      */
18387     endDrag: function(e) { /* override this */ },
18388
18389     /**
18390      * Code executed immediately before the onMouseDown event
18391      * @method b4MouseDown
18392      * @param {Event} e the mousedown event
18393      * @private
18394      */
18395     b4MouseDown: function(e) {  },
18396
18397     /**
18398      * Event handler that fires when a drag/drop obj gets a mousedown
18399      * @method onMouseDown
18400      * @param {Event} e the mousedown event
18401      */
18402     onMouseDown: function(e) { /* override this */ },
18403
18404     /**
18405      * Event handler that fires when a drag/drop obj gets a mouseup
18406      * @method onMouseUp
18407      * @param {Event} e the mouseup event
18408      */
18409     onMouseUp: function(e) { /* override this */ },
18410
18411     /**
18412      * Override the onAvailable method to do what is needed after the initial
18413      * position was determined.
18414      * @method onAvailable
18415      */
18416     onAvailable: function () {
18417     },
18418
18419     /*
18420      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
18421      * @type Object
18422      */
18423     defaultPadding : {left:0, right:0, top:0, bottom:0},
18424
18425     /*
18426      * Initializes the drag drop object's constraints to restrict movement to a certain element.
18427  *
18428  * Usage:
18429  <pre><code>
18430  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
18431                 { dragElId: "existingProxyDiv" });
18432  dd.startDrag = function(){
18433      this.constrainTo("parent-id");
18434  };
18435  </code></pre>
18436  * Or you can initalize it using the {@link Roo.Element} object:
18437  <pre><code>
18438  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
18439      startDrag : function(){
18440          this.constrainTo("parent-id");
18441      }
18442  });
18443  </code></pre>
18444      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
18445      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
18446      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
18447      * an object containing the sides to pad. For example: {right:10, bottom:10}
18448      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
18449      */
18450     constrainTo : function(constrainTo, pad, inContent){
18451         if(typeof pad == "number"){
18452             pad = {left: pad, right:pad, top:pad, bottom:pad};
18453         }
18454         pad = pad || this.defaultPadding;
18455         var b = Roo.get(this.getEl()).getBox();
18456         var ce = Roo.get(constrainTo);
18457         var s = ce.getScroll();
18458         var c, cd = ce.dom;
18459         if(cd == document.body){
18460             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
18461         }else{
18462             xy = ce.getXY();
18463             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
18464         }
18465
18466
18467         var topSpace = b.y - c.y;
18468         var leftSpace = b.x - c.x;
18469
18470         this.resetConstraints();
18471         this.setXConstraint(leftSpace - (pad.left||0), // left
18472                 c.width - leftSpace - b.width - (pad.right||0) //right
18473         );
18474         this.setYConstraint(topSpace - (pad.top||0), //top
18475                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
18476         );
18477     },
18478
18479     /**
18480      * Returns a reference to the linked element
18481      * @method getEl
18482      * @return {HTMLElement} the html element
18483      */
18484     getEl: function() {
18485         if (!this._domRef) {
18486             this._domRef = Roo.getDom(this.id);
18487         }
18488
18489         return this._domRef;
18490     },
18491
18492     /**
18493      * Returns a reference to the actual element to drag.  By default this is
18494      * the same as the html element, but it can be assigned to another
18495      * element. An example of this can be found in Roo.dd.DDProxy
18496      * @method getDragEl
18497      * @return {HTMLElement} the html element
18498      */
18499     getDragEl: function() {
18500         return Roo.getDom(this.dragElId);
18501     },
18502
18503     /**
18504      * Sets up the DragDrop object.  Must be called in the constructor of any
18505      * Roo.dd.DragDrop subclass
18506      * @method init
18507      * @param id the id of the linked element
18508      * @param {String} sGroup the group of related items
18509      * @param {object} config configuration attributes
18510      */
18511     init: function(id, sGroup, config) {
18512         this.initTarget(id, sGroup, config);
18513         if (!Roo.isTouch) {
18514             Event.on(this.id, "mousedown", this.handleMouseDown, this);
18515         }
18516         Event.on(this.id, "touchstart", this.handleMouseDown, this);
18517         // Event.on(this.id, "selectstart", Event.preventDefault);
18518     },
18519
18520     /**
18521      * Initializes Targeting functionality only... the object does not
18522      * get a mousedown handler.
18523      * @method initTarget
18524      * @param id the id of the linked element
18525      * @param {String} sGroup the group of related items
18526      * @param {object} config configuration attributes
18527      */
18528     initTarget: function(id, sGroup, config) {
18529
18530         // configuration attributes
18531         this.config = config || {};
18532
18533         // create a local reference to the drag and drop manager
18534         this.DDM = Roo.dd.DDM;
18535         // initialize the groups array
18536         this.groups = {};
18537
18538         // assume that we have an element reference instead of an id if the
18539         // parameter is not a string
18540         if (typeof id !== "string") {
18541             id = Roo.id(id);
18542         }
18543
18544         // set the id
18545         this.id = id;
18546
18547         // add to an interaction group
18548         this.addToGroup((sGroup) ? sGroup : "default");
18549
18550         // We don't want to register this as the handle with the manager
18551         // so we just set the id rather than calling the setter.
18552         this.handleElId = id;
18553
18554         // the linked element is the element that gets dragged by default
18555         this.setDragElId(id);
18556
18557         // by default, clicked anchors will not start drag operations.
18558         this.invalidHandleTypes = { A: "A" };
18559         this.invalidHandleIds = {};
18560         this.invalidHandleClasses = [];
18561
18562         this.applyConfig();
18563
18564         this.handleOnAvailable();
18565     },
18566
18567     /**
18568      * Applies the configuration parameters that were passed into the constructor.
18569      * This is supposed to happen at each level through the inheritance chain.  So
18570      * a DDProxy implentation will execute apply config on DDProxy, DD, and
18571      * DragDrop in order to get all of the parameters that are available in
18572      * each object.
18573      * @method applyConfig
18574      */
18575     applyConfig: function() {
18576
18577         // configurable properties:
18578         //    padding, isTarget, maintainOffset, primaryButtonOnly
18579         this.padding           = this.config.padding || [0, 0, 0, 0];
18580         this.isTarget          = (this.config.isTarget !== false);
18581         this.maintainOffset    = (this.config.maintainOffset);
18582         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
18583
18584     },
18585
18586     /**
18587      * Executed when the linked element is available
18588      * @method handleOnAvailable
18589      * @private
18590      */
18591     handleOnAvailable: function() {
18592         this.available = true;
18593         this.resetConstraints();
18594         this.onAvailable();
18595     },
18596
18597      /**
18598      * Configures the padding for the target zone in px.  Effectively expands
18599      * (or reduces) the virtual object size for targeting calculations.
18600      * Supports css-style shorthand; if only one parameter is passed, all sides
18601      * will have that padding, and if only two are passed, the top and bottom
18602      * will have the first param, the left and right the second.
18603      * @method setPadding
18604      * @param {int} iTop    Top pad
18605      * @param {int} iRight  Right pad
18606      * @param {int} iBot    Bot pad
18607      * @param {int} iLeft   Left pad
18608      */
18609     setPadding: function(iTop, iRight, iBot, iLeft) {
18610         // this.padding = [iLeft, iRight, iTop, iBot];
18611         if (!iRight && 0 !== iRight) {
18612             this.padding = [iTop, iTop, iTop, iTop];
18613         } else if (!iBot && 0 !== iBot) {
18614             this.padding = [iTop, iRight, iTop, iRight];
18615         } else {
18616             this.padding = [iTop, iRight, iBot, iLeft];
18617         }
18618     },
18619
18620     /**
18621      * Stores the initial placement of the linked element.
18622      * @method setInitialPosition
18623      * @param {int} diffX   the X offset, default 0
18624      * @param {int} diffY   the Y offset, default 0
18625      */
18626     setInitPosition: function(diffX, diffY) {
18627         var el = this.getEl();
18628
18629         if (!this.DDM.verifyEl(el)) {
18630             return;
18631         }
18632
18633         var dx = diffX || 0;
18634         var dy = diffY || 0;
18635
18636         var p = Dom.getXY( el );
18637
18638         this.initPageX = p[0] - dx;
18639         this.initPageY = p[1] - dy;
18640
18641         this.lastPageX = p[0];
18642         this.lastPageY = p[1];
18643
18644
18645         this.setStartPosition(p);
18646     },
18647
18648     /**
18649      * Sets the start position of the element.  This is set when the obj
18650      * is initialized, the reset when a drag is started.
18651      * @method setStartPosition
18652      * @param pos current position (from previous lookup)
18653      * @private
18654      */
18655     setStartPosition: function(pos) {
18656         var p = pos || Dom.getXY( this.getEl() );
18657         this.deltaSetXY = null;
18658
18659         this.startPageX = p[0];
18660         this.startPageY = p[1];
18661     },
18662
18663     /**
18664      * Add this instance to a group of related drag/drop objects.  All
18665      * instances belong to at least one group, and can belong to as many
18666      * groups as needed.
18667      * @method addToGroup
18668      * @param sGroup {string} the name of the group
18669      */
18670     addToGroup: function(sGroup) {
18671         this.groups[sGroup] = true;
18672         this.DDM.regDragDrop(this, sGroup);
18673     },
18674
18675     /**
18676      * Remove's this instance from the supplied interaction group
18677      * @method removeFromGroup
18678      * @param {string}  sGroup  The group to drop
18679      */
18680     removeFromGroup: function(sGroup) {
18681         if (this.groups[sGroup]) {
18682             delete this.groups[sGroup];
18683         }
18684
18685         this.DDM.removeDDFromGroup(this, sGroup);
18686     },
18687
18688     /**
18689      * Allows you to specify that an element other than the linked element
18690      * will be moved with the cursor during a drag
18691      * @method setDragElId
18692      * @param id {string} the id of the element that will be used to initiate the drag
18693      */
18694     setDragElId: function(id) {
18695         this.dragElId = id;
18696     },
18697
18698     /**
18699      * Allows you to specify a child of the linked element that should be
18700      * used to initiate the drag operation.  An example of this would be if
18701      * you have a content div with text and links.  Clicking anywhere in the
18702      * content area would normally start the drag operation.  Use this method
18703      * to specify that an element inside of the content div is the element
18704      * that starts the drag operation.
18705      * @method setHandleElId
18706      * @param id {string} the id of the element that will be used to
18707      * initiate the drag.
18708      */
18709     setHandleElId: function(id) {
18710         if (typeof id !== "string") {
18711             id = Roo.id(id);
18712         }
18713         this.handleElId = id;
18714         this.DDM.regHandle(this.id, id);
18715     },
18716
18717     /**
18718      * Allows you to set an element outside of the linked element as a drag
18719      * handle
18720      * @method setOuterHandleElId
18721      * @param id the id of the element that will be used to initiate the drag
18722      */
18723     setOuterHandleElId: function(id) {
18724         if (typeof id !== "string") {
18725             id = Roo.id(id);
18726         }
18727         Event.on(id, "mousedown",
18728                 this.handleMouseDown, this);
18729         this.setHandleElId(id);
18730
18731         this.hasOuterHandles = true;
18732     },
18733
18734     /**
18735      * Remove all drag and drop hooks for this element
18736      * @method unreg
18737      */
18738     unreg: function() {
18739         Event.un(this.id, "mousedown",
18740                 this.handleMouseDown);
18741         Event.un(this.id, "touchstart",
18742                 this.handleMouseDown);
18743         this._domRef = null;
18744         this.DDM._remove(this);
18745     },
18746
18747     destroy : function(){
18748         this.unreg();
18749     },
18750
18751     /**
18752      * Returns true if this instance is locked, or the drag drop mgr is locked
18753      * (meaning that all drag/drop is disabled on the page.)
18754      * @method isLocked
18755      * @return {boolean} true if this obj or all drag/drop is locked, else
18756      * false
18757      */
18758     isLocked: function() {
18759         return (this.DDM.isLocked() || this.locked);
18760     },
18761
18762     /**
18763      * Fired when this object is clicked
18764      * @method handleMouseDown
18765      * @param {Event} e
18766      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
18767      * @private
18768      */
18769     handleMouseDown: function(e, oDD){
18770      
18771         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
18772             //Roo.log('not touch/ button !=0');
18773             return;
18774         }
18775         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
18776             return; // double touch..
18777         }
18778         
18779
18780         if (this.isLocked()) {
18781             //Roo.log('locked');
18782             return;
18783         }
18784
18785         this.DDM.refreshCache(this.groups);
18786 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
18787         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
18788         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
18789             //Roo.log('no outer handes or not over target');
18790                 // do nothing.
18791         } else {
18792 //            Roo.log('check validator');
18793             if (this.clickValidator(e)) {
18794 //                Roo.log('validate success');
18795                 // set the initial element position
18796                 this.setStartPosition();
18797
18798
18799                 this.b4MouseDown(e);
18800                 this.onMouseDown(e);
18801
18802                 this.DDM.handleMouseDown(e, this);
18803
18804                 this.DDM.stopEvent(e);
18805             } else {
18806
18807
18808             }
18809         }
18810     },
18811
18812     clickValidator: function(e) {
18813         var target = e.getTarget();
18814         return ( this.isValidHandleChild(target) &&
18815                     (this.id == this.handleElId ||
18816                         this.DDM.handleWasClicked(target, this.id)) );
18817     },
18818
18819     /**
18820      * Allows you to specify a tag name that should not start a drag operation
18821      * when clicked.  This is designed to facilitate embedding links within a
18822      * drag handle that do something other than start the drag.
18823      * @method addInvalidHandleType
18824      * @param {string} tagName the type of element to exclude
18825      */
18826     addInvalidHandleType: function(tagName) {
18827         var type = tagName.toUpperCase();
18828         this.invalidHandleTypes[type] = type;
18829     },
18830
18831     /**
18832      * Lets you to specify an element id for a child of a drag handle
18833      * that should not initiate a drag
18834      * @method addInvalidHandleId
18835      * @param {string} id the element id of the element you wish to ignore
18836      */
18837     addInvalidHandleId: function(id) {
18838         if (typeof id !== "string") {
18839             id = Roo.id(id);
18840         }
18841         this.invalidHandleIds[id] = id;
18842     },
18843
18844     /**
18845      * Lets you specify a css class of elements that will not initiate a drag
18846      * @method addInvalidHandleClass
18847      * @param {string} cssClass the class of the elements you wish to ignore
18848      */
18849     addInvalidHandleClass: function(cssClass) {
18850         this.invalidHandleClasses.push(cssClass);
18851     },
18852
18853     /**
18854      * Unsets an excluded tag name set by addInvalidHandleType
18855      * @method removeInvalidHandleType
18856      * @param {string} tagName the type of element to unexclude
18857      */
18858     removeInvalidHandleType: function(tagName) {
18859         var type = tagName.toUpperCase();
18860         // this.invalidHandleTypes[type] = null;
18861         delete this.invalidHandleTypes[type];
18862     },
18863
18864     /**
18865      * Unsets an invalid handle id
18866      * @method removeInvalidHandleId
18867      * @param {string} id the id of the element to re-enable
18868      */
18869     removeInvalidHandleId: function(id) {
18870         if (typeof id !== "string") {
18871             id = Roo.id(id);
18872         }
18873         delete this.invalidHandleIds[id];
18874     },
18875
18876     /**
18877      * Unsets an invalid css class
18878      * @method removeInvalidHandleClass
18879      * @param {string} cssClass the class of the element(s) you wish to
18880      * re-enable
18881      */
18882     removeInvalidHandleClass: function(cssClass) {
18883         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
18884             if (this.invalidHandleClasses[i] == cssClass) {
18885                 delete this.invalidHandleClasses[i];
18886             }
18887         }
18888     },
18889
18890     /**
18891      * Checks the tag exclusion list to see if this click should be ignored
18892      * @method isValidHandleChild
18893      * @param {HTMLElement} node the HTMLElement to evaluate
18894      * @return {boolean} true if this is a valid tag type, false if not
18895      */
18896     isValidHandleChild: function(node) {
18897
18898         var valid = true;
18899         // var n = (node.nodeName == "#text") ? node.parentNode : node;
18900         var nodeName;
18901         try {
18902             nodeName = node.nodeName.toUpperCase();
18903         } catch(e) {
18904             nodeName = node.nodeName;
18905         }
18906         valid = valid && !this.invalidHandleTypes[nodeName];
18907         valid = valid && !this.invalidHandleIds[node.id];
18908
18909         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
18910             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
18911         }
18912
18913
18914         return valid;
18915
18916     },
18917
18918     /**
18919      * Create the array of horizontal tick marks if an interval was specified
18920      * in setXConstraint().
18921      * @method setXTicks
18922      * @private
18923      */
18924     setXTicks: function(iStartX, iTickSize) {
18925         this.xTicks = [];
18926         this.xTickSize = iTickSize;
18927
18928         var tickMap = {};
18929
18930         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
18931             if (!tickMap[i]) {
18932                 this.xTicks[this.xTicks.length] = i;
18933                 tickMap[i] = true;
18934             }
18935         }
18936
18937         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
18938             if (!tickMap[i]) {
18939                 this.xTicks[this.xTicks.length] = i;
18940                 tickMap[i] = true;
18941             }
18942         }
18943
18944         this.xTicks.sort(this.DDM.numericSort) ;
18945     },
18946
18947     /**
18948      * Create the array of vertical tick marks if an interval was specified in
18949      * setYConstraint().
18950      * @method setYTicks
18951      * @private
18952      */
18953     setYTicks: function(iStartY, iTickSize) {
18954         this.yTicks = [];
18955         this.yTickSize = iTickSize;
18956
18957         var tickMap = {};
18958
18959         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
18960             if (!tickMap[i]) {
18961                 this.yTicks[this.yTicks.length] = i;
18962                 tickMap[i] = true;
18963             }
18964         }
18965
18966         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
18967             if (!tickMap[i]) {
18968                 this.yTicks[this.yTicks.length] = i;
18969                 tickMap[i] = true;
18970             }
18971         }
18972
18973         this.yTicks.sort(this.DDM.numericSort) ;
18974     },
18975
18976     /**
18977      * By default, the element can be dragged any place on the screen.  Use
18978      * this method to limit the horizontal travel of the element.  Pass in
18979      * 0,0 for the parameters if you want to lock the drag to the y axis.
18980      * @method setXConstraint
18981      * @param {int} iLeft the number of pixels the element can move to the left
18982      * @param {int} iRight the number of pixels the element can move to the
18983      * right
18984      * @param {int} iTickSize optional parameter for specifying that the
18985      * element
18986      * should move iTickSize pixels at a time.
18987      */
18988     setXConstraint: function(iLeft, iRight, iTickSize) {
18989         this.leftConstraint = iLeft;
18990         this.rightConstraint = iRight;
18991
18992         this.minX = this.initPageX - iLeft;
18993         this.maxX = this.initPageX + iRight;
18994         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
18995
18996         this.constrainX = true;
18997     },
18998
18999     /**
19000      * Clears any constraints applied to this instance.  Also clears ticks
19001      * since they can't exist independent of a constraint at this time.
19002      * @method clearConstraints
19003      */
19004     clearConstraints: function() {
19005         this.constrainX = false;
19006         this.constrainY = false;
19007         this.clearTicks();
19008     },
19009
19010     /**
19011      * Clears any tick interval defined for this instance
19012      * @method clearTicks
19013      */
19014     clearTicks: function() {
19015         this.xTicks = null;
19016         this.yTicks = null;
19017         this.xTickSize = 0;
19018         this.yTickSize = 0;
19019     },
19020
19021     /**
19022      * By default, the element can be dragged any place on the screen.  Set
19023      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19024      * parameters if you want to lock the drag to the x axis.
19025      * @method setYConstraint
19026      * @param {int} iUp the number of pixels the element can move up
19027      * @param {int} iDown the number of pixels the element can move down
19028      * @param {int} iTickSize optional parameter for specifying that the
19029      * element should move iTickSize pixels at a time.
19030      */
19031     setYConstraint: function(iUp, iDown, iTickSize) {
19032         this.topConstraint = iUp;
19033         this.bottomConstraint = iDown;
19034
19035         this.minY = this.initPageY - iUp;
19036         this.maxY = this.initPageY + iDown;
19037         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19038
19039         this.constrainY = true;
19040
19041     },
19042
19043     /**
19044      * resetConstraints must be called if you manually reposition a dd element.
19045      * @method resetConstraints
19046      * @param {boolean} maintainOffset
19047      */
19048     resetConstraints: function() {
19049
19050
19051         // Maintain offsets if necessary
19052         if (this.initPageX || this.initPageX === 0) {
19053             // figure out how much this thing has moved
19054             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19055             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19056
19057             this.setInitPosition(dx, dy);
19058
19059         // This is the first time we have detected the element's position
19060         } else {
19061             this.setInitPosition();
19062         }
19063
19064         if (this.constrainX) {
19065             this.setXConstraint( this.leftConstraint,
19066                                  this.rightConstraint,
19067                                  this.xTickSize        );
19068         }
19069
19070         if (this.constrainY) {
19071             this.setYConstraint( this.topConstraint,
19072                                  this.bottomConstraint,
19073                                  this.yTickSize         );
19074         }
19075     },
19076
19077     /**
19078      * Normally the drag element is moved pixel by pixel, but we can specify
19079      * that it move a number of pixels at a time.  This method resolves the
19080      * location when we have it set up like this.
19081      * @method getTick
19082      * @param {int} val where we want to place the object
19083      * @param {int[]} tickArray sorted array of valid points
19084      * @return {int} the closest tick
19085      * @private
19086      */
19087     getTick: function(val, tickArray) {
19088
19089         if (!tickArray) {
19090             // If tick interval is not defined, it is effectively 1 pixel,
19091             // so we return the value passed to us.
19092             return val;
19093         } else if (tickArray[0] >= val) {
19094             // The value is lower than the first tick, so we return the first
19095             // tick.
19096             return tickArray[0];
19097         } else {
19098             for (var i=0, len=tickArray.length; i<len; ++i) {
19099                 var next = i + 1;
19100                 if (tickArray[next] && tickArray[next] >= val) {
19101                     var diff1 = val - tickArray[i];
19102                     var diff2 = tickArray[next] - val;
19103                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19104                 }
19105             }
19106
19107             // The value is larger than the last tick, so we return the last
19108             // tick.
19109             return tickArray[tickArray.length - 1];
19110         }
19111     },
19112
19113     /**
19114      * toString method
19115      * @method toString
19116      * @return {string} string representation of the dd obj
19117      */
19118     toString: function() {
19119         return ("DragDrop " + this.id);
19120     }
19121
19122 });
19123
19124 })();
19125 /*
19126  * Based on:
19127  * Ext JS Library 1.1.1
19128  * Copyright(c) 2006-2007, Ext JS, LLC.
19129  *
19130  * Originally Released Under LGPL - original licence link has changed is not relivant.
19131  *
19132  * Fork - LGPL
19133  * <script type="text/javascript">
19134  */
19135
19136
19137 /**
19138  * The drag and drop utility provides a framework for building drag and drop
19139  * applications.  In addition to enabling drag and drop for specific elements,
19140  * the drag and drop elements are tracked by the manager class, and the
19141  * interactions between the various elements are tracked during the drag and
19142  * the implementing code is notified about these important moments.
19143  */
19144
19145 // Only load the library once.  Rewriting the manager class would orphan
19146 // existing drag and drop instances.
19147 if (!Roo.dd.DragDropMgr) {
19148
19149 /**
19150  * @class Roo.dd.DragDropMgr
19151  * DragDropMgr is a singleton that tracks the element interaction for
19152  * all DragDrop items in the window.  Generally, you will not call
19153  * this class directly, but it does have helper methods that could
19154  * be useful in your DragDrop implementations.
19155  * @singleton
19156  */
19157 Roo.dd.DragDropMgr = function() {
19158
19159     var Event = Roo.EventManager;
19160
19161     return {
19162
19163         /**
19164          * Two dimensional Array of registered DragDrop objects.  The first
19165          * dimension is the DragDrop item group, the second the DragDrop
19166          * object.
19167          * @property ids
19168          * @type {string: string}
19169          * @private
19170          * @static
19171          */
19172         ids: {},
19173
19174         /**
19175          * Array of element ids defined as drag handles.  Used to determine
19176          * if the element that generated the mousedown event is actually the
19177          * handle and not the html element itself.
19178          * @property handleIds
19179          * @type {string: string}
19180          * @private
19181          * @static
19182          */
19183         handleIds: {},
19184
19185         /**
19186          * the DragDrop object that is currently being dragged
19187          * @property dragCurrent
19188          * @type DragDrop
19189          * @private
19190          * @static
19191          **/
19192         dragCurrent: null,
19193
19194         /**
19195          * the DragDrop object(s) that are being hovered over
19196          * @property dragOvers
19197          * @type Array
19198          * @private
19199          * @static
19200          */
19201         dragOvers: {},
19202
19203         /**
19204          * the X distance between the cursor and the object being dragged
19205          * @property deltaX
19206          * @type int
19207          * @private
19208          * @static
19209          */
19210         deltaX: 0,
19211
19212         /**
19213          * the Y distance between the cursor and the object being dragged
19214          * @property deltaY
19215          * @type int
19216          * @private
19217          * @static
19218          */
19219         deltaY: 0,
19220
19221         /**
19222          * Flag to determine if we should prevent the default behavior of the
19223          * events we define. By default this is true, but this can be set to
19224          * false if you need the default behavior (not recommended)
19225          * @property preventDefault
19226          * @type boolean
19227          * @static
19228          */
19229         preventDefault: true,
19230
19231         /**
19232          * Flag to determine if we should stop the propagation of the events
19233          * we generate. This is true by default but you may want to set it to
19234          * false if the html element contains other features that require the
19235          * mouse click.
19236          * @property stopPropagation
19237          * @type boolean
19238          * @static
19239          */
19240         stopPropagation: true,
19241
19242         /**
19243          * Internal flag that is set to true when drag and drop has been
19244          * intialized
19245          * @property initialized
19246          * @private
19247          * @static
19248          */
19249         initalized: false,
19250
19251         /**
19252          * All drag and drop can be disabled.
19253          * @property locked
19254          * @private
19255          * @static
19256          */
19257         locked: false,
19258
19259         /**
19260          * Called the first time an element is registered.
19261          * @method init
19262          * @private
19263          * @static
19264          */
19265         init: function() {
19266             this.initialized = true;
19267         },
19268
19269         /**
19270          * In point mode, drag and drop interaction is defined by the
19271          * location of the cursor during the drag/drop
19272          * @property POINT
19273          * @type int
19274          * @static
19275          */
19276         POINT: 0,
19277
19278         /**
19279          * In intersect mode, drag and drop interactio nis defined by the
19280          * overlap of two or more drag and drop objects.
19281          * @property INTERSECT
19282          * @type int
19283          * @static
19284          */
19285         INTERSECT: 1,
19286
19287         /**
19288          * The current drag and drop mode.  Default: POINT
19289          * @property mode
19290          * @type int
19291          * @static
19292          */
19293         mode: 0,
19294
19295         /**
19296          * Runs method on all drag and drop objects
19297          * @method _execOnAll
19298          * @private
19299          * @static
19300          */
19301         _execOnAll: function(sMethod, args) {
19302             for (var i in this.ids) {
19303                 for (var j in this.ids[i]) {
19304                     var oDD = this.ids[i][j];
19305                     if (! this.isTypeOfDD(oDD)) {
19306                         continue;
19307                     }
19308                     oDD[sMethod].apply(oDD, args);
19309                 }
19310             }
19311         },
19312
19313         /**
19314          * Drag and drop initialization.  Sets up the global event handlers
19315          * @method _onLoad
19316          * @private
19317          * @static
19318          */
19319         _onLoad: function() {
19320
19321             this.init();
19322
19323             if (!Roo.isTouch) {
19324                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
19325                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
19326             }
19327             Event.on(document, "touchend",   this.handleMouseUp, this, true);
19328             Event.on(document, "touchmove", this.handleMouseMove, this, true);
19329             
19330             Event.on(window,   "unload",    this._onUnload, this, true);
19331             Event.on(window,   "resize",    this._onResize, this, true);
19332             // Event.on(window,   "mouseout",    this._test);
19333
19334         },
19335
19336         /**
19337          * Reset constraints on all drag and drop objs
19338          * @method _onResize
19339          * @private
19340          * @static
19341          */
19342         _onResize: function(e) {
19343             this._execOnAll("resetConstraints", []);
19344         },
19345
19346         /**
19347          * Lock all drag and drop functionality
19348          * @method lock
19349          * @static
19350          */
19351         lock: function() { this.locked = true; },
19352
19353         /**
19354          * Unlock all drag and drop functionality
19355          * @method unlock
19356          * @static
19357          */
19358         unlock: function() { this.locked = false; },
19359
19360         /**
19361          * Is drag and drop locked?
19362          * @method isLocked
19363          * @return {boolean} True if drag and drop is locked, false otherwise.
19364          * @static
19365          */
19366         isLocked: function() { return this.locked; },
19367
19368         /**
19369          * Location cache that is set for all drag drop objects when a drag is
19370          * initiated, cleared when the drag is finished.
19371          * @property locationCache
19372          * @private
19373          * @static
19374          */
19375         locationCache: {},
19376
19377         /**
19378          * Set useCache to false if you want to force object the lookup of each
19379          * drag and drop linked element constantly during a drag.
19380          * @property useCache
19381          * @type boolean
19382          * @static
19383          */
19384         useCache: true,
19385
19386         /**
19387          * The number of pixels that the mouse needs to move after the
19388          * mousedown before the drag is initiated.  Default=3;
19389          * @property clickPixelThresh
19390          * @type int
19391          * @static
19392          */
19393         clickPixelThresh: 3,
19394
19395         /**
19396          * The number of milliseconds after the mousedown event to initiate the
19397          * drag if we don't get a mouseup event. Default=1000
19398          * @property clickTimeThresh
19399          * @type int
19400          * @static
19401          */
19402         clickTimeThresh: 350,
19403
19404         /**
19405          * Flag that indicates that either the drag pixel threshold or the
19406          * mousdown time threshold has been met
19407          * @property dragThreshMet
19408          * @type boolean
19409          * @private
19410          * @static
19411          */
19412         dragThreshMet: false,
19413
19414         /**
19415          * Timeout used for the click time threshold
19416          * @property clickTimeout
19417          * @type Object
19418          * @private
19419          * @static
19420          */
19421         clickTimeout: null,
19422
19423         /**
19424          * The X position of the mousedown event stored for later use when a
19425          * drag threshold is met.
19426          * @property startX
19427          * @type int
19428          * @private
19429          * @static
19430          */
19431         startX: 0,
19432
19433         /**
19434          * The Y position of the mousedown event stored for later use when a
19435          * drag threshold is met.
19436          * @property startY
19437          * @type int
19438          * @private
19439          * @static
19440          */
19441         startY: 0,
19442
19443         /**
19444          * Each DragDrop instance must be registered with the DragDropMgr.
19445          * This is executed in DragDrop.init()
19446          * @method regDragDrop
19447          * @param {DragDrop} oDD the DragDrop object to register
19448          * @param {String} sGroup the name of the group this element belongs to
19449          * @static
19450          */
19451         regDragDrop: function(oDD, sGroup) {
19452             if (!this.initialized) { this.init(); }
19453
19454             if (!this.ids[sGroup]) {
19455                 this.ids[sGroup] = {};
19456             }
19457             this.ids[sGroup][oDD.id] = oDD;
19458         },
19459
19460         /**
19461          * Removes the supplied dd instance from the supplied group. Executed
19462          * by DragDrop.removeFromGroup, so don't call this function directly.
19463          * @method removeDDFromGroup
19464          * @private
19465          * @static
19466          */
19467         removeDDFromGroup: function(oDD, sGroup) {
19468             if (!this.ids[sGroup]) {
19469                 this.ids[sGroup] = {};
19470             }
19471
19472             var obj = this.ids[sGroup];
19473             if (obj && obj[oDD.id]) {
19474                 delete obj[oDD.id];
19475             }
19476         },
19477
19478         /**
19479          * Unregisters a drag and drop item.  This is executed in
19480          * DragDrop.unreg, use that method instead of calling this directly.
19481          * @method _remove
19482          * @private
19483          * @static
19484          */
19485         _remove: function(oDD) {
19486             for (var g in oDD.groups) {
19487                 if (g && this.ids[g][oDD.id]) {
19488                     delete this.ids[g][oDD.id];
19489                 }
19490             }
19491             delete this.handleIds[oDD.id];
19492         },
19493
19494         /**
19495          * Each DragDrop handle element must be registered.  This is done
19496          * automatically when executing DragDrop.setHandleElId()
19497          * @method regHandle
19498          * @param {String} sDDId the DragDrop id this element is a handle for
19499          * @param {String} sHandleId the id of the element that is the drag
19500          * handle
19501          * @static
19502          */
19503         regHandle: function(sDDId, sHandleId) {
19504             if (!this.handleIds[sDDId]) {
19505                 this.handleIds[sDDId] = {};
19506             }
19507             this.handleIds[sDDId][sHandleId] = sHandleId;
19508         },
19509
19510         /**
19511          * Utility function to determine if a given element has been
19512          * registered as a drag drop item.
19513          * @method isDragDrop
19514          * @param {String} id the element id to check
19515          * @return {boolean} true if this element is a DragDrop item,
19516          * false otherwise
19517          * @static
19518          */
19519         isDragDrop: function(id) {
19520             return ( this.getDDById(id) ) ? true : false;
19521         },
19522
19523         /**
19524          * Returns the drag and drop instances that are in all groups the
19525          * passed in instance belongs to.
19526          * @method getRelated
19527          * @param {DragDrop} p_oDD the obj to get related data for
19528          * @param {boolean} bTargetsOnly if true, only return targetable objs
19529          * @return {DragDrop[]} the related instances
19530          * @static
19531          */
19532         getRelated: function(p_oDD, bTargetsOnly) {
19533             var oDDs = [];
19534             for (var i in p_oDD.groups) {
19535                 for (j in this.ids[i]) {
19536                     var dd = this.ids[i][j];
19537                     if (! this.isTypeOfDD(dd)) {
19538                         continue;
19539                     }
19540                     if (!bTargetsOnly || dd.isTarget) {
19541                         oDDs[oDDs.length] = dd;
19542                     }
19543                 }
19544             }
19545
19546             return oDDs;
19547         },
19548
19549         /**
19550          * Returns true if the specified dd target is a legal target for
19551          * the specifice drag obj
19552          * @method isLegalTarget
19553          * @param {DragDrop} the drag obj
19554          * @param {DragDrop} the target
19555          * @return {boolean} true if the target is a legal target for the
19556          * dd obj
19557          * @static
19558          */
19559         isLegalTarget: function (oDD, oTargetDD) {
19560             var targets = this.getRelated(oDD, true);
19561             for (var i=0, len=targets.length;i<len;++i) {
19562                 if (targets[i].id == oTargetDD.id) {
19563                     return true;
19564                 }
19565             }
19566
19567             return false;
19568         },
19569
19570         /**
19571          * My goal is to be able to transparently determine if an object is
19572          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
19573          * returns "object", oDD.constructor.toString() always returns
19574          * "DragDrop" and not the name of the subclass.  So for now it just
19575          * evaluates a well-known variable in DragDrop.
19576          * @method isTypeOfDD
19577          * @param {Object} the object to evaluate
19578          * @return {boolean} true if typeof oDD = DragDrop
19579          * @static
19580          */
19581         isTypeOfDD: function (oDD) {
19582             return (oDD && oDD.__ygDragDrop);
19583         },
19584
19585         /**
19586          * Utility function to determine if a given element has been
19587          * registered as a drag drop handle for the given Drag Drop object.
19588          * @method isHandle
19589          * @param {String} id the element id to check
19590          * @return {boolean} true if this element is a DragDrop handle, false
19591          * otherwise
19592          * @static
19593          */
19594         isHandle: function(sDDId, sHandleId) {
19595             return ( this.handleIds[sDDId] &&
19596                             this.handleIds[sDDId][sHandleId] );
19597         },
19598
19599         /**
19600          * Returns the DragDrop instance for a given id
19601          * @method getDDById
19602          * @param {String} id the id of the DragDrop object
19603          * @return {DragDrop} the drag drop object, null if it is not found
19604          * @static
19605          */
19606         getDDById: function(id) {
19607             for (var i in this.ids) {
19608                 if (this.ids[i][id]) {
19609                     return this.ids[i][id];
19610                 }
19611             }
19612             return null;
19613         },
19614
19615         /**
19616          * Fired after a registered DragDrop object gets the mousedown event.
19617          * Sets up the events required to track the object being dragged
19618          * @method handleMouseDown
19619          * @param {Event} e the event
19620          * @param oDD the DragDrop object being dragged
19621          * @private
19622          * @static
19623          */
19624         handleMouseDown: function(e, oDD) {
19625             if(Roo.QuickTips){
19626                 Roo.QuickTips.disable();
19627             }
19628             this.currentTarget = e.getTarget();
19629
19630             this.dragCurrent = oDD;
19631
19632             var el = oDD.getEl();
19633
19634             // track start position
19635             this.startX = e.getPageX();
19636             this.startY = e.getPageY();
19637
19638             this.deltaX = this.startX - el.offsetLeft;
19639             this.deltaY = this.startY - el.offsetTop;
19640
19641             this.dragThreshMet = false;
19642
19643             this.clickTimeout = setTimeout(
19644                     function() {
19645                         var DDM = Roo.dd.DDM;
19646                         DDM.startDrag(DDM.startX, DDM.startY);
19647                     },
19648                     this.clickTimeThresh );
19649         },
19650
19651         /**
19652          * Fired when either the drag pixel threshol or the mousedown hold
19653          * time threshold has been met.
19654          * @method startDrag
19655          * @param x {int} the X position of the original mousedown
19656          * @param y {int} the Y position of the original mousedown
19657          * @static
19658          */
19659         startDrag: function(x, y) {
19660             clearTimeout(this.clickTimeout);
19661             if (this.dragCurrent) {
19662                 this.dragCurrent.b4StartDrag(x, y);
19663                 this.dragCurrent.startDrag(x, y);
19664             }
19665             this.dragThreshMet = true;
19666         },
19667
19668         /**
19669          * Internal function to handle the mouseup event.  Will be invoked
19670          * from the context of the document.
19671          * @method handleMouseUp
19672          * @param {Event} e the event
19673          * @private
19674          * @static
19675          */
19676         handleMouseUp: function(e) {
19677
19678             if(Roo.QuickTips){
19679                 Roo.QuickTips.enable();
19680             }
19681             if (! this.dragCurrent) {
19682                 return;
19683             }
19684
19685             clearTimeout(this.clickTimeout);
19686
19687             if (this.dragThreshMet) {
19688                 this.fireEvents(e, true);
19689             } else {
19690             }
19691
19692             this.stopDrag(e);
19693
19694             this.stopEvent(e);
19695         },
19696
19697         /**
19698          * Utility to stop event propagation and event default, if these
19699          * features are turned on.
19700          * @method stopEvent
19701          * @param {Event} e the event as returned by this.getEvent()
19702          * @static
19703          */
19704         stopEvent: function(e){
19705             if(this.stopPropagation) {
19706                 e.stopPropagation();
19707             }
19708
19709             if (this.preventDefault) {
19710                 e.preventDefault();
19711             }
19712         },
19713
19714         /**
19715          * Internal function to clean up event handlers after the drag
19716          * operation is complete
19717          * @method stopDrag
19718          * @param {Event} e the event
19719          * @private
19720          * @static
19721          */
19722         stopDrag: function(e) {
19723             // Fire the drag end event for the item that was dragged
19724             if (this.dragCurrent) {
19725                 if (this.dragThreshMet) {
19726                     this.dragCurrent.b4EndDrag(e);
19727                     this.dragCurrent.endDrag(e);
19728                 }
19729
19730                 this.dragCurrent.onMouseUp(e);
19731             }
19732
19733             this.dragCurrent = null;
19734             this.dragOvers = {};
19735         },
19736
19737         /**
19738          * Internal function to handle the mousemove event.  Will be invoked
19739          * from the context of the html element.
19740          *
19741          * @TODO figure out what we can do about mouse events lost when the
19742          * user drags objects beyond the window boundary.  Currently we can
19743          * detect this in internet explorer by verifying that the mouse is
19744          * down during the mousemove event.  Firefox doesn't give us the
19745          * button state on the mousemove event.
19746          * @method handleMouseMove
19747          * @param {Event} e the event
19748          * @private
19749          * @static
19750          */
19751         handleMouseMove: function(e) {
19752             if (! this.dragCurrent) {
19753                 return true;
19754             }
19755
19756             // var button = e.which || e.button;
19757
19758             // check for IE mouseup outside of page boundary
19759             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
19760                 this.stopEvent(e);
19761                 return this.handleMouseUp(e);
19762             }
19763
19764             if (!this.dragThreshMet) {
19765                 var diffX = Math.abs(this.startX - e.getPageX());
19766                 var diffY = Math.abs(this.startY - e.getPageY());
19767                 if (diffX > this.clickPixelThresh ||
19768                             diffY > this.clickPixelThresh) {
19769                     this.startDrag(this.startX, this.startY);
19770                 }
19771             }
19772
19773             if (this.dragThreshMet) {
19774                 this.dragCurrent.b4Drag(e);
19775                 this.dragCurrent.onDrag(e);
19776                 if(!this.dragCurrent.moveOnly){
19777                     this.fireEvents(e, false);
19778                 }
19779             }
19780
19781             this.stopEvent(e);
19782
19783             return true;
19784         },
19785
19786         /**
19787          * Iterates over all of the DragDrop elements to find ones we are
19788          * hovering over or dropping on
19789          * @method fireEvents
19790          * @param {Event} e the event
19791          * @param {boolean} isDrop is this a drop op or a mouseover op?
19792          * @private
19793          * @static
19794          */
19795         fireEvents: function(e, isDrop) {
19796             var dc = this.dragCurrent;
19797
19798             // If the user did the mouse up outside of the window, we could
19799             // get here even though we have ended the drag.
19800             if (!dc || dc.isLocked()) {
19801                 return;
19802             }
19803
19804             var pt = e.getPoint();
19805
19806             // cache the previous dragOver array
19807             var oldOvers = [];
19808
19809             var outEvts   = [];
19810             var overEvts  = [];
19811             var dropEvts  = [];
19812             var enterEvts = [];
19813
19814             // Check to see if the object(s) we were hovering over is no longer
19815             // being hovered over so we can fire the onDragOut event
19816             for (var i in this.dragOvers) {
19817
19818                 var ddo = this.dragOvers[i];
19819
19820                 if (! this.isTypeOfDD(ddo)) {
19821                     continue;
19822                 }
19823
19824                 if (! this.isOverTarget(pt, ddo, this.mode)) {
19825                     outEvts.push( ddo );
19826                 }
19827
19828                 oldOvers[i] = true;
19829                 delete this.dragOvers[i];
19830             }
19831
19832             for (var sGroup in dc.groups) {
19833
19834                 if ("string" != typeof sGroup) {
19835                     continue;
19836                 }
19837
19838                 for (i in this.ids[sGroup]) {
19839                     var oDD = this.ids[sGroup][i];
19840                     if (! this.isTypeOfDD(oDD)) {
19841                         continue;
19842                     }
19843
19844                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
19845                         if (this.isOverTarget(pt, oDD, this.mode)) {
19846                             // look for drop interactions
19847                             if (isDrop) {
19848                                 dropEvts.push( oDD );
19849                             // look for drag enter and drag over interactions
19850                             } else {
19851
19852                                 // initial drag over: dragEnter fires
19853                                 if (!oldOvers[oDD.id]) {
19854                                     enterEvts.push( oDD );
19855                                 // subsequent drag overs: dragOver fires
19856                                 } else {
19857                                     overEvts.push( oDD );
19858                                 }
19859
19860                                 this.dragOvers[oDD.id] = oDD;
19861                             }
19862                         }
19863                     }
19864                 }
19865             }
19866
19867             if (this.mode) {
19868                 if (outEvts.length) {
19869                     dc.b4DragOut(e, outEvts);
19870                     dc.onDragOut(e, outEvts);
19871                 }
19872
19873                 if (enterEvts.length) {
19874                     dc.onDragEnter(e, enterEvts);
19875                 }
19876
19877                 if (overEvts.length) {
19878                     dc.b4DragOver(e, overEvts);
19879                     dc.onDragOver(e, overEvts);
19880                 }
19881
19882                 if (dropEvts.length) {
19883                     dc.b4DragDrop(e, dropEvts);
19884                     dc.onDragDrop(e, dropEvts);
19885                 }
19886
19887             } else {
19888                 // fire dragout events
19889                 var len = 0;
19890                 for (i=0, len=outEvts.length; i<len; ++i) {
19891                     dc.b4DragOut(e, outEvts[i].id);
19892                     dc.onDragOut(e, outEvts[i].id);
19893                 }
19894
19895                 // fire enter events
19896                 for (i=0,len=enterEvts.length; i<len; ++i) {
19897                     // dc.b4DragEnter(e, oDD.id);
19898                     dc.onDragEnter(e, enterEvts[i].id);
19899                 }
19900
19901                 // fire over events
19902                 for (i=0,len=overEvts.length; i<len; ++i) {
19903                     dc.b4DragOver(e, overEvts[i].id);
19904                     dc.onDragOver(e, overEvts[i].id);
19905                 }
19906
19907                 // fire drop events
19908                 for (i=0, len=dropEvts.length; i<len; ++i) {
19909                     dc.b4DragDrop(e, dropEvts[i].id);
19910                     dc.onDragDrop(e, dropEvts[i].id);
19911                 }
19912
19913             }
19914
19915             // notify about a drop that did not find a target
19916             if (isDrop && !dropEvts.length) {
19917                 dc.onInvalidDrop(e);
19918             }
19919
19920         },
19921
19922         /**
19923          * Helper function for getting the best match from the list of drag
19924          * and drop objects returned by the drag and drop events when we are
19925          * in INTERSECT mode.  It returns either the first object that the
19926          * cursor is over, or the object that has the greatest overlap with
19927          * the dragged element.
19928          * @method getBestMatch
19929          * @param  {DragDrop[]} dds The array of drag and drop objects
19930          * targeted
19931          * @return {DragDrop}       The best single match
19932          * @static
19933          */
19934         getBestMatch: function(dds) {
19935             var winner = null;
19936             // Return null if the input is not what we expect
19937             //if (!dds || !dds.length || dds.length == 0) {
19938                // winner = null;
19939             // If there is only one item, it wins
19940             //} else if (dds.length == 1) {
19941
19942             var len = dds.length;
19943
19944             if (len == 1) {
19945                 winner = dds[0];
19946             } else {
19947                 // Loop through the targeted items
19948                 for (var i=0; i<len; ++i) {
19949                     var dd = dds[i];
19950                     // If the cursor is over the object, it wins.  If the
19951                     // cursor is over multiple matches, the first one we come
19952                     // to wins.
19953                     if (dd.cursorIsOver) {
19954                         winner = dd;
19955                         break;
19956                     // Otherwise the object with the most overlap wins
19957                     } else {
19958                         if (!winner ||
19959                             winner.overlap.getArea() < dd.overlap.getArea()) {
19960                             winner = dd;
19961                         }
19962                     }
19963                 }
19964             }
19965
19966             return winner;
19967         },
19968
19969         /**
19970          * Refreshes the cache of the top-left and bottom-right points of the
19971          * drag and drop objects in the specified group(s).  This is in the
19972          * format that is stored in the drag and drop instance, so typical
19973          * usage is:
19974          * <code>
19975          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
19976          * </code>
19977          * Alternatively:
19978          * <code>
19979          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
19980          * </code>
19981          * @TODO this really should be an indexed array.  Alternatively this
19982          * method could accept both.
19983          * @method refreshCache
19984          * @param {Object} groups an associative array of groups to refresh
19985          * @static
19986          */
19987         refreshCache: function(groups) {
19988             for (var sGroup in groups) {
19989                 if ("string" != typeof sGroup) {
19990                     continue;
19991                 }
19992                 for (var i in this.ids[sGroup]) {
19993                     var oDD = this.ids[sGroup][i];
19994
19995                     if (this.isTypeOfDD(oDD)) {
19996                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
19997                         var loc = this.getLocation(oDD);
19998                         if (loc) {
19999                             this.locationCache[oDD.id] = loc;
20000                         } else {
20001                             delete this.locationCache[oDD.id];
20002                             // this will unregister the drag and drop object if
20003                             // the element is not in a usable state
20004                             // oDD.unreg();
20005                         }
20006                     }
20007                 }
20008             }
20009         },
20010
20011         /**
20012          * This checks to make sure an element exists and is in the DOM.  The
20013          * main purpose is to handle cases where innerHTML is used to remove
20014          * drag and drop objects from the DOM.  IE provides an 'unspecified
20015          * error' when trying to access the offsetParent of such an element
20016          * @method verifyEl
20017          * @param {HTMLElement} el the element to check
20018          * @return {boolean} true if the element looks usable
20019          * @static
20020          */
20021         verifyEl: function(el) {
20022             if (el) {
20023                 var parent;
20024                 if(Roo.isIE){
20025                     try{
20026                         parent = el.offsetParent;
20027                     }catch(e){}
20028                 }else{
20029                     parent = el.offsetParent;
20030                 }
20031                 if (parent) {
20032                     return true;
20033                 }
20034             }
20035
20036             return false;
20037         },
20038
20039         /**
20040          * Returns a Region object containing the drag and drop element's position
20041          * and size, including the padding configured for it
20042          * @method getLocation
20043          * @param {DragDrop} oDD the drag and drop object to get the
20044          *                       location for
20045          * @return {Roo.lib.Region} a Region object representing the total area
20046          *                             the element occupies, including any padding
20047          *                             the instance is configured for.
20048          * @static
20049          */
20050         getLocation: function(oDD) {
20051             if (! this.isTypeOfDD(oDD)) {
20052                 return null;
20053             }
20054
20055             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20056
20057             try {
20058                 pos= Roo.lib.Dom.getXY(el);
20059             } catch (e) { }
20060
20061             if (!pos) {
20062                 return null;
20063             }
20064
20065             x1 = pos[0];
20066             x2 = x1 + el.offsetWidth;
20067             y1 = pos[1];
20068             y2 = y1 + el.offsetHeight;
20069
20070             t = y1 - oDD.padding[0];
20071             r = x2 + oDD.padding[1];
20072             b = y2 + oDD.padding[2];
20073             l = x1 - oDD.padding[3];
20074
20075             return new Roo.lib.Region( t, r, b, l );
20076         },
20077
20078         /**
20079          * Checks the cursor location to see if it over the target
20080          * @method isOverTarget
20081          * @param {Roo.lib.Point} pt The point to evaluate
20082          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20083          * @return {boolean} true if the mouse is over the target
20084          * @private
20085          * @static
20086          */
20087         isOverTarget: function(pt, oTarget, intersect) {
20088             // use cache if available
20089             var loc = this.locationCache[oTarget.id];
20090             if (!loc || !this.useCache) {
20091                 loc = this.getLocation(oTarget);
20092                 this.locationCache[oTarget.id] = loc;
20093
20094             }
20095
20096             if (!loc) {
20097                 return false;
20098             }
20099
20100             oTarget.cursorIsOver = loc.contains( pt );
20101
20102             // DragDrop is using this as a sanity check for the initial mousedown
20103             // in this case we are done.  In POINT mode, if the drag obj has no
20104             // contraints, we are also done. Otherwise we need to evaluate the
20105             // location of the target as related to the actual location of the
20106             // dragged element.
20107             var dc = this.dragCurrent;
20108             if (!dc || !dc.getTargetCoord ||
20109                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20110                 return oTarget.cursorIsOver;
20111             }
20112
20113             oTarget.overlap = null;
20114
20115             // Get the current location of the drag element, this is the
20116             // location of the mouse event less the delta that represents
20117             // where the original mousedown happened on the element.  We
20118             // need to consider constraints and ticks as well.
20119             var pos = dc.getTargetCoord(pt.x, pt.y);
20120
20121             var el = dc.getDragEl();
20122             var curRegion = new Roo.lib.Region( pos.y,
20123                                                    pos.x + el.offsetWidth,
20124                                                    pos.y + el.offsetHeight,
20125                                                    pos.x );
20126
20127             var overlap = curRegion.intersect(loc);
20128
20129             if (overlap) {
20130                 oTarget.overlap = overlap;
20131                 return (intersect) ? true : oTarget.cursorIsOver;
20132             } else {
20133                 return false;
20134             }
20135         },
20136
20137         /**
20138          * unload event handler
20139          * @method _onUnload
20140          * @private
20141          * @static
20142          */
20143         _onUnload: function(e, me) {
20144             Roo.dd.DragDropMgr.unregAll();
20145         },
20146
20147         /**
20148          * Cleans up the drag and drop events and objects.
20149          * @method unregAll
20150          * @private
20151          * @static
20152          */
20153         unregAll: function() {
20154
20155             if (this.dragCurrent) {
20156                 this.stopDrag();
20157                 this.dragCurrent = null;
20158             }
20159
20160             this._execOnAll("unreg", []);
20161
20162             for (i in this.elementCache) {
20163                 delete this.elementCache[i];
20164             }
20165
20166             this.elementCache = {};
20167             this.ids = {};
20168         },
20169
20170         /**
20171          * A cache of DOM elements
20172          * @property elementCache
20173          * @private
20174          * @static
20175          */
20176         elementCache: {},
20177
20178         /**
20179          * Get the wrapper for the DOM element specified
20180          * @method getElWrapper
20181          * @param {String} id the id of the element to get
20182          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20183          * @private
20184          * @deprecated This wrapper isn't that useful
20185          * @static
20186          */
20187         getElWrapper: function(id) {
20188             var oWrapper = this.elementCache[id];
20189             if (!oWrapper || !oWrapper.el) {
20190                 oWrapper = this.elementCache[id] =
20191                     new this.ElementWrapper(Roo.getDom(id));
20192             }
20193             return oWrapper;
20194         },
20195
20196         /**
20197          * Returns the actual DOM element
20198          * @method getElement
20199          * @param {String} id the id of the elment to get
20200          * @return {Object} The element
20201          * @deprecated use Roo.getDom instead
20202          * @static
20203          */
20204         getElement: function(id) {
20205             return Roo.getDom(id);
20206         },
20207
20208         /**
20209          * Returns the style property for the DOM element (i.e.,
20210          * document.getElById(id).style)
20211          * @method getCss
20212          * @param {String} id the id of the elment to get
20213          * @return {Object} The style property of the element
20214          * @deprecated use Roo.getDom instead
20215          * @static
20216          */
20217         getCss: function(id) {
20218             var el = Roo.getDom(id);
20219             return (el) ? el.style : null;
20220         },
20221
20222         /**
20223          * Inner class for cached elements
20224          * @class DragDropMgr.ElementWrapper
20225          * @for DragDropMgr
20226          * @private
20227          * @deprecated
20228          */
20229         ElementWrapper: function(el) {
20230                 /**
20231                  * The element
20232                  * @property el
20233                  */
20234                 this.el = el || null;
20235                 /**
20236                  * The element id
20237                  * @property id
20238                  */
20239                 this.id = this.el && el.id;
20240                 /**
20241                  * A reference to the style property
20242                  * @property css
20243                  */
20244                 this.css = this.el && el.style;
20245             },
20246
20247         /**
20248          * Returns the X position of an html element
20249          * @method getPosX
20250          * @param el the element for which to get the position
20251          * @return {int} the X coordinate
20252          * @for DragDropMgr
20253          * @deprecated use Roo.lib.Dom.getX instead
20254          * @static
20255          */
20256         getPosX: function(el) {
20257             return Roo.lib.Dom.getX(el);
20258         },
20259
20260         /**
20261          * Returns the Y position of an html element
20262          * @method getPosY
20263          * @param el the element for which to get the position
20264          * @return {int} the Y coordinate
20265          * @deprecated use Roo.lib.Dom.getY instead
20266          * @static
20267          */
20268         getPosY: function(el) {
20269             return Roo.lib.Dom.getY(el);
20270         },
20271
20272         /**
20273          * Swap two nodes.  In IE, we use the native method, for others we
20274          * emulate the IE behavior
20275          * @method swapNode
20276          * @param n1 the first node to swap
20277          * @param n2 the other node to swap
20278          * @static
20279          */
20280         swapNode: function(n1, n2) {
20281             if (n1.swapNode) {
20282                 n1.swapNode(n2);
20283             } else {
20284                 var p = n2.parentNode;
20285                 var s = n2.nextSibling;
20286
20287                 if (s == n1) {
20288                     p.insertBefore(n1, n2);
20289                 } else if (n2 == n1.nextSibling) {
20290                     p.insertBefore(n2, n1);
20291                 } else {
20292                     n1.parentNode.replaceChild(n2, n1);
20293                     p.insertBefore(n1, s);
20294                 }
20295             }
20296         },
20297
20298         /**
20299          * Returns the current scroll position
20300          * @method getScroll
20301          * @private
20302          * @static
20303          */
20304         getScroll: function () {
20305             var t, l, dde=document.documentElement, db=document.body;
20306             if (dde && (dde.scrollTop || dde.scrollLeft)) {
20307                 t = dde.scrollTop;
20308                 l = dde.scrollLeft;
20309             } else if (db) {
20310                 t = db.scrollTop;
20311                 l = db.scrollLeft;
20312             } else {
20313
20314             }
20315             return { top: t, left: l };
20316         },
20317
20318         /**
20319          * Returns the specified element style property
20320          * @method getStyle
20321          * @param {HTMLElement} el          the element
20322          * @param {string}      styleProp   the style property
20323          * @return {string} The value of the style property
20324          * @deprecated use Roo.lib.Dom.getStyle
20325          * @static
20326          */
20327         getStyle: function(el, styleProp) {
20328             return Roo.fly(el).getStyle(styleProp);
20329         },
20330
20331         /**
20332          * Gets the scrollTop
20333          * @method getScrollTop
20334          * @return {int} the document's scrollTop
20335          * @static
20336          */
20337         getScrollTop: function () { return this.getScroll().top; },
20338
20339         /**
20340          * Gets the scrollLeft
20341          * @method getScrollLeft
20342          * @return {int} the document's scrollTop
20343          * @static
20344          */
20345         getScrollLeft: function () { return this.getScroll().left; },
20346
20347         /**
20348          * Sets the x/y position of an element to the location of the
20349          * target element.
20350          * @method moveToEl
20351          * @param {HTMLElement} moveEl      The element to move
20352          * @param {HTMLElement} targetEl    The position reference element
20353          * @static
20354          */
20355         moveToEl: function (moveEl, targetEl) {
20356             var aCoord = Roo.lib.Dom.getXY(targetEl);
20357             Roo.lib.Dom.setXY(moveEl, aCoord);
20358         },
20359
20360         /**
20361          * Numeric array sort function
20362          * @method numericSort
20363          * @static
20364          */
20365         numericSort: function(a, b) { return (a - b); },
20366
20367         /**
20368          * Internal counter
20369          * @property _timeoutCount
20370          * @private
20371          * @static
20372          */
20373         _timeoutCount: 0,
20374
20375         /**
20376          * Trying to make the load order less important.  Without this we get
20377          * an error if this file is loaded before the Event Utility.
20378          * @method _addListeners
20379          * @private
20380          * @static
20381          */
20382         _addListeners: function() {
20383             var DDM = Roo.dd.DDM;
20384             if ( Roo.lib.Event && document ) {
20385                 DDM._onLoad();
20386             } else {
20387                 if (DDM._timeoutCount > 2000) {
20388                 } else {
20389                     setTimeout(DDM._addListeners, 10);
20390                     if (document && document.body) {
20391                         DDM._timeoutCount += 1;
20392                     }
20393                 }
20394             }
20395         },
20396
20397         /**
20398          * Recursively searches the immediate parent and all child nodes for
20399          * the handle element in order to determine wheter or not it was
20400          * clicked.
20401          * @method handleWasClicked
20402          * @param node the html element to inspect
20403          * @static
20404          */
20405         handleWasClicked: function(node, id) {
20406             if (this.isHandle(id, node.id)) {
20407                 return true;
20408             } else {
20409                 // check to see if this is a text node child of the one we want
20410                 var p = node.parentNode;
20411
20412                 while (p) {
20413                     if (this.isHandle(id, p.id)) {
20414                         return true;
20415                     } else {
20416                         p = p.parentNode;
20417                     }
20418                 }
20419             }
20420
20421             return false;
20422         }
20423
20424     };
20425
20426 }();
20427
20428 // shorter alias, save a few bytes
20429 Roo.dd.DDM = Roo.dd.DragDropMgr;
20430 Roo.dd.DDM._addListeners();
20431
20432 }/*
20433  * Based on:
20434  * Ext JS Library 1.1.1
20435  * Copyright(c) 2006-2007, Ext JS, LLC.
20436  *
20437  * Originally Released Under LGPL - original licence link has changed is not relivant.
20438  *
20439  * Fork - LGPL
20440  * <script type="text/javascript">
20441  */
20442
20443 /**
20444  * @class Roo.dd.DD
20445  * A DragDrop implementation where the linked element follows the
20446  * mouse cursor during a drag.
20447  * @extends Roo.dd.DragDrop
20448  * @constructor
20449  * @param {String} id the id of the linked element
20450  * @param {String} sGroup the group of related DragDrop items
20451  * @param {object} config an object containing configurable attributes
20452  *                Valid properties for DD:
20453  *                    scroll
20454  */
20455 Roo.dd.DD = function(id, sGroup, config) {
20456     if (id) {
20457         this.init(id, sGroup, config);
20458     }
20459 };
20460
20461 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
20462
20463     /**
20464      * When set to true, the utility automatically tries to scroll the browser
20465      * window wehn a drag and drop element is dragged near the viewport boundary.
20466      * Defaults to true.
20467      * @property scroll
20468      * @type boolean
20469      */
20470     scroll: true,
20471
20472     /**
20473      * Sets the pointer offset to the distance between the linked element's top
20474      * left corner and the location the element was clicked
20475      * @method autoOffset
20476      * @param {int} iPageX the X coordinate of the click
20477      * @param {int} iPageY the Y coordinate of the click
20478      */
20479     autoOffset: function(iPageX, iPageY) {
20480         var x = iPageX - this.startPageX;
20481         var y = iPageY - this.startPageY;
20482         this.setDelta(x, y);
20483     },
20484
20485     /**
20486      * Sets the pointer offset.  You can call this directly to force the
20487      * offset to be in a particular location (e.g., pass in 0,0 to set it
20488      * to the center of the object)
20489      * @method setDelta
20490      * @param {int} iDeltaX the distance from the left
20491      * @param {int} iDeltaY the distance from the top
20492      */
20493     setDelta: function(iDeltaX, iDeltaY) {
20494         this.deltaX = iDeltaX;
20495         this.deltaY = iDeltaY;
20496     },
20497
20498     /**
20499      * Sets the drag element to the location of the mousedown or click event,
20500      * maintaining the cursor location relative to the location on the element
20501      * that was clicked.  Override this if you want to place the element in a
20502      * location other than where the cursor is.
20503      * @method setDragElPos
20504      * @param {int} iPageX the X coordinate of the mousedown or drag event
20505      * @param {int} iPageY the Y coordinate of the mousedown or drag event
20506      */
20507     setDragElPos: function(iPageX, iPageY) {
20508         // the first time we do this, we are going to check to make sure
20509         // the element has css positioning
20510
20511         var el = this.getDragEl();
20512         this.alignElWithMouse(el, iPageX, iPageY);
20513     },
20514
20515     /**
20516      * Sets the element to the location of the mousedown or click event,
20517      * maintaining the cursor location relative to the location on the element
20518      * that was clicked.  Override this if you want to place the element in a
20519      * location other than where the cursor is.
20520      * @method alignElWithMouse
20521      * @param {HTMLElement} el the element to move
20522      * @param {int} iPageX the X coordinate of the mousedown or drag event
20523      * @param {int} iPageY the Y coordinate of the mousedown or drag event
20524      */
20525     alignElWithMouse: function(el, iPageX, iPageY) {
20526         var oCoord = this.getTargetCoord(iPageX, iPageY);
20527         var fly = el.dom ? el : Roo.fly(el);
20528         if (!this.deltaSetXY) {
20529             var aCoord = [oCoord.x, oCoord.y];
20530             fly.setXY(aCoord);
20531             var newLeft = fly.getLeft(true);
20532             var newTop  = fly.getTop(true);
20533             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
20534         } else {
20535             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
20536         }
20537
20538         this.cachePosition(oCoord.x, oCoord.y);
20539         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
20540         return oCoord;
20541     },
20542
20543     /**
20544      * Saves the most recent position so that we can reset the constraints and
20545      * tick marks on-demand.  We need to know this so that we can calculate the
20546      * number of pixels the element is offset from its original position.
20547      * @method cachePosition
20548      * @param iPageX the current x position (optional, this just makes it so we
20549      * don't have to look it up again)
20550      * @param iPageY the current y position (optional, this just makes it so we
20551      * don't have to look it up again)
20552      */
20553     cachePosition: function(iPageX, iPageY) {
20554         if (iPageX) {
20555             this.lastPageX = iPageX;
20556             this.lastPageY = iPageY;
20557         } else {
20558             var aCoord = Roo.lib.Dom.getXY(this.getEl());
20559             this.lastPageX = aCoord[0];
20560             this.lastPageY = aCoord[1];
20561         }
20562     },
20563
20564     /**
20565      * Auto-scroll the window if the dragged object has been moved beyond the
20566      * visible window boundary.
20567      * @method autoScroll
20568      * @param {int} x the drag element's x position
20569      * @param {int} y the drag element's y position
20570      * @param {int} h the height of the drag element
20571      * @param {int} w the width of the drag element
20572      * @private
20573      */
20574     autoScroll: function(x, y, h, w) {
20575
20576         if (this.scroll) {
20577             // The client height
20578             var clientH = Roo.lib.Dom.getViewWidth();
20579
20580             // The client width
20581             var clientW = Roo.lib.Dom.getViewHeight();
20582
20583             // The amt scrolled down
20584             var st = this.DDM.getScrollTop();
20585
20586             // The amt scrolled right
20587             var sl = this.DDM.getScrollLeft();
20588
20589             // Location of the bottom of the element
20590             var bot = h + y;
20591
20592             // Location of the right of the element
20593             var right = w + x;
20594
20595             // The distance from the cursor to the bottom of the visible area,
20596             // adjusted so that we don't scroll if the cursor is beyond the
20597             // element drag constraints
20598             var toBot = (clientH + st - y - this.deltaY);
20599
20600             // The distance from the cursor to the right of the visible area
20601             var toRight = (clientW + sl - x - this.deltaX);
20602
20603
20604             // How close to the edge the cursor must be before we scroll
20605             // var thresh = (document.all) ? 100 : 40;
20606             var thresh = 40;
20607
20608             // How many pixels to scroll per autoscroll op.  This helps to reduce
20609             // clunky scrolling. IE is more sensitive about this ... it needs this
20610             // value to be higher.
20611             var scrAmt = (document.all) ? 80 : 30;
20612
20613             // Scroll down if we are near the bottom of the visible page and the
20614             // obj extends below the crease
20615             if ( bot > clientH && toBot < thresh ) {
20616                 window.scrollTo(sl, st + scrAmt);
20617             }
20618
20619             // Scroll up if the window is scrolled down and the top of the object
20620             // goes above the top border
20621             if ( y < st && st > 0 && y - st < thresh ) {
20622                 window.scrollTo(sl, st - scrAmt);
20623             }
20624
20625             // Scroll right if the obj is beyond the right border and the cursor is
20626             // near the border.
20627             if ( right > clientW && toRight < thresh ) {
20628                 window.scrollTo(sl + scrAmt, st);
20629             }
20630
20631             // Scroll left if the window has been scrolled to the right and the obj
20632             // extends past the left border
20633             if ( x < sl && sl > 0 && x - sl < thresh ) {
20634                 window.scrollTo(sl - scrAmt, st);
20635             }
20636         }
20637     },
20638
20639     /**
20640      * Finds the location the element should be placed if we want to move
20641      * it to where the mouse location less the click offset would place us.
20642      * @method getTargetCoord
20643      * @param {int} iPageX the X coordinate of the click
20644      * @param {int} iPageY the Y coordinate of the click
20645      * @return an object that contains the coordinates (Object.x and Object.y)
20646      * @private
20647      */
20648     getTargetCoord: function(iPageX, iPageY) {
20649
20650
20651         var x = iPageX - this.deltaX;
20652         var y = iPageY - this.deltaY;
20653
20654         if (this.constrainX) {
20655             if (x < this.minX) { x = this.minX; }
20656             if (x > this.maxX) { x = this.maxX; }
20657         }
20658
20659         if (this.constrainY) {
20660             if (y < this.minY) { y = this.minY; }
20661             if (y > this.maxY) { y = this.maxY; }
20662         }
20663
20664         x = this.getTick(x, this.xTicks);
20665         y = this.getTick(y, this.yTicks);
20666
20667
20668         return {x:x, y:y};
20669     },
20670
20671     /*
20672      * Sets up config options specific to this class. Overrides
20673      * Roo.dd.DragDrop, but all versions of this method through the
20674      * inheritance chain are called
20675      */
20676     applyConfig: function() {
20677         Roo.dd.DD.superclass.applyConfig.call(this);
20678         this.scroll = (this.config.scroll !== false);
20679     },
20680
20681     /*
20682      * Event that fires prior to the onMouseDown event.  Overrides
20683      * Roo.dd.DragDrop.
20684      */
20685     b4MouseDown: function(e) {
20686         // this.resetConstraints();
20687         this.autoOffset(e.getPageX(),
20688                             e.getPageY());
20689     },
20690
20691     /*
20692      * Event that fires prior to the onDrag event.  Overrides
20693      * Roo.dd.DragDrop.
20694      */
20695     b4Drag: function(e) {
20696         this.setDragElPos(e.getPageX(),
20697                             e.getPageY());
20698     },
20699
20700     toString: function() {
20701         return ("DD " + this.id);
20702     }
20703
20704     //////////////////////////////////////////////////////////////////////////
20705     // Debugging ygDragDrop events that can be overridden
20706     //////////////////////////////////////////////////////////////////////////
20707     /*
20708     startDrag: function(x, y) {
20709     },
20710
20711     onDrag: function(e) {
20712     },
20713
20714     onDragEnter: function(e, id) {
20715     },
20716
20717     onDragOver: function(e, id) {
20718     },
20719
20720     onDragOut: function(e, id) {
20721     },
20722
20723     onDragDrop: function(e, id) {
20724     },
20725
20726     endDrag: function(e) {
20727     }
20728
20729     */
20730
20731 });/*
20732  * Based on:
20733  * Ext JS Library 1.1.1
20734  * Copyright(c) 2006-2007, Ext JS, LLC.
20735  *
20736  * Originally Released Under LGPL - original licence link has changed is not relivant.
20737  *
20738  * Fork - LGPL
20739  * <script type="text/javascript">
20740  */
20741
20742 /**
20743  * @class Roo.dd.DDProxy
20744  * A DragDrop implementation that inserts an empty, bordered div into
20745  * the document that follows the cursor during drag operations.  At the time of
20746  * the click, the frame div is resized to the dimensions of the linked html
20747  * element, and moved to the exact location of the linked element.
20748  *
20749  * References to the "frame" element refer to the single proxy element that
20750  * was created to be dragged in place of all DDProxy elements on the
20751  * page.
20752  *
20753  * @extends Roo.dd.DD
20754  * @constructor
20755  * @param {String} id the id of the linked html element
20756  * @param {String} sGroup the group of related DragDrop objects
20757  * @param {object} config an object containing configurable attributes
20758  *                Valid properties for DDProxy in addition to those in DragDrop:
20759  *                   resizeFrame, centerFrame, dragElId
20760  */
20761 Roo.dd.DDProxy = function(id, sGroup, config) {
20762     if (id) {
20763         this.init(id, sGroup, config);
20764         this.initFrame();
20765     }
20766 };
20767
20768 /**
20769  * The default drag frame div id
20770  * @property Roo.dd.DDProxy.dragElId
20771  * @type String
20772  * @static
20773  */
20774 Roo.dd.DDProxy.dragElId = "ygddfdiv";
20775
20776 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
20777
20778     /**
20779      * By default we resize the drag frame to be the same size as the element
20780      * we want to drag (this is to get the frame effect).  We can turn it off
20781      * if we want a different behavior.
20782      * @property resizeFrame
20783      * @type boolean
20784      */
20785     resizeFrame: true,
20786
20787     /**
20788      * By default the frame is positioned exactly where the drag element is, so
20789      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
20790      * you do not have constraints on the obj is to have the drag frame centered
20791      * around the cursor.  Set centerFrame to true for this effect.
20792      * @property centerFrame
20793      * @type boolean
20794      */
20795     centerFrame: false,
20796
20797     /**
20798      * Creates the proxy element if it does not yet exist
20799      * @method createFrame
20800      */
20801     createFrame: function() {
20802         var self = this;
20803         var body = document.body;
20804
20805         if (!body || !body.firstChild) {
20806             setTimeout( function() { self.createFrame(); }, 50 );
20807             return;
20808         }
20809
20810         var div = this.getDragEl();
20811
20812         if (!div) {
20813             div    = document.createElement("div");
20814             div.id = this.dragElId;
20815             var s  = div.style;
20816
20817             s.position   = "absolute";
20818             s.visibility = "hidden";
20819             s.cursor     = "move";
20820             s.border     = "2px solid #aaa";
20821             s.zIndex     = 999;
20822
20823             // appendChild can blow up IE if invoked prior to the window load event
20824             // while rendering a table.  It is possible there are other scenarios
20825             // that would cause this to happen as well.
20826             body.insertBefore(div, body.firstChild);
20827         }
20828     },
20829
20830     /**
20831      * Initialization for the drag frame element.  Must be called in the
20832      * constructor of all subclasses
20833      * @method initFrame
20834      */
20835     initFrame: function() {
20836         this.createFrame();
20837     },
20838
20839     applyConfig: function() {
20840         Roo.dd.DDProxy.superclass.applyConfig.call(this);
20841
20842         this.resizeFrame = (this.config.resizeFrame !== false);
20843         this.centerFrame = (this.config.centerFrame);
20844         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
20845     },
20846
20847     /**
20848      * Resizes the drag frame to the dimensions of the clicked object, positions
20849      * it over the object, and finally displays it
20850      * @method showFrame
20851      * @param {int} iPageX X click position
20852      * @param {int} iPageY Y click position
20853      * @private
20854      */
20855     showFrame: function(iPageX, iPageY) {
20856         var el = this.getEl();
20857         var dragEl = this.getDragEl();
20858         var s = dragEl.style;
20859
20860         this._resizeProxy();
20861
20862         if (this.centerFrame) {
20863             this.setDelta( Math.round(parseInt(s.width,  10)/2),
20864                            Math.round(parseInt(s.height, 10)/2) );
20865         }
20866
20867         this.setDragElPos(iPageX, iPageY);
20868
20869         Roo.fly(dragEl).show();
20870     },
20871
20872     /**
20873      * The proxy is automatically resized to the dimensions of the linked
20874      * element when a drag is initiated, unless resizeFrame is set to false
20875      * @method _resizeProxy
20876      * @private
20877      */
20878     _resizeProxy: function() {
20879         if (this.resizeFrame) {
20880             var el = this.getEl();
20881             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
20882         }
20883     },
20884
20885     // overrides Roo.dd.DragDrop
20886     b4MouseDown: function(e) {
20887         var x = e.getPageX();
20888         var y = e.getPageY();
20889         this.autoOffset(x, y);
20890         this.setDragElPos(x, y);
20891     },
20892
20893     // overrides Roo.dd.DragDrop
20894     b4StartDrag: function(x, y) {
20895         // show the drag frame
20896         this.showFrame(x, y);
20897     },
20898
20899     // overrides Roo.dd.DragDrop
20900     b4EndDrag: function(e) {
20901         Roo.fly(this.getDragEl()).hide();
20902     },
20903
20904     // overrides Roo.dd.DragDrop
20905     // By default we try to move the element to the last location of the frame.
20906     // This is so that the default behavior mirrors that of Roo.dd.DD.
20907     endDrag: function(e) {
20908
20909         var lel = this.getEl();
20910         var del = this.getDragEl();
20911
20912         // Show the drag frame briefly so we can get its position
20913         del.style.visibility = "";
20914
20915         this.beforeMove();
20916         // Hide the linked element before the move to get around a Safari
20917         // rendering bug.
20918         lel.style.visibility = "hidden";
20919         Roo.dd.DDM.moveToEl(lel, del);
20920         del.style.visibility = "hidden";
20921         lel.style.visibility = "";
20922
20923         this.afterDrag();
20924     },
20925
20926     beforeMove : function(){
20927
20928     },
20929
20930     afterDrag : function(){
20931
20932     },
20933
20934     toString: function() {
20935         return ("DDProxy " + this.id);
20936     }
20937
20938 });
20939 /*
20940  * Based on:
20941  * Ext JS Library 1.1.1
20942  * Copyright(c) 2006-2007, Ext JS, LLC.
20943  *
20944  * Originally Released Under LGPL - original licence link has changed is not relivant.
20945  *
20946  * Fork - LGPL
20947  * <script type="text/javascript">
20948  */
20949
20950  /**
20951  * @class Roo.dd.DDTarget
20952  * A DragDrop implementation that does not move, but can be a drop
20953  * target.  You would get the same result by simply omitting implementation
20954  * for the event callbacks, but this way we reduce the processing cost of the
20955  * event listener and the callbacks.
20956  * @extends Roo.dd.DragDrop
20957  * @constructor
20958  * @param {String} id the id of the element that is a drop target
20959  * @param {String} sGroup the group of related DragDrop objects
20960  * @param {object} config an object containing configurable attributes
20961  *                 Valid properties for DDTarget in addition to those in
20962  *                 DragDrop:
20963  *                    none
20964  */
20965 Roo.dd.DDTarget = function(id, sGroup, config) {
20966     if (id) {
20967         this.initTarget(id, sGroup, config);
20968     }
20969     if (config.listeners || config.events) { 
20970        Roo.dd.DragDrop.superclass.constructor.call(this,  { 
20971             listeners : config.listeners || {}, 
20972             events : config.events || {} 
20973         });    
20974     }
20975 };
20976
20977 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
20978 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
20979     toString: function() {
20980         return ("DDTarget " + this.id);
20981     }
20982 });
20983 /*
20984  * Based on:
20985  * Ext JS Library 1.1.1
20986  * Copyright(c) 2006-2007, Ext JS, LLC.
20987  *
20988  * Originally Released Under LGPL - original licence link has changed is not relivant.
20989  *
20990  * Fork - LGPL
20991  * <script type="text/javascript">
20992  */
20993  
20994
20995 /**
20996  * @class Roo.dd.ScrollManager
20997  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
20998  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
20999  * @singleton
21000  */
21001 Roo.dd.ScrollManager = function(){
21002     var ddm = Roo.dd.DragDropMgr;
21003     var els = {};
21004     var dragEl = null;
21005     var proc = {};
21006     
21007     
21008     
21009     var onStop = function(e){
21010         dragEl = null;
21011         clearProc();
21012     };
21013     
21014     var triggerRefresh = function(){
21015         if(ddm.dragCurrent){
21016              ddm.refreshCache(ddm.dragCurrent.groups);
21017         }
21018     };
21019     
21020     var doScroll = function(){
21021         if(ddm.dragCurrent){
21022             var dds = Roo.dd.ScrollManager;
21023             if(!dds.animate){
21024                 if(proc.el.scroll(proc.dir, dds.increment)){
21025                     triggerRefresh();
21026                 }
21027             }else{
21028                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21029             }
21030         }
21031     };
21032     
21033     var clearProc = function(){
21034         if(proc.id){
21035             clearInterval(proc.id);
21036         }
21037         proc.id = 0;
21038         proc.el = null;
21039         proc.dir = "";
21040     };
21041     
21042     var startProc = function(el, dir){
21043          Roo.log('scroll startproc');
21044         clearProc();
21045         proc.el = el;
21046         proc.dir = dir;
21047         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21048     };
21049     
21050     var onFire = function(e, isDrop){
21051        
21052         if(isDrop || !ddm.dragCurrent){ return; }
21053         var dds = Roo.dd.ScrollManager;
21054         if(!dragEl || dragEl != ddm.dragCurrent){
21055             dragEl = ddm.dragCurrent;
21056             // refresh regions on drag start
21057             dds.refreshCache();
21058         }
21059         
21060         var xy = Roo.lib.Event.getXY(e);
21061         var pt = new Roo.lib.Point(xy[0], xy[1]);
21062         for(var id in els){
21063             var el = els[id], r = el._region;
21064             if(r && r.contains(pt) && el.isScrollable()){
21065                 if(r.bottom - pt.y <= dds.thresh){
21066                     if(proc.el != el){
21067                         startProc(el, "down");
21068                     }
21069                     return;
21070                 }else if(r.right - pt.x <= dds.thresh){
21071                     if(proc.el != el){
21072                         startProc(el, "left");
21073                     }
21074                     return;
21075                 }else if(pt.y - r.top <= dds.thresh){
21076                     if(proc.el != el){
21077                         startProc(el, "up");
21078                     }
21079                     return;
21080                 }else if(pt.x - r.left <= dds.thresh){
21081                     if(proc.el != el){
21082                         startProc(el, "right");
21083                     }
21084                     return;
21085                 }
21086             }
21087         }
21088         clearProc();
21089     };
21090     
21091     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21092     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21093     
21094     return {
21095         /**
21096          * Registers new overflow element(s) to auto scroll
21097          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21098          */
21099         register : function(el){
21100             if(el instanceof Array){
21101                 for(var i = 0, len = el.length; i < len; i++) {
21102                         this.register(el[i]);
21103                 }
21104             }else{
21105                 el = Roo.get(el);
21106                 els[el.id] = el;
21107             }
21108             Roo.dd.ScrollManager.els = els;
21109         },
21110         
21111         /**
21112          * Unregisters overflow element(s) so they are no longer scrolled
21113          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21114          */
21115         unregister : function(el){
21116             if(el instanceof Array){
21117                 for(var i = 0, len = el.length; i < len; i++) {
21118                         this.unregister(el[i]);
21119                 }
21120             }else{
21121                 el = Roo.get(el);
21122                 delete els[el.id];
21123             }
21124         },
21125         
21126         /**
21127          * The number of pixels from the edge of a container the pointer needs to be to 
21128          * trigger scrolling (defaults to 25)
21129          * @type Number
21130          */
21131         thresh : 25,
21132         
21133         /**
21134          * The number of pixels to scroll in each scroll increment (defaults to 50)
21135          * @type Number
21136          */
21137         increment : 100,
21138         
21139         /**
21140          * The frequency of scrolls in milliseconds (defaults to 500)
21141          * @type Number
21142          */
21143         frequency : 500,
21144         
21145         /**
21146          * True to animate the scroll (defaults to true)
21147          * @type Boolean
21148          */
21149         animate: true,
21150         
21151         /**
21152          * The animation duration in seconds - 
21153          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21154          * @type Number
21155          */
21156         animDuration: .4,
21157         
21158         /**
21159          * Manually trigger a cache refresh.
21160          */
21161         refreshCache : function(){
21162             for(var id in els){
21163                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21164                     els[id]._region = els[id].getRegion();
21165                 }
21166             }
21167         }
21168     };
21169 }();/*
21170  * Based on:
21171  * Ext JS Library 1.1.1
21172  * Copyright(c) 2006-2007, Ext JS, LLC.
21173  *
21174  * Originally Released Under LGPL - original licence link has changed is not relivant.
21175  *
21176  * Fork - LGPL
21177  * <script type="text/javascript">
21178  */
21179  
21180
21181 /**
21182  * @class Roo.dd.Registry
21183  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21184  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21185  * @singleton
21186  */
21187 Roo.dd.Registry = function(){
21188     var elements = {}; 
21189     var handles = {}; 
21190     var autoIdSeed = 0;
21191
21192     var getId = function(el, autogen){
21193         if(typeof el == "string"){
21194             return el;
21195         }
21196         var id = el.id;
21197         if(!id && autogen !== false){
21198             id = "roodd-" + (++autoIdSeed);
21199             el.id = id;
21200         }
21201         return id;
21202     };
21203     
21204     return {
21205     /**
21206      * Register a drag drop element
21207      * @param {String|HTMLElement} element The id or DOM node to register
21208      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21209      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21210      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21211      * populated in the data object (if applicable):
21212      * <pre>
21213 Value      Description<br />
21214 ---------  ------------------------------------------<br />
21215 handles    Array of DOM nodes that trigger dragging<br />
21216            for the element being registered<br />
21217 isHandle   True if the element passed in triggers<br />
21218            dragging itself, else false
21219 </pre>
21220      */
21221         register : function(el, data){
21222             data = data || {};
21223             if(typeof el == "string"){
21224                 el = document.getElementById(el);
21225             }
21226             data.ddel = el;
21227             elements[getId(el)] = data;
21228             if(data.isHandle !== false){
21229                 handles[data.ddel.id] = data;
21230             }
21231             if(data.handles){
21232                 var hs = data.handles;
21233                 for(var i = 0, len = hs.length; i < len; i++){
21234                         handles[getId(hs[i])] = data;
21235                 }
21236             }
21237         },
21238
21239     /**
21240      * Unregister a drag drop element
21241      * @param {String|HTMLElement}  element The id or DOM node to unregister
21242      */
21243         unregister : function(el){
21244             var id = getId(el, false);
21245             var data = elements[id];
21246             if(data){
21247                 delete elements[id];
21248                 if(data.handles){
21249                     var hs = data.handles;
21250                     for(var i = 0, len = hs.length; i < len; i++){
21251                         delete handles[getId(hs[i], false)];
21252                     }
21253                 }
21254             }
21255         },
21256
21257     /**
21258      * Returns the handle registered for a DOM Node by id
21259      * @param {String|HTMLElement} id The DOM node or id to look up
21260      * @return {Object} handle The custom handle data
21261      */
21262         getHandle : function(id){
21263             if(typeof id != "string"){ // must be element?
21264                 id = id.id;
21265             }
21266             return handles[id];
21267         },
21268
21269     /**
21270      * Returns the handle that is registered for the DOM node that is the target of the event
21271      * @param {Event} e The event
21272      * @return {Object} handle The custom handle data
21273      */
21274         getHandleFromEvent : function(e){
21275             var t = Roo.lib.Event.getTarget(e);
21276             return t ? handles[t.id] : null;
21277         },
21278
21279     /**
21280      * Returns a custom data object that is registered for a DOM node by id
21281      * @param {String|HTMLElement} id The DOM node or id to look up
21282      * @return {Object} data The custom data
21283      */
21284         getTarget : function(id){
21285             if(typeof id != "string"){ // must be element?
21286                 id = id.id;
21287             }
21288             return elements[id];
21289         },
21290
21291     /**
21292      * Returns a custom data object that is registered for the DOM node that is the target of the event
21293      * @param {Event} e The event
21294      * @return {Object} data The custom data
21295      */
21296         getTargetFromEvent : function(e){
21297             var t = Roo.lib.Event.getTarget(e);
21298             return t ? elements[t.id] || handles[t.id] : null;
21299         }
21300     };
21301 }();/*
21302  * Based on:
21303  * Ext JS Library 1.1.1
21304  * Copyright(c) 2006-2007, Ext JS, LLC.
21305  *
21306  * Originally Released Under LGPL - original licence link has changed is not relivant.
21307  *
21308  * Fork - LGPL
21309  * <script type="text/javascript">
21310  */
21311  
21312
21313 /**
21314  * @class Roo.dd.StatusProxy
21315  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
21316  * default drag proxy used by all Roo.dd components.
21317  * @constructor
21318  * @param {Object} config
21319  */
21320 Roo.dd.StatusProxy = function(config){
21321     Roo.apply(this, config);
21322     this.id = this.id || Roo.id();
21323     this.el = new Roo.Layer({
21324         dh: {
21325             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
21326                 {tag: "div", cls: "x-dd-drop-icon"},
21327                 {tag: "div", cls: "x-dd-drag-ghost"}
21328             ]
21329         }, 
21330         shadow: !config || config.shadow !== false
21331     });
21332     this.ghost = Roo.get(this.el.dom.childNodes[1]);
21333     this.dropStatus = this.dropNotAllowed;
21334 };
21335
21336 Roo.dd.StatusProxy.prototype = {
21337     /**
21338      * @cfg {String} dropAllowed
21339      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
21340      */
21341     dropAllowed : "x-dd-drop-ok",
21342     /**
21343      * @cfg {String} dropNotAllowed
21344      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
21345      */
21346     dropNotAllowed : "x-dd-drop-nodrop",
21347
21348     /**
21349      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
21350      * over the current target element.
21351      * @param {String} cssClass The css class for the new drop status indicator image
21352      */
21353     setStatus : function(cssClass){
21354         cssClass = cssClass || this.dropNotAllowed;
21355         if(this.dropStatus != cssClass){
21356             this.el.replaceClass(this.dropStatus, cssClass);
21357             this.dropStatus = cssClass;
21358         }
21359     },
21360
21361     /**
21362      * Resets the status indicator to the default dropNotAllowed value
21363      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
21364      */
21365     reset : function(clearGhost){
21366         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
21367         this.dropStatus = this.dropNotAllowed;
21368         if(clearGhost){
21369             this.ghost.update("");
21370         }
21371     },
21372
21373     /**
21374      * Updates the contents of the ghost element
21375      * @param {String} html The html that will replace the current innerHTML of the ghost element
21376      */
21377     update : function(html){
21378         if(typeof html == "string"){
21379             this.ghost.update(html);
21380         }else{
21381             this.ghost.update("");
21382             html.style.margin = "0";
21383             this.ghost.dom.appendChild(html);
21384         }
21385         // ensure float = none set?? cant remember why though.
21386         var el = this.ghost.dom.firstChild;
21387                 if(el){
21388                         Roo.fly(el).setStyle('float', 'none');
21389                 }
21390     },
21391     
21392     /**
21393      * Returns the underlying proxy {@link Roo.Layer}
21394      * @return {Roo.Layer} el
21395     */
21396     getEl : function(){
21397         return this.el;
21398     },
21399
21400     /**
21401      * Returns the ghost element
21402      * @return {Roo.Element} el
21403      */
21404     getGhost : function(){
21405         return this.ghost;
21406     },
21407
21408     /**
21409      * Hides the proxy
21410      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
21411      */
21412     hide : function(clear){
21413         this.el.hide();
21414         if(clear){
21415             this.reset(true);
21416         }
21417     },
21418
21419     /**
21420      * Stops the repair animation if it's currently running
21421      */
21422     stop : function(){
21423         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
21424             this.anim.stop();
21425         }
21426     },
21427
21428     /**
21429      * Displays this proxy
21430      */
21431     show : function(){
21432         this.el.show();
21433     },
21434
21435     /**
21436      * Force the Layer to sync its shadow and shim positions to the element
21437      */
21438     sync : function(){
21439         this.el.sync();
21440     },
21441
21442     /**
21443      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
21444      * invalid drop operation by the item being dragged.
21445      * @param {Array} xy The XY position of the element ([x, y])
21446      * @param {Function} callback The function to call after the repair is complete
21447      * @param {Object} scope The scope in which to execute the callback
21448      */
21449     repair : function(xy, callback, scope){
21450         this.callback = callback;
21451         this.scope = scope;
21452         if(xy && this.animRepair !== false){
21453             this.el.addClass("x-dd-drag-repair");
21454             this.el.hideUnders(true);
21455             this.anim = this.el.shift({
21456                 duration: this.repairDuration || .5,
21457                 easing: 'easeOut',
21458                 xy: xy,
21459                 stopFx: true,
21460                 callback: this.afterRepair,
21461                 scope: this
21462             });
21463         }else{
21464             this.afterRepair();
21465         }
21466     },
21467
21468     // private
21469     afterRepair : function(){
21470         this.hide(true);
21471         if(typeof this.callback == "function"){
21472             this.callback.call(this.scope || this);
21473         }
21474         this.callback = null;
21475         this.scope = null;
21476     }
21477 };/*
21478  * Based on:
21479  * Ext JS Library 1.1.1
21480  * Copyright(c) 2006-2007, Ext JS, LLC.
21481  *
21482  * Originally Released Under LGPL - original licence link has changed is not relivant.
21483  *
21484  * Fork - LGPL
21485  * <script type="text/javascript">
21486  */
21487
21488 /**
21489  * @class Roo.dd.DragSource
21490  * @extends Roo.dd.DDProxy
21491  * A simple class that provides the basic implementation needed to make any element draggable.
21492  * @constructor
21493  * @param {String/HTMLElement/Element} el The container element
21494  * @param {Object} config
21495  */
21496 Roo.dd.DragSource = function(el, config){
21497     this.el = Roo.get(el);
21498     this.dragData = {};
21499     
21500     Roo.apply(this, config);
21501     
21502     if(!this.proxy){
21503         this.proxy = new Roo.dd.StatusProxy();
21504     }
21505
21506     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
21507           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
21508     
21509     this.dragging = false;
21510 };
21511
21512 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
21513     /**
21514      * @cfg {String} dropAllowed
21515      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
21516      */
21517     dropAllowed : "x-dd-drop-ok",
21518     /**
21519      * @cfg {String} dropNotAllowed
21520      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
21521      */
21522     dropNotAllowed : "x-dd-drop-nodrop",
21523
21524     /**
21525      * Returns the data object associated with this drag source
21526      * @return {Object} data An object containing arbitrary data
21527      */
21528     getDragData : function(e){
21529         return this.dragData;
21530     },
21531
21532     // private
21533     onDragEnter : function(e, id){
21534         var target = Roo.dd.DragDropMgr.getDDById(id);
21535         this.cachedTarget = target;
21536         if(this.beforeDragEnter(target, e, id) !== false){
21537             if(target.isNotifyTarget){
21538                 var status = target.notifyEnter(this, e, this.dragData);
21539                 this.proxy.setStatus(status);
21540             }else{
21541                 this.proxy.setStatus(this.dropAllowed);
21542             }
21543             
21544             if(this.afterDragEnter){
21545                 /**
21546                  * An empty function by default, but provided so that you can perform a custom action
21547                  * when the dragged item enters the drop target by providing an implementation.
21548                  * @param {Roo.dd.DragDrop} target The drop target
21549                  * @param {Event} e The event object
21550                  * @param {String} id The id of the dragged element
21551                  * @method afterDragEnter
21552                  */
21553                 this.afterDragEnter(target, e, id);
21554             }
21555         }
21556     },
21557
21558     /**
21559      * An empty function by default, but provided so that you can perform a custom action
21560      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
21561      * @param {Roo.dd.DragDrop} target The drop target
21562      * @param {Event} e The event object
21563      * @param {String} id The id of the dragged element
21564      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21565      */
21566     beforeDragEnter : function(target, e, id){
21567         return true;
21568     },
21569
21570     // private
21571     alignElWithMouse: function() {
21572         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
21573         this.proxy.sync();
21574     },
21575
21576     // private
21577     onDragOver : function(e, id){
21578         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21579         if(this.beforeDragOver(target, e, id) !== false){
21580             if(target.isNotifyTarget){
21581                 var status = target.notifyOver(this, e, this.dragData);
21582                 this.proxy.setStatus(status);
21583             }
21584
21585             if(this.afterDragOver){
21586                 /**
21587                  * An empty function by default, but provided so that you can perform a custom action
21588                  * while the dragged item is over the drop target by providing an implementation.
21589                  * @param {Roo.dd.DragDrop} target The drop target
21590                  * @param {Event} e The event object
21591                  * @param {String} id The id of the dragged element
21592                  * @method afterDragOver
21593                  */
21594                 this.afterDragOver(target, e, id);
21595             }
21596         }
21597     },
21598
21599     /**
21600      * An empty function by default, but provided so that you can perform a custom action
21601      * while the dragged item is over the drop target and optionally cancel the onDragOver.
21602      * @param {Roo.dd.DragDrop} target The drop target
21603      * @param {Event} e The event object
21604      * @param {String} id The id of the dragged element
21605      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21606      */
21607     beforeDragOver : function(target, e, id){
21608         return true;
21609     },
21610
21611     // private
21612     onDragOut : function(e, id){
21613         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21614         if(this.beforeDragOut(target, e, id) !== false){
21615             if(target.isNotifyTarget){
21616                 target.notifyOut(this, e, this.dragData);
21617             }
21618             this.proxy.reset();
21619             if(this.afterDragOut){
21620                 /**
21621                  * An empty function by default, but provided so that you can perform a custom action
21622                  * after the dragged item is dragged out of the target without dropping.
21623                  * @param {Roo.dd.DragDrop} target The drop target
21624                  * @param {Event} e The event object
21625                  * @param {String} id The id of the dragged element
21626                  * @method afterDragOut
21627                  */
21628                 this.afterDragOut(target, e, id);
21629             }
21630         }
21631         this.cachedTarget = null;
21632     },
21633
21634     /**
21635      * An empty function by default, but provided so that you can perform a custom action before the dragged
21636      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
21637      * @param {Roo.dd.DragDrop} target The drop target
21638      * @param {Event} e The event object
21639      * @param {String} id The id of the dragged element
21640      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21641      */
21642     beforeDragOut : function(target, e, id){
21643         return true;
21644     },
21645     
21646     // private
21647     onDragDrop : function(e, id){
21648         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
21649         if(this.beforeDragDrop(target, e, id) !== false){
21650             if(target.isNotifyTarget){
21651                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
21652                     this.onValidDrop(target, e, id);
21653                 }else{
21654                     this.onInvalidDrop(target, e, id);
21655                 }
21656             }else{
21657                 this.onValidDrop(target, e, id);
21658             }
21659             
21660             if(this.afterDragDrop){
21661                 /**
21662                  * An empty function by default, but provided so that you can perform a custom action
21663                  * after a valid drag drop has occurred by providing an implementation.
21664                  * @param {Roo.dd.DragDrop} target The drop target
21665                  * @param {Event} e The event object
21666                  * @param {String} id The id of the dropped element
21667                  * @method afterDragDrop
21668                  */
21669                 this.afterDragDrop(target, e, id);
21670             }
21671         }
21672         delete this.cachedTarget;
21673     },
21674
21675     /**
21676      * An empty function by default, but provided so that you can perform a custom action before the dragged
21677      * item is dropped onto the target and optionally cancel the onDragDrop.
21678      * @param {Roo.dd.DragDrop} target The drop target
21679      * @param {Event} e The event object
21680      * @param {String} id The id of the dragged element
21681      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
21682      */
21683     beforeDragDrop : function(target, e, id){
21684         return true;
21685     },
21686
21687     // private
21688     onValidDrop : function(target, e, id){
21689         this.hideProxy();
21690         if(this.afterValidDrop){
21691             /**
21692              * An empty function by default, but provided so that you can perform a custom action
21693              * after a valid drop has occurred by providing an implementation.
21694              * @param {Object} target The target DD 
21695              * @param {Event} e The event object
21696              * @param {String} id The id of the dropped element
21697              * @method afterInvalidDrop
21698              */
21699             this.afterValidDrop(target, e, id);
21700         }
21701     },
21702
21703     // private
21704     getRepairXY : function(e, data){
21705         return this.el.getXY();  
21706     },
21707
21708     // private
21709     onInvalidDrop : function(target, e, id){
21710         this.beforeInvalidDrop(target, e, id);
21711         if(this.cachedTarget){
21712             if(this.cachedTarget.isNotifyTarget){
21713                 this.cachedTarget.notifyOut(this, e, this.dragData);
21714             }
21715             this.cacheTarget = null;
21716         }
21717         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
21718
21719         if(this.afterInvalidDrop){
21720             /**
21721              * An empty function by default, but provided so that you can perform a custom action
21722              * after an invalid drop has occurred by providing an implementation.
21723              * @param {Event} e The event object
21724              * @param {String} id The id of the dropped element
21725              * @method afterInvalidDrop
21726              */
21727             this.afterInvalidDrop(e, id);
21728         }
21729     },
21730
21731     // private
21732     afterRepair : function(){
21733         if(Roo.enableFx){
21734             this.el.highlight(this.hlColor || "c3daf9");
21735         }
21736         this.dragging = false;
21737     },
21738
21739     /**
21740      * An empty function by default, but provided so that you can perform a custom action after an invalid
21741      * drop has occurred.
21742      * @param {Roo.dd.DragDrop} target The drop target
21743      * @param {Event} e The event object
21744      * @param {String} id The id of the dragged element
21745      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
21746      */
21747     beforeInvalidDrop : function(target, e, id){
21748         return true;
21749     },
21750
21751     // private
21752     handleMouseDown : function(e){
21753         if(this.dragging) {
21754             return;
21755         }
21756         var data = this.getDragData(e);
21757         if(data && this.onBeforeDrag(data, e) !== false){
21758             this.dragData = data;
21759             this.proxy.stop();
21760             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
21761         } 
21762     },
21763
21764     /**
21765      * An empty function by default, but provided so that you can perform a custom action before the initial
21766      * drag event begins and optionally cancel it.
21767      * @param {Object} data An object containing arbitrary data to be shared with drop targets
21768      * @param {Event} e The event object
21769      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
21770      */
21771     onBeforeDrag : function(data, e){
21772         return true;
21773     },
21774
21775     /**
21776      * An empty function by default, but provided so that you can perform a custom action once the initial
21777      * drag event has begun.  The drag cannot be canceled from this function.
21778      * @param {Number} x The x position of the click on the dragged object
21779      * @param {Number} y The y position of the click on the dragged object
21780      */
21781     onStartDrag : Roo.emptyFn,
21782
21783     // private - YUI override
21784     startDrag : function(x, y){
21785         this.proxy.reset();
21786         this.dragging = true;
21787         this.proxy.update("");
21788         this.onInitDrag(x, y);
21789         this.proxy.show();
21790     },
21791
21792     // private
21793     onInitDrag : function(x, y){
21794         var clone = this.el.dom.cloneNode(true);
21795         clone.id = Roo.id(); // prevent duplicate ids
21796         this.proxy.update(clone);
21797         this.onStartDrag(x, y);
21798         return true;
21799     },
21800
21801     /**
21802      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
21803      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
21804      */
21805     getProxy : function(){
21806         return this.proxy;  
21807     },
21808
21809     /**
21810      * Hides the drag source's {@link Roo.dd.StatusProxy}
21811      */
21812     hideProxy : function(){
21813         this.proxy.hide();  
21814         this.proxy.reset(true);
21815         this.dragging = false;
21816     },
21817
21818     // private
21819     triggerCacheRefresh : function(){
21820         Roo.dd.DDM.refreshCache(this.groups);
21821     },
21822
21823     // private - override to prevent hiding
21824     b4EndDrag: function(e) {
21825     },
21826
21827     // private - override to prevent moving
21828     endDrag : function(e){
21829         this.onEndDrag(this.dragData, e);
21830     },
21831
21832     // private
21833     onEndDrag : function(data, e){
21834     },
21835     
21836     // private - pin to cursor
21837     autoOffset : function(x, y) {
21838         this.setDelta(-12, -20);
21839     }    
21840 });/*
21841  * Based on:
21842  * Ext JS Library 1.1.1
21843  * Copyright(c) 2006-2007, Ext JS, LLC.
21844  *
21845  * Originally Released Under LGPL - original licence link has changed is not relivant.
21846  *
21847  * Fork - LGPL
21848  * <script type="text/javascript">
21849  */
21850
21851
21852 /**
21853  * @class Roo.dd.DropTarget
21854  * @extends Roo.dd.DDTarget
21855  * A simple class that provides the basic implementation needed to make any element a drop target that can have
21856  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
21857  * @constructor
21858  * @param {String/HTMLElement/Element} el The container element
21859  * @param {Object} config
21860  */
21861 Roo.dd.DropTarget = function(el, config){
21862     this.el = Roo.get(el);
21863     
21864     var listeners = false; ;
21865     if (config && config.listeners) {
21866         listeners= config.listeners;
21867         delete config.listeners;
21868     }
21869     Roo.apply(this, config);
21870     
21871     if(this.containerScroll){
21872         Roo.dd.ScrollManager.register(this.el);
21873     }
21874     this.addEvents( {
21875          /**
21876          * @scope Roo.dd.DropTarget
21877          */
21878          
21879          /**
21880          * @event enter
21881          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
21882          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
21883          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
21884          * 
21885          * IMPORTANT : it should set this.overClass and this.dropAllowed
21886          * 
21887          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21888          * @param {Event} e The event
21889          * @param {Object} data An object containing arbitrary data supplied by the drag source
21890          */
21891         "enter" : true,
21892         
21893          /**
21894          * @event over
21895          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
21896          * This method will be called on every mouse movement while the drag source is over the drop target.
21897          * This default implementation simply returns the dropAllowed config value.
21898          * 
21899          * IMPORTANT : it should set this.dropAllowed
21900          * 
21901          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21902          * @param {Event} e The event
21903          * @param {Object} data An object containing arbitrary data supplied by the drag source
21904          
21905          */
21906         "over" : true,
21907         /**
21908          * @event out
21909          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
21910          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
21911          * overClass (if any) from the drop element.
21912          * 
21913          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21914          * @param {Event} e The event
21915          * @param {Object} data An object containing arbitrary data supplied by the drag source
21916          */
21917          "out" : true,
21918          
21919         /**
21920          * @event drop
21921          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
21922          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
21923          * implementation that does something to process the drop event and returns true so that the drag source's
21924          * repair action does not run.
21925          * 
21926          * IMPORTANT : it should set this.success
21927          * 
21928          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
21929          * @param {Event} e The event
21930          * @param {Object} data An object containing arbitrary data supplied by the drag source
21931         */
21932          "drop" : true
21933     });
21934             
21935      
21936     Roo.dd.DropTarget.superclass.constructor.call(  this, 
21937         this.el.dom, 
21938         this.ddGroup || this.group,
21939         {
21940             isTarget: true,
21941             listeners : listeners || {} 
21942            
21943         
21944         }
21945     );
21946
21947 };
21948
21949 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
21950     /**
21951      * @cfg {String} overClass
21952      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
21953      */
21954      /**
21955      * @cfg {String} ddGroup
21956      * The drag drop group to handle drop events for
21957      */
21958      
21959     /**
21960      * @cfg {String} dropAllowed
21961      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
21962      */
21963     dropAllowed : "x-dd-drop-ok",
21964     /**
21965      * @cfg {String} dropNotAllowed
21966      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
21967      */
21968     dropNotAllowed : "x-dd-drop-nodrop",
21969     /**
21970      * @cfg {boolean} success
21971      * set this after drop listener.. 
21972      */
21973     success : false,
21974     /**
21975      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
21976      * if the drop point is valid for over/enter..
21977      */
21978     valid : false,
21979     // private
21980     isTarget : true,
21981
21982     // private
21983     isNotifyTarget : true,
21984     
21985     /**
21986      * @hide
21987      */
21988     notifyEnter : function(dd, e, data)
21989     {
21990         this.valid = true;
21991         this.fireEvent('enter', dd, e, data);
21992         if(this.overClass){
21993             this.el.addClass(this.overClass);
21994         }
21995         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
21996             this.valid ? this.dropAllowed : this.dropNotAllowed
21997         );
21998     },
21999
22000     /**
22001      * @hide
22002      */
22003     notifyOver : function(dd, e, data)
22004     {
22005         this.valid = true;
22006         this.fireEvent('over', dd, e, data);
22007         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22008             this.valid ? this.dropAllowed : this.dropNotAllowed
22009         );
22010     },
22011
22012     /**
22013      * @hide
22014      */
22015     notifyOut : function(dd, e, data)
22016     {
22017         this.fireEvent('out', dd, e, data);
22018         if(this.overClass){
22019             this.el.removeClass(this.overClass);
22020         }
22021     },
22022
22023     /**
22024      * @hide
22025      */
22026     notifyDrop : function(dd, e, data)
22027     {
22028         this.success = false;
22029         this.fireEvent('drop', dd, e, data);
22030         return this.success;
22031     }
22032 });/*
22033  * Based on:
22034  * Ext JS Library 1.1.1
22035  * Copyright(c) 2006-2007, Ext JS, LLC.
22036  *
22037  * Originally Released Under LGPL - original licence link has changed is not relivant.
22038  *
22039  * Fork - LGPL
22040  * <script type="text/javascript">
22041  */
22042
22043
22044 /**
22045  * @class Roo.dd.DragZone
22046  * @extends Roo.dd.DragSource
22047  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22048  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22049  * @constructor
22050  * @param {String/HTMLElement/Element} el The container element
22051  * @param {Object} config
22052  */
22053 Roo.dd.DragZone = function(el, config){
22054     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22055     if(this.containerScroll){
22056         Roo.dd.ScrollManager.register(this.el);
22057     }
22058 };
22059
22060 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22061     /**
22062      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22063      * for auto scrolling during drag operations.
22064      */
22065     /**
22066      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22067      * method after a failed drop (defaults to "c3daf9" - light blue)
22068      */
22069
22070     /**
22071      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22072      * for a valid target to drag based on the mouse down. Override this method
22073      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22074      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22075      * @param {EventObject} e The mouse down event
22076      * @return {Object} The dragData
22077      */
22078     getDragData : function(e){
22079         return Roo.dd.Registry.getHandleFromEvent(e);
22080     },
22081     
22082     /**
22083      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22084      * this.dragData.ddel
22085      * @param {Number} x The x position of the click on the dragged object
22086      * @param {Number} y The y position of the click on the dragged object
22087      * @return {Boolean} true to continue the drag, false to cancel
22088      */
22089     onInitDrag : function(x, y){
22090         this.proxy.update(this.dragData.ddel.cloneNode(true));
22091         this.onStartDrag(x, y);
22092         return true;
22093     },
22094     
22095     /**
22096      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22097      */
22098     afterRepair : function(){
22099         if(Roo.enableFx){
22100             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22101         }
22102         this.dragging = false;
22103     },
22104
22105     /**
22106      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22107      * the XY of this.dragData.ddel
22108      * @param {EventObject} e The mouse up event
22109      * @return {Array} The xy location (e.g. [100, 200])
22110      */
22111     getRepairXY : function(e){
22112         return Roo.Element.fly(this.dragData.ddel).getXY();  
22113     }
22114 });/*
22115  * Based on:
22116  * Ext JS Library 1.1.1
22117  * Copyright(c) 2006-2007, Ext JS, LLC.
22118  *
22119  * Originally Released Under LGPL - original licence link has changed is not relivant.
22120  *
22121  * Fork - LGPL
22122  * <script type="text/javascript">
22123  */
22124 /**
22125  * @class Roo.dd.DropZone
22126  * @extends Roo.dd.DropTarget
22127  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22128  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22129  * @constructor
22130  * @param {String/HTMLElement/Element} el The container element
22131  * @param {Object} config
22132  */
22133 Roo.dd.DropZone = function(el, config){
22134     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22135 };
22136
22137 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22138     /**
22139      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22140      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22141      * provide your own custom lookup.
22142      * @param {Event} e The event
22143      * @return {Object} data The custom data
22144      */
22145     getTargetFromEvent : function(e){
22146         return Roo.dd.Registry.getTargetFromEvent(e);
22147     },
22148
22149     /**
22150      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22151      * that it has registered.  This method has no default implementation and should be overridden to provide
22152      * node-specific processing if necessary.
22153      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22154      * {@link #getTargetFromEvent} for this node)
22155      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22156      * @param {Event} e The event
22157      * @param {Object} data An object containing arbitrary data supplied by the drag source
22158      */
22159     onNodeEnter : function(n, dd, e, data){
22160         
22161     },
22162
22163     /**
22164      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22165      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22166      * overridden to provide the proper feedback.
22167      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22168      * {@link #getTargetFromEvent} for this node)
22169      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22170      * @param {Event} e The event
22171      * @param {Object} data An object containing arbitrary data supplied by the drag source
22172      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22173      * underlying {@link Roo.dd.StatusProxy} can be updated
22174      */
22175     onNodeOver : function(n, dd, e, data){
22176         return this.dropAllowed;
22177     },
22178
22179     /**
22180      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22181      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22182      * node-specific processing if necessary.
22183      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22184      * {@link #getTargetFromEvent} for this node)
22185      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22186      * @param {Event} e The event
22187      * @param {Object} data An object containing arbitrary data supplied by the drag source
22188      */
22189     onNodeOut : function(n, dd, e, data){
22190         
22191     },
22192
22193     /**
22194      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22195      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22196      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22197      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22198      * {@link #getTargetFromEvent} for this node)
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 {Boolean} True if the drop was valid, else false
22203      */
22204     onNodeDrop : function(n, dd, e, data){
22205         return false;
22206     },
22207
22208     /**
22209      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22210      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22211      * it should be overridden to provide the proper feedback if necessary.
22212      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22213      * @param {Event} e The event
22214      * @param {Object} data An object containing arbitrary data supplied by the drag source
22215      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22216      * underlying {@link Roo.dd.StatusProxy} can be updated
22217      */
22218     onContainerOver : function(dd, e, data){
22219         return this.dropNotAllowed;
22220     },
22221
22222     /**
22223      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
22224      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
22225      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
22226      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
22227      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22228      * @param {Event} e The event
22229      * @param {Object} data An object containing arbitrary data supplied by the drag source
22230      * @return {Boolean} True if the drop was valid, else false
22231      */
22232     onContainerDrop : function(dd, e, data){
22233         return false;
22234     },
22235
22236     /**
22237      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
22238      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
22239      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
22240      * you should override this method and provide a custom implementation.
22241      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22242      * @param {Event} e The event
22243      * @param {Object} data An object containing arbitrary data supplied by the drag source
22244      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22245      * underlying {@link Roo.dd.StatusProxy} can be updated
22246      */
22247     notifyEnter : function(dd, e, data){
22248         return this.dropNotAllowed;
22249     },
22250
22251     /**
22252      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
22253      * This method will be called on every mouse movement while the drag source is over the drop zone.
22254      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
22255      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
22256      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
22257      * registered node, it will call {@link #onContainerOver}.
22258      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22259      * @param {Event} e The event
22260      * @param {Object} data An object containing arbitrary data supplied by the drag source
22261      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22262      * underlying {@link Roo.dd.StatusProxy} can be updated
22263      */
22264     notifyOver : function(dd, e, data){
22265         var n = this.getTargetFromEvent(e);
22266         if(!n){ // not over valid drop target
22267             if(this.lastOverNode){
22268                 this.onNodeOut(this.lastOverNode, dd, e, data);
22269                 this.lastOverNode = null;
22270             }
22271             return this.onContainerOver(dd, e, data);
22272         }
22273         if(this.lastOverNode != n){
22274             if(this.lastOverNode){
22275                 this.onNodeOut(this.lastOverNode, dd, e, data);
22276             }
22277             this.onNodeEnter(n, dd, e, data);
22278             this.lastOverNode = n;
22279         }
22280         return this.onNodeOver(n, dd, e, data);
22281     },
22282
22283     /**
22284      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
22285      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
22286      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
22287      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22288      * @param {Event} e The event
22289      * @param {Object} data An object containing arbitrary data supplied by the drag zone
22290      */
22291     notifyOut : function(dd, e, data){
22292         if(this.lastOverNode){
22293             this.onNodeOut(this.lastOverNode, dd, e, data);
22294             this.lastOverNode = null;
22295         }
22296     },
22297
22298     /**
22299      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
22300      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
22301      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
22302      * otherwise it will call {@link #onContainerDrop}.
22303      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22304      * @param {Event} e The event
22305      * @param {Object} data An object containing arbitrary data supplied by the drag source
22306      * @return {Boolean} True if the drop was valid, else false
22307      */
22308     notifyDrop : function(dd, e, data){
22309         if(this.lastOverNode){
22310             this.onNodeOut(this.lastOverNode, dd, e, data);
22311             this.lastOverNode = null;
22312         }
22313         var n = this.getTargetFromEvent(e);
22314         return n ?
22315             this.onNodeDrop(n, dd, e, data) :
22316             this.onContainerDrop(dd, e, data);
22317     },
22318
22319     // private
22320     triggerCacheRefresh : function(){
22321         Roo.dd.DDM.refreshCache(this.groups);
22322     }  
22323 });