Fix #6912 - issue with parsing Roo.lib.Dom
[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  * @static
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         isEdge = ua.indexOf("edge") > -1,
61         isGecko = !isSafari && ua.indexOf("gecko") > -1,
62         isBorderBox = isIE && !isStrict,
63         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
64         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
65         isLinux = (ua.indexOf("linux") != -1),
66         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
67         isIOS = /iphone|ipad/.test(ua),
68         isAndroid = /android/.test(ua),
69         isTouch =  (function() {
70             try {
71                 if (ua.indexOf('chrome') != -1 && ua.indexOf('android') == -1) {
72                     window.addEventListener('touchstart', function __set_has_touch__ () {
73                         Roo.isTouch = true;
74                         window.removeEventListener('touchstart', __set_has_touch__);
75                     });
76                     return false; // no touch on chrome!?
77                 }
78                 document.createEvent("TouchEvent");  
79                 return true;  
80             } catch (e) {  
81                 return false;  
82             } 
83             
84         })();
85     // remove css image flicker
86         if(isIE && !isIE7){
87         try{
88             document.execCommand("BackgroundImageCache", false, true);
89         }catch(e){}
90     }
91     
92     Roo.apply(Roo, {
93         /**
94          * True if the browser is in strict mode
95          * @type Boolean
96          */
97         isStrict : isStrict,
98         /**
99          * True if the page is running over SSL
100          * @type Boolean
101          */
102         isSecure : isSecure,
103         /**
104          * True when the document is fully initialized and ready for action
105          * @type Boolean
106          */
107         isReady : false,
108         /**
109          * Turn on debugging output (currently only the factory uses this)
110          * @type Boolean
111          */
112         
113         debug: false,
114
115         /**
116          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
117          * @type Boolean
118          */
119         enableGarbageCollector : true,
120
121         /**
122          * True to automatically purge event listeners after uncaching an element (defaults to false).
123          * Note: this only happens if enableGarbageCollector is true.
124          * @type Boolean
125          */
126         enableListenerCollection:false,
127
128         /**
129          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
130          * the IE insecure content warning (defaults to javascript:false).
131          * @type String
132          */
133         SSL_SECURE_URL : "javascript:false",
134
135         /**
136          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
137          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
138          * @type String
139          */
140         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
141
142         emptyFn : function(){},
143         
144         /**
145          * Copies all the properties of config to obj if they don't already exist.
146          * @param {Object} obj The receiver of the properties
147          * @param {Object} config The source of the properties
148          * @return {Object} returns obj
149          */
150         applyIf : function(o, c){
151             if(o && c){
152                 for(var p in c){
153                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
154                 }
155             }
156             return o;
157         },
158
159         /**
160          * Applies event listeners to elements by selectors when the document is ready.
161          * The event name is specified with an @ suffix.
162 <pre><code>
163 Roo.addBehaviors({
164    // add a listener for click on all anchors in element with id foo
165    '#foo a@click' : function(e, t){
166        // do something
167    },
168
169    // add the same listener to multiple selectors (separated by comma BEFORE the @)
170    '#foo a, #bar span.some-class@mouseover' : function(){
171        // do something
172    }
173 });
174 </code></pre>
175          * @param {Object} obj The list of behaviors to apply
176          */
177         addBehaviors : function(o){
178             if(!Roo.isReady){
179                 Roo.onReady(function(){
180                     Roo.addBehaviors(o);
181                 });
182                 return;
183             }
184             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
185             for(var b in o){
186                 var parts = b.split('@');
187                 if(parts[1]){ // for Object prototype breakers
188                     var s = parts[0];
189                     if(!cache[s]){
190                         cache[s] = Roo.select(s);
191                     }
192                     cache[s].on(parts[1], o[b]);
193                 }
194             }
195             cache = null;
196         },
197
198         /**
199          * Generates unique ids. If the element already has an id, it is unchanged
200          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
201          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
202          * @return {String} The generated Id.
203          */
204         id : function(el, prefix){
205             prefix = prefix || "roo-gen";
206             el = Roo.getDom(el);
207             var id = prefix + (++idSeed);
208             return el ? (el.id ? el.id : (el.id = id)) : id;
209         },
210          
211        
212         /**
213          * Extends one class with another class and optionally overrides members with the passed literal. This class
214          * also adds the function "override()" to the class that can be used to override
215          * members on an instance.
216          * @param {Object} subclass The class inheriting the functionality
217          * @param {Object} superclass The class being extended
218          * @param {Object} overrides (optional) A literal with members
219          * @method extend
220          */
221         extend : function(){
222             // inline overrides
223             var io = function(o){
224                 for(var m in o){
225                     this[m] = o[m];
226                 }
227             };
228             return function(sb, sp, overrides){
229                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
230                     overrides = sp;
231                     sp = sb;
232                     sb = function(){sp.apply(this, arguments);};
233                 }
234                 var F = function(){}, sbp, spp = sp.prototype;
235                 F.prototype = spp;
236                 sbp = sb.prototype = new F();
237                 sbp.constructor=sb;
238                 sb.superclass=spp;
239                 
240                 if(spp.constructor == Object.prototype.constructor){
241                     spp.constructor=sp;
242                    
243                 }
244                 
245                 sb.override = function(o){
246                     Roo.override(sb, o);
247                 };
248                 sbp.override = io;
249                 Roo.override(sb, overrides);
250                 return sb;
251             };
252         }(),
253
254         /**
255          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
256          * Usage:<pre><code>
257 Roo.override(MyClass, {
258     newMethod1: function(){
259         // etc.
260     },
261     newMethod2: function(foo){
262         // etc.
263     }
264 });
265  </code></pre>
266          * @param {Object} origclass The class to override
267          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
268          * containing one or more methods.
269          * @method override
270          */
271         override : function(origclass, overrides){
272             if(overrides){
273                 var p = origclass.prototype;
274                 for(var method in overrides){
275                     p[method] = overrides[method];
276                 }
277             }
278         },
279         /**
280          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
281          * <pre><code>
282 Roo.namespace('Company', 'Company.data');
283 Company.Widget = function() { ... }
284 Company.data.CustomStore = function(config) { ... }
285 </code></pre>
286          * @param {String} namespace1
287          * @param {String} namespace2
288          * @param {String} etc
289          * @method namespace
290          */
291         namespace : function(){
292             var a=arguments, o=null, i, j, d, rt;
293             for (i=0; i<a.length; ++i) {
294                 d=a[i].split(".");
295                 rt = d[0];
296                 /** eval:var:o */
297                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
298                 for (j=1; j<d.length; ++j) {
299                     o[d[j]]=o[d[j]] || {};
300                     o=o[d[j]];
301                 }
302             }
303         },
304         /**
305          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
306          * <pre><code>
307 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
308 Roo.factory(conf, Roo.data);
309 </code></pre>
310          * @param {String} classname
311          * @param {String} namespace (optional)
312          * @method factory
313          */
314          
315         factory : function(c, ns)
316         {
317             // no xtype, no ns or c.xns - or forced off by c.xns
318             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
319                 return c;
320             }
321             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
322             if (c.constructor == ns[c.xtype]) {// already created...
323                 return c;
324             }
325             if (ns[c.xtype]) {
326                 if (Roo.debug) { Roo.log("Roo.Factory(" + c.xtype + ")"); }
327                 var ret = new ns[c.xtype](c);
328                 ret.xns = false;
329                 return ret;
330             }
331             c.xns = false; // prevent recursion..
332             return c;
333         },
334          /**
335          * Logs to console if it can.
336          *
337          * @param {String|Object} string
338          * @method log
339          */
340         log : function(s)
341         {
342             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
343                 return; // alerT?
344             }
345             
346             console.log(s);
347         },
348         /**
349          * 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.
350          * @param {Object} o
351          * @return {String}
352          */
353         urlEncode : function(o){
354             if(!o){
355                 return "";
356             }
357             var buf = [];
358             for(var key in o){
359                 var ov = o[key], k = Roo.encodeURIComponent(key);
360                 var type = typeof ov;
361                 if(type == 'undefined'){
362                     buf.push(k, "=&");
363                 }else if(type != "function" && type != "object"){
364                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
365                 }else if(ov instanceof Array){
366                     if (ov.length) {
367                             for(var i = 0, len = ov.length; i < len; i++) {
368                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
369                             }
370                         } else {
371                             buf.push(k, "=&");
372                         }
373                 }
374             }
375             buf.pop();
376             return buf.join("");
377         },
378          /**
379          * Safe version of encodeURIComponent
380          * @param {String} data 
381          * @return {String} 
382          */
383         
384         encodeURIComponent : function (data)
385         {
386             try {
387                 return encodeURIComponent(data);
388             } catch(e) {} // should be an uri encode error.
389             
390             if (data == '' || data == null){
391                return '';
392             }
393             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
394             function nibble_to_hex(nibble){
395                 var chars = '0123456789ABCDEF';
396                 return chars.charAt(nibble);
397             }
398             data = data.toString();
399             var buffer = '';
400             for(var i=0; i<data.length; i++){
401                 var c = data.charCodeAt(i);
402                 var bs = new Array();
403                 if (c > 0x10000){
404                         // 4 bytes
405                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
406                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
407                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
408                     bs[3] = 0x80 | (c & 0x3F);
409                 }else if (c > 0x800){
410                          // 3 bytes
411                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
412                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
413                     bs[2] = 0x80 | (c & 0x3F);
414                 }else if (c > 0x80){
415                        // 2 bytes
416                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
417                     bs[1] = 0x80 | (c & 0x3F);
418                 }else{
419                         // 1 byte
420                     bs[0] = c;
421                 }
422                 for(var j=0; j<bs.length; j++){
423                     var b = bs[j];
424                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
425                             + nibble_to_hex(b &0x0F);
426                     buffer += '%'+hex;
427                }
428             }
429             return buffer;    
430              
431         },
432
433         /**
434          * 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]}.
435          * @param {String} string
436          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
437          * @return {Object} A literal with members
438          */
439         urlDecode : function(string, overwrite){
440             if(!string || !string.length){
441                 return {};
442             }
443             var obj = {};
444             var pairs = string.split('&');
445             var pair, name, value;
446             for(var i = 0, len = pairs.length; i < len; i++){
447                 pair = pairs[i].split('=');
448                 name = decodeURIComponent(pair[0]);
449                 value = decodeURIComponent(pair[1]);
450                 if(overwrite !== true){
451                     if(typeof obj[name] == "undefined"){
452                         obj[name] = value;
453                     }else if(typeof obj[name] == "string"){
454                         obj[name] = [obj[name]];
455                         obj[name].push(value);
456                     }else{
457                         obj[name].push(value);
458                     }
459                 }else{
460                     obj[name] = value;
461                 }
462             }
463             return obj;
464         },
465
466         /**
467          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
468          * passed array is not really an array, your function is called once with it.
469          * The supplied function is called with (Object item, Number index, Array allItems).
470          * @param {Array/NodeList/Mixed} array
471          * @param {Function} fn
472          * @param {Object} scope
473          */
474         each : function(array, fn, scope){
475             if(typeof array.length == "undefined" || typeof array == "string"){
476                 array = [array];
477             }
478             for(var i = 0, len = array.length; i < len; i++){
479                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
480             }
481         },
482
483         // deprecated
484         combine : function(){
485             var as = arguments, l = as.length, r = [];
486             for(var i = 0; i < l; i++){
487                 var a = as[i];
488                 if(a instanceof Array){
489                     r = r.concat(a);
490                 }else if(a.length !== undefined && !a.substr){
491                     r = r.concat(Array.prototype.slice.call(a, 0));
492                 }else{
493                     r.push(a);
494                 }
495             }
496             return r;
497         },
498
499         /**
500          * Escapes the passed string for use in a regular expression
501          * @param {String} str
502          * @return {String}
503          */
504         escapeRe : function(s) {
505             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
506         },
507
508         // internal
509         callback : function(cb, scope, args, delay){
510             if(typeof cb == "function"){
511                 if(delay){
512                     cb.defer(delay, scope, args || []);
513                 }else{
514                     cb.apply(scope, args || []);
515                 }
516             }
517         },
518
519         /**
520          * Return the dom node for the passed string (id), dom node, or Roo.Element
521          * @param {String/HTMLElement/Roo.Element} el
522          * @return HTMLElement
523          */
524         getDom : function(el){
525             if(!el){
526                 return null;
527             }
528             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
529         },
530
531         /**
532         * Shorthand for {@link Roo.ComponentMgr#get}
533         * @param {String} id
534         * @return Roo.Component
535         */
536         getCmp : function(id){
537             return Roo.ComponentMgr.get(id);
538         },
539          
540         num : function(v, defaultValue){
541             if(typeof v != 'number'){
542                 return defaultValue;
543             }
544             return v;
545         },
546
547         destroy : function(){
548             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
549                 var as = a[i];
550                 if(as){
551                     if(as.dom){
552                         as.removeAllListeners();
553                         as.remove();
554                         continue;
555                     }
556                     if(typeof as.purgeListeners == 'function'){
557                         as.purgeListeners();
558                     }
559                     if(typeof as.destroy == 'function'){
560                         as.destroy();
561                     }
562                 }
563             }
564         },
565
566         // inpired by a similar function in mootools library
567         /**
568          * Returns the type of object that is passed in. If the object passed in is null or undefined it
569          * return false otherwise it returns one of the following values:<ul>
570          * <li><b>string</b>: If the object passed is a string</li>
571          * <li><b>number</b>: If the object passed is a number</li>
572          * <li><b>boolean</b>: If the object passed is a boolean value</li>
573          * <li><b>function</b>: If the object passed is a function reference</li>
574          * <li><b>object</b>: If the object passed is an object</li>
575          * <li><b>array</b>: If the object passed is an array</li>
576          * <li><b>regexp</b>: If the object passed is a regular expression</li>
577          * <li><b>element</b>: If the object passed is a DOM Element</li>
578          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
579          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
580          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
581          * @param {Mixed} object
582          * @return {String}
583          */
584         type : function(o){
585             if(o === undefined || o === null){
586                 return false;
587             }
588             if(o.htmlElement){
589                 return 'element';
590             }
591             var t = typeof o;
592             if(t == 'object' && o.nodeName) {
593                 switch(o.nodeType) {
594                     case 1: return 'element';
595                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
596                 }
597             }
598             if(t == 'object' || t == 'function') {
599                 switch(o.constructor) {
600                     case Array: return 'array';
601                     case RegExp: return 'regexp';
602                 }
603                 if(typeof o.length == 'number' && typeof o.item == 'function') {
604                     return 'nodelist';
605                 }
606             }
607             return t;
608         },
609
610         /**
611          * Returns true if the passed value is null, undefined or an empty string (optional).
612          * @param {Mixed} value The value to test
613          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
614          * @return {Boolean}
615          */
616         isEmpty : function(v, allowBlank){
617             return v === null || v === undefined || (!allowBlank ? v === '' : false);
618         },
619         
620         /** @type Boolean */
621         isOpera : isOpera,
622         /** @type Boolean */
623         isSafari : isSafari,
624         /** @type Boolean */
625         isFirefox : isFirefox,
626         /** @type Boolean */
627         isIE : isIE,
628         /** @type Boolean */
629         isIE7 : isIE7,
630         /** @type Boolean */
631         isIE11 : isIE11,
632         /** @type Boolean */
633         isEdge : isEdge,
634         /** @type Boolean */
635         isGecko : isGecko,
636         /** @type Boolean */
637         isBorderBox : isBorderBox,
638         /** @type Boolean */
639         isWindows : isWindows,
640         /** @type Boolean */
641         isLinux : isLinux,
642         /** @type Boolean */
643         isMac : isMac,
644         /** @type Boolean */
645         isIOS : isIOS,
646         /** @type Boolean */
647         isAndroid : isAndroid,
648         /** @type Boolean */
649         isTouch : isTouch,
650
651         /**
652          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
653          * you may want to set this to true.
654          * @type Boolean
655          */
656         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
657         
658         
659                 
660         /**
661          * Selects a single element as a Roo Element
662          * This is about as close as you can get to jQuery's $('do crazy stuff')
663          * @param {String} selector The selector/xpath query
664          * @param {Node} root (optional) The start of the query (defaults to document).
665          * @return {Roo.Element}
666          */
667         selectNode : function(selector, root) 
668         {
669             var node = Roo.DomQuery.selectNode(selector,root);
670             return node ? Roo.get(node) : new Roo.Element(false);
671         },
672                 /**
673                  * Find the current bootstrap width Grid size
674                  * Note xs is the default for smaller.. - this is currently used by grids to render correct columns
675                  * @returns {String} (xs|sm|md|lg|xl)
676                  */
677                 
678                 getGridSize : function()
679                 {
680                         var w = Roo.lib.Dom.getViewWidth();
681                         switch(true) {
682                                 case w > 1200:
683                                         return 'xl';
684                                 case w > 992:
685                                         return 'lg';
686                                 case w > 768:
687                                         return 'md';
688                                 case w > 576:
689                                         return 'sm';
690                                 default:
691                                         return 'xs'
692                         }
693                         
694                 }
695         
696     });
697
698
699 })();
700
701 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
702                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
703                 "Roo.app", "Roo.ux",
704                 "Roo.bootstrap",
705                 "Roo.bootstrap.dash");
706 /*
707  * Based on:
708  * Ext JS Library 1.1.1
709  * Copyright(c) 2006-2007, Ext JS, LLC.
710  *
711  * Originally Released Under LGPL - original licence link has changed is not relivant.
712  *
713  * Fork - LGPL
714  * <script type="text/javascript">
715  */
716
717 (function() {    
718     // wrappedn so fnCleanup is not in global scope...
719     if(Roo.isIE) {
720         function fnCleanUp() {
721             var p = Function.prototype;
722             delete p.createSequence;
723             delete p.defer;
724             delete p.createDelegate;
725             delete p.createCallback;
726             delete p.createInterceptor;
727
728             window.detachEvent("onunload", fnCleanUp);
729         }
730         window.attachEvent("onunload", fnCleanUp);
731     }
732 })();
733
734
735 /**
736  * @class Function
737  * These functions are available on every Function object (any JavaScript function).
738  */
739 Roo.apply(Function.prototype, {
740      /**
741      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
742      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
743      * Will create a function that is bound to those 2 args.
744      * @return {Function} The new function
745     */
746     createCallback : function(/*args...*/){
747         // make args available, in function below
748         var args = arguments;
749         var method = this;
750         return function() {
751             return method.apply(window, args);
752         };
753     },
754
755     /**
756      * Creates a delegate (callback) that sets the scope to obj.
757      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
758      * Will create a function that is automatically scoped to this.
759      * @param {Object} obj (optional) The object for which the scope is set
760      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
761      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
762      *                                             if a number the args are inserted at the specified position
763      * @return {Function} The new function
764      */
765     createDelegate : function(obj, args, appendArgs){
766         var method = this;
767         return function() {
768             var callArgs = args || arguments;
769             if(appendArgs === true){
770                 callArgs = Array.prototype.slice.call(arguments, 0);
771                 callArgs = callArgs.concat(args);
772             }else if(typeof appendArgs == "number"){
773                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
774                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
775                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
776             }
777             return method.apply(obj || window, callArgs);
778         };
779     },
780
781     /**
782      * Calls this function after the number of millseconds specified.
783      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
784      * @param {Object} obj (optional) The object for which the scope is set
785      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
786      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
787      *                                             if a number the args are inserted at the specified position
788      * @return {Number} The timeout id that can be used with clearTimeout
789      */
790     defer : function(millis, obj, args, appendArgs){
791         var fn = this.createDelegate(obj, args, appendArgs);
792         if(millis){
793             return setTimeout(fn, millis);
794         }
795         fn();
796         return 0;
797     },
798     /**
799      * Create a combined function call sequence of the original function + the passed function.
800      * The resulting function returns the results of the original function.
801      * The passed fcn is called with the parameters of the original function
802      * @param {Function} fcn The function to sequence
803      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
804      * @return {Function} The new function
805      */
806     createSequence : function(fcn, scope){
807         if(typeof fcn != "function"){
808             return this;
809         }
810         var method = this;
811         return function() {
812             var retval = method.apply(this || window, arguments);
813             fcn.apply(scope || this || window, arguments);
814             return retval;
815         };
816     },
817
818     /**
819      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
820      * The resulting function returns the results of the original function.
821      * The passed fcn is called with the parameters of the original function.
822      * @addon
823      * @param {Function} fcn The function to call before the original
824      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
825      * @return {Function} The new function
826      */
827     createInterceptor : function(fcn, scope){
828         if(typeof fcn != "function"){
829             return this;
830         }
831         var method = this;
832         return function() {
833             fcn.target = this;
834             fcn.method = method;
835             if(fcn.apply(scope || this || window, arguments) === false){
836                 return;
837             }
838             return method.apply(this || window, arguments);
839         };
840     }
841 });
842 /*
843  * Based on:
844  * Ext JS Library 1.1.1
845  * Copyright(c) 2006-2007, Ext JS, LLC.
846  *
847  * Originally Released Under LGPL - original licence link has changed is not relivant.
848  *
849  * Fork - LGPL
850  * <script type="text/javascript">
851  */
852
853 Roo.applyIf(String, {
854     
855     /** @scope String */
856     
857     /**
858      * Escapes the passed string for ' and \
859      * @param {String} string The string to escape
860      * @return {String} The escaped string
861      * @static
862      */
863     escape : function(string) {
864         return string.replace(/('|\\)/g, "\\$1");
865     },
866
867     /**
868      * Pads the left side of a string with a specified character.  This is especially useful
869      * for normalizing number and date strings.  Example usage:
870      * <pre><code>
871 var s = String.leftPad('123', 5, '0');
872 // s now contains the string: '00123'
873 </code></pre>
874      * @param {String} string The original string
875      * @param {Number} size The total length of the output string
876      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
877      * @return {String} The padded string
878      * @static
879      */
880     leftPad : function (val, size, ch) {
881         var result = new String(val);
882         if(ch === null || ch === undefined || ch === '') {
883             ch = " ";
884         }
885         while (result.length < size) {
886             result = ch + result;
887         }
888         return result;
889     },
890
891     /**
892      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
893      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
894      * <pre><code>
895 var cls = 'my-class', text = 'Some text';
896 var s = String.format('<div class="{0}">{1}</div>', cls, text);
897 // s now contains the string: '<div class="my-class">Some text</div>'
898 </code></pre>
899      * @param {String} string The tokenized string to be formatted
900      * @param {String} value1 The value to replace token {0}
901      * @param {String} value2 Etc...
902      * @return {String} The formatted string
903      * @static
904      */
905     format : function(format){
906         var args = Array.prototype.slice.call(arguments, 1);
907         return format.replace(/\{(\d+)\}/g, function(m, i){
908             return Roo.util.Format.htmlEncode(args[i]);
909         });
910     }
911   
912     
913 });
914
915 /**
916  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
917  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
918  * they are already different, the first value passed in is returned.  Note that this method returns the new value
919  * but does not change the current string.
920  * <pre><code>
921 // alternate sort directions
922 sort = sort.toggle('ASC', 'DESC');
923
924 // instead of conditional logic:
925 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
926 </code></pre>
927  * @param {String} value The value to compare to the current string
928  * @param {String} other The new value to use if the string already equals the first value passed in
929  * @return {String} The new value
930  */
931  
932 String.prototype.toggle = function(value, other){
933     return this == value ? other : value;
934 };
935
936
937 /**
938   * Remove invalid unicode characters from a string 
939   *
940   * @return {String} The clean string
941   */
942 String.prototype.unicodeClean = function () {
943     return this.replace(/[\s\S]/g,
944         function(character) {
945             if (character.charCodeAt()< 256) {
946               return character;
947            }
948            try {
949                 encodeURIComponent(character);
950            } catch(e) { 
951               return '';
952            }
953            return character;
954         }
955     );
956 };
957   
958 /*
959  * Based on:
960  * Ext JS Library 1.1.1
961  * Copyright(c) 2006-2007, Ext JS, LLC.
962  *
963  * Originally Released Under LGPL - original licence link has changed is not relivant.
964  *
965  * Fork - LGPL
966  * <script type="text/javascript">
967  */
968
969  /**
970  * @class Number
971  */
972 Roo.applyIf(Number.prototype, {
973     /**
974      * Checks whether or not the current number is within a desired range.  If the number is already within the
975      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
976      * exceeded.  Note that this method returns the constrained value but does not change the current number.
977      * @param {Number} min The minimum number in the range
978      * @param {Number} max The maximum number in the range
979      * @return {Number} The constrained value if outside the range, otherwise the current value
980      */
981     constrain : function(min, max){
982         return Math.min(Math.max(this, min), max);
983     }
984 });/*
985  * Based on:
986  * Ext JS Library 1.1.1
987  * Copyright(c) 2006-2007, Ext JS, LLC.
988  *
989  * Originally Released Under LGPL - original licence link has changed is not relivant.
990  *
991  * Fork - LGPL
992  * <script type="text/javascript">
993  */
994  /**
995  * @class Array
996  */
997 Roo.applyIf(Array.prototype, {
998     /**
999      * 
1000      * Checks whether or not the specified object exists in the array.
1001      * @param {Object} o The object to check for
1002      * @return {Number} The index of o in the array (or -1 if it is not found)
1003      */
1004     indexOf : function(o){
1005        for (var i = 0, len = this.length; i < len; i++){
1006               if(this[i] == o) { return i; }
1007        }
1008            return -1;
1009     },
1010
1011     /**
1012      * Removes the specified object from the array.  If the object is not found nothing happens.
1013      * @param {Object} o The object to remove
1014      */
1015     remove : function(o){
1016        var index = this.indexOf(o);
1017        if(index != -1){
1018            this.splice(index, 1);
1019        }
1020     },
1021     /**
1022      * Map (JS 1.6 compatibility)
1023      * @param {Function} function  to call
1024      */
1025     map : function(fun )
1026     {
1027         var len = this.length >>> 0;
1028         if (typeof fun != "function") {
1029             throw new TypeError();
1030         }
1031         var res = new Array(len);
1032         var thisp = arguments[1];
1033         for (var i = 0; i < len; i++)
1034         {
1035             if (i in this) {
1036                 res[i] = fun.call(thisp, this[i], i, this);
1037             }
1038         }
1039
1040         return res;
1041     },
1042     /**
1043      * equals
1044      * @param {Array} o The array to compare to
1045      * @returns {Boolean} true if the same
1046      */
1047     equals : function(b)
1048     {
1049         // https://stackoverflow.com/questions/3115982/how-to-check-if-two-arrays-are-equal-with-javascript
1050         if (this === b) {
1051             return true;
1052          }
1053         if (b == null) {
1054             return false;
1055         }
1056         if (this.length !== b.length) {
1057             return false;
1058         }
1059       
1060         // sort?? a.sort().equals(b.sort());
1061       
1062         for (var i = 0; i < this.length; ++i) {
1063             if (this[i] !== b[i]) {
1064                 return false;
1065             }
1066         }
1067         return true;
1068     }
1069 });
1070
1071
1072  
1073 /*
1074  * Based on:
1075  * Ext JS Library 1.1.1
1076  * Copyright(c) 2006-2007, Ext JS, LLC.
1077  *
1078  * Originally Released Under LGPL - original licence link has changed is not relivant.
1079  *
1080  * Fork - LGPL
1081  * <script type="text/javascript">
1082  */
1083
1084 /**
1085  * @class Date
1086  *
1087  * The date parsing and format syntax is a subset of
1088  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1089  * supported will provide results equivalent to their PHP versions.
1090  *
1091  * Following is the list of all currently supported formats:
1092  *<pre>
1093 Sample date:
1094 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1095
1096 Format  Output      Description
1097 ------  ----------  --------------------------------------------------------------
1098   d      10         Day of the month, 2 digits with leading zeros
1099   D      Wed        A textual representation of a day, three letters
1100   j      10         Day of the month without leading zeros
1101   l      Wednesday  A full textual representation of the day of the week
1102   S      th         English ordinal day of month suffix, 2 chars (use with j)
1103   w      3          Numeric representation of the day of the week
1104   z      9          The julian date, or day of the year (0-365)
1105   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1106   F      January    A full textual representation of the month
1107   m      01         Numeric representation of a month, with leading zeros
1108   M      Jan        Month name abbreviation, three letters
1109   n      1          Numeric representation of a month, without leading zeros
1110   t      31         Number of days in the given month
1111   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1112   Y      2007       A full numeric representation of a year, 4 digits
1113   y      07         A two digit representation of a year
1114   a      pm         Lowercase Ante meridiem and Post meridiem
1115   A      PM         Uppercase Ante meridiem and Post meridiem
1116   g      3          12-hour format of an hour without leading zeros
1117   G      15         24-hour format of an hour without leading zeros
1118   h      03         12-hour format of an hour with leading zeros
1119   H      15         24-hour format of an hour with leading zeros
1120   i      05         Minutes with leading zeros
1121   s      01         Seconds, with leading zeros
1122   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1123   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1124   T      CST        Timezone setting of the machine running the code
1125   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1126 </pre>
1127  *
1128  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1129  * <pre><code>
1130 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1131 document.write(dt.format('Y-m-d'));                         //2007-01-10
1132 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1133 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
1134  </code></pre>
1135  *
1136  * Here are some standard date/time patterns that you might find helpful.  They
1137  * are not part of the source of Date.js, but to use them you can simply copy this
1138  * block of code into any script that is included after Date.js and they will also become
1139  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1140  * <pre><code>
1141 Date.patterns = {
1142     ISO8601Long:"Y-m-d H:i:s",
1143     ISO8601Short:"Y-m-d",
1144     ShortDate: "n/j/Y",
1145     LongDate: "l, F d, Y",
1146     FullDateTime: "l, F d, Y g:i:s A",
1147     MonthDay: "F d",
1148     ShortTime: "g:i A",
1149     LongTime: "g:i:s A",
1150     SortableDateTime: "Y-m-d\\TH:i:s",
1151     UniversalSortableDateTime: "Y-m-d H:i:sO",
1152     YearMonth: "F, Y"
1153 };
1154 </code></pre>
1155  *
1156  * Example usage:
1157  * <pre><code>
1158 var dt = new Date();
1159 document.write(dt.format(Date.patterns.ShortDate));
1160  </code></pre>
1161  */
1162
1163 /*
1164  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1165  * They generate precompiled functions from date formats instead of parsing and
1166  * processing the pattern every time you format a date.  These functions are available
1167  * on every Date object (any javascript function).
1168  *
1169  * The original article and download are here:
1170  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1171  *
1172  */
1173  
1174  
1175  // was in core
1176 /**
1177  Returns the number of milliseconds between this date and date
1178  @param {Date} date (optional) Defaults to now
1179  @return {Number} The diff in milliseconds
1180  @member Date getElapsed
1181  */
1182 Date.prototype.getElapsed = function(date) {
1183         return Math.abs((date || new Date()).getTime()-this.getTime());
1184 };
1185 // was in date file..
1186
1187
1188 // private
1189 Date.parseFunctions = {count:0};
1190 // private
1191 Date.parseRegexes = [];
1192 // private
1193 Date.formatFunctions = {count:0};
1194
1195 // private
1196 Date.prototype.dateFormat = function(format) {
1197     if (Date.formatFunctions[format] == null) {
1198         Date.createNewFormat(format);
1199     }
1200     var func = Date.formatFunctions[format];
1201     return this[func]();
1202 };
1203
1204
1205 /**
1206  * Formats a date given the supplied format string
1207  * @param {String} format The format string
1208  * @return {String} The formatted date
1209  * @method
1210  */
1211 Date.prototype.format = Date.prototype.dateFormat;
1212
1213 // private
1214 Date.createNewFormat = function(format) {
1215     var funcName = "format" + Date.formatFunctions.count++;
1216     Date.formatFunctions[format] = funcName;
1217     var code = "Date.prototype." + funcName + " = function(){return ";
1218     var special = false;
1219     var ch = '';
1220     for (var i = 0; i < format.length; ++i) {
1221         ch = format.charAt(i);
1222         if (!special && ch == "\\") {
1223             special = true;
1224         }
1225         else if (special) {
1226             special = false;
1227             code += "'" + String.escape(ch) + "' + ";
1228         }
1229         else {
1230             code += Date.getFormatCode(ch);
1231         }
1232     }
1233     /** eval:var:zzzzzzzzzzzzz */
1234     eval(code.substring(0, code.length - 3) + ";}");
1235 };
1236
1237 // private
1238 Date.getFormatCode = function(character) {
1239     switch (character) {
1240     case "d":
1241         return "String.leftPad(this.getDate(), 2, '0') + ";
1242     case "D":
1243         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1244     case "j":
1245         return "this.getDate() + ";
1246     case "l":
1247         return "Date.dayNames[this.getDay()] + ";
1248     case "S":
1249         return "this.getSuffix() + ";
1250     case "w":
1251         return "this.getDay() + ";
1252     case "z":
1253         return "this.getDayOfYear() + ";
1254     case "W":
1255         return "this.getWeekOfYear() + ";
1256     case "F":
1257         return "Date.monthNames[this.getMonth()] + ";
1258     case "m":
1259         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1260     case "M":
1261         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1262     case "n":
1263         return "(this.getMonth() + 1) + ";
1264     case "t":
1265         return "this.getDaysInMonth() + ";
1266     case "L":
1267         return "(this.isLeapYear() ? 1 : 0) + ";
1268     case "Y":
1269         return "this.getFullYear() + ";
1270     case "y":
1271         return "('' + this.getFullYear()).substring(2, 4) + ";
1272     case "a":
1273         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1274     case "A":
1275         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1276     case "g":
1277         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1278     case "G":
1279         return "this.getHours() + ";
1280     case "h":
1281         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1282     case "H":
1283         return "String.leftPad(this.getHours(), 2, '0') + ";
1284     case "i":
1285         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1286     case "s":
1287         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1288     case "O":
1289         return "this.getGMTOffset() + ";
1290     case "P":
1291         return "this.getGMTColonOffset() + ";
1292     case "T":
1293         return "this.getTimezone() + ";
1294     case "Z":
1295         return "(this.getTimezoneOffset() * -60) + ";
1296     default:
1297         return "'" + String.escape(character) + "' + ";
1298     }
1299 };
1300
1301 /**
1302  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1303  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1304  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1305  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1306  * string or the parse operation will fail.
1307  * Example Usage:
1308 <pre><code>
1309 //dt = Fri May 25 2007 (current date)
1310 var dt = new Date();
1311
1312 //dt = Thu May 25 2006 (today's month/day in 2006)
1313 dt = Date.parseDate("2006", "Y");
1314
1315 //dt = Sun Jan 15 2006 (all date parts specified)
1316 dt = Date.parseDate("2006-1-15", "Y-m-d");
1317
1318 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1319 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1320 </code></pre>
1321  * @param {String} input The unparsed date as a string
1322  * @param {String} format The format the date is in
1323  * @return {Date} The parsed date
1324  * @static
1325  */
1326 Date.parseDate = function(input, format) {
1327     if (Date.parseFunctions[format] == null) {
1328         Date.createParser(format);
1329     }
1330     var func = Date.parseFunctions[format];
1331     return Date[func](input);
1332 };
1333 /**
1334  * @private
1335  */
1336
1337 Date.createParser = function(format) {
1338     var funcName = "parse" + Date.parseFunctions.count++;
1339     var regexNum = Date.parseRegexes.length;
1340     var currentGroup = 1;
1341     Date.parseFunctions[format] = funcName;
1342
1343     var code = "Date." + funcName + " = function(input){\n"
1344         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1345         + "var d = new Date();\n"
1346         + "y = d.getFullYear();\n"
1347         + "m = d.getMonth();\n"
1348         + "d = d.getDate();\n"
1349         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1350         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1351         + "if (results && results.length > 0) {";
1352     var regex = "";
1353
1354     var special = false;
1355     var ch = '';
1356     for (var i = 0; i < format.length; ++i) {
1357         ch = format.charAt(i);
1358         if (!special && ch == "\\") {
1359             special = true;
1360         }
1361         else if (special) {
1362             special = false;
1363             regex += String.escape(ch);
1364         }
1365         else {
1366             var obj = Date.formatCodeToRegex(ch, currentGroup);
1367             currentGroup += obj.g;
1368             regex += obj.s;
1369             if (obj.g && obj.c) {
1370                 code += obj.c;
1371             }
1372         }
1373     }
1374
1375     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1376         + "{v = new Date(y, m, d, h, i, s);}\n"
1377         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1378         + "{v = new Date(y, m, d, h, i);}\n"
1379         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1380         + "{v = new Date(y, m, d, h);}\n"
1381         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1382         + "{v = new Date(y, m, d);}\n"
1383         + "else if (y >= 0 && m >= 0)\n"
1384         + "{v = new Date(y, m);}\n"
1385         + "else if (y >= 0)\n"
1386         + "{v = new Date(y);}\n"
1387         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1388         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1389         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1390         + ";}";
1391
1392     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1393     /** eval:var:zzzzzzzzzzzzz */
1394     eval(code);
1395 };
1396
1397 // private
1398 Date.formatCodeToRegex = function(character, currentGroup) {
1399     switch (character) {
1400     case "D":
1401         return {g:0,
1402         c:null,
1403         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1404     case "j":
1405         return {g:1,
1406             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1407             s:"(\\d{1,2})"}; // day of month without leading zeroes
1408     case "d":
1409         return {g:1,
1410             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1411             s:"(\\d{2})"}; // day of month with leading zeroes
1412     case "l":
1413         return {g:0,
1414             c:null,
1415             s:"(?:" + Date.dayNames.join("|") + ")"};
1416     case "S":
1417         return {g:0,
1418             c:null,
1419             s:"(?:st|nd|rd|th)"};
1420     case "w":
1421         return {g:0,
1422             c:null,
1423             s:"\\d"};
1424     case "z":
1425         return {g:0,
1426             c:null,
1427             s:"(?:\\d{1,3})"};
1428     case "W":
1429         return {g:0,
1430             c:null,
1431             s:"(?:\\d{2})"};
1432     case "F":
1433         return {g:1,
1434             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1435             s:"(" + Date.monthNames.join("|") + ")"};
1436     case "M":
1437         return {g:1,
1438             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1439             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1440     case "n":
1441         return {g:1,
1442             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1443             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1444     case "m":
1445         return {g:1,
1446             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1447             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1448     case "t":
1449         return {g:0,
1450             c:null,
1451             s:"\\d{1,2}"};
1452     case "L":
1453         return {g:0,
1454             c:null,
1455             s:"(?:1|0)"};
1456     case "Y":
1457         return {g:1,
1458             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1459             s:"(\\d{4})"};
1460     case "y":
1461         return {g:1,
1462             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1463                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1464             s:"(\\d{1,2})"};
1465     case "a":
1466         return {g:1,
1467             c:"if (results[" + currentGroup + "] == 'am') {\n"
1468                 + "if (h == 12) { h = 0; }\n"
1469                 + "} else { if (h < 12) { h += 12; }}",
1470             s:"(am|pm)"};
1471     case "A":
1472         return {g:1,
1473             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1474                 + "if (h == 12) { h = 0; }\n"
1475                 + "} else { if (h < 12) { h += 12; }}",
1476             s:"(AM|PM)"};
1477     case "g":
1478     case "G":
1479         return {g:1,
1480             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1481             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1482     case "h":
1483     case "H":
1484         return {g:1,
1485             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1486             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1487     case "i":
1488         return {g:1,
1489             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1490             s:"(\\d{2})"};
1491     case "s":
1492         return {g:1,
1493             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1494             s:"(\\d{2})"};
1495     case "O":
1496         return {g:1,
1497             c:[
1498                 "o = results[", currentGroup, "];\n",
1499                 "var sn = o.substring(0,1);\n", // get + / - sign
1500                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1501                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1502                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1503                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1504             ].join(""),
1505             s:"([+\-]\\d{2,4})"};
1506     
1507     
1508     case "P":
1509         return {g:1,
1510                 c:[
1511                    "o = results[", currentGroup, "];\n",
1512                    "var sn = o.substring(0,1);\n",
1513                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1514                    "var mn = o.substring(4,6) % 60;\n",
1515                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1516                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1517             ].join(""),
1518             s:"([+\-]\\d{4})"};
1519     case "T":
1520         return {g:0,
1521             c:null,
1522             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1523     case "Z":
1524         return {g:1,
1525             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1526                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1527             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1528     default:
1529         return {g:0,
1530             c:null,
1531             s:String.escape(character)};
1532     }
1533 };
1534
1535 /**
1536  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1537  * @return {String} The abbreviated timezone name (e.g. 'CST')
1538  */
1539 Date.prototype.getTimezone = function() {
1540     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1541 };
1542
1543 /**
1544  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1545  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1546  */
1547 Date.prototype.getGMTOffset = function() {
1548     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1549         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1550         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1551 };
1552
1553 /**
1554  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1555  * @return {String} 2-characters representing hours and 2-characters representing minutes
1556  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1557  */
1558 Date.prototype.getGMTColonOffset = function() {
1559         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1560                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1561                 + ":"
1562                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1563 }
1564
1565 /**
1566  * Get the numeric day number of the year, adjusted for leap year.
1567  * @return {Number} 0 through 364 (365 in leap years)
1568  */
1569 Date.prototype.getDayOfYear = function() {
1570     var num = 0;
1571     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1572     for (var i = 0; i < this.getMonth(); ++i) {
1573         num += Date.daysInMonth[i];
1574     }
1575     return num + this.getDate() - 1;
1576 };
1577
1578 /**
1579  * Get the string representation of the numeric week number of the year
1580  * (equivalent to the format specifier 'W').
1581  * @return {String} '00' through '52'
1582  */
1583 Date.prototype.getWeekOfYear = function() {
1584     // Skip to Thursday of this week
1585     var now = this.getDayOfYear() + (4 - this.getDay());
1586     // Find the first Thursday of the year
1587     var jan1 = new Date(this.getFullYear(), 0, 1);
1588     var then = (7 - jan1.getDay() + 4);
1589     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1590 };
1591
1592 /**
1593  * Whether or not the current date is in a leap year.
1594  * @return {Boolean} True if the current date is in a leap year, else false
1595  */
1596 Date.prototype.isLeapYear = function() {
1597     var year = this.getFullYear();
1598     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1599 };
1600
1601 /**
1602  * Get the first day of the current month, adjusted for leap year.  The returned value
1603  * is the numeric day index within the week (0-6) which can be used in conjunction with
1604  * the {@link #monthNames} array to retrieve the textual day name.
1605  * Example:
1606  *<pre><code>
1607 var dt = new Date('1/10/2007');
1608 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1609 </code></pre>
1610  * @return {Number} The day number (0-6)
1611  */
1612 Date.prototype.getFirstDayOfMonth = function() {
1613     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1614     return (day < 0) ? (day + 7) : day;
1615 };
1616
1617 /**
1618  * Get the last day of the current month, adjusted for leap year.  The returned value
1619  * is the numeric day index within the week (0-6) which can be used in conjunction with
1620  * the {@link #monthNames} array to retrieve the textual day name.
1621  * Example:
1622  *<pre><code>
1623 var dt = new Date('1/10/2007');
1624 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1625 </code></pre>
1626  * @return {Number} The day number (0-6)
1627  */
1628 Date.prototype.getLastDayOfMonth = function() {
1629     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1630     return (day < 0) ? (day + 7) : day;
1631 };
1632
1633
1634 /**
1635  * Get the first date of this date's month
1636  * @return {Date}
1637  */
1638 Date.prototype.getFirstDateOfMonth = function() {
1639     return new Date(this.getFullYear(), this.getMonth(), 1);
1640 };
1641
1642 /**
1643  * Get the last date of this date's month
1644  * @return {Date}
1645  */
1646 Date.prototype.getLastDateOfMonth = function() {
1647     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1648 };
1649 /**
1650  * Get the number of days in the current month, adjusted for leap year.
1651  * @return {Number} The number of days in the month
1652  */
1653 Date.prototype.getDaysInMonth = function() {
1654     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1655     return Date.daysInMonth[this.getMonth()];
1656 };
1657
1658 /**
1659  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1660  * @return {String} 'st, 'nd', 'rd' or 'th'
1661  */
1662 Date.prototype.getSuffix = function() {
1663     switch (this.getDate()) {
1664         case 1:
1665         case 21:
1666         case 31:
1667             return "st";
1668         case 2:
1669         case 22:
1670             return "nd";
1671         case 3:
1672         case 23:
1673             return "rd";
1674         default:
1675             return "th";
1676     }
1677 };
1678
1679 // private
1680 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1681
1682 /**
1683  * An array of textual month names.
1684  * Override these values for international dates, for example...
1685  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1686  * @type Array
1687  * @static
1688  */
1689 Date.monthNames =
1690    ["January",
1691     "February",
1692     "March",
1693     "April",
1694     "May",
1695     "June",
1696     "July",
1697     "August",
1698     "September",
1699     "October",
1700     "November",
1701     "December"];
1702
1703 /**
1704  * An array of textual day names.
1705  * Override these values for international dates, for example...
1706  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1707  * @type Array
1708  * @static
1709  */
1710 Date.dayNames =
1711    ["Sunday",
1712     "Monday",
1713     "Tuesday",
1714     "Wednesday",
1715     "Thursday",
1716     "Friday",
1717     "Saturday"];
1718
1719 // private
1720 Date.y2kYear = 50;
1721 // private
1722 Date.monthNumbers = {
1723     Jan:0,
1724     Feb:1,
1725     Mar:2,
1726     Apr:3,
1727     May:4,
1728     Jun:5,
1729     Jul:6,
1730     Aug:7,
1731     Sep:8,
1732     Oct:9,
1733     Nov:10,
1734     Dec:11};
1735
1736 /**
1737  * Creates and returns a new Date instance with the exact same date value as the called instance.
1738  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1739  * variable will also be changed.  When the intention is to create a new variable that will not
1740  * modify the original instance, you should create a clone.
1741  *
1742  * Example of correctly cloning a date:
1743  * <pre><code>
1744 //wrong way:
1745 var orig = new Date('10/1/2006');
1746 var copy = orig;
1747 copy.setDate(5);
1748 document.write(orig);  //returns 'Thu Oct 05 2006'!
1749
1750 //correct way:
1751 var orig = new Date('10/1/2006');
1752 var copy = orig.clone();
1753 copy.setDate(5);
1754 document.write(orig);  //returns 'Thu Oct 01 2006'
1755 </code></pre>
1756  * @return {Date} The new Date instance
1757  */
1758 Date.prototype.clone = function() {
1759         return new Date(this.getTime());
1760 };
1761
1762 /**
1763  * Clears any time information from this date
1764  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1765  @return {Date} this or the clone
1766  */
1767 Date.prototype.clearTime = function(clone){
1768     if(clone){
1769         return this.clone().clearTime();
1770     }
1771     this.setHours(0);
1772     this.setMinutes(0);
1773     this.setSeconds(0);
1774     this.setMilliseconds(0);
1775     return this;
1776 };
1777
1778 // private
1779 // safari setMonth is broken -- check that this is only donw once...
1780 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1781     Date.brokenSetMonth = Date.prototype.setMonth;
1782         Date.prototype.setMonth = function(num){
1783                 if(num <= -1){
1784                         var n = Math.ceil(-num);
1785                         var back_year = Math.ceil(n/12);
1786                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1787                         this.setFullYear(this.getFullYear() - back_year);
1788                         return Date.brokenSetMonth.call(this, month);
1789                 } else {
1790                         return Date.brokenSetMonth.apply(this, arguments);
1791                 }
1792         };
1793 }
1794
1795 /** Date interval constant 
1796 * @static 
1797 * @type String */
1798 Date.MILLI = "ms";
1799 /** Date interval constant 
1800 * @static 
1801 * @type String */
1802 Date.SECOND = "s";
1803 /** Date interval constant 
1804 * @static 
1805 * @type String */
1806 Date.MINUTE = "mi";
1807 /** Date interval constant 
1808 * @static 
1809 * @type String */
1810 Date.HOUR = "h";
1811 /** Date interval constant 
1812 * @static 
1813 * @type String */
1814 Date.DAY = "d";
1815 /** Date interval constant 
1816 * @static 
1817 * @type String */
1818 Date.MONTH = "mo";
1819 /** Date interval constant 
1820 * @static 
1821 * @type String */
1822 Date.YEAR = "y";
1823
1824 /**
1825  * Provides a convenient method of performing basic date arithmetic.  This method
1826  * does not modify the Date instance being called - it creates and returns
1827  * a new Date instance containing the resulting date value.
1828  *
1829  * Examples:
1830  * <pre><code>
1831 //Basic usage:
1832 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1833 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1834
1835 //Negative values will subtract correctly:
1836 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1837 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1838
1839 //You can even chain several calls together in one line!
1840 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1841 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1842  </code></pre>
1843  *
1844  * @param {String} interval   A valid date interval enum value
1845  * @param {Number} value      The amount to add to the current date
1846  * @return {Date} The new Date instance
1847  */
1848 Date.prototype.add = function(interval, value){
1849   var d = this.clone();
1850   if (!interval || value === 0) { return d; }
1851   switch(interval.toLowerCase()){
1852     case Date.MILLI:
1853       d.setMilliseconds(this.getMilliseconds() + value);
1854       break;
1855     case Date.SECOND:
1856       d.setSeconds(this.getSeconds() + value);
1857       break;
1858     case Date.MINUTE:
1859       d.setMinutes(this.getMinutes() + value);
1860       break;
1861     case Date.HOUR:
1862       d.setHours(this.getHours() + value);
1863       break;
1864     case Date.DAY:
1865       d.setDate(this.getDate() + value);
1866       break;
1867     case Date.MONTH:
1868       var day = this.getDate();
1869       if(day > 28){
1870           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1871       }
1872       d.setDate(day);
1873       d.setMonth(this.getMonth() + value);
1874       break;
1875     case Date.YEAR:
1876       d.setFullYear(this.getFullYear() + value);
1877       break;
1878   }
1879   return d;
1880 };
1881 /**
1882  * @class Roo.lib.Dom
1883  * @licence LGPL
1884  * @static
1885  * 
1886  * Dom utils (from YIU afaik)
1887  *
1888  * 
1889  **/
1890 Roo.lib.Dom = {
1891     /**
1892      * Get the view width
1893      * @param {Boolean} full True will get the full document, otherwise it's the view width
1894      * @return {Number} The width
1895      */
1896      
1897     getViewWidth : function(full) {
1898         return full ? this.getDocumentWidth() : this.getViewportWidth();
1899     },
1900     /**
1901      * Get the view height
1902      * @param {Boolean} full True will get the full document, otherwise it's the view height
1903      * @return {Number} The height
1904      */
1905     getViewHeight : function(full) {
1906         return full ? this.getDocumentHeight() : this.getViewportHeight();
1907     },
1908
1909     getDocumentHeight: function() {
1910         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1911         return Math.max(scrollHeight, this.getViewportHeight());
1912     },
1913
1914     getDocumentWidth: function() {
1915         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1916         return Math.max(scrollWidth, this.getViewportWidth());
1917     },
1918
1919     getViewportHeight: function() {
1920         var height = self.innerHeight;
1921         var mode = document.compatMode;
1922
1923         if ((mode || Roo.isIE) && !Roo.isOpera) {
1924             height = (mode == "CSS1Compat") ?
1925                      document.documentElement.clientHeight :
1926                      document.body.clientHeight;
1927         }
1928
1929         return height;
1930     },
1931
1932     getViewportWidth: function() {
1933         var width = self.innerWidth;
1934         var mode = document.compatMode;
1935
1936         if (mode || Roo.isIE) {
1937             width = (mode == "CSS1Compat") ?
1938                     document.documentElement.clientWidth :
1939                     document.body.clientWidth;
1940         }
1941         return width;
1942     },
1943
1944     isAncestor : function(p, c) {
1945         p = Roo.getDom(p);
1946         c = Roo.getDom(c);
1947         if (!p || !c) {
1948             return false;
1949         }
1950
1951         if (p.contains && !Roo.isSafari) {
1952             return p.contains(c);
1953         } else if (p.compareDocumentPosition) {
1954             return !!(p.compareDocumentPosition(c) & 16);
1955         } else {
1956             var parent = c.parentNode;
1957             while (parent) {
1958                 if (parent == p) {
1959                     return true;
1960                 }
1961                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1962                     return false;
1963                 }
1964                 parent = parent.parentNode;
1965             }
1966             return false;
1967         }
1968     },
1969
1970     getRegion : function(el) {
1971         return Roo.lib.Region.getRegion(el);
1972     },
1973
1974     getY : function(el) {
1975         return this.getXY(el)[1];
1976     },
1977
1978     getX : function(el) {
1979         return this.getXY(el)[0];
1980     },
1981
1982     getXY : function(el) {
1983         var p, pe, b, scroll, bd = document.body;
1984         el = Roo.getDom(el);
1985         var fly = Roo.lib.AnimBase.fly;
1986         if (el.getBoundingClientRect) {
1987             b = el.getBoundingClientRect();
1988             scroll = fly(document).getScroll();
1989             return [b.left + scroll.left, b.top + scroll.top];
1990         }
1991         var x = 0, y = 0;
1992
1993         p = el;
1994
1995         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1996
1997         while (p) {
1998
1999             x += p.offsetLeft;
2000             y += p.offsetTop;
2001
2002             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
2003                 hasAbsolute = true;
2004             }
2005
2006             if (Roo.isGecko) {
2007                 pe = fly(p);
2008
2009                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
2010                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
2011
2012
2013                 x += bl;
2014                 y += bt;
2015
2016
2017                 if (p != el && pe.getStyle('overflow') != 'visible') {
2018                     x += bl;
2019                     y += bt;
2020                 }
2021             }
2022             p = p.offsetParent;
2023         }
2024
2025         if (Roo.isSafari && hasAbsolute) {
2026             x -= bd.offsetLeft;
2027             y -= bd.offsetTop;
2028         }
2029
2030         if (Roo.isGecko && !hasAbsolute) {
2031             var dbd = fly(bd);
2032             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
2033             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
2034         }
2035
2036         p = el.parentNode;
2037         while (p && p != bd) {
2038             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
2039                 x -= p.scrollLeft;
2040                 y -= p.scrollTop;
2041             }
2042             p = p.parentNode;
2043         }
2044         return [x, y];
2045     },
2046  
2047   
2048
2049
2050     setXY : function(el, xy) {
2051         el = Roo.fly(el, '_setXY');
2052         el.position();
2053         var pts = el.translatePoints(xy);
2054         if (xy[0] !== false) {
2055             el.dom.style.left = pts.left + "px";
2056         }
2057         if (xy[1] !== false) {
2058             el.dom.style.top = pts.top + "px";
2059         }
2060     },
2061
2062     setX : function(el, x) {
2063         this.setXY(el, [x, false]);
2064     },
2065
2066     setY : function(el, y) {
2067         this.setXY(el, [false, y]);
2068     }
2069 };
2070 /*
2071  * Portions of this file are based on pieces of Yahoo User Interface Library
2072  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2073  * YUI licensed under the BSD License:
2074  * http://developer.yahoo.net/yui/license.txt
2075  * <script type="text/javascript">
2076  *
2077  */
2078
2079 Roo.lib.Event = function() {
2080     var loadComplete = false;
2081     var listeners = [];
2082     var unloadListeners = [];
2083     var retryCount = 0;
2084     var onAvailStack = [];
2085     var counter = 0;
2086     var lastError = null;
2087
2088     return {
2089         POLL_RETRYS: 200,
2090         POLL_INTERVAL: 20,
2091         EL: 0,
2092         TYPE: 1,
2093         FN: 2,
2094         WFN: 3,
2095         OBJ: 3,
2096         ADJ_SCOPE: 4,
2097         _interval: null,
2098
2099         startInterval: function() {
2100             if (!this._interval) {
2101                 var self = this;
2102                 var callback = function() {
2103                     self._tryPreloadAttach();
2104                 };
2105                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2106
2107             }
2108         },
2109
2110         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2111             onAvailStack.push({ id:         p_id,
2112                 fn:         p_fn,
2113                 obj:        p_obj,
2114                 override:   p_override,
2115                 checkReady: false    });
2116
2117             retryCount = this.POLL_RETRYS;
2118             this.startInterval();
2119         },
2120
2121
2122         addListener: function(el, eventName, fn) {
2123             el = Roo.getDom(el);
2124             if (!el || !fn) {
2125                 return false;
2126             }
2127
2128             if ("unload" == eventName) {
2129                 unloadListeners[unloadListeners.length] =
2130                 [el, eventName, fn];
2131                 return true;
2132             }
2133
2134             var wrappedFn = function(e) {
2135                 return fn(Roo.lib.Event.getEvent(e));
2136             };
2137
2138             var li = [el, eventName, fn, wrappedFn];
2139
2140             var index = listeners.length;
2141             listeners[index] = li;
2142
2143             this.doAdd(el, eventName, wrappedFn, false);
2144             return true;
2145
2146         },
2147
2148
2149         removeListener: function(el, eventName, fn) {
2150             var i, len;
2151
2152             el = Roo.getDom(el);
2153
2154             if(!fn) {
2155                 return this.purgeElement(el, false, eventName);
2156             }
2157
2158
2159             if ("unload" == eventName) {
2160
2161                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2162                     var li = unloadListeners[i];
2163                     if (li &&
2164                         li[0] == el &&
2165                         li[1] == eventName &&
2166                         li[2] == fn) {
2167                         unloadListeners.splice(i, 1);
2168                         return true;
2169                     }
2170                 }
2171
2172                 return false;
2173             }
2174
2175             var cacheItem = null;
2176
2177
2178             var index = arguments[3];
2179
2180             if ("undefined" == typeof index) {
2181                 index = this._getCacheIndex(el, eventName, fn);
2182             }
2183
2184             if (index >= 0) {
2185                 cacheItem = listeners[index];
2186             }
2187
2188             if (!el || !cacheItem) {
2189                 return false;
2190             }
2191
2192             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2193
2194             delete listeners[index][this.WFN];
2195             delete listeners[index][this.FN];
2196             listeners.splice(index, 1);
2197
2198             return true;
2199
2200         },
2201
2202
2203         getTarget: function(ev, resolveTextNode) {
2204             ev = ev.browserEvent || ev;
2205             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2206             var t = ev.target || ev.srcElement;
2207             return this.resolveTextNode(t);
2208         },
2209
2210
2211         resolveTextNode: function(node) {
2212             if (Roo.isSafari && node && 3 == node.nodeType) {
2213                 return node.parentNode;
2214             } else {
2215                 return node;
2216             }
2217         },
2218
2219
2220         getPageX: function(ev) {
2221             ev = ev.browserEvent || ev;
2222             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2223             var x = ev.pageX;
2224             if (!x && 0 !== x) {
2225                 x = ev.clientX || 0;
2226
2227                 if (Roo.isIE) {
2228                     x += this.getScroll()[1];
2229                 }
2230             }
2231
2232             return x;
2233         },
2234
2235
2236         getPageY: function(ev) {
2237             ev = ev.browserEvent || ev;
2238             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2239             var y = ev.pageY;
2240             if (!y && 0 !== y) {
2241                 y = ev.clientY || 0;
2242
2243                 if (Roo.isIE) {
2244                     y += this.getScroll()[0];
2245                 }
2246             }
2247
2248
2249             return y;
2250         },
2251
2252
2253         getXY: function(ev) {
2254             ev = ev.browserEvent || ev;
2255             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2256             return [this.getPageX(ev), this.getPageY(ev)];
2257         },
2258
2259
2260         getRelatedTarget: function(ev) {
2261             ev = ev.browserEvent || ev;
2262             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2263             var t = ev.relatedTarget;
2264             if (!t) {
2265                 if (ev.type == "mouseout") {
2266                     t = ev.toElement;
2267                 } else if (ev.type == "mouseover") {
2268                     t = ev.fromElement;
2269                 }
2270             }
2271
2272             return this.resolveTextNode(t);
2273         },
2274
2275
2276         getTime: function(ev) {
2277             ev = ev.browserEvent || ev;
2278             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2279             if (!ev.time) {
2280                 var t = new Date().getTime();
2281                 try {
2282                     ev.time = t;
2283                 } catch(ex) {
2284                     this.lastError = ex;
2285                     return t;
2286                 }
2287             }
2288
2289             return ev.time;
2290         },
2291
2292
2293         stopEvent: function(ev) {
2294             this.stopPropagation(ev);
2295             this.preventDefault(ev);
2296         },
2297
2298
2299         stopPropagation: function(ev) {
2300             ev = ev.browserEvent || ev;
2301             if (ev.stopPropagation) {
2302                 ev.stopPropagation();
2303             } else {
2304                 ev.cancelBubble = true;
2305             }
2306         },
2307
2308
2309         preventDefault: function(ev) {
2310             ev = ev.browserEvent || ev;
2311             if(ev.preventDefault) {
2312                 ev.preventDefault();
2313             } else {
2314                 ev.returnValue = false;
2315             }
2316         },
2317
2318
2319         getEvent: function(e) {
2320             var ev = e || window.event;
2321             if (!ev) {
2322                 var c = this.getEvent.caller;
2323                 while (c) {
2324                     ev = c.arguments[0];
2325                     if (ev && Event == ev.constructor) {
2326                         break;
2327                     }
2328                     c = c.caller;
2329                 }
2330             }
2331             return ev;
2332         },
2333
2334
2335         getCharCode: function(ev) {
2336             ev = ev.browserEvent || ev;
2337             return ev.charCode || ev.keyCode || 0;
2338         },
2339
2340
2341         _getCacheIndex: function(el, eventName, fn) {
2342             for (var i = 0,len = listeners.length; i < len; ++i) {
2343                 var li = listeners[i];
2344                 if (li &&
2345                     li[this.FN] == fn &&
2346                     li[this.EL] == el &&
2347                     li[this.TYPE] == eventName) {
2348                     return i;
2349                 }
2350             }
2351
2352             return -1;
2353         },
2354
2355
2356         elCache: {},
2357
2358
2359         getEl: function(id) {
2360             return document.getElementById(id);
2361         },
2362
2363
2364         clearCache: function() {
2365         },
2366
2367
2368         _load: function(e) {
2369             loadComplete = true;
2370             var EU = Roo.lib.Event;
2371
2372
2373             if (Roo.isIE) {
2374                 EU.doRemove(window, "load", EU._load);
2375             }
2376         },
2377
2378
2379         _tryPreloadAttach: function() {
2380
2381             if (this.locked) {
2382                 return false;
2383             }
2384
2385             this.locked = true;
2386
2387
2388             var tryAgain = !loadComplete;
2389             if (!tryAgain) {
2390                 tryAgain = (retryCount > 0);
2391             }
2392
2393
2394             var notAvail = [];
2395             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2396                 var item = onAvailStack[i];
2397                 if (item) {
2398                     var el = this.getEl(item.id);
2399
2400                     if (el) {
2401                         if (!item.checkReady ||
2402                             loadComplete ||
2403                             el.nextSibling ||
2404                             (document && document.body)) {
2405
2406                             var scope = el;
2407                             if (item.override) {
2408                                 if (item.override === true) {
2409                                     scope = item.obj;
2410                                 } else {
2411                                     scope = item.override;
2412                                 }
2413                             }
2414                             item.fn.call(scope, item.obj);
2415                             onAvailStack[i] = null;
2416                         }
2417                     } else {
2418                         notAvail.push(item);
2419                     }
2420                 }
2421             }
2422
2423             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2424
2425             if (tryAgain) {
2426
2427                 this.startInterval();
2428             } else {
2429                 clearInterval(this._interval);
2430                 this._interval = null;
2431             }
2432
2433             this.locked = false;
2434
2435             return true;
2436
2437         },
2438
2439
2440         purgeElement: function(el, recurse, eventName) {
2441             var elListeners = this.getListeners(el, eventName);
2442             if (elListeners) {
2443                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2444                     var l = elListeners[i];
2445                     this.removeListener(el, l.type, l.fn);
2446                 }
2447             }
2448
2449             if (recurse && el && el.childNodes) {
2450                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2451                     this.purgeElement(el.childNodes[i], recurse, eventName);
2452                 }
2453             }
2454         },
2455
2456
2457         getListeners: function(el, eventName) {
2458             var results = [], searchLists;
2459             if (!eventName) {
2460                 searchLists = [listeners, unloadListeners];
2461             } else if (eventName == "unload") {
2462                 searchLists = [unloadListeners];
2463             } else {
2464                 searchLists = [listeners];
2465             }
2466
2467             for (var j = 0; j < searchLists.length; ++j) {
2468                 var searchList = searchLists[j];
2469                 if (searchList && searchList.length > 0) {
2470                     for (var i = 0,len = searchList.length; i < len; ++i) {
2471                         var l = searchList[i];
2472                         if (l && l[this.EL] === el &&
2473                             (!eventName || eventName === l[this.TYPE])) {
2474                             results.push({
2475                                 type:   l[this.TYPE],
2476                                 fn:     l[this.FN],
2477                                 obj:    l[this.OBJ],
2478                                 adjust: l[this.ADJ_SCOPE],
2479                                 index:  i
2480                             });
2481                         }
2482                     }
2483                 }
2484             }
2485
2486             return (results.length) ? results : null;
2487         },
2488
2489
2490         _unload: function(e) {
2491
2492             var EU = Roo.lib.Event, i, j, l, len, index;
2493
2494             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2495                 l = unloadListeners[i];
2496                 if (l) {
2497                     var scope = window;
2498                     if (l[EU.ADJ_SCOPE]) {
2499                         if (l[EU.ADJ_SCOPE] === true) {
2500                             scope = l[EU.OBJ];
2501                         } else {
2502                             scope = l[EU.ADJ_SCOPE];
2503                         }
2504                     }
2505                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2506                     unloadListeners[i] = null;
2507                     l = null;
2508                     scope = null;
2509                 }
2510             }
2511
2512             unloadListeners = null;
2513
2514             if (listeners && listeners.length > 0) {
2515                 j = listeners.length;
2516                 while (j) {
2517                     index = j - 1;
2518                     l = listeners[index];
2519                     if (l) {
2520                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2521                                 l[EU.FN], index);
2522                     }
2523                     j = j - 1;
2524                 }
2525                 l = null;
2526
2527                 EU.clearCache();
2528             }
2529
2530             EU.doRemove(window, "unload", EU._unload);
2531
2532         },
2533
2534
2535         getScroll: function() {
2536             var dd = document.documentElement, db = document.body;
2537             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2538                 return [dd.scrollTop, dd.scrollLeft];
2539             } else if (db) {
2540                 return [db.scrollTop, db.scrollLeft];
2541             } else {
2542                 return [0, 0];
2543             }
2544         },
2545
2546
2547         doAdd: function () {
2548             if (window.addEventListener) {
2549                 return function(el, eventName, fn, capture) {
2550                     el.addEventListener(eventName, fn, (capture));
2551                 };
2552             } else if (window.attachEvent) {
2553                 return function(el, eventName, fn, capture) {
2554                     el.attachEvent("on" + eventName, fn);
2555                 };
2556             } else {
2557                 return function() {
2558                 };
2559             }
2560         }(),
2561
2562
2563         doRemove: function() {
2564             if (window.removeEventListener) {
2565                 return function (el, eventName, fn, capture) {
2566                     el.removeEventListener(eventName, fn, (capture));
2567                 };
2568             } else if (window.detachEvent) {
2569                 return function (el, eventName, fn) {
2570                     el.detachEvent("on" + eventName, fn);
2571                 };
2572             } else {
2573                 return function() {
2574                 };
2575             }
2576         }()
2577     };
2578     
2579 }();
2580 (function() {     
2581    
2582     var E = Roo.lib.Event;
2583     E.on = E.addListener;
2584     E.un = E.removeListener;
2585
2586     if (document && document.body) {
2587         E._load();
2588     } else {
2589         E.doAdd(window, "load", E._load);
2590     }
2591     E.doAdd(window, "unload", E._unload);
2592     E._tryPreloadAttach();
2593 })();
2594
2595 /*
2596  * Portions of this file are based on pieces of Yahoo User Interface Library
2597  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2598  * YUI licensed under the BSD License:
2599  * http://developer.yahoo.net/yui/license.txt
2600  * <script type="text/javascript">
2601  *
2602  */
2603
2604 (function() {
2605     /**
2606      * @class Roo.lib.Ajax
2607      *
2608      */
2609     Roo.lib.Ajax = {
2610         /**
2611          * @static 
2612          */
2613         request : function(method, uri, cb, data, options) {
2614             if(options){
2615                 var hs = options.headers;
2616                 if(hs){
2617                     for(var h in hs){
2618                         if(hs.hasOwnProperty(h)){
2619                             this.initHeader(h, hs[h], false);
2620                         }
2621                     }
2622                 }
2623                 if(options.xmlData){
2624                     this.initHeader('Content-Type', 'text/xml', false);
2625                     method = 'POST';
2626                     data = options.xmlData;
2627                 }
2628             }
2629
2630             return this.asyncRequest(method, uri, cb, data);
2631         },
2632
2633         serializeForm : function(form) {
2634             if(typeof form == 'string') {
2635                 form = (document.getElementById(form) || document.forms[form]);
2636             }
2637
2638             var el, name, val, disabled, data = '', hasSubmit = false;
2639             for (var i = 0; i < form.elements.length; i++) {
2640                 el = form.elements[i];
2641                 disabled = form.elements[i].disabled;
2642                 name = form.elements[i].name;
2643                 val = form.elements[i].value;
2644
2645                 if (!disabled && name){
2646                     switch (el.type)
2647                             {
2648                         case 'select-one':
2649                         case 'select-multiple':
2650                             for (var j = 0; j < el.options.length; j++) {
2651                                 if (el.options[j].selected) {
2652                                     if (Roo.isIE) {
2653                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2654                                     }
2655                                     else {
2656                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2657                                     }
2658                                 }
2659                             }
2660                             break;
2661                         case 'radio':
2662                         case 'checkbox':
2663                             if (el.checked) {
2664                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2665                             }
2666                             break;
2667                         case 'file':
2668
2669                         case undefined:
2670
2671                         case 'reset':
2672
2673                         case 'button':
2674
2675                             break;
2676                         case 'submit':
2677                             if(hasSubmit == false) {
2678                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2679                                 hasSubmit = true;
2680                             }
2681                             break;
2682                         default:
2683                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2684                             break;
2685                     }
2686                 }
2687             }
2688             data = data.substr(0, data.length - 1);
2689             return data;
2690         },
2691
2692         headers:{},
2693
2694         hasHeaders:false,
2695
2696         useDefaultHeader:true,
2697
2698         defaultPostHeader:'application/x-www-form-urlencoded',
2699
2700         useDefaultXhrHeader:true,
2701
2702         defaultXhrHeader:'XMLHttpRequest',
2703
2704         hasDefaultHeaders:true,
2705
2706         defaultHeaders:{},
2707
2708         poll:{},
2709
2710         timeout:{},
2711
2712         pollInterval:50,
2713
2714         transactionId:0,
2715
2716         setProgId:function(id)
2717         {
2718             this.activeX.unshift(id);
2719         },
2720
2721         setDefaultPostHeader:function(b)
2722         {
2723             this.useDefaultHeader = b;
2724         },
2725
2726         setDefaultXhrHeader:function(b)
2727         {
2728             this.useDefaultXhrHeader = b;
2729         },
2730
2731         setPollingInterval:function(i)
2732         {
2733             if (typeof i == 'number' && isFinite(i)) {
2734                 this.pollInterval = i;
2735             }
2736         },
2737
2738         createXhrObject:function(transactionId)
2739         {
2740             var obj,http;
2741             try
2742             {
2743
2744                 http = new XMLHttpRequest();
2745
2746                 obj = { conn:http, tId:transactionId };
2747             }
2748             catch(e)
2749             {
2750                 for (var i = 0; i < this.activeX.length; ++i) {
2751                     try
2752                     {
2753
2754                         http = new ActiveXObject(this.activeX[i]);
2755
2756                         obj = { conn:http, tId:transactionId };
2757                         break;
2758                     }
2759                     catch(e) {
2760                     }
2761                 }
2762             }
2763             finally
2764             {
2765                 return obj;
2766             }
2767         },
2768
2769         getConnectionObject:function()
2770         {
2771             var o;
2772             var tId = this.transactionId;
2773
2774             try
2775             {
2776                 o = this.createXhrObject(tId);
2777                 if (o) {
2778                     this.transactionId++;
2779                 }
2780             }
2781             catch(e) {
2782             }
2783             finally
2784             {
2785                 return o;
2786             }
2787         },
2788
2789         asyncRequest:function(method, uri, callback, postData)
2790         {
2791             var o = this.getConnectionObject();
2792
2793             if (!o) {
2794                 return null;
2795             }
2796             else {
2797                 o.conn.open(method, uri, true);
2798
2799                 if (this.useDefaultXhrHeader) {
2800                     if (!this.defaultHeaders['X-Requested-With']) {
2801                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2802                     }
2803                 }
2804
2805                 if(postData && this.useDefaultHeader){
2806                     this.initHeader('Content-Type', this.defaultPostHeader);
2807                 }
2808
2809                  if (this.hasDefaultHeaders || this.hasHeaders) {
2810                     this.setHeader(o);
2811                 }
2812
2813                 this.handleReadyState(o, callback);
2814                 o.conn.send(postData || null);
2815
2816                 return o;
2817             }
2818         },
2819
2820         handleReadyState:function(o, callback)
2821         {
2822             var oConn = this;
2823
2824             if (callback && callback.timeout) {
2825                 
2826                 this.timeout[o.tId] = window.setTimeout(function() {
2827                     oConn.abort(o, callback, true);
2828                 }, callback.timeout);
2829             }
2830
2831             this.poll[o.tId] = window.setInterval(
2832                     function() {
2833                         if (o.conn && o.conn.readyState == 4) {
2834                             window.clearInterval(oConn.poll[o.tId]);
2835                             delete oConn.poll[o.tId];
2836
2837                             if(callback && callback.timeout) {
2838                                 window.clearTimeout(oConn.timeout[o.tId]);
2839                                 delete oConn.timeout[o.tId];
2840                             }
2841
2842                             oConn.handleTransactionResponse(o, callback);
2843                         }
2844                     }
2845                     , this.pollInterval);
2846         },
2847
2848         handleTransactionResponse:function(o, callback, isAbort)
2849         {
2850
2851             if (!callback) {
2852                 this.releaseObject(o);
2853                 return;
2854             }
2855
2856             var httpStatus, responseObject;
2857
2858             try
2859             {
2860                 if (o.conn.status !== undefined && o.conn.status != 0) {
2861                     httpStatus = o.conn.status;
2862                 }
2863                 else {
2864                     httpStatus = 13030;
2865                 }
2866             }
2867             catch(e) {
2868
2869
2870                 httpStatus = 13030;
2871             }
2872
2873             if (httpStatus >= 200 && httpStatus < 300) {
2874                 responseObject = this.createResponseObject(o, callback.argument);
2875                 if (callback.success) {
2876                     if (!callback.scope) {
2877                         callback.success(responseObject);
2878                     }
2879                     else {
2880
2881
2882                         callback.success.apply(callback.scope, [responseObject]);
2883                     }
2884                 }
2885             }
2886             else {
2887                 switch (httpStatus) {
2888
2889                     case 12002:
2890                     case 12029:
2891                     case 12030:
2892                     case 12031:
2893                     case 12152:
2894                     case 13030:
2895                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2896                         if (callback.failure) {
2897                             if (!callback.scope) {
2898                                 callback.failure(responseObject);
2899                             }
2900                             else {
2901                                 callback.failure.apply(callback.scope, [responseObject]);
2902                             }
2903                         }
2904                         break;
2905                     default:
2906                         responseObject = this.createResponseObject(o, callback.argument);
2907                         if (callback.failure) {
2908                             if (!callback.scope) {
2909                                 callback.failure(responseObject);
2910                             }
2911                             else {
2912                                 callback.failure.apply(callback.scope, [responseObject]);
2913                             }
2914                         }
2915                 }
2916             }
2917
2918             this.releaseObject(o);
2919             responseObject = null;
2920         },
2921
2922         createResponseObject:function(o, callbackArg)
2923         {
2924             var obj = {};
2925             var headerObj = {};
2926
2927             try
2928             {
2929                 var headerStr = o.conn.getAllResponseHeaders();
2930                 var header = headerStr.split('\n');
2931                 for (var i = 0; i < header.length; i++) {
2932                     var delimitPos = header[i].indexOf(':');
2933                     if (delimitPos != -1) {
2934                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2935                     }
2936                 }
2937             }
2938             catch(e) {
2939             }
2940
2941             obj.tId = o.tId;
2942             obj.status = o.conn.status;
2943             obj.statusText = o.conn.statusText;
2944             obj.getResponseHeader = headerObj;
2945             obj.getAllResponseHeaders = headerStr;
2946             obj.responseText = o.conn.responseText;
2947             obj.responseXML = o.conn.responseXML;
2948
2949             if (typeof callbackArg !== undefined) {
2950                 obj.argument = callbackArg;
2951             }
2952
2953             return obj;
2954         },
2955
2956         createExceptionObject:function(tId, callbackArg, isAbort)
2957         {
2958             var COMM_CODE = 0;
2959             var COMM_ERROR = 'communication failure';
2960             var ABORT_CODE = -1;
2961             var ABORT_ERROR = 'transaction aborted';
2962
2963             var obj = {};
2964
2965             obj.tId = tId;
2966             if (isAbort) {
2967                 obj.status = ABORT_CODE;
2968                 obj.statusText = ABORT_ERROR;
2969             }
2970             else {
2971                 obj.status = COMM_CODE;
2972                 obj.statusText = COMM_ERROR;
2973             }
2974
2975             if (callbackArg) {
2976                 obj.argument = callbackArg;
2977             }
2978
2979             return obj;
2980         },
2981
2982         initHeader:function(label, value, isDefault)
2983         {
2984             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2985
2986             if (headerObj[label] === undefined) {
2987                 headerObj[label] = value;
2988             }
2989             else {
2990
2991
2992                 headerObj[label] = value + "," + headerObj[label];
2993             }
2994
2995             if (isDefault) {
2996                 this.hasDefaultHeaders = true;
2997             }
2998             else {
2999                 this.hasHeaders = true;
3000             }
3001         },
3002
3003
3004         setHeader:function(o)
3005         {
3006             if (this.hasDefaultHeaders) {
3007                 for (var prop in this.defaultHeaders) {
3008                     if (this.defaultHeaders.hasOwnProperty(prop)) {
3009                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
3010                     }
3011                 }
3012             }
3013
3014             if (this.hasHeaders) {
3015                 for (var prop in this.headers) {
3016                     if (this.headers.hasOwnProperty(prop)) {
3017                         o.conn.setRequestHeader(prop, this.headers[prop]);
3018                     }
3019                 }
3020                 this.headers = {};
3021                 this.hasHeaders = false;
3022             }
3023         },
3024
3025         resetDefaultHeaders:function() {
3026             delete this.defaultHeaders;
3027             this.defaultHeaders = {};
3028             this.hasDefaultHeaders = false;
3029         },
3030
3031         abort:function(o, callback, isTimeout)
3032         {
3033             if(this.isCallInProgress(o)) {
3034                 o.conn.abort();
3035                 window.clearInterval(this.poll[o.tId]);
3036                 delete this.poll[o.tId];
3037                 if (isTimeout) {
3038                     delete this.timeout[o.tId];
3039                 }
3040
3041                 this.handleTransactionResponse(o, callback, true);
3042
3043                 return true;
3044             }
3045             else {
3046                 return false;
3047             }
3048         },
3049
3050
3051         isCallInProgress:function(o)
3052         {
3053             if (o && o.conn) {
3054                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3055             }
3056             else {
3057
3058                 return false;
3059             }
3060         },
3061
3062
3063         releaseObject:function(o)
3064         {
3065
3066             o.conn = null;
3067
3068             o = null;
3069         },
3070
3071         activeX:[
3072         'MSXML2.XMLHTTP.3.0',
3073         'MSXML2.XMLHTTP',
3074         'Microsoft.XMLHTTP'
3075         ]
3076
3077
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
3088 Roo.lib.Region = function(t, r, b, l) {
3089     this.top = t;
3090     this[1] = t;
3091     this.right = r;
3092     this.bottom = b;
3093     this.left = l;
3094     this[0] = l;
3095 };
3096
3097
3098 Roo.lib.Region.prototype = {
3099     contains : function(region) {
3100         return ( region.left >= this.left &&
3101                  region.right <= this.right &&
3102                  region.top >= this.top &&
3103                  region.bottom <= this.bottom    );
3104
3105     },
3106
3107     getArea : function() {
3108         return ( (this.bottom - this.top) * (this.right - this.left) );
3109     },
3110
3111     intersect : function(region) {
3112         var t = Math.max(this.top, region.top);
3113         var r = Math.min(this.right, region.right);
3114         var b = Math.min(this.bottom, region.bottom);
3115         var l = Math.max(this.left, region.left);
3116
3117         if (b >= t && r >= l) {
3118             return new Roo.lib.Region(t, r, b, l);
3119         } else {
3120             return null;
3121         }
3122     },
3123     union : function(region) {
3124         var t = Math.min(this.top, region.top);
3125         var r = Math.max(this.right, region.right);
3126         var b = Math.max(this.bottom, region.bottom);
3127         var l = Math.min(this.left, region.left);
3128
3129         return new Roo.lib.Region(t, r, b, l);
3130     },
3131
3132     adjust : function(t, l, b, r) {
3133         this.top += t;
3134         this.left += l;
3135         this.right += r;
3136         this.bottom += b;
3137         return this;
3138     }
3139 };
3140
3141 Roo.lib.Region.getRegion = function(el) {
3142     var p = Roo.lib.Dom.getXY(el);
3143
3144     var t = p[1];
3145     var r = p[0] + el.offsetWidth;
3146     var b = p[1] + el.offsetHeight;
3147     var l = p[0];
3148
3149     return new Roo.lib.Region(t, r, b, l);
3150 };
3151 /*
3152  * Portions of this file are based on pieces of Yahoo User Interface Library
3153  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3154  * YUI licensed under the BSD License:
3155  * http://developer.yahoo.net/yui/license.txt
3156  * <script type="text/javascript">
3157  *
3158  */
3159 //@@dep Roo.lib.Region
3160
3161
3162 Roo.lib.Point = function(x, y) {
3163     if (x instanceof Array) {
3164         y = x[1];
3165         x = x[0];
3166     }
3167     this.x = this.right = this.left = this[0] = x;
3168     this.y = this.top = this.bottom = this[1] = y;
3169 };
3170
3171 Roo.lib.Point.prototype = new Roo.lib.Region();
3172 /*
3173  * Portions of this file are based on pieces of Yahoo User Interface Library
3174  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3175  * YUI licensed under the BSD License:
3176  * http://developer.yahoo.net/yui/license.txt
3177  * <script type="text/javascript">
3178  *
3179  */
3180  
3181 (function() {   
3182
3183     Roo.lib.Anim = {
3184         scroll : function(el, args, duration, easing, cb, scope) {
3185             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3186         },
3187
3188         motion : function(el, args, duration, easing, cb, scope) {
3189             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3190         },
3191
3192         color : function(el, args, duration, easing, cb, scope) {
3193             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3194         },
3195
3196         run : function(el, args, duration, easing, cb, scope, type) {
3197             type = type || Roo.lib.AnimBase;
3198             if (typeof easing == "string") {
3199                 easing = Roo.lib.Easing[easing];
3200             }
3201             var anim = new type(el, args, duration, easing);
3202             anim.animateX(function() {
3203                 Roo.callback(cb, scope);
3204             });
3205             return anim;
3206         }
3207     };
3208 })();/*
3209  * Portions of this file are based on pieces of Yahoo User Interface Library
3210  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3211  * YUI licensed under the BSD License:
3212  * http://developer.yahoo.net/yui/license.txt
3213  * <script type="text/javascript">
3214  *
3215  */
3216
3217 (function() {    
3218     var libFlyweight;
3219     
3220     function fly(el) {
3221         if (!libFlyweight) {
3222             libFlyweight = new Roo.Element.Flyweight();
3223         }
3224         libFlyweight.dom = el;
3225         return libFlyweight;
3226     }
3227
3228     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3229     
3230    
3231     
3232     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3233         if (el) {
3234             this.init(el, attributes, duration, method);
3235         }
3236     };
3237
3238     Roo.lib.AnimBase.fly = fly;
3239     
3240     
3241     
3242     Roo.lib.AnimBase.prototype = {
3243
3244         toString: function() {
3245             var el = this.getEl();
3246             var id = el.id || el.tagName;
3247             return ("Anim " + id);
3248         },
3249
3250         patterns: {
3251             noNegatives:        /width|height|opacity|padding/i,
3252             offsetAttribute:  /^((width|height)|(top|left))$/,
3253             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3254             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3255         },
3256
3257
3258         doMethod: function(attr, start, end) {
3259             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3260         },
3261
3262
3263         setAttribute: function(attr, val, unit) {
3264             if (this.patterns.noNegatives.test(attr)) {
3265                 val = (val > 0) ? val : 0;
3266             }
3267
3268             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3269         },
3270
3271
3272         getAttribute: function(attr) {
3273             var el = this.getEl();
3274             var val = fly(el).getStyle(attr);
3275
3276             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3277                 return parseFloat(val);
3278             }
3279
3280             var a = this.patterns.offsetAttribute.exec(attr) || [];
3281             var pos = !!( a[3] );
3282             var box = !!( a[2] );
3283
3284
3285             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3286                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3287             } else {
3288                 val = 0;
3289             }
3290
3291             return val;
3292         },
3293
3294
3295         getDefaultUnit: function(attr) {
3296             if (this.patterns.defaultUnit.test(attr)) {
3297                 return 'px';
3298             }
3299
3300             return '';
3301         },
3302
3303         animateX : function(callback, scope) {
3304             var f = function() {
3305                 this.onComplete.removeListener(f);
3306                 if (typeof callback == "function") {
3307                     callback.call(scope || this, this);
3308                 }
3309             };
3310             this.onComplete.addListener(f, this);
3311             this.animate();
3312         },
3313
3314
3315         setRuntimeAttribute: function(attr) {
3316             var start;
3317             var end;
3318             var attributes = this.attributes;
3319
3320             this.runtimeAttributes[attr] = {};
3321
3322             var isset = function(prop) {
3323                 return (typeof prop !== 'undefined');
3324             };
3325
3326             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3327                 return false;
3328             }
3329
3330             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3331
3332
3333             if (isset(attributes[attr]['to'])) {
3334                 end = attributes[attr]['to'];
3335             } else if (isset(attributes[attr]['by'])) {
3336                 if (start.constructor == Array) {
3337                     end = [];
3338                     for (var i = 0, len = start.length; i < len; ++i) {
3339                         end[i] = start[i] + attributes[attr]['by'][i];
3340                     }
3341                 } else {
3342                     end = start + attributes[attr]['by'];
3343                 }
3344             }
3345
3346             this.runtimeAttributes[attr].start = start;
3347             this.runtimeAttributes[attr].end = end;
3348
3349
3350             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3351         },
3352
3353
3354         init: function(el, attributes, duration, method) {
3355
3356             var isAnimated = false;
3357
3358
3359             var startTime = null;
3360
3361
3362             var actualFrames = 0;
3363
3364
3365             el = Roo.getDom(el);
3366
3367
3368             this.attributes = attributes || {};
3369
3370
3371             this.duration = duration || 1;
3372
3373
3374             this.method = method || Roo.lib.Easing.easeNone;
3375
3376
3377             this.useSeconds = true;
3378
3379
3380             this.currentFrame = 0;
3381
3382
3383             this.totalFrames = Roo.lib.AnimMgr.fps;
3384
3385
3386             this.getEl = function() {
3387                 return el;
3388             };
3389
3390
3391             this.isAnimated = function() {
3392                 return isAnimated;
3393             };
3394
3395
3396             this.getStartTime = function() {
3397                 return startTime;
3398             };
3399
3400             this.runtimeAttributes = {};
3401
3402
3403             this.animate = function() {
3404                 if (this.isAnimated()) {
3405                     return false;
3406                 }
3407
3408                 this.currentFrame = 0;
3409
3410                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3411
3412                 Roo.lib.AnimMgr.registerElement(this);
3413             };
3414
3415
3416             this.stop = function(finish) {
3417                 if (finish) {
3418                     this.currentFrame = this.totalFrames;
3419                     this._onTween.fire();
3420                 }
3421                 Roo.lib.AnimMgr.stop(this);
3422             };
3423
3424             var onStart = function() {
3425                 this.onStart.fire();
3426
3427                 this.runtimeAttributes = {};
3428                 for (var attr in this.attributes) {
3429                     this.setRuntimeAttribute(attr);
3430                 }
3431
3432                 isAnimated = true;
3433                 actualFrames = 0;
3434                 startTime = new Date();
3435             };
3436
3437
3438             var onTween = function() {
3439                 var data = {
3440                     duration: new Date() - this.getStartTime(),
3441                     currentFrame: this.currentFrame
3442                 };
3443
3444                 data.toString = function() {
3445                     return (
3446                             'duration: ' + data.duration +
3447                             ', currentFrame: ' + data.currentFrame
3448                             );
3449                 };
3450
3451                 this.onTween.fire(data);
3452
3453                 var runtimeAttributes = this.runtimeAttributes;
3454
3455                 for (var attr in runtimeAttributes) {
3456                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3457                 }
3458
3459                 actualFrames += 1;
3460             };
3461
3462             var onComplete = function() {
3463                 var actual_duration = (new Date() - startTime) / 1000 ;
3464
3465                 var data = {
3466                     duration: actual_duration,
3467                     frames: actualFrames,
3468                     fps: actualFrames / actual_duration
3469                 };
3470
3471                 data.toString = function() {
3472                     return (
3473                             'duration: ' + data.duration +
3474                             ', frames: ' + data.frames +
3475                             ', fps: ' + data.fps
3476                             );
3477                 };
3478
3479                 isAnimated = false;
3480                 actualFrames = 0;
3481                 this.onComplete.fire(data);
3482             };
3483
3484
3485             this._onStart = new Roo.util.Event(this);
3486             this.onStart = new Roo.util.Event(this);
3487             this.onTween = new Roo.util.Event(this);
3488             this._onTween = new Roo.util.Event(this);
3489             this.onComplete = new Roo.util.Event(this);
3490             this._onComplete = new Roo.util.Event(this);
3491             this._onStart.addListener(onStart);
3492             this._onTween.addListener(onTween);
3493             this._onComplete.addListener(onComplete);
3494         }
3495     };
3496 })();
3497 /*
3498  * Portions of this file are based on pieces of Yahoo User Interface Library
3499  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3500  * YUI licensed under the BSD License:
3501  * http://developer.yahoo.net/yui/license.txt
3502  * <script type="text/javascript">
3503  *
3504  */
3505
3506 Roo.lib.AnimMgr = new function() {
3507
3508     var thread = null;
3509
3510
3511     var queue = [];
3512
3513
3514     var tweenCount = 0;
3515
3516
3517     this.fps = 1000;
3518
3519
3520     this.delay = 1;
3521
3522
3523     this.registerElement = function(tween) {
3524         queue[queue.length] = tween;
3525         tweenCount += 1;
3526         tween._onStart.fire();
3527         this.start();
3528     };
3529
3530
3531     this.unRegister = function(tween, index) {
3532         tween._onComplete.fire();
3533         index = index || getIndex(tween);
3534         if (index != -1) {
3535             queue.splice(index, 1);
3536         }
3537
3538         tweenCount -= 1;
3539         if (tweenCount <= 0) {
3540             this.stop();
3541         }
3542     };
3543
3544
3545     this.start = function() {
3546         if (thread === null) {
3547             thread = setInterval(this.run, this.delay);
3548         }
3549     };
3550
3551
3552     this.stop = function(tween) {
3553         if (!tween) {
3554             clearInterval(thread);
3555
3556             for (var i = 0, len = queue.length; i < len; ++i) {
3557                 if (queue[0].isAnimated()) {
3558                     this.unRegister(queue[0], 0);
3559                 }
3560             }
3561
3562             queue = [];
3563             thread = null;
3564             tweenCount = 0;
3565         }
3566         else {
3567             this.unRegister(tween);
3568         }
3569     };
3570
3571
3572     this.run = function() {
3573         for (var i = 0, len = queue.length; i < len; ++i) {
3574             var tween = queue[i];
3575             if (!tween || !tween.isAnimated()) {
3576                 continue;
3577             }
3578
3579             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3580             {
3581                 tween.currentFrame += 1;
3582
3583                 if (tween.useSeconds) {
3584                     correctFrame(tween);
3585                 }
3586                 tween._onTween.fire();
3587             }
3588             else {
3589                 Roo.lib.AnimMgr.stop(tween, i);
3590             }
3591         }
3592     };
3593
3594     var getIndex = function(anim) {
3595         for (var i = 0, len = queue.length; i < len; ++i) {
3596             if (queue[i] == anim) {
3597                 return i;
3598             }
3599         }
3600         return -1;
3601     };
3602
3603
3604     var correctFrame = function(tween) {
3605         var frames = tween.totalFrames;
3606         var frame = tween.currentFrame;
3607         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3608         var elapsed = (new Date() - tween.getStartTime());
3609         var tweak = 0;
3610
3611         if (elapsed < tween.duration * 1000) {
3612             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3613         } else {
3614             tweak = frames - (frame + 1);
3615         }
3616         if (tweak > 0 && isFinite(tweak)) {
3617             if (tween.currentFrame + tweak >= frames) {
3618                 tweak = frames - (frame + 1);
3619             }
3620
3621             tween.currentFrame += tweak;
3622         }
3623     };
3624 };
3625
3626     /*
3627  * Portions of this file are based on pieces of Yahoo User Interface Library
3628  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3629  * YUI licensed under the BSD License:
3630  * http://developer.yahoo.net/yui/license.txt
3631  * <script type="text/javascript">
3632  *
3633  */
3634 Roo.lib.Bezier = new function() {
3635
3636         this.getPosition = function(points, t) {
3637             var n = points.length;
3638             var tmp = [];
3639
3640             for (var i = 0; i < n; ++i) {
3641                 tmp[i] = [points[i][0], points[i][1]];
3642             }
3643
3644             for (var j = 1; j < n; ++j) {
3645                 for (i = 0; i < n - j; ++i) {
3646                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3647                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3648                 }
3649             }
3650
3651             return [ tmp[0][0], tmp[0][1] ];
3652
3653         };
3654     };/*
3655  * Portions of this file are based on pieces of Yahoo User Interface Library
3656  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3657  * YUI licensed under the BSD License:
3658  * http://developer.yahoo.net/yui/license.txt
3659  * <script type="text/javascript">
3660  *
3661  */
3662 (function() {
3663
3664     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3665         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3666     };
3667
3668     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3669
3670     var fly = Roo.lib.AnimBase.fly;
3671     var Y = Roo.lib;
3672     var superclass = Y.ColorAnim.superclass;
3673     var proto = Y.ColorAnim.prototype;
3674
3675     proto.toString = function() {
3676         var el = this.getEl();
3677         var id = el.id || el.tagName;
3678         return ("ColorAnim " + id);
3679     };
3680
3681     proto.patterns.color = /color$/i;
3682     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3683     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3684     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3685     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3686
3687
3688     proto.parseColor = function(s) {
3689         if (s.length == 3) {
3690             return s;
3691         }
3692
3693         var c = this.patterns.hex.exec(s);
3694         if (c && c.length == 4) {
3695             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3696         }
3697
3698         c = this.patterns.rgb.exec(s);
3699         if (c && c.length == 4) {
3700             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3701         }
3702
3703         c = this.patterns.hex3.exec(s);
3704         if (c && c.length == 4) {
3705             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3706         }
3707
3708         return null;
3709     };
3710     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3711     proto.getAttribute = function(attr) {
3712         var el = this.getEl();
3713         if (this.patterns.color.test(attr)) {
3714             var val = fly(el).getStyle(attr);
3715
3716             if (this.patterns.transparent.test(val)) {
3717                 var parent = el.parentNode;
3718                 val = fly(parent).getStyle(attr);
3719
3720                 while (parent && this.patterns.transparent.test(val)) {
3721                     parent = parent.parentNode;
3722                     val = fly(parent).getStyle(attr);
3723                     if (parent.tagName.toUpperCase() == 'HTML') {
3724                         val = '#fff';
3725                     }
3726                 }
3727             }
3728         } else {
3729             val = superclass.getAttribute.call(this, attr);
3730         }
3731
3732         return val;
3733     };
3734     proto.getAttribute = function(attr) {
3735         var el = this.getEl();
3736         if (this.patterns.color.test(attr)) {
3737             var val = fly(el).getStyle(attr);
3738
3739             if (this.patterns.transparent.test(val)) {
3740                 var parent = el.parentNode;
3741                 val = fly(parent).getStyle(attr);
3742
3743                 while (parent && this.patterns.transparent.test(val)) {
3744                     parent = parent.parentNode;
3745                     val = fly(parent).getStyle(attr);
3746                     if (parent.tagName.toUpperCase() == 'HTML') {
3747                         val = '#fff';
3748                     }
3749                 }
3750             }
3751         } else {
3752             val = superclass.getAttribute.call(this, attr);
3753         }
3754
3755         return val;
3756     };
3757
3758     proto.doMethod = function(attr, start, end) {
3759         var val;
3760
3761         if (this.patterns.color.test(attr)) {
3762             val = [];
3763             for (var i = 0, len = start.length; i < len; ++i) {
3764                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3765             }
3766
3767             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3768         }
3769         else {
3770             val = superclass.doMethod.call(this, attr, start, end);
3771         }
3772
3773         return val;
3774     };
3775
3776     proto.setRuntimeAttribute = function(attr) {
3777         superclass.setRuntimeAttribute.call(this, attr);
3778
3779         if (this.patterns.color.test(attr)) {
3780             var attributes = this.attributes;
3781             var start = this.parseColor(this.runtimeAttributes[attr].start);
3782             var end = this.parseColor(this.runtimeAttributes[attr].end);
3783
3784             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3785                 end = this.parseColor(attributes[attr].by);
3786
3787                 for (var i = 0, len = start.length; i < len; ++i) {
3788                     end[i] = start[i] + end[i];
3789                 }
3790             }
3791
3792             this.runtimeAttributes[attr].start = start;
3793             this.runtimeAttributes[attr].end = end;
3794         }
3795     };
3796 })();
3797
3798 /*
3799  * Portions of this file are based on pieces of Yahoo User Interface Library
3800  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3801  * YUI licensed under the BSD License:
3802  * http://developer.yahoo.net/yui/license.txt
3803  * <script type="text/javascript">
3804  *
3805  */
3806 Roo.lib.Easing = {
3807
3808
3809     easeNone: function (t, b, c, d) {
3810         return c * t / d + b;
3811     },
3812
3813
3814     easeIn: function (t, b, c, d) {
3815         return c * (t /= d) * t + b;
3816     },
3817
3818
3819     easeOut: function (t, b, c, d) {
3820         return -c * (t /= d) * (t - 2) + b;
3821     },
3822
3823
3824     easeBoth: function (t, b, c, d) {
3825         if ((t /= d / 2) < 1) {
3826             return c / 2 * t * t + b;
3827         }
3828
3829         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3830     },
3831
3832
3833     easeInStrong: function (t, b, c, d) {
3834         return c * (t /= d) * t * t * t + b;
3835     },
3836
3837
3838     easeOutStrong: function (t, b, c, d) {
3839         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3840     },
3841
3842
3843     easeBothStrong: function (t, b, c, d) {
3844         if ((t /= d / 2) < 1) {
3845             return c / 2 * t * t * t * t + b;
3846         }
3847
3848         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3849     },
3850
3851
3852
3853     elasticIn: function (t, b, c, d, a, p) {
3854         if (t == 0) {
3855             return b;
3856         }
3857         if ((t /= d) == 1) {
3858             return b + c;
3859         }
3860         if (!p) {
3861             p = d * .3;
3862         }
3863
3864         if (!a || a < Math.abs(c)) {
3865             a = c;
3866             var s = p / 4;
3867         }
3868         else {
3869             var s = p / (2 * Math.PI) * Math.asin(c / a);
3870         }
3871
3872         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3873     },
3874
3875
3876     elasticOut: function (t, b, c, d, a, p) {
3877         if (t == 0) {
3878             return b;
3879         }
3880         if ((t /= d) == 1) {
3881             return b + c;
3882         }
3883         if (!p) {
3884             p = d * .3;
3885         }
3886
3887         if (!a || a < Math.abs(c)) {
3888             a = c;
3889             var s = p / 4;
3890         }
3891         else {
3892             var s = p / (2 * Math.PI) * Math.asin(c / a);
3893         }
3894
3895         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3896     },
3897
3898
3899     elasticBoth: function (t, b, c, d, a, p) {
3900         if (t == 0) {
3901             return b;
3902         }
3903
3904         if ((t /= d / 2) == 2) {
3905             return b + c;
3906         }
3907
3908         if (!p) {
3909             p = d * (.3 * 1.5);
3910         }
3911
3912         if (!a || a < Math.abs(c)) {
3913             a = c;
3914             var s = p / 4;
3915         }
3916         else {
3917             var s = p / (2 * Math.PI) * Math.asin(c / a);
3918         }
3919
3920         if (t < 1) {
3921             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3922                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3923         }
3924         return a * Math.pow(2, -10 * (t -= 1)) *
3925                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3926     },
3927
3928
3929
3930     backIn: function (t, b, c, d, s) {
3931         if (typeof s == 'undefined') {
3932             s = 1.70158;
3933         }
3934         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3935     },
3936
3937
3938     backOut: function (t, b, c, d, s) {
3939         if (typeof s == 'undefined') {
3940             s = 1.70158;
3941         }
3942         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3943     },
3944
3945
3946     backBoth: function (t, b, c, d, s) {
3947         if (typeof s == 'undefined') {
3948             s = 1.70158;
3949         }
3950
3951         if ((t /= d / 2 ) < 1) {
3952             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3953         }
3954         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3955     },
3956
3957
3958     bounceIn: function (t, b, c, d) {
3959         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3960     },
3961
3962
3963     bounceOut: function (t, b, c, d) {
3964         if ((t /= d) < (1 / 2.75)) {
3965             return c * (7.5625 * t * t) + b;
3966         } else if (t < (2 / 2.75)) {
3967             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3968         } else if (t < (2.5 / 2.75)) {
3969             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3970         }
3971         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3972     },
3973
3974
3975     bounceBoth: function (t, b, c, d) {
3976         if (t < d / 2) {
3977             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3978         }
3979         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3980     }
3981 };/*
3982  * Portions of this file are based on pieces of Yahoo User Interface Library
3983  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3984  * YUI licensed under the BSD License:
3985  * http://developer.yahoo.net/yui/license.txt
3986  * <script type="text/javascript">
3987  *
3988  */
3989     (function() {
3990         Roo.lib.Motion = function(el, attributes, duration, method) {
3991             if (el) {
3992                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3993             }
3994         };
3995
3996         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3997
3998
3999         var Y = Roo.lib;
4000         var superclass = Y.Motion.superclass;
4001         var proto = Y.Motion.prototype;
4002
4003         proto.toString = function() {
4004             var el = this.getEl();
4005             var id = el.id || el.tagName;
4006             return ("Motion " + id);
4007         };
4008
4009         proto.patterns.points = /^points$/i;
4010
4011         proto.setAttribute = function(attr, val, unit) {
4012             if (this.patterns.points.test(attr)) {
4013                 unit = unit || 'px';
4014                 superclass.setAttribute.call(this, 'left', val[0], unit);
4015                 superclass.setAttribute.call(this, 'top', val[1], unit);
4016             } else {
4017                 superclass.setAttribute.call(this, attr, val, unit);
4018             }
4019         };
4020
4021         proto.getAttribute = function(attr) {
4022             if (this.patterns.points.test(attr)) {
4023                 var val = [
4024                         superclass.getAttribute.call(this, 'left'),
4025                         superclass.getAttribute.call(this, 'top')
4026                         ];
4027             } else {
4028                 val = superclass.getAttribute.call(this, attr);
4029             }
4030
4031             return val;
4032         };
4033
4034         proto.doMethod = function(attr, start, end) {
4035             var val = null;
4036
4037             if (this.patterns.points.test(attr)) {
4038                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
4039                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4040             } else {
4041                 val = superclass.doMethod.call(this, attr, start, end);
4042             }
4043             return val;
4044         };
4045
4046         proto.setRuntimeAttribute = function(attr) {
4047             if (this.patterns.points.test(attr)) {
4048                 var el = this.getEl();
4049                 var attributes = this.attributes;
4050                 var start;
4051                 var control = attributes['points']['control'] || [];
4052                 var end;
4053                 var i, len;
4054
4055                 if (control.length > 0 && !(control[0] instanceof Array)) {
4056                     control = [control];
4057                 } else {
4058                     var tmp = [];
4059                     for (i = 0,len = control.length; i < len; ++i) {
4060                         tmp[i] = control[i];
4061                     }
4062                     control = tmp;
4063                 }
4064
4065                 Roo.fly(el).position();
4066
4067                 if (isset(attributes['points']['from'])) {
4068                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4069                 }
4070                 else {
4071                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4072                 }
4073
4074                 start = this.getAttribute('points');
4075
4076
4077                 if (isset(attributes['points']['to'])) {
4078                     end = translateValues.call(this, attributes['points']['to'], start);
4079
4080                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4081                     for (i = 0,len = control.length; i < len; ++i) {
4082                         control[i] = translateValues.call(this, control[i], start);
4083                     }
4084
4085
4086                 } else if (isset(attributes['points']['by'])) {
4087                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4088
4089                     for (i = 0,len = control.length; i < len; ++i) {
4090                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4091                     }
4092                 }
4093
4094                 this.runtimeAttributes[attr] = [start];
4095
4096                 if (control.length > 0) {
4097                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4098                 }
4099
4100                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4101             }
4102             else {
4103                 superclass.setRuntimeAttribute.call(this, attr);
4104             }
4105         };
4106
4107         var translateValues = function(val, start) {
4108             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4109             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4110
4111             return val;
4112         };
4113
4114         var isset = function(prop) {
4115             return (typeof prop !== 'undefined');
4116         };
4117     })();
4118 /*
4119  * Portions of this file are based on pieces of Yahoo User Interface Library
4120  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4121  * YUI licensed under the BSD License:
4122  * http://developer.yahoo.net/yui/license.txt
4123  * <script type="text/javascript">
4124  *
4125  */
4126     (function() {
4127         Roo.lib.Scroll = function(el, attributes, duration, method) {
4128             if (el) {
4129                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4130             }
4131         };
4132
4133         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4134
4135
4136         var Y = Roo.lib;
4137         var superclass = Y.Scroll.superclass;
4138         var proto = Y.Scroll.prototype;
4139
4140         proto.toString = function() {
4141             var el = this.getEl();
4142             var id = el.id || el.tagName;
4143             return ("Scroll " + id);
4144         };
4145
4146         proto.doMethod = function(attr, start, end) {
4147             var val = null;
4148
4149             if (attr == 'scroll') {
4150                 val = [
4151                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4152                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4153                         ];
4154
4155             } else {
4156                 val = superclass.doMethod.call(this, attr, start, end);
4157             }
4158             return val;
4159         };
4160
4161         proto.getAttribute = function(attr) {
4162             var val = null;
4163             var el = this.getEl();
4164
4165             if (attr == 'scroll') {
4166                 val = [ el.scrollLeft, el.scrollTop ];
4167             } else {
4168                 val = superclass.getAttribute.call(this, attr);
4169             }
4170
4171             return val;
4172         };
4173
4174         proto.setAttribute = function(attr, val, unit) {
4175             var el = this.getEl();
4176
4177             if (attr == 'scroll') {
4178                 el.scrollLeft = val[0];
4179                 el.scrollTop = val[1];
4180             } else {
4181                 superclass.setAttribute.call(this, attr, val, unit);
4182             }
4183         };
4184     })();
4185 /*
4186  * Based on:
4187  * Ext JS Library 1.1.1
4188  * Copyright(c) 2006-2007, Ext JS, LLC.
4189  *
4190  * Originally Released Under LGPL - original licence link has changed is not relivant.
4191  *
4192  * Fork - LGPL
4193  * <script type="text/javascript">
4194  */
4195
4196
4197 // nasty IE9 hack - what a pile of crap that is..
4198
4199  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4200     Range.prototype.createContextualFragment = function (html) {
4201         var doc = window.document;
4202         var container = doc.createElement("div");
4203         container.innerHTML = html;
4204         var frag = doc.createDocumentFragment(), n;
4205         while ((n = container.firstChild)) {
4206             frag.appendChild(n);
4207         }
4208         return frag;
4209     };
4210 }
4211
4212 /**
4213  * @class Roo.DomHelper
4214  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4215  * 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>.
4216  * @singleton
4217  */
4218 Roo.DomHelper = function(){
4219     var tempTableEl = null;
4220     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4221     var tableRe = /^table|tbody|tr|td$/i;
4222     var xmlns = {};
4223     // build as innerHTML where available
4224     /** @ignore */
4225     var createHtml = function(o){
4226         if(typeof o == 'string'){
4227             return o;
4228         }
4229         var b = "";
4230         if(!o.tag){
4231             o.tag = "div";
4232         }
4233         b += "<" + o.tag;
4234         for(var attr in o){
4235             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4236             if(attr == "style"){
4237                 var s = o["style"];
4238                 if(typeof s == "function"){
4239                     s = s.call();
4240                 }
4241                 if(typeof s == "string"){
4242                     b += ' style="' + s + '"';
4243                 }else if(typeof s == "object"){
4244                     b += ' style="';
4245                     for(var key in s){
4246                         if(typeof s[key] != "function"){
4247                             b += key + ":" + s[key] + ";";
4248                         }
4249                     }
4250                     b += '"';
4251                 }
4252             }else{
4253                 if(attr == "cls"){
4254                     b += ' class="' + o["cls"] + '"';
4255                 }else if(attr == "htmlFor"){
4256                     b += ' for="' + o["htmlFor"] + '"';
4257                 }else{
4258                     b += " " + attr + '="' + o[attr] + '"';
4259                 }
4260             }
4261         }
4262         if(emptyTags.test(o.tag)){
4263             b += "/>";
4264         }else{
4265             b += ">";
4266             var cn = o.children || o.cn;
4267             if(cn){
4268                 //http://bugs.kde.org/show_bug.cgi?id=71506
4269                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4270                     for(var i = 0, len = cn.length; i < len; i++) {
4271                         b += createHtml(cn[i], b);
4272                     }
4273                 }else{
4274                     b += createHtml(cn, b);
4275                 }
4276             }
4277             if(o.html){
4278                 b += o.html;
4279             }
4280             b += "</" + o.tag + ">";
4281         }
4282         return b;
4283     };
4284
4285     // build as dom
4286     /** @ignore */
4287     var createDom = function(o, parentNode){
4288          
4289         // defininition craeted..
4290         var ns = false;
4291         if (o.ns && o.ns != 'html') {
4292                
4293             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4294                 xmlns[o.ns] = o.xmlns;
4295                 ns = o.xmlns;
4296             }
4297             if (typeof(xmlns[o.ns]) == 'undefined') {
4298                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4299             }
4300             ns = xmlns[o.ns];
4301         }
4302         
4303         
4304         if (typeof(o) == 'string') {
4305             return parentNode.appendChild(document.createTextNode(o));
4306         }
4307         o.tag = o.tag || div;
4308         if (o.ns && Roo.isIE) {
4309             ns = false;
4310             o.tag = o.ns + ':' + o.tag;
4311             
4312         }
4313         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4314         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4315         for(var attr in o){
4316             
4317             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4318                     attr == "style" || typeof o[attr] == "function") { continue; }
4319                     
4320             if(attr=="cls" && Roo.isIE){
4321                 el.className = o["cls"];
4322             }else{
4323                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4324                 else { 
4325                     el[attr] = o[attr];
4326                 }
4327             }
4328         }
4329         Roo.DomHelper.applyStyles(el, o.style);
4330         var cn = o.children || o.cn;
4331         if(cn){
4332             //http://bugs.kde.org/show_bug.cgi?id=71506
4333              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4334                 for(var i = 0, len = cn.length; i < len; i++) {
4335                     createDom(cn[i], el);
4336                 }
4337             }else{
4338                 createDom(cn, el);
4339             }
4340         }
4341         if(o.html){
4342             el.innerHTML = o.html;
4343         }
4344         if(parentNode){
4345            parentNode.appendChild(el);
4346         }
4347         return el;
4348     };
4349
4350     var ieTable = function(depth, s, h, e){
4351         tempTableEl.innerHTML = [s, h, e].join('');
4352         var i = -1, el = tempTableEl;
4353         while(++i < depth && el.firstChild){
4354             el = el.firstChild;
4355         }
4356         return el;
4357     };
4358
4359     // kill repeat to save bytes
4360     var ts = '<table>',
4361         te = '</table>',
4362         tbs = ts+'<tbody>',
4363         tbe = '</tbody>'+te,
4364         trs = tbs + '<tr>',
4365         tre = '</tr>'+tbe;
4366
4367     /**
4368      * @ignore
4369      * Nasty code for IE's broken table implementation
4370      */
4371     var insertIntoTable = function(tag, where, el, html){
4372         if(!tempTableEl){
4373             tempTableEl = document.createElement('div');
4374         }
4375         var node;
4376         var before = null;
4377         if(tag == 'td'){
4378             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4379                 return;
4380             }
4381             if(where == 'beforebegin'){
4382                 before = el;
4383                 el = el.parentNode;
4384             } else{
4385                 before = el.nextSibling;
4386                 el = el.parentNode;
4387             }
4388             node = ieTable(4, trs, html, tre);
4389         }
4390         else if(tag == 'tr'){
4391             if(where == 'beforebegin'){
4392                 before = el;
4393                 el = el.parentNode;
4394                 node = ieTable(3, tbs, html, tbe);
4395             } else if(where == 'afterend'){
4396                 before = el.nextSibling;
4397                 el = el.parentNode;
4398                 node = ieTable(3, tbs, html, tbe);
4399             } else{ // INTO a TR
4400                 if(where == 'afterbegin'){
4401                     before = el.firstChild;
4402                 }
4403                 node = ieTable(4, trs, html, tre);
4404             }
4405         } else if(tag == 'tbody'){
4406             if(where == 'beforebegin'){
4407                 before = el;
4408                 el = el.parentNode;
4409                 node = ieTable(2, ts, html, te);
4410             } else if(where == 'afterend'){
4411                 before = el.nextSibling;
4412                 el = el.parentNode;
4413                 node = ieTable(2, ts, html, te);
4414             } else{
4415                 if(where == 'afterbegin'){
4416                     before = el.firstChild;
4417                 }
4418                 node = ieTable(3, tbs, html, tbe);
4419             }
4420         } else{ // TABLE
4421             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4422                 return;
4423             }
4424             if(where == 'afterbegin'){
4425                 before = el.firstChild;
4426             }
4427             node = ieTable(2, ts, html, te);
4428         }
4429         el.insertBefore(node, before);
4430         return node;
4431     };
4432
4433     return {
4434     /** True to force the use of DOM instead of html fragments @type Boolean */
4435     useDom : false,
4436
4437     /**
4438      * Returns the markup for the passed Element(s) config
4439      * @param {Object} o The Dom object spec (and children)
4440      * @return {String}
4441      */
4442     markup : function(o){
4443         return createHtml(o);
4444     },
4445
4446     /**
4447      * Applies a style specification to an element
4448      * @param {String/HTMLElement} el The element to apply styles to
4449      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4450      * a function which returns such a specification.
4451      */
4452     applyStyles : function(el, styles){
4453         if(styles){
4454            el = Roo.fly(el);
4455            if(typeof styles == "string"){
4456                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4457                var matches;
4458                while ((matches = re.exec(styles)) != null){
4459                    el.setStyle(matches[1], matches[2]);
4460                }
4461            }else if (typeof styles == "object"){
4462                for (var style in styles){
4463                   el.setStyle(style, styles[style]);
4464                }
4465            }else if (typeof styles == "function"){
4466                 Roo.DomHelper.applyStyles(el, styles.call());
4467            }
4468         }
4469     },
4470
4471     /**
4472      * Inserts an HTML fragment into the Dom
4473      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4474      * @param {HTMLElement} el The context element
4475      * @param {String} html The HTML fragmenet
4476      * @return {HTMLElement} The new node
4477      */
4478     insertHtml : function(where, el, html){
4479         where = where.toLowerCase();
4480         if(el.insertAdjacentHTML){
4481             if(tableRe.test(el.tagName)){
4482                 var rs;
4483                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4484                     return rs;
4485                 }
4486             }
4487             switch(where){
4488                 case "beforebegin":
4489                     el.insertAdjacentHTML('BeforeBegin', html);
4490                     return el.previousSibling;
4491                 case "afterbegin":
4492                     el.insertAdjacentHTML('AfterBegin', html);
4493                     return el.firstChild;
4494                 case "beforeend":
4495                     el.insertAdjacentHTML('BeforeEnd', html);
4496                     return el.lastChild;
4497                 case "afterend":
4498                     el.insertAdjacentHTML('AfterEnd', html);
4499                     return el.nextSibling;
4500             }
4501             throw 'Illegal insertion point -> "' + where + '"';
4502         }
4503         var range = el.ownerDocument.createRange();
4504         var frag;
4505         switch(where){
4506              case "beforebegin":
4507                 range.setStartBefore(el);
4508                 frag = range.createContextualFragment(html);
4509                 el.parentNode.insertBefore(frag, el);
4510                 return el.previousSibling;
4511              case "afterbegin":
4512                 if(el.firstChild){
4513                     range.setStartBefore(el.firstChild);
4514                     frag = range.createContextualFragment(html);
4515                     el.insertBefore(frag, el.firstChild);
4516                     return el.firstChild;
4517                 }else{
4518                     el.innerHTML = html;
4519                     return el.firstChild;
4520                 }
4521             case "beforeend":
4522                 if(el.lastChild){
4523                     range.setStartAfter(el.lastChild);
4524                     frag = range.createContextualFragment(html);
4525                     el.appendChild(frag);
4526                     return el.lastChild;
4527                 }else{
4528                     el.innerHTML = html;
4529                     return el.lastChild;
4530                 }
4531             case "afterend":
4532                 range.setStartAfter(el);
4533                 frag = range.createContextualFragment(html);
4534                 el.parentNode.insertBefore(frag, el.nextSibling);
4535                 return el.nextSibling;
4536             }
4537             throw 'Illegal insertion point -> "' + where + '"';
4538     },
4539
4540     /**
4541      * Creates new Dom element(s) and inserts them before el
4542      * @param {String/HTMLElement/Element} el The context element
4543      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4544      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4545      * @return {HTMLElement/Roo.Element} The new node
4546      */
4547     insertBefore : function(el, o, returnElement){
4548         return this.doInsert(el, o, returnElement, "beforeBegin");
4549     },
4550
4551     /**
4552      * Creates new Dom element(s) and inserts them after el
4553      * @param {String/HTMLElement/Element} el The context element
4554      * @param {Object} o The Dom object spec (and children)
4555      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4556      * @return {HTMLElement/Roo.Element} The new node
4557      */
4558     insertAfter : function(el, o, returnElement){
4559         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4560     },
4561
4562     /**
4563      * Creates new Dom element(s) and inserts them as the first child of el
4564      * @param {String/HTMLElement/Element} el The context element
4565      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4566      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4567      * @return {HTMLElement/Roo.Element} The new node
4568      */
4569     insertFirst : function(el, o, returnElement){
4570         return this.doInsert(el, o, returnElement, "afterBegin");
4571     },
4572
4573     // private
4574     doInsert : function(el, o, returnElement, pos, sibling){
4575         el = Roo.getDom(el);
4576         var newNode;
4577         if(this.useDom || o.ns){
4578             newNode = createDom(o, null);
4579             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4580         }else{
4581             var html = createHtml(o);
4582             newNode = this.insertHtml(pos, el, html);
4583         }
4584         return returnElement ? Roo.get(newNode, true) : newNode;
4585     },
4586
4587     /**
4588      * Creates new Dom element(s) and appends them to el
4589      * @param {String/HTMLElement/Element} el The context element
4590      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4591      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4592      * @return {HTMLElement/Roo.Element} The new node
4593      */
4594     append : function(el, o, returnElement){
4595         el = Roo.getDom(el);
4596         var newNode;
4597         if(this.useDom || o.ns){
4598             newNode = createDom(o, null);
4599             el.appendChild(newNode);
4600         }else{
4601             var html = createHtml(o);
4602             newNode = this.insertHtml("beforeEnd", el, html);
4603         }
4604         return returnElement ? Roo.get(newNode, true) : newNode;
4605     },
4606
4607     /**
4608      * Creates new Dom element(s) and overwrites the contents of el with them
4609      * @param {String/HTMLElement/Element} el The context element
4610      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4611      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4612      * @return {HTMLElement/Roo.Element} The new node
4613      */
4614     overwrite : function(el, o, returnElement){
4615         el = Roo.getDom(el);
4616         if (o.ns) {
4617           
4618             while (el.childNodes.length) {
4619                 el.removeChild(el.firstChild);
4620             }
4621             createDom(o, el);
4622         } else {
4623             el.innerHTML = createHtml(o);   
4624         }
4625         
4626         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4627     },
4628
4629     /**
4630      * Creates a new Roo.DomHelper.Template from the Dom object spec
4631      * @param {Object} o The Dom object spec (and children)
4632      * @return {Roo.DomHelper.Template} The new template
4633      */
4634     createTemplate : function(o){
4635         var html = createHtml(o);
4636         return new Roo.Template(html);
4637     }
4638     };
4639 }();
4640 /*
4641  * Based on:
4642  * Ext JS Library 1.1.1
4643  * Copyright(c) 2006-2007, Ext JS, LLC.
4644  *
4645  * Originally Released Under LGPL - original licence link has changed is not relivant.
4646  *
4647  * Fork - LGPL
4648  * <script type="text/javascript">
4649  */
4650  
4651 /**
4652 * @class Roo.Template
4653 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4654 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4655 * Usage:
4656 <pre><code>
4657 var t = new Roo.Template({
4658     html :  '&lt;div name="{id}"&gt;' + 
4659         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4660         '&lt;/div&gt;',
4661     myformat: function (value, allValues) {
4662         return 'XX' + value;
4663     }
4664 });
4665 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4666 </code></pre>
4667 * For more information see this blog post with examples:
4668 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4669      - Create Elements using DOM, HTML fragments and Templates</a>. 
4670 * @constructor
4671 * @param {Object} cfg - Configuration object.
4672 */
4673 Roo.Template = function(cfg){
4674     // BC!
4675     if(cfg instanceof Array){
4676         cfg = cfg.join("");
4677     }else if(arguments.length > 1){
4678         cfg = Array.prototype.join.call(arguments, "");
4679     }
4680     
4681     
4682     if (typeof(cfg) == 'object') {
4683         Roo.apply(this,cfg)
4684     } else {
4685         // bc
4686         this.html = cfg;
4687     }
4688     if (this.url) {
4689         this.load();
4690     }
4691     
4692 };
4693 Roo.Template.prototype = {
4694     
4695     /**
4696      * @cfg {Function} onLoad Called after the template has been loaded and complied (usually from a remove source)
4697      */
4698     onLoad : false,
4699     
4700     
4701     /**
4702      * @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..
4703      *                    it should be fixed so that template is observable...
4704      */
4705     url : false,
4706     /**
4707      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4708      */
4709     html : '',
4710     
4711     
4712     compiled : false,
4713     loaded : false,
4714     /**
4715      * Returns an HTML fragment of this template with the specified values applied.
4716      * @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'})
4717      * @return {String} The HTML fragment
4718      */
4719     
4720    
4721     
4722     applyTemplate : function(values){
4723         //Roo.log(["applyTemplate", values]);
4724         try {
4725            
4726             if(this.compiled){
4727                 return this.compiled(values);
4728             }
4729             var useF = this.disableFormats !== true;
4730             var fm = Roo.util.Format, tpl = this;
4731             var fn = function(m, name, format, args){
4732                 if(format && useF){
4733                     if(format.substr(0, 5) == "this."){
4734                         return tpl.call(format.substr(5), values[name], values);
4735                     }else{
4736                         if(args){
4737                             // quoted values are required for strings in compiled templates, 
4738                             // but for non compiled we need to strip them
4739                             // quoted reversed for jsmin
4740                             var re = /^\s*['"](.*)["']\s*$/;
4741                             args = args.split(',');
4742                             for(var i = 0, len = args.length; i < len; i++){
4743                                 args[i] = args[i].replace(re, "$1");
4744                             }
4745                             args = [values[name]].concat(args);
4746                         }else{
4747                             args = [values[name]];
4748                         }
4749                         return fm[format].apply(fm, args);
4750                     }
4751                 }else{
4752                     return values[name] !== undefined ? values[name] : "";
4753                 }
4754             };
4755             return this.html.replace(this.re, fn);
4756         } catch (e) {
4757             Roo.log(e);
4758             throw e;
4759         }
4760          
4761     },
4762     
4763     loading : false,
4764       
4765     load : function ()
4766     {
4767          
4768         if (this.loading) {
4769             return;
4770         }
4771         var _t = this;
4772         
4773         this.loading = true;
4774         this.compiled = false;
4775         
4776         var cx = new Roo.data.Connection();
4777         cx.request({
4778             url : this.url,
4779             method : 'GET',
4780             success : function (response) {
4781                 _t.loading = false;
4782                 _t.url = false;
4783                 
4784                 _t.set(response.responseText,true);
4785                 _t.loaded = true;
4786                 if (_t.onLoad) {
4787                     _t.onLoad();
4788                 }
4789              },
4790             failure : function(response) {
4791                 Roo.log("Template failed to load from " + _t.url);
4792                 _t.loading = false;
4793             }
4794         });
4795     },
4796
4797     /**
4798      * Sets the HTML used as the template and optionally compiles it.
4799      * @param {String} html
4800      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4801      * @return {Roo.Template} this
4802      */
4803     set : function(html, compile){
4804         this.html = html;
4805         this.compiled = false;
4806         if(compile){
4807             this.compile();
4808         }
4809         return this;
4810     },
4811     
4812     /**
4813      * True to disable format functions (defaults to false)
4814      * @type Boolean
4815      */
4816     disableFormats : false,
4817     
4818     /**
4819     * The regular expression used to match template variables 
4820     * @type RegExp
4821     * @property 
4822     */
4823     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4824     
4825     /**
4826      * Compiles the template into an internal function, eliminating the RegEx overhead.
4827      * @return {Roo.Template} this
4828      */
4829     compile : function(){
4830         var fm = Roo.util.Format;
4831         var useF = this.disableFormats !== true;
4832         var sep = Roo.isGecko ? "+" : ",";
4833         var fn = function(m, name, format, args){
4834             if(format && useF){
4835                 args = args ? ',' + args : "";
4836                 if(format.substr(0, 5) != "this."){
4837                     format = "fm." + format + '(';
4838                 }else{
4839                     format = 'this.call("'+ format.substr(5) + '", ';
4840                     args = ", values";
4841                 }
4842             }else{
4843                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4844             }
4845             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4846         };
4847         var body;
4848         // branched to use + in gecko and [].join() in others
4849         if(Roo.isGecko){
4850             body = "this.compiled = function(values){ return '" +
4851                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4852                     "';};";
4853         }else{
4854             body = ["this.compiled = function(values){ return ['"];
4855             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4856             body.push("'].join('');};");
4857             body = body.join('');
4858         }
4859         /**
4860          * eval:var:values
4861          * eval:var:fm
4862          */
4863         eval(body);
4864         return this;
4865     },
4866     
4867     // private function used to call members
4868     call : function(fnName, value, allValues){
4869         return this[fnName](value, allValues);
4870     },
4871     
4872     /**
4873      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4874      * @param {String/HTMLElement/Roo.Element} el The context element
4875      * @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'})
4876      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4877      * @return {HTMLElement/Roo.Element} The new node or Element
4878      */
4879     insertFirst: function(el, values, returnElement){
4880         return this.doInsert('afterBegin', el, values, returnElement);
4881     },
4882
4883     /**
4884      * Applies the supplied values to the template and inserts the new node(s) before el.
4885      * @param {String/HTMLElement/Roo.Element} el The context element
4886      * @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'})
4887      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4888      * @return {HTMLElement/Roo.Element} The new node or Element
4889      */
4890     insertBefore: function(el, values, returnElement){
4891         return this.doInsert('beforeBegin', el, values, returnElement);
4892     },
4893
4894     /**
4895      * Applies the supplied values to the template and inserts the new node(s) after el.
4896      * @param {String/HTMLElement/Roo.Element} el The context element
4897      * @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'})
4898      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4899      * @return {HTMLElement/Roo.Element} The new node or Element
4900      */
4901     insertAfter : function(el, values, returnElement){
4902         return this.doInsert('afterEnd', el, values, returnElement);
4903     },
4904     
4905     /**
4906      * Applies the supplied values to the template and appends the new node(s) to el.
4907      * @param {String/HTMLElement/Roo.Element} el The context element
4908      * @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'})
4909      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4910      * @return {HTMLElement/Roo.Element} The new node or Element
4911      */
4912     append : function(el, values, returnElement){
4913         return this.doInsert('beforeEnd', el, values, returnElement);
4914     },
4915
4916     doInsert : function(where, el, values, returnEl){
4917         el = Roo.getDom(el);
4918         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4919         return returnEl ? Roo.get(newNode, true) : newNode;
4920     },
4921
4922     /**
4923      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4924      * @param {String/HTMLElement/Roo.Element} el The context element
4925      * @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'})
4926      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4927      * @return {HTMLElement/Roo.Element} The new node or Element
4928      */
4929     overwrite : function(el, values, returnElement){
4930         el = Roo.getDom(el);
4931         el.innerHTML = this.applyTemplate(values);
4932         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4933     }
4934 };
4935 /**
4936  * Alias for {@link #applyTemplate}
4937  * @method
4938  */
4939 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4940
4941 // backwards compat
4942 Roo.DomHelper.Template = Roo.Template;
4943
4944 /**
4945  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4946  * @param {String/HTMLElement} el A DOM element or its id
4947  * @returns {Roo.Template} The created template
4948  * @static
4949  */
4950 Roo.Template.from = function(el){
4951     el = Roo.getDom(el);
4952     return new Roo.Template(el.value || el.innerHTML);
4953 };/*
4954  * Based on:
4955  * Ext JS Library 1.1.1
4956  * Copyright(c) 2006-2007, Ext JS, LLC.
4957  *
4958  * Originally Released Under LGPL - original licence link has changed is not relivant.
4959  *
4960  * Fork - LGPL
4961  * <script type="text/javascript">
4962  */
4963  
4964
4965 /*
4966  * This is code is also distributed under MIT license for use
4967  * with jQuery and prototype JavaScript libraries.
4968  */
4969 /**
4970  * @class Roo.DomQuery
4971 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).
4972 <p>
4973 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>
4974
4975 <p>
4976 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.
4977 </p>
4978 <h4>Element Selectors:</h4>
4979 <ul class="list">
4980     <li> <b>*</b> any element</li>
4981     <li> <b>E</b> an element with the tag E</li>
4982     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4983     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4984     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4985     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4986 </ul>
4987 <h4>Attribute Selectors:</h4>
4988 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4989 <ul class="list">
4990     <li> <b>E[foo]</b> has an attribute "foo"</li>
4991     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4992     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4993     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4994     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4995     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4996     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4997 </ul>
4998 <h4>Pseudo Classes:</h4>
4999 <ul class="list">
5000     <li> <b>E:first-child</b> E is the first child of its parent</li>
5001     <li> <b>E:last-child</b> E is the last child of its parent</li>
5002     <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>
5003     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
5004     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
5005     <li> <b>E:only-child</b> E is the only child of its parent</li>
5006     <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>
5007     <li> <b>E:first</b> the first E in the resultset</li>
5008     <li> <b>E:last</b> the last E in the resultset</li>
5009     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
5010     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
5011     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
5012     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
5013     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
5014     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
5015     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
5016     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
5017     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
5018 </ul>
5019 <h4>CSS Value Selectors:</h4>
5020 <ul class="list">
5021     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
5022     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
5023     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
5024     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
5025     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
5026     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
5027 </ul>
5028  * @singleton
5029  */
5030 Roo.DomQuery = function(){
5031     var cache = {}, simpleCache = {}, valueCache = {};
5032     var nonSpace = /\S/;
5033     var trimRe = /^\s+|\s+$/g;
5034     var tplRe = /\{(\d+)\}/g;
5035     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
5036     var tagTokenRe = /^(#)?([\w-\*]+)/;
5037     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
5038
5039     function child(p, index){
5040         var i = 0;
5041         var n = p.firstChild;
5042         while(n){
5043             if(n.nodeType == 1){
5044                if(++i == index){
5045                    return n;
5046                }
5047             }
5048             n = n.nextSibling;
5049         }
5050         return null;
5051     };
5052
5053     function next(n){
5054         while((n = n.nextSibling) && n.nodeType != 1);
5055         return n;
5056     };
5057
5058     function prev(n){
5059         while((n = n.previousSibling) && n.nodeType != 1);
5060         return n;
5061     };
5062
5063     function children(d){
5064         var n = d.firstChild, ni = -1;
5065             while(n){
5066                 var nx = n.nextSibling;
5067                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
5068                     d.removeChild(n);
5069                 }else{
5070                     n.nodeIndex = ++ni;
5071                 }
5072                 n = nx;
5073             }
5074             return this;
5075         };
5076
5077     function byClassName(c, a, v){
5078         if(!v){
5079             return c;
5080         }
5081         var r = [], ri = -1, cn;
5082         for(var i = 0, ci; ci = c[i]; i++){
5083             
5084             
5085             if((' '+
5086                 ( (ci instanceof SVGElement) ? ci.className.baseVal : ci.className)
5087                  +' ').indexOf(v) != -1){
5088                 r[++ri] = ci;
5089             }
5090         }
5091         return r;
5092     };
5093
5094     function attrValue(n, attr){
5095         if(!n.tagName && typeof n.length != "undefined"){
5096             n = n[0];
5097         }
5098         if(!n){
5099             return null;
5100         }
5101         if(attr == "for"){
5102             return n.htmlFor;
5103         }
5104         if(attr == "class" || attr == "className"){
5105             return (n instanceof SVGElement) ? n.className.baseVal : n.className;
5106         }
5107         return n.getAttribute(attr) || n[attr];
5108
5109     };
5110
5111     function getNodes(ns, mode, tagName){
5112         var result = [], ri = -1, cs;
5113         if(!ns){
5114             return result;
5115         }
5116         tagName = tagName || "*";
5117         if(typeof ns.getElementsByTagName != "undefined"){
5118             ns = [ns];
5119         }
5120         if(!mode){
5121             for(var i = 0, ni; ni = ns[i]; i++){
5122                 cs = ni.getElementsByTagName(tagName);
5123                 for(var j = 0, ci; ci = cs[j]; j++){
5124                     result[++ri] = ci;
5125                 }
5126             }
5127         }else if(mode == "/" || mode == ">"){
5128             var utag = tagName.toUpperCase();
5129             for(var i = 0, ni, cn; ni = ns[i]; i++){
5130                 cn = ni.children || ni.childNodes;
5131                 for(var j = 0, cj; cj = cn[j]; j++){
5132                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5133                         result[++ri] = cj;
5134                     }
5135                 }
5136             }
5137         }else if(mode == "+"){
5138             var utag = tagName.toUpperCase();
5139             for(var i = 0, n; n = ns[i]; i++){
5140                 while((n = n.nextSibling) && n.nodeType != 1);
5141                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5142                     result[++ri] = n;
5143                 }
5144             }
5145         }else if(mode == "~"){
5146             for(var i = 0, n; n = ns[i]; i++){
5147                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5148                 if(n){
5149                     result[++ri] = n;
5150                 }
5151             }
5152         }
5153         return result;
5154     };
5155
5156     function concat(a, b){
5157         if(b.slice){
5158             return a.concat(b);
5159         }
5160         for(var i = 0, l = b.length; i < l; i++){
5161             a[a.length] = b[i];
5162         }
5163         return a;
5164     }
5165
5166     function byTag(cs, tagName){
5167         if(cs.tagName || cs == document){
5168             cs = [cs];
5169         }
5170         if(!tagName){
5171             return cs;
5172         }
5173         var r = [], ri = -1;
5174         tagName = tagName.toLowerCase();
5175         for(var i = 0, ci; ci = cs[i]; i++){
5176             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5177                 r[++ri] = ci;
5178             }
5179         }
5180         return r;
5181     };
5182
5183     function byId(cs, attr, id){
5184         if(cs.tagName || cs == document){
5185             cs = [cs];
5186         }
5187         if(!id){
5188             return cs;
5189         }
5190         var r = [], ri = -1;
5191         for(var i = 0,ci; ci = cs[i]; i++){
5192             if(ci && ci.id == id){
5193                 r[++ri] = ci;
5194                 return r;
5195             }
5196         }
5197         return r;
5198     };
5199
5200     function byAttribute(cs, attr, value, op, custom){
5201         var r = [], ri = -1, st = custom=="{";
5202         var f = Roo.DomQuery.operators[op];
5203         for(var i = 0, ci; ci = cs[i]; i++){
5204             var a;
5205             if(st){
5206                 a = Roo.DomQuery.getStyle(ci, attr);
5207             }
5208             else if(attr == "class" || attr == "className"){
5209                 a = (ci instanceof SVGElement) ? ci.className.baseVal : ci.className;
5210             }else if(attr == "for"){
5211                 a = ci.htmlFor;
5212             }else if(attr == "href"){
5213                 a = ci.getAttribute("href", 2);
5214             }else{
5215                 a = ci.getAttribute(attr);
5216             }
5217             if((f && f(a, value)) || (!f && a)){
5218                 r[++ri] = ci;
5219             }
5220         }
5221         return r;
5222     };
5223
5224     function byPseudo(cs, name, value){
5225         return Roo.DomQuery.pseudos[name](cs, value);
5226     };
5227
5228     // This is for IE MSXML which does not support expandos.
5229     // IE runs the same speed using setAttribute, however FF slows way down
5230     // and Safari completely fails so they need to continue to use expandos.
5231     var isIE = window.ActiveXObject ? true : false;
5232
5233     // this eval is stop the compressor from
5234     // renaming the variable to something shorter
5235     
5236     /** eval:var:batch */
5237     var batch = 30803; 
5238
5239     var key = 30803;
5240
5241     function nodupIEXml(cs){
5242         var d = ++key;
5243         cs[0].setAttribute("_nodup", d);
5244         var r = [cs[0]];
5245         for(var i = 1, len = cs.length; i < len; i++){
5246             var c = cs[i];
5247             if(!c.getAttribute("_nodup") != d){
5248                 c.setAttribute("_nodup", d);
5249                 r[r.length] = c;
5250             }
5251         }
5252         for(var i = 0, len = cs.length; i < len; i++){
5253             cs[i].removeAttribute("_nodup");
5254         }
5255         return r;
5256     }
5257
5258     function nodup(cs){
5259         if(!cs){
5260             return [];
5261         }
5262         var len = cs.length, c, i, r = cs, cj, ri = -1;
5263         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5264             return cs;
5265         }
5266         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5267             return nodupIEXml(cs);
5268         }
5269         var d = ++key;
5270         cs[0]._nodup = d;
5271         for(i = 1; c = cs[i]; i++){
5272             if(c._nodup != d){
5273                 c._nodup = d;
5274             }else{
5275                 r = [];
5276                 for(var j = 0; j < i; j++){
5277                     r[++ri] = cs[j];
5278                 }
5279                 for(j = i+1; cj = cs[j]; j++){
5280                     if(cj._nodup != d){
5281                         cj._nodup = d;
5282                         r[++ri] = cj;
5283                     }
5284                 }
5285                 return r;
5286             }
5287         }
5288         return r;
5289     }
5290
5291     function quickDiffIEXml(c1, c2){
5292         var d = ++key;
5293         for(var i = 0, len = c1.length; i < len; i++){
5294             c1[i].setAttribute("_qdiff", d);
5295         }
5296         var r = [];
5297         for(var i = 0, len = c2.length; i < len; i++){
5298             if(c2[i].getAttribute("_qdiff") != d){
5299                 r[r.length] = c2[i];
5300             }
5301         }
5302         for(var i = 0, len = c1.length; i < len; i++){
5303            c1[i].removeAttribute("_qdiff");
5304         }
5305         return r;
5306     }
5307
5308     function quickDiff(c1, c2){
5309         var len1 = c1.length;
5310         if(!len1){
5311             return c2;
5312         }
5313         if(isIE && c1[0].selectSingleNode){
5314             return quickDiffIEXml(c1, c2);
5315         }
5316         var d = ++key;
5317         for(var i = 0; i < len1; i++){
5318             c1[i]._qdiff = d;
5319         }
5320         var r = [];
5321         for(var i = 0, len = c2.length; i < len; i++){
5322             if(c2[i]._qdiff != d){
5323                 r[r.length] = c2[i];
5324             }
5325         }
5326         return r;
5327     }
5328
5329     function quickId(ns, mode, root, id){
5330         if(ns == root){
5331            var d = root.ownerDocument || root;
5332            return d.getElementById(id);
5333         }
5334         ns = getNodes(ns, mode, "*");
5335         return byId(ns, null, id);
5336     }
5337
5338     return {
5339         getStyle : function(el, name){
5340             return Roo.fly(el).getStyle(name);
5341         },
5342         /**
5343          * Compiles a selector/xpath query into a reusable function. The returned function
5344          * takes one parameter "root" (optional), which is the context node from where the query should start.
5345          * @param {String} selector The selector/xpath query
5346          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5347          * @return {Function}
5348          */
5349         compile : function(path, type){
5350             type = type || "select";
5351             
5352             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5353             var q = path, mode, lq;
5354             var tk = Roo.DomQuery.matchers;
5355             var tklen = tk.length;
5356             var mm;
5357
5358             // accept leading mode switch
5359             var lmode = q.match(modeRe);
5360             if(lmode && lmode[1]){
5361                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5362                 q = q.replace(lmode[1], "");
5363             }
5364             // strip leading slashes
5365             while(path.substr(0, 1)=="/"){
5366                 path = path.substr(1);
5367             }
5368
5369             while(q && lq != q){
5370                 lq = q;
5371                 var tm = q.match(tagTokenRe);
5372                 if(type == "select"){
5373                     if(tm){
5374                         if(tm[1] == "#"){
5375                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5376                         }else{
5377                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5378                         }
5379                         q = q.replace(tm[0], "");
5380                     }else if(q.substr(0, 1) != '@'){
5381                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5382                     }
5383                 }else{
5384                     if(tm){
5385                         if(tm[1] == "#"){
5386                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5387                         }else{
5388                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5389                         }
5390                         q = q.replace(tm[0], "");
5391                     }
5392                 }
5393                 while(!(mm = q.match(modeRe))){
5394                     var matched = false;
5395                     for(var j = 0; j < tklen; j++){
5396                         var t = tk[j];
5397                         var m = q.match(t.re);
5398                         if(m){
5399                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5400                                                     return m[i];
5401                                                 });
5402                             q = q.replace(m[0], "");
5403                             matched = true;
5404                             break;
5405                         }
5406                     }
5407                     // prevent infinite loop on bad selector
5408                     if(!matched){
5409                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5410                     }
5411                 }
5412                 if(mm[1]){
5413                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5414                     q = q.replace(mm[1], "");
5415                 }
5416             }
5417             fn[fn.length] = "return nodup(n);\n}";
5418             
5419              /** 
5420               * list of variables that need from compression as they are used by eval.
5421              *  eval:var:batch 
5422              *  eval:var:nodup
5423              *  eval:var:byTag
5424              *  eval:var:ById
5425              *  eval:var:getNodes
5426              *  eval:var:quickId
5427              *  eval:var:mode
5428              *  eval:var:root
5429              *  eval:var:n
5430              *  eval:var:byClassName
5431              *  eval:var:byPseudo
5432              *  eval:var:byAttribute
5433              *  eval:var:attrValue
5434              * 
5435              **/ 
5436             eval(fn.join(""));
5437             return f;
5438         },
5439
5440         /**
5441          * Selects a group of elements.
5442          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5443          * @param {Node} root (optional) The start of the query (defaults to document).
5444          * @return {Array}
5445          */
5446         select : function(path, root, type){
5447             if(!root || root == document){
5448                 root = document;
5449             }
5450             if(typeof root == "string"){
5451                 root = document.getElementById(root);
5452             }
5453             var paths = path.split(",");
5454             var results = [];
5455             for(var i = 0, len = paths.length; i < len; i++){
5456                 var p = paths[i].replace(trimRe, "");
5457                 if(!cache[p]){
5458                     cache[p] = Roo.DomQuery.compile(p);
5459                     if(!cache[p]){
5460                         throw p + " is not a valid selector";
5461                     }
5462                 }
5463                 var result = cache[p](root);
5464                 if(result && result != document){
5465                     results = results.concat(result);
5466                 }
5467             }
5468             if(paths.length > 1){
5469                 return nodup(results);
5470             }
5471             return results;
5472         },
5473
5474         /**
5475          * Selects a single element.
5476          * @param {String} selector The selector/xpath query
5477          * @param {Node} root (optional) The start of the query (defaults to document).
5478          * @return {Element}
5479          */
5480         selectNode : function(path, root){
5481             return Roo.DomQuery.select(path, root)[0];
5482         },
5483
5484         /**
5485          * Selects the value of a node, optionally replacing null with the defaultValue.
5486          * @param {String} selector The selector/xpath query
5487          * @param {Node} root (optional) The start of the query (defaults to document).
5488          * @param {String} defaultValue
5489          */
5490         selectValue : function(path, root, defaultValue){
5491             path = path.replace(trimRe, "");
5492             if(!valueCache[path]){
5493                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5494             }
5495             var n = valueCache[path](root);
5496             n = n[0] ? n[0] : n;
5497             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5498             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5499         },
5500
5501         /**
5502          * Selects the value of a node, parsing integers and floats.
5503          * @param {String} selector The selector/xpath query
5504          * @param {Node} root (optional) The start of the query (defaults to document).
5505          * @param {Number} defaultValue
5506          * @return {Number}
5507          */
5508         selectNumber : function(path, root, defaultValue){
5509             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5510             return parseFloat(v);
5511         },
5512
5513         /**
5514          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5515          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5516          * @param {String} selector The simple selector to test
5517          * @return {Boolean}
5518          */
5519         is : function(el, ss){
5520             if(typeof el == "string"){
5521                 el = document.getElementById(el);
5522             }
5523             var isArray = (el instanceof Array);
5524             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5525             return isArray ? (result.length == el.length) : (result.length > 0);
5526         },
5527
5528         /**
5529          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5530          * @param {Array} el An array of elements to filter
5531          * @param {String} selector The simple selector to test
5532          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5533          * the selector instead of the ones that match
5534          * @return {Array}
5535          */
5536         filter : function(els, ss, nonMatches){
5537             ss = ss.replace(trimRe, "");
5538             if(!simpleCache[ss]){
5539                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5540             }
5541             var result = simpleCache[ss](els);
5542             return nonMatches ? quickDiff(result, els) : result;
5543         },
5544
5545         /**
5546          * Collection of matching regular expressions and code snippets.
5547          */
5548         matchers : [{
5549                 re: /^\.([\w-]+)/,
5550                 select: 'n = byClassName(n, null, " {1} ");'
5551             }, {
5552                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5553                 select: 'n = byPseudo(n, "{1}", "{2}");'
5554             },{
5555                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5556                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5557             }, {
5558                 re: /^#([\w-]+)/,
5559                 select: 'n = byId(n, null, "{1}");'
5560             },{
5561                 re: /^@([\w-]+)/,
5562                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5563             }
5564         ],
5565
5566         /**
5567          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5568          * 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;.
5569          */
5570         operators : {
5571             "=" : function(a, v){
5572                 return a == v;
5573             },
5574             "!=" : function(a, v){
5575                 return a != v;
5576             },
5577             "^=" : function(a, v){
5578                 return a && a.substr(0, v.length) == v;
5579             },
5580             "$=" : function(a, v){
5581                 return a && a.substr(a.length-v.length) == v;
5582             },
5583             "*=" : function(a, v){
5584                 return a && a.indexOf(v) !== -1;
5585             },
5586             "%=" : function(a, v){
5587                 return (a % v) == 0;
5588             },
5589             "|=" : function(a, v){
5590                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5591             },
5592             "~=" : function(a, v){
5593                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5594             }
5595         },
5596
5597         /**
5598          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5599          * and the argument (if any) supplied in the selector.
5600          */
5601         pseudos : {
5602             "first-child" : function(c){
5603                 var r = [], ri = -1, n;
5604                 for(var i = 0, ci; ci = n = c[i]; i++){
5605                     while((n = n.previousSibling) && n.nodeType != 1);
5606                     if(!n){
5607                         r[++ri] = ci;
5608                     }
5609                 }
5610                 return r;
5611             },
5612
5613             "last-child" : function(c){
5614                 var r = [], ri = -1, n;
5615                 for(var i = 0, ci; ci = n = c[i]; i++){
5616                     while((n = n.nextSibling) && n.nodeType != 1);
5617                     if(!n){
5618                         r[++ri] = ci;
5619                     }
5620                 }
5621                 return r;
5622             },
5623
5624             "nth-child" : function(c, a) {
5625                 var r = [], ri = -1;
5626                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5627                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5628                 for(var i = 0, n; n = c[i]; i++){
5629                     var pn = n.parentNode;
5630                     if (batch != pn._batch) {
5631                         var j = 0;
5632                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5633                             if(cn.nodeType == 1){
5634                                cn.nodeIndex = ++j;
5635                             }
5636                         }
5637                         pn._batch = batch;
5638                     }
5639                     if (f == 1) {
5640                         if (l == 0 || n.nodeIndex == l){
5641                             r[++ri] = n;
5642                         }
5643                     } else if ((n.nodeIndex + l) % f == 0){
5644                         r[++ri] = n;
5645                     }
5646                 }
5647
5648                 return r;
5649             },
5650
5651             "only-child" : function(c){
5652                 var r = [], ri = -1;;
5653                 for(var i = 0, ci; ci = c[i]; i++){
5654                     if(!prev(ci) && !next(ci)){
5655                         r[++ri] = ci;
5656                     }
5657                 }
5658                 return r;
5659             },
5660
5661             "empty" : function(c){
5662                 var r = [], ri = -1;
5663                 for(var i = 0, ci; ci = c[i]; i++){
5664                     var cns = ci.childNodes, j = 0, cn, empty = true;
5665                     while(cn = cns[j]){
5666                         ++j;
5667                         if(cn.nodeType == 1 || cn.nodeType == 3){
5668                             empty = false;
5669                             break;
5670                         }
5671                     }
5672                     if(empty){
5673                         r[++ri] = ci;
5674                     }
5675                 }
5676                 return r;
5677             },
5678
5679             "contains" : function(c, v){
5680                 var r = [], ri = -1;
5681                 for(var i = 0, ci; ci = c[i]; i++){
5682                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5683                         r[++ri] = ci;
5684                     }
5685                 }
5686                 return r;
5687             },
5688
5689             "nodeValue" : function(c, v){
5690                 var r = [], ri = -1;
5691                 for(var i = 0, ci; ci = c[i]; i++){
5692                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5693                         r[++ri] = ci;
5694                     }
5695                 }
5696                 return r;
5697             },
5698
5699             "checked" : function(c){
5700                 var r = [], ri = -1;
5701                 for(var i = 0, ci; ci = c[i]; i++){
5702                     if(ci.checked == true){
5703                         r[++ri] = ci;
5704                     }
5705                 }
5706                 return r;
5707             },
5708
5709             "not" : function(c, ss){
5710                 return Roo.DomQuery.filter(c, ss, true);
5711             },
5712
5713             "odd" : function(c){
5714                 return this["nth-child"](c, "odd");
5715             },
5716
5717             "even" : function(c){
5718                 return this["nth-child"](c, "even");
5719             },
5720
5721             "nth" : function(c, a){
5722                 return c[a-1] || [];
5723             },
5724
5725             "first" : function(c){
5726                 return c[0] || [];
5727             },
5728
5729             "last" : function(c){
5730                 return c[c.length-1] || [];
5731             },
5732
5733             "has" : function(c, ss){
5734                 var s = Roo.DomQuery.select;
5735                 var r = [], ri = -1;
5736                 for(var i = 0, ci; ci = c[i]; i++){
5737                     if(s(ss, ci).length > 0){
5738                         r[++ri] = ci;
5739                     }
5740                 }
5741                 return r;
5742             },
5743
5744             "next" : function(c, ss){
5745                 var is = Roo.DomQuery.is;
5746                 var r = [], ri = -1;
5747                 for(var i = 0, ci; ci = c[i]; i++){
5748                     var n = next(ci);
5749                     if(n && is(n, ss)){
5750                         r[++ri] = ci;
5751                     }
5752                 }
5753                 return r;
5754             },
5755
5756             "prev" : function(c, ss){
5757                 var is = Roo.DomQuery.is;
5758                 var r = [], ri = -1;
5759                 for(var i = 0, ci; ci = c[i]; i++){
5760                     var n = prev(ci);
5761                     if(n && is(n, ss)){
5762                         r[++ri] = ci;
5763                     }
5764                 }
5765                 return r;
5766             }
5767         }
5768     };
5769 }();
5770
5771 /**
5772  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5773  * @param {String} path The selector/xpath query
5774  * @param {Node} root (optional) The start of the query (defaults to document).
5775  * @return {Array}
5776  * @member Roo
5777  * @method query
5778  */
5779 Roo.query = Roo.DomQuery.select;
5780 /*
5781  * Based on:
5782  * Ext JS Library 1.1.1
5783  * Copyright(c) 2006-2007, Ext JS, LLC.
5784  *
5785  * Originally Released Under LGPL - original licence link has changed is not relivant.
5786  *
5787  * Fork - LGPL
5788  * <script type="text/javascript">
5789  */
5790
5791 /**
5792  * @class Roo.util.Observable
5793  * Base class that provides a common interface for publishing events. Subclasses are expected to
5794  * to have a property "events" with all the events defined.<br>
5795  * For example:
5796  * <pre><code>
5797  Employee = function(name){
5798     this.name = name;
5799     this.addEvents({
5800         "fired" : true,
5801         "quit" : true
5802     });
5803  }
5804  Roo.extend(Employee, Roo.util.Observable);
5805 </code></pre>
5806  * @param {Object} config properties to use (incuding events / listeners)
5807  */
5808
5809 Roo.util.Observable = function(cfg){
5810     
5811     cfg = cfg|| {};
5812     this.addEvents(cfg.events || {});
5813     if (cfg.events) {
5814         delete cfg.events; // make sure
5815     }
5816      
5817     Roo.apply(this, cfg);
5818     
5819     if(this.listeners){
5820         this.on(this.listeners);
5821         delete this.listeners;
5822     }
5823 };
5824 Roo.util.Observable.prototype = {
5825     /** 
5826  * @cfg {Object} listeners  list of events and functions to call for this object, 
5827  * For example :
5828  * <pre><code>
5829     listeners :  { 
5830        'click' : function(e) {
5831            ..... 
5832         } ,
5833         .... 
5834     } 
5835   </code></pre>
5836  */
5837     
5838     
5839     /**
5840      * Fires the specified event with the passed parameters (minus the event name).
5841      * @param {String} eventName
5842      * @param {Object...} args Variable number of parameters are passed to handlers
5843      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5844      */
5845     fireEvent : function(){
5846         var ce = this.events[arguments[0].toLowerCase()];
5847         if(typeof ce == "object"){
5848             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5849         }else{
5850             return true;
5851         }
5852     },
5853
5854     // private
5855     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5856
5857     /**
5858      * Appends an event handler to this component
5859      * @param {String}   eventName The type of event to listen for
5860      * @param {Function} handler The method the event invokes
5861      * @param {Object}   scope (optional) The scope in which to execute the handler
5862      * function. The handler function's "this" context.
5863      * @param {Object}   options (optional) An object containing handler configuration
5864      * properties. This may contain any of the following properties:<ul>
5865      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5866      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5867      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5868      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5869      * by the specified number of milliseconds. If the event fires again within that time, the original
5870      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5871      * </ul><br>
5872      * <p>
5873      * <b>Combining Options</b><br>
5874      * Using the options argument, it is possible to combine different types of listeners:<br>
5875      * <br>
5876      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5877                 <pre><code>
5878                 el.on('click', this.onClick, this, {
5879                         single: true,
5880                 delay: 100,
5881                 forumId: 4
5882                 });
5883                 </code></pre>
5884      * <p>
5885      * <b>Attaching multiple handlers in 1 call</b><br>
5886      * The method also allows for a single argument to be passed which is a config object containing properties
5887      * which specify multiple handlers.
5888      * <pre><code>
5889                 el.on({
5890                         'click': {
5891                         fn: this.onClick,
5892                         scope: this,
5893                         delay: 100
5894                 }, 
5895                 'mouseover': {
5896                         fn: this.onMouseOver,
5897                         scope: this
5898                 },
5899                 'mouseout': {
5900                         fn: this.onMouseOut,
5901                         scope: this
5902                 }
5903                 });
5904                 </code></pre>
5905      * <p>
5906      * Or a shorthand syntax which passes the same scope object to all handlers:
5907         <pre><code>
5908                 el.on({
5909                         'click': this.onClick,
5910                 'mouseover': this.onMouseOver,
5911                 'mouseout': this.onMouseOut,
5912                 scope: this
5913                 });
5914                 </code></pre>
5915      */
5916     addListener : function(eventName, fn, scope, o){
5917         if(typeof eventName == "object"){
5918             o = eventName;
5919             for(var e in o){
5920                 if(this.filterOptRe.test(e)){
5921                     continue;
5922                 }
5923                 if(typeof o[e] == "function"){
5924                     // shared options
5925                     this.addListener(e, o[e], o.scope,  o);
5926                 }else{
5927                     // individual options
5928                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5929                 }
5930             }
5931             return;
5932         }
5933         o = (!o || typeof o == "boolean") ? {} : o;
5934         eventName = eventName.toLowerCase();
5935         var ce = this.events[eventName] || true;
5936         if(typeof ce == "boolean"){
5937             ce = new Roo.util.Event(this, eventName);
5938             this.events[eventName] = ce;
5939         }
5940         ce.addListener(fn, scope, o);
5941     },
5942
5943     /**
5944      * Removes a listener
5945      * @param {String}   eventName     The type of event to listen for
5946      * @param {Function} handler        The handler to remove
5947      * @param {Object}   scope  (optional) The scope (this object) for the handler
5948      */
5949     removeListener : function(eventName, fn, scope){
5950         var ce = this.events[eventName.toLowerCase()];
5951         if(typeof ce == "object"){
5952             ce.removeListener(fn, scope);
5953         }
5954     },
5955
5956     /**
5957      * Removes all listeners for this object
5958      */
5959     purgeListeners : function(){
5960         for(var evt in this.events){
5961             if(typeof this.events[evt] == "object"){
5962                  this.events[evt].clearListeners();
5963             }
5964         }
5965     },
5966
5967     relayEvents : function(o, events){
5968         var createHandler = function(ename){
5969             return function(){
5970                  
5971                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5972             };
5973         };
5974         for(var i = 0, len = events.length; i < len; i++){
5975             var ename = events[i];
5976             if(!this.events[ename]){
5977                 this.events[ename] = true;
5978             };
5979             o.on(ename, createHandler(ename), this);
5980         }
5981     },
5982
5983     /**
5984      * Used to define events on this Observable
5985      * @param {Object} object The object with the events defined
5986      */
5987     addEvents : function(o){
5988         if(!this.events){
5989             this.events = {};
5990         }
5991         Roo.applyIf(this.events, o);
5992     },
5993
5994     /**
5995      * Checks to see if this object has any listeners for a specified event
5996      * @param {String} eventName The name of the event to check for
5997      * @return {Boolean} True if the event is being listened for, else false
5998      */
5999     hasListener : function(eventName){
6000         var e = this.events[eventName];
6001         return typeof e == "object" && e.listeners.length > 0;
6002     }
6003 };
6004 /**
6005  * Appends an event handler to this element (shorthand for addListener)
6006  * @param {String}   eventName     The type of event to listen for
6007  * @param {Function} handler        The method the event invokes
6008  * @param {Object}   scope (optional) The scope in which to execute the handler
6009  * function. The handler function's "this" context.
6010  * @param {Object}   options  (optional)
6011  * @method
6012  */
6013 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
6014 /**
6015  * Removes a listener (shorthand for removeListener)
6016  * @param {String}   eventName     The type of event to listen for
6017  * @param {Function} handler        The handler to remove
6018  * @param {Object}   scope  (optional) The scope (this object) for the handler
6019  * @method
6020  */
6021 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
6022
6023 /**
6024  * Starts capture on the specified Observable. All events will be passed
6025  * to the supplied function with the event name + standard signature of the event
6026  * <b>before</b> the event is fired. If the supplied function returns false,
6027  * the event will not fire.
6028  * @param {Observable} o The Observable to capture
6029  * @param {Function} fn The function to call
6030  * @param {Object} scope (optional) The scope (this object) for the fn
6031  * @static
6032  */
6033 Roo.util.Observable.capture = function(o, fn, scope){
6034     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
6035 };
6036
6037 /**
6038  * Removes <b>all</b> added captures from the Observable.
6039  * @param {Observable} o The Observable to release
6040  * @static
6041  */
6042 Roo.util.Observable.releaseCapture = function(o){
6043     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
6044 };
6045
6046 (function(){
6047
6048     var createBuffered = function(h, o, scope){
6049         var task = new Roo.util.DelayedTask();
6050         return function(){
6051             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
6052         };
6053     };
6054
6055     var createSingle = function(h, e, fn, scope){
6056         return function(){
6057             e.removeListener(fn, scope);
6058             return h.apply(scope, arguments);
6059         };
6060     };
6061
6062     var createDelayed = function(h, o, scope){
6063         return function(){
6064             var args = Array.prototype.slice.call(arguments, 0);
6065             setTimeout(function(){
6066                 h.apply(scope, args);
6067             }, o.delay || 10);
6068         };
6069     };
6070
6071     Roo.util.Event = function(obj, name){
6072         this.name = name;
6073         this.obj = obj;
6074         this.listeners = [];
6075     };
6076
6077     Roo.util.Event.prototype = {
6078         addListener : function(fn, scope, options){
6079             var o = options || {};
6080             scope = scope || this.obj;
6081             if(!this.isListening(fn, scope)){
6082                 var l = {fn: fn, scope: scope, options: o};
6083                 var h = fn;
6084                 if(o.delay){
6085                     h = createDelayed(h, o, scope);
6086                 }
6087                 if(o.single){
6088                     h = createSingle(h, this, fn, scope);
6089                 }
6090                 if(o.buffer){
6091                     h = createBuffered(h, o, scope);
6092                 }
6093                 l.fireFn = h;
6094                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6095                     this.listeners.push(l);
6096                 }else{
6097                     this.listeners = this.listeners.slice(0);
6098                     this.listeners.push(l);
6099                 }
6100             }
6101         },
6102
6103         findListener : function(fn, scope){
6104             scope = scope || this.obj;
6105             var ls = this.listeners;
6106             for(var i = 0, len = ls.length; i < len; i++){
6107                 var l = ls[i];
6108                 if(l.fn == fn && l.scope == scope){
6109                     return i;
6110                 }
6111             }
6112             return -1;
6113         },
6114
6115         isListening : function(fn, scope){
6116             return this.findListener(fn, scope) != -1;
6117         },
6118
6119         removeListener : function(fn, scope){
6120             var index;
6121             if((index = this.findListener(fn, scope)) != -1){
6122                 if(!this.firing){
6123                     this.listeners.splice(index, 1);
6124                 }else{
6125                     this.listeners = this.listeners.slice(0);
6126                     this.listeners.splice(index, 1);
6127                 }
6128                 return true;
6129             }
6130             return false;
6131         },
6132
6133         clearListeners : function(){
6134             this.listeners = [];
6135         },
6136
6137         fire : function(){
6138             var ls = this.listeners, scope, len = ls.length;
6139             if(len > 0){
6140                 this.firing = true;
6141                 var args = Array.prototype.slice.call(arguments, 0);                
6142                 for(var i = 0; i < len; i++){
6143                     var l = ls[i];
6144                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6145                         this.firing = false;
6146                         return false;
6147                     }
6148                 }
6149                 this.firing = false;
6150             }
6151             return true;
6152         }
6153     };
6154 })();/*
6155  * RooJS Library 
6156  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6157  *
6158  * Licence LGPL 
6159  *
6160  */
6161  
6162 /**
6163  * @class Roo.Document
6164  * @extends Roo.util.Observable
6165  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6166  * 
6167  * @param {Object} config the methods and properties of the 'base' class for the application.
6168  * 
6169  *  Generic Page handler - implement this to start your app..
6170  * 
6171  * eg.
6172  *  MyProject = new Roo.Document({
6173         events : {
6174             'load' : true // your events..
6175         },
6176         listeners : {
6177             'ready' : function() {
6178                 // fired on Roo.onReady()
6179             }
6180         }
6181  * 
6182  */
6183 Roo.Document = function(cfg) {
6184      
6185     this.addEvents({ 
6186         'ready' : true
6187     });
6188     Roo.util.Observable.call(this,cfg);
6189     
6190     var _this = this;
6191     
6192     Roo.onReady(function() {
6193         _this.fireEvent('ready');
6194     },null,false);
6195     
6196     
6197 }
6198
6199 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6200  * Based on:
6201  * Ext JS Library 1.1.1
6202  * Copyright(c) 2006-2007, Ext JS, LLC.
6203  *
6204  * Originally Released Under LGPL - original licence link has changed is not relivant.
6205  *
6206  * Fork - LGPL
6207  * <script type="text/javascript">
6208  */
6209
6210 /**
6211  * @class Roo.EventManager
6212  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6213  * several useful events directly.
6214  * See {@link Roo.EventObject} for more details on normalized event objects.
6215  * @singleton
6216  */
6217 Roo.EventManager = function(){
6218     var docReadyEvent, docReadyProcId, docReadyState = false;
6219     var resizeEvent, resizeTask, textEvent, textSize;
6220     var E = Roo.lib.Event;
6221     var D = Roo.lib.Dom;
6222
6223     
6224     
6225
6226     var fireDocReady = function(){
6227         if(!docReadyState){
6228             docReadyState = true;
6229             Roo.isReady = true;
6230             if(docReadyProcId){
6231                 clearInterval(docReadyProcId);
6232             }
6233             if(Roo.isGecko || Roo.isOpera) {
6234                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6235             }
6236             if(Roo.isIE){
6237                 var defer = document.getElementById("ie-deferred-loader");
6238                 if(defer){
6239                     defer.onreadystatechange = null;
6240                     defer.parentNode.removeChild(defer);
6241                 }
6242             }
6243             if(docReadyEvent){
6244                 docReadyEvent.fire();
6245                 docReadyEvent.clearListeners();
6246             }
6247         }
6248     };
6249     
6250     var initDocReady = function(){
6251         docReadyEvent = new Roo.util.Event();
6252         if(Roo.isGecko || Roo.isOpera) {
6253             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6254         }else if(Roo.isIE){
6255             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6256             var defer = document.getElementById("ie-deferred-loader");
6257             defer.onreadystatechange = function(){
6258                 if(this.readyState == "complete"){
6259                     fireDocReady();
6260                 }
6261             };
6262         }else if(Roo.isSafari){ 
6263             docReadyProcId = setInterval(function(){
6264                 var rs = document.readyState;
6265                 if(rs == "complete") {
6266                     fireDocReady();     
6267                  }
6268             }, 10);
6269         }
6270         // no matter what, make sure it fires on load
6271         E.on(window, "load", fireDocReady);
6272     };
6273
6274     var createBuffered = function(h, o){
6275         var task = new Roo.util.DelayedTask(h);
6276         return function(e){
6277             // create new event object impl so new events don't wipe out properties
6278             e = new Roo.EventObjectImpl(e);
6279             task.delay(o.buffer, h, null, [e]);
6280         };
6281     };
6282
6283     var createSingle = function(h, el, ename, fn){
6284         return function(e){
6285             Roo.EventManager.removeListener(el, ename, fn);
6286             h(e);
6287         };
6288     };
6289
6290     var createDelayed = function(h, o){
6291         return function(e){
6292             // create new event object impl so new events don't wipe out properties
6293             e = new Roo.EventObjectImpl(e);
6294             setTimeout(function(){
6295                 h(e);
6296             }, o.delay || 10);
6297         };
6298     };
6299     var transitionEndVal = false;
6300     
6301     var transitionEnd = function()
6302     {
6303         if (transitionEndVal) {
6304             return transitionEndVal;
6305         }
6306         var el = document.createElement('div');
6307
6308         var transEndEventNames = {
6309             WebkitTransition : 'webkitTransitionEnd',
6310             MozTransition    : 'transitionend',
6311             OTransition      : 'oTransitionEnd otransitionend',
6312             transition       : 'transitionend'
6313         };
6314     
6315         for (var name in transEndEventNames) {
6316             if (el.style[name] !== undefined) {
6317                 transitionEndVal = transEndEventNames[name];
6318                 return  transitionEndVal ;
6319             }
6320         }
6321     }
6322     
6323   
6324
6325     var listen = function(element, ename, opt, fn, scope)
6326     {
6327         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6328         fn = fn || o.fn; scope = scope || o.scope;
6329         var el = Roo.getDom(element);
6330         
6331         
6332         if(!el){
6333             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6334         }
6335         
6336         if (ename == 'transitionend') {
6337             ename = transitionEnd();
6338         }
6339         var h = function(e){
6340             e = Roo.EventObject.setEvent(e);
6341             var t;
6342             if(o.delegate){
6343                 t = e.getTarget(o.delegate, el);
6344                 if(!t){
6345                     return;
6346                 }
6347             }else{
6348                 t = e.target;
6349             }
6350             if(o.stopEvent === true){
6351                 e.stopEvent();
6352             }
6353             if(o.preventDefault === true){
6354                e.preventDefault();
6355             }
6356             if(o.stopPropagation === true){
6357                 e.stopPropagation();
6358             }
6359
6360             if(o.normalized === false){
6361                 e = e.browserEvent;
6362             }
6363
6364             fn.call(scope || el, e, t, o);
6365         };
6366         if(o.delay){
6367             h = createDelayed(h, o);
6368         }
6369         if(o.single){
6370             h = createSingle(h, el, ename, fn);
6371         }
6372         if(o.buffer){
6373             h = createBuffered(h, o);
6374         }
6375         
6376         fn._handlers = fn._handlers || [];
6377         
6378         
6379         fn._handlers.push([Roo.id(el), ename, h]);
6380         
6381         
6382          
6383         E.on(el, ename, h); // this adds the actuall listener to the object..
6384         
6385         
6386         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6387             el.addEventListener("DOMMouseScroll", h, false);
6388             E.on(window, 'unload', function(){
6389                 el.removeEventListener("DOMMouseScroll", h, false);
6390             });
6391         }
6392         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6393             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6394         }
6395         return h;
6396     };
6397
6398     var stopListening = function(el, ename, fn){
6399         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6400         if(hds){
6401             for(var i = 0, len = hds.length; i < len; i++){
6402                 var h = hds[i];
6403                 if(h[0] == id && h[1] == ename){
6404                     hd = h[2];
6405                     hds.splice(i, 1);
6406                     break;
6407                 }
6408             }
6409         }
6410         E.un(el, ename, hd);
6411         el = Roo.getDom(el);
6412         if(ename == "mousewheel" && el.addEventListener){
6413             el.removeEventListener("DOMMouseScroll", hd, false);
6414         }
6415         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6416             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6417         }
6418     };
6419
6420     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6421     
6422     var pub = {
6423         
6424         
6425         /** 
6426          * Fix for doc tools
6427          * @scope Roo.EventManager
6428          */
6429         
6430         
6431         /** 
6432          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6433          * object with a Roo.EventObject
6434          * @param {Function} fn        The method the event invokes
6435          * @param {Object}   scope    An object that becomes the scope of the handler
6436          * @param {boolean}  override If true, the obj passed in becomes
6437          *                             the execution scope of the listener
6438          * @return {Function} The wrapped function
6439          * @deprecated
6440          */
6441         wrap : function(fn, scope, override){
6442             return function(e){
6443                 Roo.EventObject.setEvent(e);
6444                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6445             };
6446         },
6447         
6448         /**
6449      * Appends an event handler to an element (shorthand for addListener)
6450      * @param {String/HTMLElement}   element        The html element or id to assign the
6451      * @param {String}   eventName The type of event to listen for
6452      * @param {Function} handler The method the event invokes
6453      * @param {Object}   scope (optional) The scope in which to execute the handler
6454      * function. The handler function's "this" context.
6455      * @param {Object}   options (optional) An object containing handler configuration
6456      * properties. This may contain any of the following properties:<ul>
6457      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6458      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6459      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6460      * <li>preventDefault {Boolean} True to prevent the default action</li>
6461      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6462      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6463      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6464      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6465      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6466      * by the specified number of milliseconds. If the event fires again within that time, the original
6467      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6468      * </ul><br>
6469      * <p>
6470      * <b>Combining Options</b><br>
6471      * Using the options argument, it is possible to combine different types of listeners:<br>
6472      * <br>
6473      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6474      * Code:<pre><code>
6475 el.on('click', this.onClick, this, {
6476     single: true,
6477     delay: 100,
6478     stopEvent : true,
6479     forumId: 4
6480 });</code></pre>
6481      * <p>
6482      * <b>Attaching multiple handlers in 1 call</b><br>
6483       * The method also allows for a single argument to be passed which is a config object containing properties
6484      * which specify multiple handlers.
6485      * <p>
6486      * Code:<pre><code>
6487 el.on({
6488     'click' : {
6489         fn: this.onClick
6490         scope: this,
6491         delay: 100
6492     },
6493     'mouseover' : {
6494         fn: this.onMouseOver
6495         scope: this
6496     },
6497     'mouseout' : {
6498         fn: this.onMouseOut
6499         scope: this
6500     }
6501 });</code></pre>
6502      * <p>
6503      * Or a shorthand syntax:<br>
6504      * Code:<pre><code>
6505 el.on({
6506     'click' : this.onClick,
6507     'mouseover' : this.onMouseOver,
6508     'mouseout' : this.onMouseOut
6509     scope: this
6510 });</code></pre>
6511      */
6512         addListener : function(element, eventName, fn, scope, options){
6513             if(typeof eventName == "object"){
6514                 var o = eventName;
6515                 for(var e in o){
6516                     if(propRe.test(e)){
6517                         continue;
6518                     }
6519                     if(typeof o[e] == "function"){
6520                         // shared options
6521                         listen(element, e, o, o[e], o.scope);
6522                     }else{
6523                         // individual options
6524                         listen(element, e, o[e]);
6525                     }
6526                 }
6527                 return;
6528             }
6529             return listen(element, eventName, options, fn, scope);
6530         },
6531         
6532         /**
6533          * Removes an event handler
6534          *
6535          * @param {String/HTMLElement}   element        The id or html element to remove the 
6536          *                             event from
6537          * @param {String}   eventName     The type of event
6538          * @param {Function} fn
6539          * @return {Boolean} True if a listener was actually removed
6540          */
6541         removeListener : function(element, eventName, fn){
6542             return stopListening(element, eventName, fn);
6543         },
6544         
6545         /**
6546          * Fires when the document is ready (before onload and before images are loaded). Can be 
6547          * accessed shorthanded Roo.onReady().
6548          * @param {Function} fn        The method the event invokes
6549          * @param {Object}   scope    An  object that becomes the scope of the handler
6550          * @param {boolean}  options
6551          */
6552         onDocumentReady : function(fn, scope, options){
6553             if(docReadyState){ // if it already fired
6554                 docReadyEvent.addListener(fn, scope, options);
6555                 docReadyEvent.fire();
6556                 docReadyEvent.clearListeners();
6557                 return;
6558             }
6559             if(!docReadyEvent){
6560                 initDocReady();
6561             }
6562             docReadyEvent.addListener(fn, scope, options);
6563         },
6564         
6565         /**
6566          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6567          * @param {Function} fn        The method the event invokes
6568          * @param {Object}   scope    An object that becomes the scope of the handler
6569          * @param {boolean}  options
6570          */
6571         onWindowResize : function(fn, scope, options){
6572             if(!resizeEvent){
6573                 resizeEvent = new Roo.util.Event();
6574                 resizeTask = new Roo.util.DelayedTask(function(){
6575                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6576                 });
6577                 E.on(window, "resize", function(){
6578                     if(Roo.isIE){
6579                         resizeTask.delay(50);
6580                     }else{
6581                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6582                     }
6583                 });
6584             }
6585             resizeEvent.addListener(fn, scope, options);
6586         },
6587
6588         /**
6589          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6590          * @param {Function} fn        The method the event invokes
6591          * @param {Object}   scope    An object that becomes the scope of the handler
6592          * @param {boolean}  options
6593          */
6594         onTextResize : function(fn, scope, options){
6595             if(!textEvent){
6596                 textEvent = new Roo.util.Event();
6597                 var textEl = new Roo.Element(document.createElement('div'));
6598                 textEl.dom.className = 'x-text-resize';
6599                 textEl.dom.innerHTML = 'X';
6600                 textEl.appendTo(document.body);
6601                 textSize = textEl.dom.offsetHeight;
6602                 setInterval(function(){
6603                     if(textEl.dom.offsetHeight != textSize){
6604                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6605                     }
6606                 }, this.textResizeInterval);
6607             }
6608             textEvent.addListener(fn, scope, options);
6609         },
6610
6611         /**
6612          * Removes the passed window resize listener.
6613          * @param {Function} fn        The method the event invokes
6614          * @param {Object}   scope    The scope of handler
6615          */
6616         removeResizeListener : function(fn, scope){
6617             if(resizeEvent){
6618                 resizeEvent.removeListener(fn, scope);
6619             }
6620         },
6621
6622         // private
6623         fireResize : function(){
6624             if(resizeEvent){
6625                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6626             }   
6627         },
6628         /**
6629          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6630          */
6631         ieDeferSrc : false,
6632         /**
6633          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6634          */
6635         textResizeInterval : 50
6636     };
6637     
6638     /**
6639      * Fix for doc tools
6640      * @scopeAlias pub=Roo.EventManager
6641      */
6642     
6643      /**
6644      * Appends an event handler to an element (shorthand for addListener)
6645      * @param {String/HTMLElement}   element        The html element or id to assign the
6646      * @param {String}   eventName The type of event to listen for
6647      * @param {Function} handler The method the event invokes
6648      * @param {Object}   scope (optional) The scope in which to execute the handler
6649      * function. The handler function's "this" context.
6650      * @param {Object}   options (optional) An object containing handler configuration
6651      * properties. This may contain any of the following properties:<ul>
6652      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6653      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6654      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6655      * <li>preventDefault {Boolean} True to prevent the default action</li>
6656      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6657      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6658      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6659      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6660      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6661      * by the specified number of milliseconds. If the event fires again within that time, the original
6662      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6663      * </ul><br>
6664      * <p>
6665      * <b>Combining Options</b><br>
6666      * Using the options argument, it is possible to combine different types of listeners:<br>
6667      * <br>
6668      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6669      * Code:<pre><code>
6670 el.on('click', this.onClick, this, {
6671     single: true,
6672     delay: 100,
6673     stopEvent : true,
6674     forumId: 4
6675 });</code></pre>
6676      * <p>
6677      * <b>Attaching multiple handlers in 1 call</b><br>
6678       * The method also allows for a single argument to be passed which is a config object containing properties
6679      * which specify multiple handlers.
6680      * <p>
6681      * Code:<pre><code>
6682 el.on({
6683     'click' : {
6684         fn: this.onClick
6685         scope: this,
6686         delay: 100
6687     },
6688     'mouseover' : {
6689         fn: this.onMouseOver
6690         scope: this
6691     },
6692     'mouseout' : {
6693         fn: this.onMouseOut
6694         scope: this
6695     }
6696 });</code></pre>
6697      * <p>
6698      * Or a shorthand syntax:<br>
6699      * Code:<pre><code>
6700 el.on({
6701     'click' : this.onClick,
6702     'mouseover' : this.onMouseOver,
6703     'mouseout' : this.onMouseOut
6704     scope: this
6705 });</code></pre>
6706      */
6707     pub.on = pub.addListener;
6708     pub.un = pub.removeListener;
6709
6710     pub.stoppedMouseDownEvent = new Roo.util.Event();
6711     return pub;
6712 }();
6713 /**
6714   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6715   * @param {Function} fn        The method the event invokes
6716   * @param {Object}   scope    An  object that becomes the scope of the handler
6717   * @param {boolean}  override If true, the obj passed in becomes
6718   *                             the execution scope of the listener
6719   * @member Roo
6720   * @method onReady
6721  */
6722 Roo.onReady = Roo.EventManager.onDocumentReady;
6723
6724 Roo.onReady(function(){
6725     var bd = Roo.get(document.body);
6726     if(!bd){ return; }
6727
6728     var cls = [
6729             Roo.isIE ? "roo-ie"
6730             : Roo.isIE11 ? "roo-ie11"
6731             : Roo.isEdge ? "roo-edge"
6732             : Roo.isGecko ? "roo-gecko"
6733             : Roo.isOpera ? "roo-opera"
6734             : Roo.isSafari ? "roo-safari" : ""];
6735
6736     if(Roo.isMac){
6737         cls.push("roo-mac");
6738     }
6739     if(Roo.isLinux){
6740         cls.push("roo-linux");
6741     }
6742     if(Roo.isIOS){
6743         cls.push("roo-ios");
6744     }
6745     if(Roo.isTouch){
6746         cls.push("roo-touch");
6747     }
6748     if(Roo.isBorderBox){
6749         cls.push('roo-border-box');
6750     }
6751     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6752         var p = bd.dom.parentNode;
6753         if(p){
6754             p.className += ' roo-strict';
6755         }
6756     }
6757     bd.addClass(cls.join(' '));
6758 });
6759
6760 /**
6761  * @class Roo.EventObject
6762  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6763  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6764  * Example:
6765  * <pre><code>
6766  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6767     e.preventDefault();
6768     var target = e.getTarget();
6769     ...
6770  }
6771  var myDiv = Roo.get("myDiv");
6772  myDiv.on("click", handleClick);
6773  //or
6774  Roo.EventManager.on("myDiv", 'click', handleClick);
6775  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6776  </code></pre>
6777  * @singleton
6778  */
6779 Roo.EventObject = function(){
6780     
6781     var E = Roo.lib.Event;
6782     
6783     // safari keypress events for special keys return bad keycodes
6784     var safariKeys = {
6785         63234 : 37, // left
6786         63235 : 39, // right
6787         63232 : 38, // up
6788         63233 : 40, // down
6789         63276 : 33, // page up
6790         63277 : 34, // page down
6791         63272 : 46, // delete
6792         63273 : 36, // home
6793         63275 : 35  // end
6794     };
6795
6796     // normalize button clicks
6797     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6798                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6799
6800     Roo.EventObjectImpl = function(e){
6801         if(e){
6802             this.setEvent(e.browserEvent || e);
6803         }
6804     };
6805     Roo.EventObjectImpl.prototype = {
6806         /**
6807          * Used to fix doc tools.
6808          * @scope Roo.EventObject.prototype
6809          */
6810             
6811
6812         
6813         
6814         /** The normal browser event */
6815         browserEvent : null,
6816         /** The button pressed in a mouse event */
6817         button : -1,
6818         /** True if the shift key was down during the event */
6819         shiftKey : false,
6820         /** True if the control key was down during the event */
6821         ctrlKey : false,
6822         /** True if the alt key was down during the event */
6823         altKey : false,
6824
6825         /** Key constant 
6826         * @type Number */
6827         BACKSPACE : 8,
6828         /** Key constant 
6829         * @type Number */
6830         TAB : 9,
6831         /** Key constant 
6832         * @type Number */
6833         RETURN : 13,
6834         /** Key constant 
6835         * @type Number */
6836         ENTER : 13,
6837         /** Key constant 
6838         * @type Number */
6839         SHIFT : 16,
6840         /** Key constant 
6841         * @type Number */
6842         CONTROL : 17,
6843         /** Key constant 
6844         * @type Number */
6845         ESC : 27,
6846         /** Key constant 
6847         * @type Number */
6848         SPACE : 32,
6849         /** Key constant 
6850         * @type Number */
6851         PAGEUP : 33,
6852         /** Key constant 
6853         * @type Number */
6854         PAGEDOWN : 34,
6855         /** Key constant 
6856         * @type Number */
6857         END : 35,
6858         /** Key constant 
6859         * @type Number */
6860         HOME : 36,
6861         /** Key constant 
6862         * @type Number */
6863         LEFT : 37,
6864         /** Key constant 
6865         * @type Number */
6866         UP : 38,
6867         /** Key constant 
6868         * @type Number */
6869         RIGHT : 39,
6870         /** Key constant 
6871         * @type Number */
6872         DOWN : 40,
6873         /** Key constant 
6874         * @type Number */
6875         DELETE : 46,
6876         /** Key constant 
6877         * @type Number */
6878         F5 : 116,
6879
6880            /** @private */
6881         setEvent : function(e){
6882             if(e == this || (e && e.browserEvent)){ // already wrapped
6883                 return e;
6884             }
6885             this.browserEvent = e;
6886             if(e){
6887                 // normalize buttons
6888                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6889                 if(e.type == 'click' && this.button == -1){
6890                     this.button = 0;
6891                 }
6892                 this.type = e.type;
6893                 this.shiftKey = e.shiftKey;
6894                 // mac metaKey behaves like ctrlKey
6895                 this.ctrlKey = e.ctrlKey || e.metaKey;
6896                 this.altKey = e.altKey;
6897                 // in getKey these will be normalized for the mac
6898                 this.keyCode = e.keyCode;
6899                 // keyup warnings on firefox.
6900                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6901                 // cache the target for the delayed and or buffered events
6902                 this.target = E.getTarget(e);
6903                 // same for XY
6904                 this.xy = E.getXY(e);
6905             }else{
6906                 this.button = -1;
6907                 this.shiftKey = false;
6908                 this.ctrlKey = false;
6909                 this.altKey = false;
6910                 this.keyCode = 0;
6911                 this.charCode =0;
6912                 this.target = null;
6913                 this.xy = [0, 0];
6914             }
6915             return this;
6916         },
6917
6918         /**
6919          * Stop the event (preventDefault and stopPropagation)
6920          */
6921         stopEvent : function(){
6922             if(this.browserEvent){
6923                 if(this.browserEvent.type == 'mousedown'){
6924                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6925                 }
6926                 E.stopEvent(this.browserEvent);
6927             }
6928         },
6929
6930         /**
6931          * Prevents the browsers default handling of the event.
6932          */
6933         preventDefault : function(){
6934             if(this.browserEvent){
6935                 E.preventDefault(this.browserEvent);
6936             }
6937         },
6938
6939         /** @private */
6940         isNavKeyPress : function(){
6941             var k = this.keyCode;
6942             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6943             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6944         },
6945
6946         isSpecialKey : function(){
6947             var k = this.keyCode;
6948             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6949             (k == 16) || (k == 17) ||
6950             (k >= 18 && k <= 20) ||
6951             (k >= 33 && k <= 35) ||
6952             (k >= 36 && k <= 39) ||
6953             (k >= 44 && k <= 45);
6954         },
6955         /**
6956          * Cancels bubbling of the event.
6957          */
6958         stopPropagation : function(){
6959             if(this.browserEvent){
6960                 if(this.type == 'mousedown'){
6961                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6962                 }
6963                 E.stopPropagation(this.browserEvent);
6964             }
6965         },
6966
6967         /**
6968          * Gets the key code for the event.
6969          * @return {Number}
6970          */
6971         getCharCode : function(){
6972             return this.charCode || this.keyCode;
6973         },
6974
6975         /**
6976          * Returns a normalized keyCode for the event.
6977          * @return {Number} The key code
6978          */
6979         getKey : function(){
6980             var k = this.keyCode || this.charCode;
6981             return Roo.isSafari ? (safariKeys[k] || k) : k;
6982         },
6983
6984         /**
6985          * Gets the x coordinate of the event.
6986          * @return {Number}
6987          */
6988         getPageX : function(){
6989             return this.xy[0];
6990         },
6991
6992         /**
6993          * Gets the y coordinate of the event.
6994          * @return {Number}
6995          */
6996         getPageY : function(){
6997             return this.xy[1];
6998         },
6999
7000         /**
7001          * Gets the time of the event.
7002          * @return {Number}
7003          */
7004         getTime : function(){
7005             if(this.browserEvent){
7006                 return E.getTime(this.browserEvent);
7007             }
7008             return null;
7009         },
7010
7011         /**
7012          * Gets the page coordinates of the event.
7013          * @return {Array} The xy values like [x, y]
7014          */
7015         getXY : function(){
7016             return this.xy;
7017         },
7018
7019         /**
7020          * Gets the target for the event.
7021          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
7022          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7023                 search as a number or element (defaults to 10 || document.body)
7024          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7025          * @return {HTMLelement}
7026          */
7027         getTarget : function(selector, maxDepth, returnEl){
7028             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
7029         },
7030         /**
7031          * Gets the related target.
7032          * @return {HTMLElement}
7033          */
7034         getRelatedTarget : function(){
7035             if(this.browserEvent){
7036                 return E.getRelatedTarget(this.browserEvent);
7037             }
7038             return null;
7039         },
7040
7041         /**
7042          * Normalizes mouse wheel delta across browsers
7043          * @return {Number} The delta
7044          */
7045         getWheelDelta : function(){
7046             var e = this.browserEvent;
7047             var delta = 0;
7048             if(e.wheelDelta){ /* IE/Opera. */
7049                 delta = e.wheelDelta/120;
7050             }else if(e.detail){ /* Mozilla case. */
7051                 delta = -e.detail/3;
7052             }
7053             return delta;
7054         },
7055
7056         /**
7057          * Returns true if the control, meta, shift or alt key was pressed during this event.
7058          * @return {Boolean}
7059          */
7060         hasModifier : function(){
7061             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
7062         },
7063
7064         /**
7065          * Returns true if the target of this event equals el or is a child of el
7066          * @param {String/HTMLElement/Element} el
7067          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7068          * @return {Boolean}
7069          */
7070         within : function(el, related){
7071             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7072             return t && Roo.fly(el).contains(t);
7073         },
7074
7075         getPoint : function(){
7076             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7077         }
7078     };
7079
7080     return new Roo.EventObjectImpl();
7081 }();
7082             
7083     /*
7084  * Based on:
7085  * Ext JS Library 1.1.1
7086  * Copyright(c) 2006-2007, Ext JS, LLC.
7087  *
7088  * Originally Released Under LGPL - original licence link has changed is not relivant.
7089  *
7090  * Fork - LGPL
7091  * <script type="text/javascript">
7092  */
7093
7094  
7095 // was in Composite Element!??!?!
7096  
7097 (function(){
7098     var D = Roo.lib.Dom;
7099     var E = Roo.lib.Event;
7100     var A = Roo.lib.Anim;
7101
7102     // local style camelizing for speed
7103     var propCache = {};
7104     var camelRe = /(-[a-z])/gi;
7105     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7106     var view = document.defaultView;
7107
7108 /**
7109  * @class Roo.Element
7110  * Represents an Element in the DOM.<br><br>
7111  * Usage:<br>
7112 <pre><code>
7113 var el = Roo.get("my-div");
7114
7115 // or with getEl
7116 var el = getEl("my-div");
7117
7118 // or with a DOM element
7119 var el = Roo.get(myDivElement);
7120 </code></pre>
7121  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7122  * each call instead of constructing a new one.<br><br>
7123  * <b>Animations</b><br />
7124  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7125  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7126 <pre>
7127 Option    Default   Description
7128 --------- --------  ---------------------------------------------
7129 duration  .35       The duration of the animation in seconds
7130 easing    easeOut   The YUI easing method
7131 callback  none      A function to execute when the anim completes
7132 scope     this      The scope (this) of the callback function
7133 </pre>
7134 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7135 * manipulate the animation. Here's an example:
7136 <pre><code>
7137 var el = Roo.get("my-div");
7138
7139 // no animation
7140 el.setWidth(100);
7141
7142 // default animation
7143 el.setWidth(100, true);
7144
7145 // animation with some options set
7146 el.setWidth(100, {
7147     duration: 1,
7148     callback: this.foo,
7149     scope: this
7150 });
7151
7152 // using the "anim" property to get the Anim object
7153 var opt = {
7154     duration: 1,
7155     callback: this.foo,
7156     scope: this
7157 };
7158 el.setWidth(100, opt);
7159 ...
7160 if(opt.anim.isAnimated()){
7161     opt.anim.stop();
7162 }
7163 </code></pre>
7164 * <b> Composite (Collections of) Elements</b><br />
7165  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7166  * @constructor Create a new Element directly.
7167  * @param {String/HTMLElement} element
7168  * @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).
7169  */
7170     Roo.Element = function(element, forceNew)
7171     {
7172         var dom = typeof element == "string" ?
7173                 document.getElementById(element) : element;
7174         
7175         this.listeners = {};
7176         
7177         if(!dom){ // invalid id/element
7178             return null;
7179         }
7180         var id = dom.id;
7181         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7182             return Roo.Element.cache[id];
7183         }
7184
7185         /**
7186          * The DOM element
7187          * @type HTMLElement
7188          */
7189         this.dom = dom;
7190
7191         /**
7192          * The DOM element ID
7193          * @type String
7194          */
7195         this.id = id || Roo.id(dom);
7196         
7197         return this; // assumed for cctor?
7198     };
7199
7200     var El = Roo.Element;
7201
7202     El.prototype = {
7203         /**
7204          * The element's default display mode  (defaults to "") 
7205          * @type String
7206          */
7207         originalDisplay : "",
7208
7209         
7210         // note this is overridden in BS version..
7211         visibilityMode : 1, 
7212         /**
7213          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7214          * @type String
7215          */
7216         defaultUnit : "px",
7217         
7218         /**
7219          * Sets the element's visibility mode. When setVisible() is called it
7220          * will use this to determine whether to set the visibility or the display property.
7221          * @param visMode Element.VISIBILITY or Element.DISPLAY
7222          * @return {Roo.Element} this
7223          */
7224         setVisibilityMode : function(visMode){
7225             this.visibilityMode = visMode;
7226             return this;
7227         },
7228         /**
7229          * Convenience method for setVisibilityMode(Element.DISPLAY)
7230          * @param {String} display (optional) What to set display to when visible
7231          * @return {Roo.Element} this
7232          */
7233         enableDisplayMode : function(display){
7234             this.setVisibilityMode(El.DISPLAY);
7235             if(typeof display != "undefined") { this.originalDisplay = display; }
7236             return this;
7237         },
7238
7239         /**
7240          * 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)
7241          * @param {String} selector The simple selector to test
7242          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7243                 search as a number or element (defaults to 10 || document.body)
7244          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7245          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7246          */
7247         findParent : function(simpleSelector, maxDepth, returnEl){
7248             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7249             maxDepth = maxDepth || 50;
7250             if(typeof maxDepth != "number"){
7251                 stopEl = Roo.getDom(maxDepth);
7252                 maxDepth = 10;
7253             }
7254             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7255                 if(dq.is(p, simpleSelector)){
7256                     return returnEl ? Roo.get(p) : p;
7257                 }
7258                 depth++;
7259                 p = p.parentNode;
7260             }
7261             return null;
7262         },
7263
7264
7265         /**
7266          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7267          * @param {String} selector The simple selector to test
7268          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7269                 search as a number or element (defaults to 10 || document.body)
7270          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7271          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7272          */
7273         findParentNode : function(simpleSelector, maxDepth, returnEl){
7274             var p = Roo.fly(this.dom.parentNode, '_internal');
7275             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7276         },
7277         
7278         /**
7279          * Looks at  the scrollable parent element
7280          */
7281         findScrollableParent : function()
7282         {
7283             var overflowRegex = /(auto|scroll)/;
7284             
7285             if(this.getStyle('position') === 'fixed'){
7286                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7287             }
7288             
7289             var excludeStaticParent = this.getStyle('position') === "absolute";
7290             
7291             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7292                 
7293                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7294                     continue;
7295                 }
7296                 
7297                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7298                     return parent;
7299                 }
7300                 
7301                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7302                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7303                 }
7304             }
7305             
7306             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7307         },
7308
7309         /**
7310          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7311          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7312          * @param {String} selector The simple selector to test
7313          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7314                 search as a number or element (defaults to 10 || document.body)
7315          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7316          */
7317         up : function(simpleSelector, maxDepth){
7318             return this.findParentNode(simpleSelector, maxDepth, true);
7319         },
7320
7321
7322
7323         /**
7324          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7325          * @param {String} selector The simple selector to test
7326          * @return {Boolean} True if this element matches the selector, else false
7327          */
7328         is : function(simpleSelector){
7329             return Roo.DomQuery.is(this.dom, simpleSelector);
7330         },
7331
7332         /**
7333          * Perform animation on this element.
7334          * @param {Object} args The YUI animation control args
7335          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7336          * @param {Function} onComplete (optional) Function to call when animation completes
7337          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7338          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7339          * @return {Roo.Element} this
7340          */
7341         animate : function(args, duration, onComplete, easing, animType){
7342             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7343             return this;
7344         },
7345
7346         /*
7347          * @private Internal animation call
7348          */
7349         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7350             animType = animType || 'run';
7351             opt = opt || {};
7352             var anim = Roo.lib.Anim[animType](
7353                 this.dom, args,
7354                 (opt.duration || defaultDur) || .35,
7355                 (opt.easing || defaultEase) || 'easeOut',
7356                 function(){
7357                     Roo.callback(cb, this);
7358                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7359                 },
7360                 this
7361             );
7362             opt.anim = anim;
7363             return anim;
7364         },
7365
7366         // private legacy anim prep
7367         preanim : function(a, i){
7368             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7369         },
7370
7371         /**
7372          * Removes worthless text nodes
7373          * @param {Boolean} forceReclean (optional) By default the element
7374          * keeps track if it has been cleaned already so
7375          * you can call this over and over. However, if you update the element and
7376          * need to force a reclean, you can pass true.
7377          */
7378         clean : function(forceReclean){
7379             if(this.isCleaned && forceReclean !== true){
7380                 return this;
7381             }
7382             var ns = /\S/;
7383             var d = this.dom, n = d.firstChild, ni = -1;
7384             while(n){
7385                 var nx = n.nextSibling;
7386                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7387                     d.removeChild(n);
7388                 }else{
7389                     n.nodeIndex = ++ni;
7390                 }
7391                 n = nx;
7392             }
7393             this.isCleaned = true;
7394             return this;
7395         },
7396
7397         // private
7398         calcOffsetsTo : function(el){
7399             el = Roo.get(el);
7400             var d = el.dom;
7401             var restorePos = false;
7402             if(el.getStyle('position') == 'static'){
7403                 el.position('relative');
7404                 restorePos = true;
7405             }
7406             var x = 0, y =0;
7407             var op = this.dom;
7408             while(op && op != d && op.tagName != 'HTML'){
7409                 x+= op.offsetLeft;
7410                 y+= op.offsetTop;
7411                 op = op.offsetParent;
7412             }
7413             if(restorePos){
7414                 el.position('static');
7415             }
7416             return [x, y];
7417         },
7418
7419         /**
7420          * Scrolls this element into view within the passed container.
7421          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7422          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7423          * @return {Roo.Element} this
7424          */
7425         scrollIntoView : function(container, hscroll){
7426             var c = Roo.getDom(container) || document.body;
7427             var el = this.dom;
7428
7429             var o = this.calcOffsetsTo(c),
7430                 l = o[0],
7431                 t = o[1],
7432                 b = t+el.offsetHeight,
7433                 r = l+el.offsetWidth;
7434
7435             var ch = c.clientHeight;
7436             var ct = parseInt(c.scrollTop, 10);
7437             var cl = parseInt(c.scrollLeft, 10);
7438             var cb = ct + ch;
7439             var cr = cl + c.clientWidth;
7440
7441             if(t < ct){
7442                 c.scrollTop = t;
7443             }else if(b > cb){
7444                 c.scrollTop = b-ch;
7445             }
7446
7447             if(hscroll !== false){
7448                 if(l < cl){
7449                     c.scrollLeft = l;
7450                 }else if(r > cr){
7451                     c.scrollLeft = r-c.clientWidth;
7452                 }
7453             }
7454             return this;
7455         },
7456
7457         // private
7458         scrollChildIntoView : function(child, hscroll){
7459             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7460         },
7461
7462         /**
7463          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7464          * the new height may not be available immediately.
7465          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7466          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7467          * @param {Function} onComplete (optional) Function to call when animation completes
7468          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7469          * @return {Roo.Element} this
7470          */
7471         autoHeight : function(animate, duration, onComplete, easing){
7472             var oldHeight = this.getHeight();
7473             this.clip();
7474             this.setHeight(1); // force clipping
7475             setTimeout(function(){
7476                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7477                 if(!animate){
7478                     this.setHeight(height);
7479                     this.unclip();
7480                     if(typeof onComplete == "function"){
7481                         onComplete();
7482                     }
7483                 }else{
7484                     this.setHeight(oldHeight); // restore original height
7485                     this.setHeight(height, animate, duration, function(){
7486                         this.unclip();
7487                         if(typeof onComplete == "function") { onComplete(); }
7488                     }.createDelegate(this), easing);
7489                 }
7490             }.createDelegate(this), 0);
7491             return this;
7492         },
7493
7494         /**
7495          * Returns true if this element is an ancestor of the passed element
7496          * @param {HTMLElement/String} el The element to check
7497          * @return {Boolean} True if this element is an ancestor of el, else false
7498          */
7499         contains : function(el){
7500             if(!el){return false;}
7501             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7502         },
7503
7504         /**
7505          * Checks whether the element is currently visible using both visibility and display properties.
7506          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7507          * @return {Boolean} True if the element is currently visible, else false
7508          */
7509         isVisible : function(deep) {
7510             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7511             if(deep !== true || !vis){
7512                 return vis;
7513             }
7514             var p = this.dom.parentNode;
7515             while(p && p.tagName.toLowerCase() != "body"){
7516                 if(!Roo.fly(p, '_isVisible').isVisible()){
7517                     return false;
7518                 }
7519                 p = p.parentNode;
7520             }
7521             return true;
7522         },
7523
7524         /**
7525          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7526          * @param {String} selector The CSS selector
7527          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7528          * @return {CompositeElement/CompositeElementLite} The composite element
7529          */
7530         select : function(selector, unique){
7531             return El.select(selector, unique, this.dom);
7532         },
7533
7534         /**
7535          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7536          * @param {String} selector The CSS selector
7537          * @return {Array} An array of the matched nodes
7538          */
7539         query : function(selector, unique){
7540             return Roo.DomQuery.select(selector, this.dom);
7541         },
7542
7543         /**
7544          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7545          * @param {String} selector The CSS selector
7546          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7547          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7548          */
7549         child : function(selector, returnDom){
7550             var n = Roo.DomQuery.selectNode(selector, this.dom);
7551             return returnDom ? n : Roo.get(n);
7552         },
7553
7554         /**
7555          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7556          * @param {String} selector The CSS selector
7557          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7558          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7559          */
7560         down : function(selector, returnDom){
7561             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7562             return returnDom ? n : Roo.get(n);
7563         },
7564
7565         /**
7566          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7567          * @param {String} group The group the DD object is member of
7568          * @param {Object} config The DD config object
7569          * @param {Object} overrides An object containing methods to override/implement on the DD object
7570          * @return {Roo.dd.DD} The DD object
7571          */
7572         initDD : function(group, config, overrides){
7573             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7574             return Roo.apply(dd, overrides);
7575         },
7576
7577         /**
7578          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7579          * @param {String} group The group the DDProxy object is member of
7580          * @param {Object} config The DDProxy config object
7581          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7582          * @return {Roo.dd.DDProxy} The DDProxy object
7583          */
7584         initDDProxy : function(group, config, overrides){
7585             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7586             return Roo.apply(dd, overrides);
7587         },
7588
7589         /**
7590          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7591          * @param {String} group The group the DDTarget object is member of
7592          * @param {Object} config The DDTarget config object
7593          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7594          * @return {Roo.dd.DDTarget} The DDTarget object
7595          */
7596         initDDTarget : function(group, config, overrides){
7597             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7598             return Roo.apply(dd, overrides);
7599         },
7600
7601         /**
7602          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7603          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7604          * @param {Boolean} visible Whether the element is visible
7605          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7606          * @return {Roo.Element} this
7607          */
7608          setVisible : function(visible, animate){
7609             if(!animate || !A){
7610                 if(this.visibilityMode == El.DISPLAY){
7611                     this.setDisplayed(visible);
7612                 }else{
7613                     this.fixDisplay();
7614                     this.dom.style.visibility = visible ? "visible" : "hidden";
7615                 }
7616             }else{
7617                 // closure for composites
7618                 var dom = this.dom;
7619                 var visMode = this.visibilityMode;
7620                 if(visible){
7621                     this.setOpacity(.01);
7622                     this.setVisible(true);
7623                 }
7624                 this.anim({opacity: { to: (visible?1:0) }},
7625                       this.preanim(arguments, 1),
7626                       null, .35, 'easeIn', function(){
7627                          if(!visible){
7628                              if(visMode == El.DISPLAY){
7629                                  dom.style.display = "none";
7630                              }else{
7631                                  dom.style.visibility = "hidden";
7632                              }
7633                              Roo.get(dom).setOpacity(1);
7634                          }
7635                      });
7636             }
7637             return this;
7638         },
7639
7640         /**
7641          * Returns true if display is not "none"
7642          * @return {Boolean}
7643          */
7644         isDisplayed : function() {
7645             return this.getStyle("display") != "none";
7646         },
7647
7648         /**
7649          * Toggles the element's visibility or display, depending on visibility mode.
7650          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7651          * @return {Roo.Element} this
7652          */
7653         toggle : function(animate){
7654             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7655             return this;
7656         },
7657
7658         /**
7659          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7660          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7661          * @return {Roo.Element} this
7662          */
7663         setDisplayed : function(value) {
7664             if(typeof value == "boolean"){
7665                value = value ? this.originalDisplay : "none";
7666             }
7667             this.setStyle("display", value);
7668             return this;
7669         },
7670
7671         /**
7672          * Tries to focus the element. Any exceptions are caught and ignored.
7673          * @return {Roo.Element} this
7674          */
7675         focus : function() {
7676             try{
7677                 this.dom.focus();
7678             }catch(e){}
7679             return this;
7680         },
7681
7682         /**
7683          * Tries to blur the element. Any exceptions are caught and ignored.
7684          * @return {Roo.Element} this
7685          */
7686         blur : function() {
7687             try{
7688                 this.dom.blur();
7689             }catch(e){}
7690             return this;
7691         },
7692
7693         /**
7694          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7695          * @param {String/Array} className The CSS class to add, or an array of classes
7696          * @return {Roo.Element} this
7697          */
7698         addClass : function(className){
7699             if(className instanceof Array){
7700                 for(var i = 0, len = className.length; i < len; i++) {
7701                     this.addClass(className[i]);
7702                 }
7703             }else{
7704                 if(className && !this.hasClass(className)){
7705                     if (this.dom instanceof SVGElement) {
7706                         this.dom.className.baseVal =this.dom.className.baseVal  + " " + className;
7707                     } else {
7708                         this.dom.className = this.dom.className + " " + className;
7709                     }
7710                 }
7711             }
7712             return this;
7713         },
7714
7715         /**
7716          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7717          * @param {String/Array} className The CSS class to add, or an array of classes
7718          * @return {Roo.Element} this
7719          */
7720         radioClass : function(className){
7721             var siblings = this.dom.parentNode.childNodes;
7722             for(var i = 0; i < siblings.length; i++) {
7723                 var s = siblings[i];
7724                 if(s.nodeType == 1){
7725                     Roo.get(s).removeClass(className);
7726                 }
7727             }
7728             this.addClass(className);
7729             return this;
7730         },
7731
7732         /**
7733          * Removes one or more CSS classes from the element.
7734          * @param {String/Array} className The CSS class to remove, or an array of classes
7735          * @return {Roo.Element} this
7736          */
7737         removeClass : function(className){
7738             
7739             var cn = this.dom instanceof SVGElement ? this.dom.className.baseVal : this.dom.className;
7740             if(!className || !cn){
7741                 return this;
7742             }
7743             if(className instanceof Array){
7744                 for(var i = 0, len = className.length; i < len; i++) {
7745                     this.removeClass(className[i]);
7746                 }
7747             }else{
7748                 if(this.hasClass(className)){
7749                     var re = this.classReCache[className];
7750                     if (!re) {
7751                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7752                        this.classReCache[className] = re;
7753                     }
7754                     if (this.dom instanceof SVGElement) {
7755                         this.dom.className.baseVal = cn.replace(re, " ");
7756                     } else {
7757                         this.dom.className = cn.replace(re, " ");
7758                     }
7759                 }
7760             }
7761             return this;
7762         },
7763
7764         // private
7765         classReCache: {},
7766
7767         /**
7768          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7769          * @param {String} className The CSS class to toggle
7770          * @return {Roo.Element} this
7771          */
7772         toggleClass : function(className){
7773             if(this.hasClass(className)){
7774                 this.removeClass(className);
7775             }else{
7776                 this.addClass(className);
7777             }
7778             return this;
7779         },
7780
7781         /**
7782          * Checks if the specified CSS class exists on this element's DOM node.
7783          * @param {String} className The CSS class to check for
7784          * @return {Boolean} True if the class exists, else false
7785          */
7786         hasClass : function(className){
7787             if (this.dom instanceof SVGElement) {
7788                 return className && (' '+this.dom.className.baseVal +' ').indexOf(' '+className+' ') != -1; 
7789             } 
7790             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7791         },
7792
7793         /**
7794          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7795          * @param {String} oldClassName The CSS class to replace
7796          * @param {String} newClassName The replacement CSS class
7797          * @return {Roo.Element} this
7798          */
7799         replaceClass : function(oldClassName, newClassName){
7800             this.removeClass(oldClassName);
7801             this.addClass(newClassName);
7802             return this;
7803         },
7804
7805         /**
7806          * Returns an object with properties matching the styles requested.
7807          * For example, el.getStyles('color', 'font-size', 'width') might return
7808          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7809          * @param {String} style1 A style name
7810          * @param {String} style2 A style name
7811          * @param {String} etc.
7812          * @return {Object} The style object
7813          */
7814         getStyles : function(){
7815             var a = arguments, len = a.length, r = {};
7816             for(var i = 0; i < len; i++){
7817                 r[a[i]] = this.getStyle(a[i]);
7818             }
7819             return r;
7820         },
7821
7822         /**
7823          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7824          * @param {String} property The style property whose value is returned.
7825          * @return {String} The current value of the style property for this element.
7826          */
7827         getStyle : function(){
7828             return view && view.getComputedStyle ?
7829                 function(prop){
7830                     var el = this.dom, v, cs, camel;
7831                     if(prop == 'float'){
7832                         prop = "cssFloat";
7833                     }
7834                     if(el.style && (v = el.style[prop])){
7835                         return v;
7836                     }
7837                     if(cs = view.getComputedStyle(el, "")){
7838                         if(!(camel = propCache[prop])){
7839                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7840                         }
7841                         return cs[camel];
7842                     }
7843                     return null;
7844                 } :
7845                 function(prop){
7846                     var el = this.dom, v, cs, camel;
7847                     if(prop == 'opacity'){
7848                         if(typeof el.style.filter == 'string'){
7849                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7850                             if(m){
7851                                 var fv = parseFloat(m[1]);
7852                                 if(!isNaN(fv)){
7853                                     return fv ? fv / 100 : 0;
7854                                 }
7855                             }
7856                         }
7857                         return 1;
7858                     }else if(prop == 'float'){
7859                         prop = "styleFloat";
7860                     }
7861                     if(!(camel = propCache[prop])){
7862                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7863                     }
7864                     if(v = el.style[camel]){
7865                         return v;
7866                     }
7867                     if(cs = el.currentStyle){
7868                         return cs[camel];
7869                     }
7870                     return null;
7871                 };
7872         }(),
7873
7874         /**
7875          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7876          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7877          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7878          * @return {Roo.Element} this
7879          */
7880         setStyle : function(prop, value){
7881             if(typeof prop == "string"){
7882                 
7883                 if (prop == 'float') {
7884                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7885                     return this;
7886                 }
7887                 
7888                 var camel;
7889                 if(!(camel = propCache[prop])){
7890                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7891                 }
7892                 
7893                 if(camel == 'opacity') {
7894                     this.setOpacity(value);
7895                 }else{
7896                     this.dom.style[camel] = value;
7897                 }
7898             }else{
7899                 for(var style in prop){
7900                     if(typeof prop[style] != "function"){
7901                        this.setStyle(style, prop[style]);
7902                     }
7903                 }
7904             }
7905             return this;
7906         },
7907
7908         /**
7909          * More flexible version of {@link #setStyle} for setting style properties.
7910          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7911          * a function which returns such a specification.
7912          * @return {Roo.Element} this
7913          */
7914         applyStyles : function(style){
7915             Roo.DomHelper.applyStyles(this.dom, style);
7916             return this;
7917         },
7918
7919         /**
7920           * 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).
7921           * @return {Number} The X position of the element
7922           */
7923         getX : function(){
7924             return D.getX(this.dom);
7925         },
7926
7927         /**
7928           * 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).
7929           * @return {Number} The Y position of the element
7930           */
7931         getY : function(){
7932             return D.getY(this.dom);
7933         },
7934
7935         /**
7936           * 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).
7937           * @return {Array} The XY position of the element
7938           */
7939         getXY : function(){
7940             return D.getXY(this.dom);
7941         },
7942
7943         /**
7944          * 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).
7945          * @param {Number} The X position of the element
7946          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7947          * @return {Roo.Element} this
7948          */
7949         setX : function(x, animate){
7950             if(!animate || !A){
7951                 D.setX(this.dom, x);
7952             }else{
7953                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7954             }
7955             return this;
7956         },
7957
7958         /**
7959          * 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).
7960          * @param {Number} The Y position of the element
7961          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7962          * @return {Roo.Element} this
7963          */
7964         setY : function(y, animate){
7965             if(!animate || !A){
7966                 D.setY(this.dom, y);
7967             }else{
7968                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7969             }
7970             return this;
7971         },
7972
7973         /**
7974          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7975          * @param {String} left The left CSS property value
7976          * @return {Roo.Element} this
7977          */
7978         setLeft : function(left){
7979             this.setStyle("left", this.addUnits(left));
7980             return this;
7981         },
7982
7983         /**
7984          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7985          * @param {String} top The top CSS property value
7986          * @return {Roo.Element} this
7987          */
7988         setTop : function(top){
7989             this.setStyle("top", this.addUnits(top));
7990             return this;
7991         },
7992
7993         /**
7994          * Sets the element's CSS right style.
7995          * @param {String} right The right CSS property value
7996          * @return {Roo.Element} this
7997          */
7998         setRight : function(right){
7999             this.setStyle("right", this.addUnits(right));
8000             return this;
8001         },
8002
8003         /**
8004          * Sets the element's CSS bottom style.
8005          * @param {String} bottom The bottom CSS property value
8006          * @return {Roo.Element} this
8007          */
8008         setBottom : function(bottom){
8009             this.setStyle("bottom", this.addUnits(bottom));
8010             return this;
8011         },
8012
8013         /**
8014          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8015          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8016          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
8017          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8018          * @return {Roo.Element} this
8019          */
8020         setXY : function(pos, animate){
8021             if(!animate || !A){
8022                 D.setXY(this.dom, pos);
8023             }else{
8024                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
8025             }
8026             return this;
8027         },
8028
8029         /**
8030          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8031          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8032          * @param {Number} x X value for new position (coordinates are page-based)
8033          * @param {Number} y Y value for new position (coordinates are page-based)
8034          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8035          * @return {Roo.Element} this
8036          */
8037         setLocation : function(x, y, animate){
8038             this.setXY([x, y], this.preanim(arguments, 2));
8039             return this;
8040         },
8041
8042         /**
8043          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8044          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8045          * @param {Number} x X value for new position (coordinates are page-based)
8046          * @param {Number} y Y value for new position (coordinates are page-based)
8047          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8048          * @return {Roo.Element} this
8049          */
8050         moveTo : function(x, y, animate){
8051             this.setXY([x, y], this.preanim(arguments, 2));
8052             return this;
8053         },
8054
8055         /**
8056          * Returns the region of the given element.
8057          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
8058          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
8059          */
8060         getRegion : function(){
8061             return D.getRegion(this.dom);
8062         },
8063
8064         /**
8065          * Returns the offset height of the element
8066          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
8067          * @return {Number} The element's height
8068          */
8069         getHeight : function(contentHeight){
8070             var h = this.dom.offsetHeight || 0;
8071             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
8072         },
8073
8074         /**
8075          * Returns the offset width of the element
8076          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
8077          * @return {Number} The element's width
8078          */
8079         getWidth : function(contentWidth){
8080             var w = this.dom.offsetWidth || 0;
8081             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
8082         },
8083
8084         /**
8085          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
8086          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8087          * if a height has not been set using CSS.
8088          * @return {Number}
8089          */
8090         getComputedHeight : function(){
8091             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8092             if(!h){
8093                 h = parseInt(this.getStyle('height'), 10) || 0;
8094                 if(!this.isBorderBox()){
8095                     h += this.getFrameWidth('tb');
8096                 }
8097             }
8098             return h;
8099         },
8100
8101         /**
8102          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8103          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8104          * if a width has not been set using CSS.
8105          * @return {Number}
8106          */
8107         getComputedWidth : function(){
8108             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8109             if(!w){
8110                 w = parseInt(this.getStyle('width'), 10) || 0;
8111                 if(!this.isBorderBox()){
8112                     w += this.getFrameWidth('lr');
8113                 }
8114             }
8115             return w;
8116         },
8117
8118         /**
8119          * Returns the size of the element.
8120          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8121          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8122          */
8123         getSize : function(contentSize){
8124             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8125         },
8126
8127         /**
8128          * Returns the width and height of the viewport.
8129          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8130          */
8131         getViewSize : function(){
8132             var d = this.dom, doc = document, aw = 0, ah = 0;
8133             if(d == doc || d == doc.body){
8134                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8135             }else{
8136                 return {
8137                     width : d.clientWidth,
8138                     height: d.clientHeight
8139                 };
8140             }
8141         },
8142
8143         /**
8144          * Returns the value of the "value" attribute
8145          * @param {Boolean} asNumber true to parse the value as a number
8146          * @return {String/Number}
8147          */
8148         getValue : function(asNumber){
8149             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8150         },
8151
8152         // private
8153         adjustWidth : function(width){
8154             if(typeof width == "number"){
8155                 if(this.autoBoxAdjust && !this.isBorderBox()){
8156                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8157                 }
8158                 if(width < 0){
8159                     width = 0;
8160                 }
8161             }
8162             return width;
8163         },
8164
8165         // private
8166         adjustHeight : function(height){
8167             if(typeof height == "number"){
8168                if(this.autoBoxAdjust && !this.isBorderBox()){
8169                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8170                }
8171                if(height < 0){
8172                    height = 0;
8173                }
8174             }
8175             return height;
8176         },
8177
8178         /**
8179          * Set the width of the element
8180          * @param {Number} width The new width
8181          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8182          * @return {Roo.Element} this
8183          */
8184         setWidth : function(width, animate){
8185             width = this.adjustWidth(width);
8186             if(!animate || !A){
8187                 this.dom.style.width = this.addUnits(width);
8188             }else{
8189                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8190             }
8191             return this;
8192         },
8193
8194         /**
8195          * Set the height of the element
8196          * @param {Number} height The new height
8197          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8198          * @return {Roo.Element} this
8199          */
8200          setHeight : function(height, animate){
8201             height = this.adjustHeight(height);
8202             if(!animate || !A){
8203                 this.dom.style.height = this.addUnits(height);
8204             }else{
8205                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8206             }
8207             return this;
8208         },
8209
8210         /**
8211          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8212          * @param {Number} width The new width
8213          * @param {Number} height The new height
8214          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8215          * @return {Roo.Element} this
8216          */
8217          setSize : function(width, height, animate){
8218             if(typeof width == "object"){ // in case of object from getSize()
8219                 height = width.height; width = width.width;
8220             }
8221             width = this.adjustWidth(width); height = this.adjustHeight(height);
8222             if(!animate || !A){
8223                 this.dom.style.width = this.addUnits(width);
8224                 this.dom.style.height = this.addUnits(height);
8225             }else{
8226                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8227             }
8228             return this;
8229         },
8230
8231         /**
8232          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8233          * @param {Number} x X value for new position (coordinates are page-based)
8234          * @param {Number} y Y value for new position (coordinates are page-based)
8235          * @param {Number} width The new width
8236          * @param {Number} height The new height
8237          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8238          * @return {Roo.Element} this
8239          */
8240         setBounds : function(x, y, width, height, animate){
8241             if(!animate || !A){
8242                 this.setSize(width, height);
8243                 this.setLocation(x, y);
8244             }else{
8245                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8246                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8247                               this.preanim(arguments, 4), 'motion');
8248             }
8249             return this;
8250         },
8251
8252         /**
8253          * 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.
8254          * @param {Roo.lib.Region} region The region to fill
8255          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8256          * @return {Roo.Element} this
8257          */
8258         setRegion : function(region, animate){
8259             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8260             return this;
8261         },
8262
8263         /**
8264          * Appends an event handler
8265          *
8266          * @param {String}   eventName     The type of event to append
8267          * @param {Function} fn        The method the event invokes
8268          * @param {Object} scope       (optional) The scope (this object) of the fn
8269          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8270          */
8271         addListener : function(eventName, fn, scope, options)
8272         {
8273             if (eventName == 'dblclick') { // doublclick (touchstart) - faked on touch.
8274                 this.addListener('touchstart', this.onTapHandler, this);
8275             }
8276             
8277             // we need to handle a special case where dom element is a svg element.
8278             // in this case we do not actua
8279             if (!this.dom) {
8280                 return;
8281             }
8282             
8283             if (this.dom instanceof SVGElement && !(this.dom instanceof SVGSVGElement)) {
8284                 if (typeof(this.listeners[eventName]) == 'undefined') {
8285                     this.listeners[eventName] =  new Roo.util.Event(this, eventName);
8286                 }
8287                 this.listeners[eventName].addListener(fn, scope, options);
8288                 return;
8289             }
8290             
8291                 
8292             Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8293             
8294             
8295         },
8296         tapedTwice : false,
8297         onTapHandler : function(event)
8298         {
8299             if(!this.tapedTwice) {
8300                 this.tapedTwice = true;
8301                 var s = this;
8302                 setTimeout( function() {
8303                     s.tapedTwice = false;
8304                 }, 300 );
8305                 return;
8306             }
8307             event.preventDefault();
8308             var revent = new MouseEvent('dblclick',  {
8309                 view: window,
8310                 bubbles: true,
8311                 cancelable: true
8312             });
8313              
8314             this.dom.dispatchEvent(revent);
8315             //action on double tap goes below
8316              
8317         }, 
8318  
8319         /**
8320          * Removes an event handler from this element
8321          * @param {String} eventName the type of event to remove
8322          * @param {Function} fn the method the event invokes
8323          * @param {Function} scope (needed for svg fake listeners)
8324          * @return {Roo.Element} this
8325          */
8326         removeListener : function(eventName, fn, scope){
8327             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8328             if (typeof(this.listeners) == 'undefined'  || typeof(this.listeners[eventName]) == 'undefined') {
8329                 return this;
8330             }
8331             this.listeners[eventName].removeListener(fn, scope);
8332             return this;
8333         },
8334
8335         /**
8336          * Removes all previous added listeners from this element
8337          * @return {Roo.Element} this
8338          */
8339         removeAllListeners : function(){
8340             E.purgeElement(this.dom);
8341             this.listeners = {};
8342             return this;
8343         },
8344
8345         relayEvent : function(eventName, observable){
8346             this.on(eventName, function(e){
8347                 observable.fireEvent(eventName, e);
8348             });
8349         },
8350
8351         
8352         /**
8353          * Set the opacity of the element
8354          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8355          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8356          * @return {Roo.Element} this
8357          */
8358          setOpacity : function(opacity, animate){
8359             if(!animate || !A){
8360                 var s = this.dom.style;
8361                 if(Roo.isIE){
8362                     s.zoom = 1;
8363                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8364                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8365                 }else{
8366                     s.opacity = opacity;
8367                 }
8368             }else{
8369                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8370             }
8371             return this;
8372         },
8373
8374         /**
8375          * Gets the left X coordinate
8376          * @param {Boolean} local True to get the local css position instead of page coordinate
8377          * @return {Number}
8378          */
8379         getLeft : function(local){
8380             if(!local){
8381                 return this.getX();
8382             }else{
8383                 return parseInt(this.getStyle("left"), 10) || 0;
8384             }
8385         },
8386
8387         /**
8388          * Gets the right X coordinate of the element (element X position + element width)
8389          * @param {Boolean} local True to get the local css position instead of page coordinate
8390          * @return {Number}
8391          */
8392         getRight : function(local){
8393             if(!local){
8394                 return this.getX() + this.getWidth();
8395             }else{
8396                 return (this.getLeft(true) + this.getWidth()) || 0;
8397             }
8398         },
8399
8400         /**
8401          * Gets the top Y coordinate
8402          * @param {Boolean} local True to get the local css position instead of page coordinate
8403          * @return {Number}
8404          */
8405         getTop : function(local) {
8406             if(!local){
8407                 return this.getY();
8408             }else{
8409                 return parseInt(this.getStyle("top"), 10) || 0;
8410             }
8411         },
8412
8413         /**
8414          * Gets the bottom Y coordinate of the element (element Y position + element height)
8415          * @param {Boolean} local True to get the local css position instead of page coordinate
8416          * @return {Number}
8417          */
8418         getBottom : function(local){
8419             if(!local){
8420                 return this.getY() + this.getHeight();
8421             }else{
8422                 return (this.getTop(true) + this.getHeight()) || 0;
8423             }
8424         },
8425
8426         /**
8427         * Initializes positioning on this element. If a desired position is not passed, it will make the
8428         * the element positioned relative IF it is not already positioned.
8429         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8430         * @param {Number} zIndex (optional) The zIndex to apply
8431         * @param {Number} x (optional) Set the page X position
8432         * @param {Number} y (optional) Set the page Y position
8433         */
8434         position : function(pos, zIndex, x, y){
8435             if(!pos){
8436                if(this.getStyle('position') == 'static'){
8437                    this.setStyle('position', 'relative');
8438                }
8439             }else{
8440                 this.setStyle("position", pos);
8441             }
8442             if(zIndex){
8443                 this.setStyle("z-index", zIndex);
8444             }
8445             if(x !== undefined && y !== undefined){
8446                 this.setXY([x, y]);
8447             }else if(x !== undefined){
8448                 this.setX(x);
8449             }else if(y !== undefined){
8450                 this.setY(y);
8451             }
8452         },
8453
8454         /**
8455         * Clear positioning back to the default when the document was loaded
8456         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8457         * @return {Roo.Element} this
8458          */
8459         clearPositioning : function(value){
8460             value = value ||'';
8461             this.setStyle({
8462                 "left": value,
8463                 "right": value,
8464                 "top": value,
8465                 "bottom": value,
8466                 "z-index": "",
8467                 "position" : "static"
8468             });
8469             return this;
8470         },
8471
8472         /**
8473         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8474         * snapshot before performing an update and then restoring the element.
8475         * @return {Object}
8476         */
8477         getPositioning : function(){
8478             var l = this.getStyle("left");
8479             var t = this.getStyle("top");
8480             return {
8481                 "position" : this.getStyle("position"),
8482                 "left" : l,
8483                 "right" : l ? "" : this.getStyle("right"),
8484                 "top" : t,
8485                 "bottom" : t ? "" : this.getStyle("bottom"),
8486                 "z-index" : this.getStyle("z-index")
8487             };
8488         },
8489
8490         /**
8491          * Gets the width of the border(s) for the specified side(s)
8492          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8493          * passing lr would get the border (l)eft width + the border (r)ight width.
8494          * @return {Number} The width of the sides passed added together
8495          */
8496         getBorderWidth : function(side){
8497             return this.addStyles(side, El.borders);
8498         },
8499
8500         /**
8501          * Gets the width of the padding(s) for the specified side(s)
8502          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8503          * passing lr would get the padding (l)eft + the padding (r)ight.
8504          * @return {Number} The padding of the sides passed added together
8505          */
8506         getPadding : function(side){
8507             return this.addStyles(side, El.paddings);
8508         },
8509
8510         /**
8511         * Set positioning with an object returned by getPositioning().
8512         * @param {Object} posCfg
8513         * @return {Roo.Element} this
8514          */
8515         setPositioning : function(pc){
8516             this.applyStyles(pc);
8517             if(pc.right == "auto"){
8518                 this.dom.style.right = "";
8519             }
8520             if(pc.bottom == "auto"){
8521                 this.dom.style.bottom = "";
8522             }
8523             return this;
8524         },
8525
8526         // private
8527         fixDisplay : function(){
8528             if(this.getStyle("display") == "none"){
8529                 this.setStyle("visibility", "hidden");
8530                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8531                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8532                     this.setStyle("display", "block");
8533                 }
8534             }
8535         },
8536
8537         /**
8538          * Quick set left and top adding default units
8539          * @param {String} left The left CSS property value
8540          * @param {String} top The top CSS property value
8541          * @return {Roo.Element} this
8542          */
8543          setLeftTop : function(left, top){
8544             this.dom.style.left = this.addUnits(left);
8545             this.dom.style.top = this.addUnits(top);
8546             return this;
8547         },
8548
8549         /**
8550          * Move this element relative to its current position.
8551          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8552          * @param {Number} distance How far to move the element in pixels
8553          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8554          * @return {Roo.Element} this
8555          */
8556          move : function(direction, distance, animate){
8557             var xy = this.getXY();
8558             direction = direction.toLowerCase();
8559             switch(direction){
8560                 case "l":
8561                 case "left":
8562                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8563                     break;
8564                case "r":
8565                case "right":
8566                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8567                     break;
8568                case "t":
8569                case "top":
8570                case "up":
8571                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8572                     break;
8573                case "b":
8574                case "bottom":
8575                case "down":
8576                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8577                     break;
8578             }
8579             return this;
8580         },
8581
8582         /**
8583          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8584          * @return {Roo.Element} this
8585          */
8586         clip : function(){
8587             if(!this.isClipped){
8588                this.isClipped = true;
8589                this.originalClip = {
8590                    "o": this.getStyle("overflow"),
8591                    "x": this.getStyle("overflow-x"),
8592                    "y": this.getStyle("overflow-y")
8593                };
8594                this.setStyle("overflow", "hidden");
8595                this.setStyle("overflow-x", "hidden");
8596                this.setStyle("overflow-y", "hidden");
8597             }
8598             return this;
8599         },
8600
8601         /**
8602          *  Return clipping (overflow) to original clipping before clip() was called
8603          * @return {Roo.Element} this
8604          */
8605         unclip : function(){
8606             if(this.isClipped){
8607                 this.isClipped = false;
8608                 var o = this.originalClip;
8609                 if(o.o){this.setStyle("overflow", o.o);}
8610                 if(o.x){this.setStyle("overflow-x", o.x);}
8611                 if(o.y){this.setStyle("overflow-y", o.y);}
8612             }
8613             return this;
8614         },
8615
8616
8617         /**
8618          * Gets the x,y coordinates specified by the anchor position on the element.
8619          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8620          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8621          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8622          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8623          * @return {Array} [x, y] An array containing the element's x and y coordinates
8624          */
8625         getAnchorXY : function(anchor, local, s){
8626             //Passing a different size is useful for pre-calculating anchors,
8627             //especially for anchored animations that change the el size.
8628
8629             var w, h, vp = false;
8630             if(!s){
8631                 var d = this.dom;
8632                 if(d == document.body || d == document){
8633                     vp = true;
8634                     w = D.getViewWidth(); h = D.getViewHeight();
8635                 }else{
8636                     w = this.getWidth(); h = this.getHeight();
8637                 }
8638             }else{
8639                 w = s.width;  h = s.height;
8640             }
8641             var x = 0, y = 0, r = Math.round;
8642             switch((anchor || "tl").toLowerCase()){
8643                 case "c":
8644                     x = r(w*.5);
8645                     y = r(h*.5);
8646                 break;
8647                 case "t":
8648                     x = r(w*.5);
8649                     y = 0;
8650                 break;
8651                 case "l":
8652                     x = 0;
8653                     y = r(h*.5);
8654                 break;
8655                 case "r":
8656                     x = w;
8657                     y = r(h*.5);
8658                 break;
8659                 case "b":
8660                     x = r(w*.5);
8661                     y = h;
8662                 break;
8663                 case "tl":
8664                     x = 0;
8665                     y = 0;
8666                 break;
8667                 case "bl":
8668                     x = 0;
8669                     y = h;
8670                 break;
8671                 case "br":
8672                     x = w;
8673                     y = h;
8674                 break;
8675                 case "tr":
8676                     x = w;
8677                     y = 0;
8678                 break;
8679             }
8680             if(local === true){
8681                 return [x, y];
8682             }
8683             if(vp){
8684                 var sc = this.getScroll();
8685                 return [x + sc.left, y + sc.top];
8686             }
8687             //Add the element's offset xy
8688             var o = this.getXY();
8689             return [x+o[0], y+o[1]];
8690         },
8691
8692         /**
8693          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8694          * supported position values.
8695          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8696          * @param {String} position The position to align to.
8697          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8698          * @return {Array} [x, y]
8699          */
8700         getAlignToXY : function(el, p, o)
8701         {
8702             el = Roo.get(el);
8703             var d = this.dom;
8704             if(!el.dom){
8705                 throw "Element.alignTo with an element that doesn't exist";
8706             }
8707             var c = false; //constrain to viewport
8708             var p1 = "", p2 = "";
8709             o = o || [0,0];
8710
8711             if(!p){
8712                 p = "tl-bl";
8713             }else if(p == "?"){
8714                 p = "tl-bl?";
8715             }else if(p.indexOf("-") == -1){
8716                 p = "tl-" + p;
8717             }
8718             p = p.toLowerCase();
8719             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8720             if(!m){
8721                throw "Element.alignTo with an invalid alignment " + p;
8722             }
8723             p1 = m[1]; p2 = m[2]; c = !!m[3];
8724
8725             //Subtract the aligned el's internal xy from the target's offset xy
8726             //plus custom offset to get the aligned el's new offset xy
8727             var a1 = this.getAnchorXY(p1, true);
8728             var a2 = el.getAnchorXY(p2, false);
8729             var x = a2[0] - a1[0] + o[0];
8730             var y = a2[1] - a1[1] + o[1];
8731             if(c){
8732                 //constrain the aligned el to viewport if necessary
8733                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8734                 // 5px of margin for ie
8735                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8736
8737                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8738                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8739                 //otherwise swap the aligned el to the opposite border of the target.
8740                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8741                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8742                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
8743                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8744
8745                var doc = document;
8746                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8747                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8748
8749                if((x+w) > dw + scrollX){
8750                     x = swapX ? r.left-w : dw+scrollX-w;
8751                 }
8752                if(x < scrollX){
8753                    x = swapX ? r.right : scrollX;
8754                }
8755                if((y+h) > dh + scrollY){
8756                     y = swapY ? r.top-h : dh+scrollY-h;
8757                 }
8758                if (y < scrollY){
8759                    y = swapY ? r.bottom : scrollY;
8760                }
8761             }
8762             return [x,y];
8763         },
8764
8765         // private
8766         getConstrainToXY : function(){
8767             var os = {top:0, left:0, bottom:0, right: 0};
8768
8769             return function(el, local, offsets, proposedXY){
8770                 el = Roo.get(el);
8771                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8772
8773                 var vw, vh, vx = 0, vy = 0;
8774                 if(el.dom == document.body || el.dom == document){
8775                     vw = Roo.lib.Dom.getViewWidth();
8776                     vh = Roo.lib.Dom.getViewHeight();
8777                 }else{
8778                     vw = el.dom.clientWidth;
8779                     vh = el.dom.clientHeight;
8780                     if(!local){
8781                         var vxy = el.getXY();
8782                         vx = vxy[0];
8783                         vy = vxy[1];
8784                     }
8785                 }
8786
8787                 var s = el.getScroll();
8788
8789                 vx += offsets.left + s.left;
8790                 vy += offsets.top + s.top;
8791
8792                 vw -= offsets.right;
8793                 vh -= offsets.bottom;
8794
8795                 var vr = vx+vw;
8796                 var vb = vy+vh;
8797
8798                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8799                 var x = xy[0], y = xy[1];
8800                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8801
8802                 // only move it if it needs it
8803                 var moved = false;
8804
8805                 // first validate right/bottom
8806                 if((x + w) > vr){
8807                     x = vr - w;
8808                     moved = true;
8809                 }
8810                 if((y + h) > vb){
8811                     y = vb - h;
8812                     moved = true;
8813                 }
8814                 // then make sure top/left isn't negative
8815                 if(x < vx){
8816                     x = vx;
8817                     moved = true;
8818                 }
8819                 if(y < vy){
8820                     y = vy;
8821                     moved = true;
8822                 }
8823                 return moved ? [x, y] : false;
8824             };
8825         }(),
8826
8827         // private
8828         adjustForConstraints : function(xy, parent, offsets){
8829             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8830         },
8831
8832         /**
8833          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8834          * document it aligns it to the viewport.
8835          * The position parameter is optional, and can be specified in any one of the following formats:
8836          * <ul>
8837          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8838          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8839          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8840          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8841          *   <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
8842          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8843          * </ul>
8844          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8845          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8846          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8847          * that specified in order to enforce the viewport constraints.
8848          * Following are all of the supported anchor positions:
8849     <pre>
8850     Value  Description
8851     -----  -----------------------------
8852     tl     The top left corner (default)
8853     t      The center of the top edge
8854     tr     The top right corner
8855     l      The center of the left edge
8856     c      In the center of the element
8857     r      The center of the right edge
8858     bl     The bottom left corner
8859     b      The center of the bottom edge
8860     br     The bottom right corner
8861     </pre>
8862     Example Usage:
8863     <pre><code>
8864     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8865     el.alignTo("other-el");
8866
8867     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8868     el.alignTo("other-el", "tr?");
8869
8870     // align the bottom right corner of el with the center left edge of other-el
8871     el.alignTo("other-el", "br-l?");
8872
8873     // align the center of el with the bottom left corner of other-el and
8874     // adjust the x position by -6 pixels (and the y position by 0)
8875     el.alignTo("other-el", "c-bl", [-6, 0]);
8876     </code></pre>
8877          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8878          * @param {String} position The position to align to.
8879          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8880          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8881          * @return {Roo.Element} this
8882          */
8883         alignTo : function(element, position, offsets, animate){
8884             var xy = this.getAlignToXY(element, position, offsets);
8885             this.setXY(xy, this.preanim(arguments, 3));
8886             return this;
8887         },
8888
8889         /**
8890          * Anchors an element to another element and realigns it when the window is resized.
8891          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8892          * @param {String} position The position to align to.
8893          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8894          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8895          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8896          * is a number, it is used as the buffer delay (defaults to 50ms).
8897          * @param {Function} callback The function to call after the animation finishes
8898          * @return {Roo.Element} this
8899          */
8900         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8901             var action = function(){
8902                 this.alignTo(el, alignment, offsets, animate);
8903                 Roo.callback(callback, this);
8904             };
8905             Roo.EventManager.onWindowResize(action, this);
8906             var tm = typeof monitorScroll;
8907             if(tm != 'undefined'){
8908                 Roo.EventManager.on(window, 'scroll', action, this,
8909                     {buffer: tm == 'number' ? monitorScroll : 50});
8910             }
8911             action.call(this); // align immediately
8912             return this;
8913         },
8914         /**
8915          * Clears any opacity settings from this element. Required in some cases for IE.
8916          * @return {Roo.Element} this
8917          */
8918         clearOpacity : function(){
8919             if (window.ActiveXObject) {
8920                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8921                     this.dom.style.filter = "";
8922                 }
8923             } else {
8924                 this.dom.style.opacity = "";
8925                 this.dom.style["-moz-opacity"] = "";
8926                 this.dom.style["-khtml-opacity"] = "";
8927             }
8928             return this;
8929         },
8930
8931         /**
8932          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8933          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8934          * @return {Roo.Element} this
8935          */
8936         hide : function(animate){
8937             this.setVisible(false, this.preanim(arguments, 0));
8938             return this;
8939         },
8940
8941         /**
8942         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8943         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8944          * @return {Roo.Element} this
8945          */
8946         show : function(animate){
8947             this.setVisible(true, this.preanim(arguments, 0));
8948             return this;
8949         },
8950
8951         /**
8952          * @private Test if size has a unit, otherwise appends the default
8953          */
8954         addUnits : function(size){
8955             return Roo.Element.addUnits(size, this.defaultUnit);
8956         },
8957
8958         /**
8959          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8960          * @return {Roo.Element} this
8961          */
8962         beginMeasure : function(){
8963             var el = this.dom;
8964             if(el.offsetWidth || el.offsetHeight){
8965                 return this; // offsets work already
8966             }
8967             var changed = [];
8968             var p = this.dom, b = document.body; // start with this element
8969             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8970                 var pe = Roo.get(p);
8971                 if(pe.getStyle('display') == 'none'){
8972                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8973                     p.style.visibility = "hidden";
8974                     p.style.display = "block";
8975                 }
8976                 p = p.parentNode;
8977             }
8978             this._measureChanged = changed;
8979             return this;
8980
8981         },
8982
8983         /**
8984          * Restores displays to before beginMeasure was called
8985          * @return {Roo.Element} this
8986          */
8987         endMeasure : function(){
8988             var changed = this._measureChanged;
8989             if(changed){
8990                 for(var i = 0, len = changed.length; i < len; i++) {
8991                     var r = changed[i];
8992                     r.el.style.visibility = r.visibility;
8993                     r.el.style.display = "none";
8994                 }
8995                 this._measureChanged = null;
8996             }
8997             return this;
8998         },
8999
9000         /**
9001         * Update the innerHTML of this element, optionally searching for and processing scripts
9002         * @param {String} html The new HTML
9003         * @param {Boolean} loadScripts (optional) true to look for and process scripts
9004         * @param {Function} callback For async script loading you can be noticed when the update completes
9005         * @return {Roo.Element} this
9006          */
9007         update : function(html, loadScripts, callback){
9008             if(typeof html == "undefined"){
9009                 html = "";
9010             }
9011             if(loadScripts !== true){
9012                 this.dom.innerHTML = html;
9013                 if(typeof callback == "function"){
9014                     callback();
9015                 }
9016                 return this;
9017             }
9018             var id = Roo.id();
9019             var dom = this.dom;
9020
9021             html += '<span id="' + id + '"></span>';
9022
9023             E.onAvailable(id, function(){
9024                 var hd = document.getElementsByTagName("head")[0];
9025                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
9026                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
9027                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
9028
9029                 var match;
9030                 while(match = re.exec(html)){
9031                     var attrs = match[1];
9032                     var srcMatch = attrs ? attrs.match(srcRe) : false;
9033                     if(srcMatch && srcMatch[2]){
9034                        var s = document.createElement("script");
9035                        s.src = srcMatch[2];
9036                        var typeMatch = attrs.match(typeRe);
9037                        if(typeMatch && typeMatch[2]){
9038                            s.type = typeMatch[2];
9039                        }
9040                        hd.appendChild(s);
9041                     }else if(match[2] && match[2].length > 0){
9042                         if(window.execScript) {
9043                            window.execScript(match[2]);
9044                         } else {
9045                             /**
9046                              * eval:var:id
9047                              * eval:var:dom
9048                              * eval:var:html
9049                              * 
9050                              */
9051                            window.eval(match[2]);
9052                         }
9053                     }
9054                 }
9055                 var el = document.getElementById(id);
9056                 if(el){el.parentNode.removeChild(el);}
9057                 if(typeof callback == "function"){
9058                     callback();
9059                 }
9060             });
9061             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
9062             return this;
9063         },
9064
9065         /**
9066          * Direct access to the UpdateManager update() method (takes the same parameters).
9067          * @param {String/Function} url The url for this request or a function to call to get the url
9068          * @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}
9069          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9070          * @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.
9071          * @return {Roo.Element} this
9072          */
9073         load : function(){
9074             var um = this.getUpdateManager();
9075             um.update.apply(um, arguments);
9076             return this;
9077         },
9078
9079         /**
9080         * Gets this element's UpdateManager
9081         * @return {Roo.UpdateManager} The UpdateManager
9082         */
9083         getUpdateManager : function(){
9084             if(!this.updateManager){
9085                 this.updateManager = new Roo.UpdateManager(this);
9086             }
9087             return this.updateManager;
9088         },
9089
9090         /**
9091          * Disables text selection for this element (normalized across browsers)
9092          * @return {Roo.Element} this
9093          */
9094         unselectable : function(){
9095             this.dom.unselectable = "on";
9096             this.swallowEvent("selectstart", true);
9097             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
9098             this.addClass("x-unselectable");
9099             return this;
9100         },
9101
9102         /**
9103         * Calculates the x, y to center this element on the screen
9104         * @return {Array} The x, y values [x, y]
9105         */
9106         getCenterXY : function(){
9107             return this.getAlignToXY(document, 'c-c');
9108         },
9109
9110         /**
9111         * Centers the Element in either the viewport, or another Element.
9112         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
9113         */
9114         center : function(centerIn){
9115             this.alignTo(centerIn || document, 'c-c');
9116             return this;
9117         },
9118
9119         /**
9120          * Tests various css rules/browsers to determine if this element uses a border box
9121          * @return {Boolean}
9122          */
9123         isBorderBox : function(){
9124             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
9125         },
9126
9127         /**
9128          * Return a box {x, y, width, height} that can be used to set another elements
9129          * size/location to match this element.
9130          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
9131          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
9132          * @return {Object} box An object in the format {x, y, width, height}
9133          */
9134         getBox : function(contentBox, local){
9135             var xy;
9136             if(!local){
9137                 xy = this.getXY();
9138             }else{
9139                 var left = parseInt(this.getStyle("left"), 10) || 0;
9140                 var top = parseInt(this.getStyle("top"), 10) || 0;
9141                 xy = [left, top];
9142             }
9143             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9144             if(!contentBox){
9145                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9146             }else{
9147                 var l = this.getBorderWidth("l")+this.getPadding("l");
9148                 var r = this.getBorderWidth("r")+this.getPadding("r");
9149                 var t = this.getBorderWidth("t")+this.getPadding("t");
9150                 var b = this.getBorderWidth("b")+this.getPadding("b");
9151                 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)};
9152             }
9153             bx.right = bx.x + bx.width;
9154             bx.bottom = bx.y + bx.height;
9155             return bx;
9156         },
9157
9158         /**
9159          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9160          for more information about the sides.
9161          * @param {String} sides
9162          * @return {Number}
9163          */
9164         getFrameWidth : function(sides, onlyContentBox){
9165             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9166         },
9167
9168         /**
9169          * 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.
9170          * @param {Object} box The box to fill {x, y, width, height}
9171          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9172          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9173          * @return {Roo.Element} this
9174          */
9175         setBox : function(box, adjust, animate){
9176             var w = box.width, h = box.height;
9177             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9178                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9179                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9180             }
9181             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9182             return this;
9183         },
9184
9185         /**
9186          * Forces the browser to repaint this element
9187          * @return {Roo.Element} this
9188          */
9189          repaint : function(){
9190             var dom = this.dom;
9191             this.addClass("x-repaint");
9192             setTimeout(function(){
9193                 Roo.get(dom).removeClass("x-repaint");
9194             }, 1);
9195             return this;
9196         },
9197
9198         /**
9199          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9200          * then it returns the calculated width of the sides (see getPadding)
9201          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9202          * @return {Object/Number}
9203          */
9204         getMargins : function(side){
9205             if(!side){
9206                 return {
9207                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9208                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9209                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9210                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9211                 };
9212             }else{
9213                 return this.addStyles(side, El.margins);
9214              }
9215         },
9216
9217         // private
9218         addStyles : function(sides, styles){
9219             var val = 0, v, w;
9220             for(var i = 0, len = sides.length; i < len; i++){
9221                 v = this.getStyle(styles[sides.charAt(i)]);
9222                 if(v){
9223                      w = parseInt(v, 10);
9224                      if(w){ val += w; }
9225                 }
9226             }
9227             return val;
9228         },
9229
9230         /**
9231          * Creates a proxy element of this element
9232          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9233          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9234          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9235          * @return {Roo.Element} The new proxy element
9236          */
9237         createProxy : function(config, renderTo, matchBox){
9238             if(renderTo){
9239                 renderTo = Roo.getDom(renderTo);
9240             }else{
9241                 renderTo = document.body;
9242             }
9243             config = typeof config == "object" ?
9244                 config : {tag : "div", cls: config};
9245             var proxy = Roo.DomHelper.append(renderTo, config, true);
9246             if(matchBox){
9247                proxy.setBox(this.getBox());
9248             }
9249             return proxy;
9250         },
9251
9252         /**
9253          * Puts a mask over this element to disable user interaction. Requires core.css.
9254          * This method can only be applied to elements which accept child nodes.
9255          * @param {String} msg (optional) A message to display in the mask
9256          * @param {String} msgCls (optional) A css class to apply to the msg element
9257          * @return {Element} The mask  element
9258          */
9259         mask : function(msg, msgCls)
9260         {
9261             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9262                 this.setStyle("position", "relative");
9263             }
9264             if(!this._mask){
9265                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9266             }
9267             
9268             this.addClass("x-masked");
9269             this._mask.setDisplayed(true);
9270             
9271             // we wander
9272             var z = 0;
9273             var dom = this.dom;
9274             while (dom && dom.style) {
9275                 if (!isNaN(parseInt(dom.style.zIndex))) {
9276                     z = Math.max(z, parseInt(dom.style.zIndex));
9277                 }
9278                 dom = dom.parentNode;
9279             }
9280             // if we are masking the body - then it hides everything..
9281             if (this.dom == document.body) {
9282                 z = 1000000;
9283                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9284                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9285             }
9286            
9287             if(typeof msg == 'string'){
9288                 if(!this._maskMsg){
9289                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9290                         cls: "roo-el-mask-msg", 
9291                         cn: [
9292                             {
9293                                 tag: 'i',
9294                                 cls: 'fa fa-spinner fa-spin'
9295                             },
9296                             {
9297                                 tag: 'div'
9298                             }   
9299                         ]
9300                     }, true);
9301                 }
9302                 var mm = this._maskMsg;
9303                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9304                 if (mm.dom.lastChild) { // weird IE issue?
9305                     mm.dom.lastChild.innerHTML = msg;
9306                 }
9307                 mm.setDisplayed(true);
9308                 mm.center(this);
9309                 mm.setStyle('z-index', z + 102);
9310             }
9311             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9312                 this._mask.setHeight(this.getHeight());
9313             }
9314             this._mask.setStyle('z-index', z + 100);
9315             
9316             return this._mask;
9317         },
9318
9319         /**
9320          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9321          * it is cached for reuse.
9322          */
9323         unmask : function(removeEl){
9324             if(this._mask){
9325                 if(removeEl === true){
9326                     this._mask.remove();
9327                     delete this._mask;
9328                     if(this._maskMsg){
9329                         this._maskMsg.remove();
9330                         delete this._maskMsg;
9331                     }
9332                 }else{
9333                     this._mask.setDisplayed(false);
9334                     if(this._maskMsg){
9335                         this._maskMsg.setDisplayed(false);
9336                     }
9337                 }
9338             }
9339             this.removeClass("x-masked");
9340         },
9341
9342         /**
9343          * Returns true if this element is masked
9344          * @return {Boolean}
9345          */
9346         isMasked : function(){
9347             return this._mask && this._mask.isVisible();
9348         },
9349
9350         /**
9351          * Creates an iframe shim for this element to keep selects and other windowed objects from
9352          * showing through.
9353          * @return {Roo.Element} The new shim element
9354          */
9355         createShim : function(){
9356             var el = document.createElement('iframe');
9357             el.frameBorder = 'no';
9358             el.className = 'roo-shim';
9359             if(Roo.isIE && Roo.isSecure){
9360                 el.src = Roo.SSL_SECURE_URL;
9361             }
9362             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9363             shim.autoBoxAdjust = false;
9364             return shim;
9365         },
9366
9367         /**
9368          * Removes this element from the DOM and deletes it from the cache
9369          */
9370         remove : function(){
9371             if(this.dom.parentNode){
9372                 this.dom.parentNode.removeChild(this.dom);
9373             }
9374             delete El.cache[this.dom.id];
9375         },
9376
9377         /**
9378          * Sets up event handlers to add and remove a css class when the mouse is over this element
9379          * @param {String} className
9380          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9381          * mouseout events for children elements
9382          * @return {Roo.Element} this
9383          */
9384         addClassOnOver : function(className, preventFlicker){
9385             this.on("mouseover", function(){
9386                 Roo.fly(this, '_internal').addClass(className);
9387             }, this.dom);
9388             var removeFn = function(e){
9389                 if(preventFlicker !== true || !e.within(this, true)){
9390                     Roo.fly(this, '_internal').removeClass(className);
9391                 }
9392             };
9393             this.on("mouseout", removeFn, this.dom);
9394             return this;
9395         },
9396
9397         /**
9398          * Sets up event handlers to add and remove a css class when this element has the focus
9399          * @param {String} className
9400          * @return {Roo.Element} this
9401          */
9402         addClassOnFocus : function(className){
9403             this.on("focus", function(){
9404                 Roo.fly(this, '_internal').addClass(className);
9405             }, this.dom);
9406             this.on("blur", function(){
9407                 Roo.fly(this, '_internal').removeClass(className);
9408             }, this.dom);
9409             return this;
9410         },
9411         /**
9412          * 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)
9413          * @param {String} className
9414          * @return {Roo.Element} this
9415          */
9416         addClassOnClick : function(className){
9417             var dom = this.dom;
9418             this.on("mousedown", function(){
9419                 Roo.fly(dom, '_internal').addClass(className);
9420                 var d = Roo.get(document);
9421                 var fn = function(){
9422                     Roo.fly(dom, '_internal').removeClass(className);
9423                     d.removeListener("mouseup", fn);
9424                 };
9425                 d.on("mouseup", fn);
9426             });
9427             return this;
9428         },
9429
9430         /**
9431          * Stops the specified event from bubbling and optionally prevents the default action
9432          * @param {String} eventName
9433          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9434          * @return {Roo.Element} this
9435          */
9436         swallowEvent : function(eventName, preventDefault){
9437             var fn = function(e){
9438                 e.stopPropagation();
9439                 if(preventDefault){
9440                     e.preventDefault();
9441                 }
9442             };
9443             if(eventName instanceof Array){
9444                 for(var i = 0, len = eventName.length; i < len; i++){
9445                      this.on(eventName[i], fn);
9446                 }
9447                 return this;
9448             }
9449             this.on(eventName, fn);
9450             return this;
9451         },
9452
9453         /**
9454          * @private
9455          */
9456         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9457
9458         /**
9459          * Sizes this element to its parent element's dimensions performing
9460          * neccessary box adjustments.
9461          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9462          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9463          * @return {Roo.Element} this
9464          */
9465         fitToParent : function(monitorResize, targetParent) {
9466           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9467           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9468           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9469             return this;
9470           }
9471           var p = Roo.get(targetParent || this.dom.parentNode);
9472           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9473           if (monitorResize === true) {
9474             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9475             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9476           }
9477           return this;
9478         },
9479
9480         /**
9481          * Gets the next sibling, skipping text nodes
9482          * @return {HTMLElement} The next sibling or null
9483          */
9484         getNextSibling : function(){
9485             var n = this.dom.nextSibling;
9486             while(n && n.nodeType != 1){
9487                 n = n.nextSibling;
9488             }
9489             return n;
9490         },
9491
9492         /**
9493          * Gets the previous sibling, skipping text nodes
9494          * @return {HTMLElement} The previous sibling or null
9495          */
9496         getPrevSibling : function(){
9497             var n = this.dom.previousSibling;
9498             while(n && n.nodeType != 1){
9499                 n = n.previousSibling;
9500             }
9501             return n;
9502         },
9503
9504
9505         /**
9506          * Appends the passed element(s) to this element
9507          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9508          * @return {Roo.Element} this
9509          */
9510         appendChild: function(el){
9511             el = Roo.get(el);
9512             el.appendTo(this);
9513             return this;
9514         },
9515
9516         /**
9517          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9518          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9519          * automatically generated with the specified attributes.
9520          * @param {HTMLElement} insertBefore (optional) a child element of this element
9521          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9522          * @return {Roo.Element} The new child element
9523          */
9524         createChild: function(config, insertBefore, returnDom){
9525             config = config || {tag:'div'};
9526             if(insertBefore){
9527                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9528             }
9529             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9530         },
9531
9532         /**
9533          * Appends this element to the passed element
9534          * @param {String/HTMLElement/Element} el The new parent element
9535          * @return {Roo.Element} this
9536          */
9537         appendTo: function(el){
9538             el = Roo.getDom(el);
9539             el.appendChild(this.dom);
9540             return this;
9541         },
9542
9543         /**
9544          * Inserts this element before the passed element in the DOM
9545          * @param {String/HTMLElement/Element} el The element to insert before
9546          * @return {Roo.Element} this
9547          */
9548         insertBefore: function(el){
9549             el = Roo.getDom(el);
9550             el.parentNode.insertBefore(this.dom, el);
9551             return this;
9552         },
9553
9554         /**
9555          * Inserts this element after the passed element in the DOM
9556          * @param {String/HTMLElement/Element} el The element to insert after
9557          * @return {Roo.Element} this
9558          */
9559         insertAfter: function(el){
9560             el = Roo.getDom(el);
9561             el.parentNode.insertBefore(this.dom, el.nextSibling);
9562             return this;
9563         },
9564
9565         /**
9566          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9567          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9568          * @return {Roo.Element} The new child
9569          */
9570         insertFirst: function(el, returnDom){
9571             el = el || {};
9572             if(typeof el == 'object' && !el.nodeType){ // dh config
9573                 return this.createChild(el, this.dom.firstChild, returnDom);
9574             }else{
9575                 el = Roo.getDom(el);
9576                 this.dom.insertBefore(el, this.dom.firstChild);
9577                 return !returnDom ? Roo.get(el) : el;
9578             }
9579         },
9580
9581         /**
9582          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9583          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9584          * @param {String} where (optional) 'before' or 'after' defaults to before
9585          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9586          * @return {Roo.Element} the inserted Element
9587          */
9588         insertSibling: function(el, where, returnDom){
9589             where = where ? where.toLowerCase() : 'before';
9590             el = el || {};
9591             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9592
9593             if(typeof el == 'object' && !el.nodeType){ // dh config
9594                 if(where == 'after' && !this.dom.nextSibling){
9595                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9596                 }else{
9597                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9598                 }
9599
9600             }else{
9601                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9602                             where == 'before' ? this.dom : this.dom.nextSibling);
9603                 if(!returnDom){
9604                     rt = Roo.get(rt);
9605                 }
9606             }
9607             return rt;
9608         },
9609
9610         /**
9611          * Creates and wraps this element with another element
9612          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9613          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9614          * @return {HTMLElement/Element} The newly created wrapper element
9615          */
9616         wrap: function(config, returnDom){
9617             if(!config){
9618                 config = {tag: "div"};
9619             }
9620             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9621             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9622             return newEl;
9623         },
9624
9625         /**
9626          * Replaces the passed element with this element
9627          * @param {String/HTMLElement/Element} el The element to replace
9628          * @return {Roo.Element} this
9629          */
9630         replace: function(el){
9631             el = Roo.get(el);
9632             this.insertBefore(el);
9633             el.remove();
9634             return this;
9635         },
9636
9637         /**
9638          * Inserts an html fragment into this element
9639          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9640          * @param {String} html The HTML fragment
9641          * @param {Boolean} returnEl True to return an Roo.Element
9642          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9643          */
9644         insertHtml : function(where, html, returnEl){
9645             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9646             return returnEl ? Roo.get(el) : el;
9647         },
9648
9649         /**
9650          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9651          * @param {Object} o The object with the attributes
9652          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9653          * @return {Roo.Element} this
9654          */
9655         set : function(o, useSet){
9656             var el = this.dom;
9657             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9658             for(var attr in o){
9659                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9660                 if(attr=="cls"){
9661                     el.className = o["cls"];
9662                 }else{
9663                     if(useSet) {
9664                         el.setAttribute(attr, o[attr]);
9665                     } else {
9666                         el[attr] = o[attr];
9667                     }
9668                 }
9669             }
9670             if(o.style){
9671                 Roo.DomHelper.applyStyles(el, o.style);
9672             }
9673             return this;
9674         },
9675
9676         /**
9677          * Convenience method for constructing a KeyMap
9678          * @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:
9679          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9680          * @param {Function} fn The function to call
9681          * @param {Object} scope (optional) The scope of the function
9682          * @return {Roo.KeyMap} The KeyMap created
9683          */
9684         addKeyListener : function(key, fn, scope){
9685             var config;
9686             if(typeof key != "object" || key instanceof Array){
9687                 config = {
9688                     key: key,
9689                     fn: fn,
9690                     scope: scope
9691                 };
9692             }else{
9693                 config = {
9694                     key : key.key,
9695                     shift : key.shift,
9696                     ctrl : key.ctrl,
9697                     alt : key.alt,
9698                     fn: fn,
9699                     scope: scope
9700                 };
9701             }
9702             return new Roo.KeyMap(this, config);
9703         },
9704
9705         /**
9706          * Creates a KeyMap for this element
9707          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9708          * @return {Roo.KeyMap} The KeyMap created
9709          */
9710         addKeyMap : function(config){
9711             return new Roo.KeyMap(this, config);
9712         },
9713
9714         /**
9715          * Returns true if this element is scrollable.
9716          * @return {Boolean}
9717          */
9718          isScrollable : function(){
9719             var dom = this.dom;
9720             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9721         },
9722
9723         /**
9724          * 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().
9725          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9726          * @param {Number} value The new scroll value
9727          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9728          * @return {Element} this
9729          */
9730
9731         scrollTo : function(side, value, animate){
9732             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9733             if(!animate || !A){
9734                 this.dom[prop] = value;
9735             }else{
9736                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9737                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9738             }
9739             return this;
9740         },
9741
9742         /**
9743          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9744          * within this element's scrollable range.
9745          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9746          * @param {Number} distance How far to scroll the element in pixels
9747          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9748          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9749          * was scrolled as far as it could go.
9750          */
9751          scroll : function(direction, distance, animate){
9752              if(!this.isScrollable()){
9753                  return;
9754              }
9755              var el = this.dom;
9756              var l = el.scrollLeft, t = el.scrollTop;
9757              var w = el.scrollWidth, h = el.scrollHeight;
9758              var cw = el.clientWidth, ch = el.clientHeight;
9759              direction = direction.toLowerCase();
9760              var scrolled = false;
9761              var a = this.preanim(arguments, 2);
9762              switch(direction){
9763                  case "l":
9764                  case "left":
9765                      if(w - l > cw){
9766                          var v = Math.min(l + distance, w-cw);
9767                          this.scrollTo("left", v, a);
9768                          scrolled = true;
9769                      }
9770                      break;
9771                 case "r":
9772                 case "right":
9773                      if(l > 0){
9774                          var v = Math.max(l - distance, 0);
9775                          this.scrollTo("left", v, a);
9776                          scrolled = true;
9777                      }
9778                      break;
9779                 case "t":
9780                 case "top":
9781                 case "up":
9782                      if(t > 0){
9783                          var v = Math.max(t - distance, 0);
9784                          this.scrollTo("top", v, a);
9785                          scrolled = true;
9786                      }
9787                      break;
9788                 case "b":
9789                 case "bottom":
9790                 case "down":
9791                      if(h - t > ch){
9792                          var v = Math.min(t + distance, h-ch);
9793                          this.scrollTo("top", v, a);
9794                          scrolled = true;
9795                      }
9796                      break;
9797              }
9798              return scrolled;
9799         },
9800
9801         /**
9802          * Translates the passed page coordinates into left/top css values for this element
9803          * @param {Number/Array} x The page x or an array containing [x, y]
9804          * @param {Number} y The page y
9805          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9806          */
9807         translatePoints : function(x, y){
9808             if(typeof x == 'object' || x instanceof Array){
9809                 y = x[1]; x = x[0];
9810             }
9811             var p = this.getStyle('position');
9812             var o = this.getXY();
9813
9814             var l = parseInt(this.getStyle('left'), 10);
9815             var t = parseInt(this.getStyle('top'), 10);
9816
9817             if(isNaN(l)){
9818                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9819             }
9820             if(isNaN(t)){
9821                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9822             }
9823
9824             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9825         },
9826
9827         /**
9828          * Returns the current scroll position of the element.
9829          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9830          */
9831         getScroll : function(){
9832             var d = this.dom, doc = document;
9833             if(d == doc || d == doc.body){
9834                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9835                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9836                 return {left: l, top: t};
9837             }else{
9838                 return {left: d.scrollLeft, top: d.scrollTop};
9839             }
9840         },
9841
9842         /**
9843          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9844          * are convert to standard 6 digit hex color.
9845          * @param {String} attr The css attribute
9846          * @param {String} defaultValue The default value to use when a valid color isn't found
9847          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9848          * YUI color anims.
9849          */
9850         getColor : function(attr, defaultValue, prefix){
9851             var v = this.getStyle(attr);
9852             if(!v || v == "transparent" || v == "inherit") {
9853                 return defaultValue;
9854             }
9855             var color = typeof prefix == "undefined" ? "#" : prefix;
9856             if(v.substr(0, 4) == "rgb("){
9857                 var rvs = v.slice(4, v.length -1).split(",");
9858                 for(var i = 0; i < 3; i++){
9859                     var h = parseInt(rvs[i]).toString(16);
9860                     if(h < 16){
9861                         h = "0" + h;
9862                     }
9863                     color += h;
9864                 }
9865             } else {
9866                 if(v.substr(0, 1) == "#"){
9867                     if(v.length == 4) {
9868                         for(var i = 1; i < 4; i++){
9869                             var c = v.charAt(i);
9870                             color +=  c + c;
9871                         }
9872                     }else if(v.length == 7){
9873                         color += v.substr(1);
9874                     }
9875                 }
9876             }
9877             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9878         },
9879
9880         /**
9881          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9882          * gradient background, rounded corners and a 4-way shadow.
9883          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9884          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9885          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9886          * @return {Roo.Element} this
9887          */
9888         boxWrap : function(cls){
9889             cls = cls || 'x-box';
9890             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9891             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9892             return el;
9893         },
9894
9895         /**
9896          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9897          * @param {String} namespace The namespace in which to look for the attribute
9898          * @param {String} name The attribute name
9899          * @return {String} The attribute value
9900          */
9901         getAttributeNS : Roo.isIE ? function(ns, name){
9902             var d = this.dom;
9903             var type = typeof d[ns+":"+name];
9904             if(type != 'undefined' && type != 'unknown'){
9905                 return d[ns+":"+name];
9906             }
9907             return d[name];
9908         } : function(ns, name){
9909             var d = this.dom;
9910             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9911         },
9912         
9913         
9914         /**
9915          * Sets or Returns the value the dom attribute value
9916          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9917          * @param {String} value (optional) The value to set the attribute to
9918          * @return {String} The attribute value
9919          */
9920         attr : function(name){
9921             if (arguments.length > 1) {
9922                 this.dom.setAttribute(name, arguments[1]);
9923                 return arguments[1];
9924             }
9925             if (typeof(name) == 'object') {
9926                 for(var i in name) {
9927                     this.attr(i, name[i]);
9928                 }
9929                 return name;
9930             }
9931             
9932             
9933             if (!this.dom.hasAttribute(name)) {
9934                 return undefined;
9935             }
9936             return this.dom.getAttribute(name);
9937         }
9938         
9939         
9940         
9941     };
9942
9943     var ep = El.prototype;
9944
9945     /**
9946      * Appends an event handler (Shorthand for addListener)
9947      * @param {String}   eventName     The type of event to append
9948      * @param {Function} fn        The method the event invokes
9949      * @param {Object} scope       (optional) The scope (this object) of the fn
9950      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9951      * @method
9952      */
9953     ep.on = ep.addListener;
9954         // backwards compat
9955     ep.mon = ep.addListener;
9956
9957     /**
9958      * Removes an event handler from this element (shorthand for removeListener)
9959      * @param {String} eventName the type of event to remove
9960      * @param {Function} fn the method the event invokes
9961      * @return {Roo.Element} this
9962      * @method
9963      */
9964     ep.un = ep.removeListener;
9965
9966     /**
9967      * true to automatically adjust width and height settings for box-model issues (default to true)
9968      */
9969     ep.autoBoxAdjust = true;
9970
9971     // private
9972     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9973
9974     // private
9975     El.addUnits = function(v, defaultUnit){
9976         if(v === "" || v == "auto"){
9977             return v;
9978         }
9979         if(v === undefined){
9980             return '';
9981         }
9982         if(typeof v == "number" || !El.unitPattern.test(v)){
9983             return v + (defaultUnit || 'px');
9984         }
9985         return v;
9986     };
9987
9988     // special markup used throughout Roo when box wrapping elements
9989     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>';
9990     /**
9991      * Visibility mode constant - Use visibility to hide element
9992      * @static
9993      * @type Number
9994      */
9995     El.VISIBILITY = 1;
9996     /**
9997      * Visibility mode constant - Use display to hide element
9998      * @static
9999      * @type Number
10000      */
10001     El.DISPLAY = 2;
10002
10003     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
10004     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
10005     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
10006
10007
10008
10009     /**
10010      * @private
10011      */
10012     El.cache = {};
10013
10014     var docEl;
10015
10016     /**
10017      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10018      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10019      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10020      * @return {Element} The Element object
10021      * @static
10022      */
10023     El.get = function(el){
10024         var ex, elm, id;
10025         if(!el){ return null; }
10026         if(typeof el == "string"){ // element id
10027             if(!(elm = document.getElementById(el))){
10028                 return null;
10029             }
10030             if(ex = El.cache[el]){
10031                 ex.dom = elm;
10032             }else{
10033                 ex = El.cache[el] = new El(elm);
10034             }
10035             return ex;
10036         }else if(el.tagName){ // dom element
10037             if(!(id = el.id)){
10038                 id = Roo.id(el);
10039             }
10040             if(ex = El.cache[id]){
10041                 ex.dom = el;
10042             }else{
10043                 ex = El.cache[id] = new El(el);
10044             }
10045             return ex;
10046         }else if(el instanceof El){
10047             if(el != docEl){
10048                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
10049                                                               // catch case where it hasn't been appended
10050                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
10051             }
10052             return el;
10053         }else if(el.isComposite){
10054             return el;
10055         }else if(el instanceof Array){
10056             return El.select(el);
10057         }else if(el == document){
10058             // create a bogus element object representing the document object
10059             if(!docEl){
10060                 var f = function(){};
10061                 f.prototype = El.prototype;
10062                 docEl = new f();
10063                 docEl.dom = document;
10064             }
10065             return docEl;
10066         }
10067         return null;
10068     };
10069
10070     // private
10071     El.uncache = function(el){
10072         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
10073             if(a[i]){
10074                 delete El.cache[a[i].id || a[i]];
10075             }
10076         }
10077     };
10078
10079     // private
10080     // Garbage collection - uncache elements/purge listeners on orphaned elements
10081     // so we don't hold a reference and cause the browser to retain them
10082     El.garbageCollect = function(){
10083         if(!Roo.enableGarbageCollector){
10084             clearInterval(El.collectorThread);
10085             return;
10086         }
10087         for(var eid in El.cache){
10088             var el = El.cache[eid], d = el.dom;
10089             // -------------------------------------------------------
10090             // Determining what is garbage:
10091             // -------------------------------------------------------
10092             // !d
10093             // dom node is null, definitely garbage
10094             // -------------------------------------------------------
10095             // !d.parentNode
10096             // no parentNode == direct orphan, definitely garbage
10097             // -------------------------------------------------------
10098             // !d.offsetParent && !document.getElementById(eid)
10099             // display none elements have no offsetParent so we will
10100             // also try to look it up by it's id. However, check
10101             // offsetParent first so we don't do unneeded lookups.
10102             // This enables collection of elements that are not orphans
10103             // directly, but somewhere up the line they have an orphan
10104             // parent.
10105             // -------------------------------------------------------
10106             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
10107                 delete El.cache[eid];
10108                 if(d && Roo.enableListenerCollection){
10109                     E.purgeElement(d);
10110                 }
10111             }
10112         }
10113     }
10114     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
10115
10116
10117     // dom is optional
10118     El.Flyweight = function(dom){
10119         this.dom = dom;
10120     };
10121     El.Flyweight.prototype = El.prototype;
10122
10123     El._flyweights = {};
10124     /**
10125      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10126      * the dom node can be overwritten by other code.
10127      * @param {String/HTMLElement} el The dom node or id
10128      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10129      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10130      * @static
10131      * @return {Element} The shared Element object
10132      */
10133     El.fly = function(el, named){
10134         named = named || '_global';
10135         el = Roo.getDom(el);
10136         if(!el){
10137             return null;
10138         }
10139         if(!El._flyweights[named]){
10140             El._flyweights[named] = new El.Flyweight();
10141         }
10142         El._flyweights[named].dom = el;
10143         return El._flyweights[named];
10144     };
10145
10146     /**
10147      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10148      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10149      * Shorthand of {@link Roo.Element#get}
10150      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10151      * @return {Element} The Element object
10152      * @member Roo
10153      * @method get
10154      */
10155     Roo.get = El.get;
10156     /**
10157      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10158      * the dom node can be overwritten by other code.
10159      * Shorthand of {@link Roo.Element#fly}
10160      * @param {String/HTMLElement} el The dom node or id
10161      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10162      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10163      * @static
10164      * @return {Element} The shared Element object
10165      * @member Roo
10166      * @method fly
10167      */
10168     Roo.fly = El.fly;
10169
10170     // speedy lookup for elements never to box adjust
10171     var noBoxAdjust = Roo.isStrict ? {
10172         select:1
10173     } : {
10174         input:1, select:1, textarea:1
10175     };
10176     if(Roo.isIE || Roo.isGecko){
10177         noBoxAdjust['button'] = 1;
10178     }
10179
10180
10181     Roo.EventManager.on(window, 'unload', function(){
10182         delete El.cache;
10183         delete El._flyweights;
10184     });
10185 })();
10186
10187
10188
10189
10190 if(Roo.DomQuery){
10191     Roo.Element.selectorFunction = Roo.DomQuery.select;
10192 }
10193
10194 Roo.Element.select = function(selector, unique, root){
10195     var els;
10196     if(typeof selector == "string"){
10197         els = Roo.Element.selectorFunction(selector, root);
10198     }else if(selector.length !== undefined){
10199         els = selector;
10200     }else{
10201         throw "Invalid selector";
10202     }
10203     if(unique === true){
10204         return new Roo.CompositeElement(els);
10205     }else{
10206         return new Roo.CompositeElementLite(els);
10207     }
10208 };
10209 /**
10210  * Selects elements based on the passed CSS selector to enable working on them as 1.
10211  * @param {String/Array} selector The CSS selector or an array of elements
10212  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10213  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10214  * @return {CompositeElementLite/CompositeElement}
10215  * @member Roo
10216  * @method select
10217  */
10218 Roo.select = Roo.Element.select;
10219
10220
10221
10222
10223
10224
10225
10226
10227
10228
10229
10230
10231
10232
10233 /*
10234  * Based on:
10235  * Ext JS Library 1.1.1
10236  * Copyright(c) 2006-2007, Ext JS, LLC.
10237  *
10238  * Originally Released Under LGPL - original licence link has changed is not relivant.
10239  *
10240  * Fork - LGPL
10241  * <script type="text/javascript">
10242  */
10243
10244
10245
10246 //Notifies Element that fx methods are available
10247 Roo.enableFx = true;
10248
10249 /**
10250  * @class Roo.Fx
10251  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10252  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10253  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10254  * Element effects to work.</p><br/>
10255  *
10256  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10257  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10258  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10259  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10260  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10261  * expected results and should be done with care.</p><br/>
10262  *
10263  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10264  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10265 <pre>
10266 Value  Description
10267 -----  -----------------------------
10268 tl     The top left corner
10269 t      The center of the top edge
10270 tr     The top right corner
10271 l      The center of the left edge
10272 r      The center of the right edge
10273 bl     The bottom left corner
10274 b      The center of the bottom edge
10275 br     The bottom right corner
10276 </pre>
10277  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10278  * below are common options that can be passed to any Fx method.</b>
10279  * @cfg {Function} callback A function called when the effect is finished
10280  * @cfg {Object} scope The scope of the effect function
10281  * @cfg {String} easing A valid Easing value for the effect
10282  * @cfg {String} afterCls A css class to apply after the effect
10283  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10284  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10285  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10286  * effects that end with the element being visually hidden, ignored otherwise)
10287  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10288  * a function which returns such a specification that will be applied to the Element after the effect finishes
10289  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10290  * @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
10291  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10292  */
10293 Roo.Fx = {
10294         /**
10295          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10296          * origin for the slide effect.  This function automatically handles wrapping the element with
10297          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10298          * Usage:
10299          *<pre><code>
10300 // default: slide the element in from the top
10301 el.slideIn();
10302
10303 // custom: slide the element in from the right with a 2-second duration
10304 el.slideIn('r', { duration: 2 });
10305
10306 // common config options shown with default values
10307 el.slideIn('t', {
10308     easing: 'easeOut',
10309     duration: .5
10310 });
10311 </code></pre>
10312          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10313          * @param {Object} options (optional) Object literal with any of the Fx config options
10314          * @return {Roo.Element} The Element
10315          */
10316     slideIn : function(anchor, o){
10317         var el = this.getFxEl();
10318         o = o || {};
10319
10320         el.queueFx(o, function(){
10321
10322             anchor = anchor || "t";
10323
10324             // fix display to visibility
10325             this.fixDisplay();
10326
10327             // restore values after effect
10328             var r = this.getFxRestore();
10329             var b = this.getBox();
10330             // fixed size for slide
10331             this.setSize(b);
10332
10333             // wrap if needed
10334             var wrap = this.fxWrap(r.pos, o, "hidden");
10335
10336             var st = this.dom.style;
10337             st.visibility = "visible";
10338             st.position = "absolute";
10339
10340             // clear out temp styles after slide and unwrap
10341             var after = function(){
10342                 el.fxUnwrap(wrap, r.pos, o);
10343                 st.width = r.width;
10344                 st.height = r.height;
10345                 el.afterFx(o);
10346             };
10347             // time to calc the positions
10348             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10349
10350             switch(anchor.toLowerCase()){
10351                 case "t":
10352                     wrap.setSize(b.width, 0);
10353                     st.left = st.bottom = "0";
10354                     a = {height: bh};
10355                 break;
10356                 case "l":
10357                     wrap.setSize(0, b.height);
10358                     st.right = st.top = "0";
10359                     a = {width: bw};
10360                 break;
10361                 case "r":
10362                     wrap.setSize(0, b.height);
10363                     wrap.setX(b.right);
10364                     st.left = st.top = "0";
10365                     a = {width: bw, points: pt};
10366                 break;
10367                 case "b":
10368                     wrap.setSize(b.width, 0);
10369                     wrap.setY(b.bottom);
10370                     st.left = st.top = "0";
10371                     a = {height: bh, points: pt};
10372                 break;
10373                 case "tl":
10374                     wrap.setSize(0, 0);
10375                     st.right = st.bottom = "0";
10376                     a = {width: bw, height: bh};
10377                 break;
10378                 case "bl":
10379                     wrap.setSize(0, 0);
10380                     wrap.setY(b.y+b.height);
10381                     st.right = st.top = "0";
10382                     a = {width: bw, height: bh, points: pt};
10383                 break;
10384                 case "br":
10385                     wrap.setSize(0, 0);
10386                     wrap.setXY([b.right, b.bottom]);
10387                     st.left = st.top = "0";
10388                     a = {width: bw, height: bh, points: pt};
10389                 break;
10390                 case "tr":
10391                     wrap.setSize(0, 0);
10392                     wrap.setX(b.x+b.width);
10393                     st.left = st.bottom = "0";
10394                     a = {width: bw, height: bh, points: pt};
10395                 break;
10396             }
10397             this.dom.style.visibility = "visible";
10398             wrap.show();
10399
10400             arguments.callee.anim = wrap.fxanim(a,
10401                 o,
10402                 'motion',
10403                 .5,
10404                 'easeOut', after);
10405         });
10406         return this;
10407     },
10408     
10409         /**
10410          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10411          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10412          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10413          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10414          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10415          * Usage:
10416          *<pre><code>
10417 // default: slide the element out to the top
10418 el.slideOut();
10419
10420 // custom: slide the element out to the right with a 2-second duration
10421 el.slideOut('r', { duration: 2 });
10422
10423 // common config options shown with default values
10424 el.slideOut('t', {
10425     easing: 'easeOut',
10426     duration: .5,
10427     remove: false,
10428     useDisplay: false
10429 });
10430 </code></pre>
10431          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10432          * @param {Object} options (optional) Object literal with any of the Fx config options
10433          * @return {Roo.Element} The Element
10434          */
10435     slideOut : function(anchor, o){
10436         var el = this.getFxEl();
10437         o = o || {};
10438
10439         el.queueFx(o, function(){
10440
10441             anchor = anchor || "t";
10442
10443             // restore values after effect
10444             var r = this.getFxRestore();
10445             
10446             var b = this.getBox();
10447             // fixed size for slide
10448             this.setSize(b);
10449
10450             // wrap if needed
10451             var wrap = this.fxWrap(r.pos, o, "visible");
10452
10453             var st = this.dom.style;
10454             st.visibility = "visible";
10455             st.position = "absolute";
10456
10457             wrap.setSize(b);
10458
10459             var after = function(){
10460                 if(o.useDisplay){
10461                     el.setDisplayed(false);
10462                 }else{
10463                     el.hide();
10464                 }
10465
10466                 el.fxUnwrap(wrap, r.pos, o);
10467
10468                 st.width = r.width;
10469                 st.height = r.height;
10470
10471                 el.afterFx(o);
10472             };
10473
10474             var a, zero = {to: 0};
10475             switch(anchor.toLowerCase()){
10476                 case "t":
10477                     st.left = st.bottom = "0";
10478                     a = {height: zero};
10479                 break;
10480                 case "l":
10481                     st.right = st.top = "0";
10482                     a = {width: zero};
10483                 break;
10484                 case "r":
10485                     st.left = st.top = "0";
10486                     a = {width: zero, points: {to:[b.right, b.y]}};
10487                 break;
10488                 case "b":
10489                     st.left = st.top = "0";
10490                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10491                 break;
10492                 case "tl":
10493                     st.right = st.bottom = "0";
10494                     a = {width: zero, height: zero};
10495                 break;
10496                 case "bl":
10497                     st.right = st.top = "0";
10498                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10499                 break;
10500                 case "br":
10501                     st.left = st.top = "0";
10502                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10503                 break;
10504                 case "tr":
10505                     st.left = st.bottom = "0";
10506                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10507                 break;
10508             }
10509
10510             arguments.callee.anim = wrap.fxanim(a,
10511                 o,
10512                 'motion',
10513                 .5,
10514                 "easeOut", after);
10515         });
10516         return this;
10517     },
10518
10519         /**
10520          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10521          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10522          * The element must be removed from the DOM using the 'remove' config option if desired.
10523          * Usage:
10524          *<pre><code>
10525 // default
10526 el.puff();
10527
10528 // common config options shown with default values
10529 el.puff({
10530     easing: 'easeOut',
10531     duration: .5,
10532     remove: false,
10533     useDisplay: false
10534 });
10535 </code></pre>
10536          * @param {Object} options (optional) Object literal with any of the Fx config options
10537          * @return {Roo.Element} The Element
10538          */
10539     puff : function(o){
10540         var el = this.getFxEl();
10541         o = o || {};
10542
10543         el.queueFx(o, function(){
10544             this.clearOpacity();
10545             this.show();
10546
10547             // restore values after effect
10548             var r = this.getFxRestore();
10549             var st = this.dom.style;
10550
10551             var after = function(){
10552                 if(o.useDisplay){
10553                     el.setDisplayed(false);
10554                 }else{
10555                     el.hide();
10556                 }
10557
10558                 el.clearOpacity();
10559
10560                 el.setPositioning(r.pos);
10561                 st.width = r.width;
10562                 st.height = r.height;
10563                 st.fontSize = '';
10564                 el.afterFx(o);
10565             };
10566
10567             var width = this.getWidth();
10568             var height = this.getHeight();
10569
10570             arguments.callee.anim = this.fxanim({
10571                     width : {to: this.adjustWidth(width * 2)},
10572                     height : {to: this.adjustHeight(height * 2)},
10573                     points : {by: [-(width * .5), -(height * .5)]},
10574                     opacity : {to: 0},
10575                     fontSize: {to:200, unit: "%"}
10576                 },
10577                 o,
10578                 'motion',
10579                 .5,
10580                 "easeOut", after);
10581         });
10582         return this;
10583     },
10584
10585         /**
10586          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10587          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10588          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10589          * Usage:
10590          *<pre><code>
10591 // default
10592 el.switchOff();
10593
10594 // all config options shown with default values
10595 el.switchOff({
10596     easing: 'easeIn',
10597     duration: .3,
10598     remove: false,
10599     useDisplay: false
10600 });
10601 </code></pre>
10602          * @param {Object} options (optional) Object literal with any of the Fx config options
10603          * @return {Roo.Element} The Element
10604          */
10605     switchOff : function(o){
10606         var el = this.getFxEl();
10607         o = o || {};
10608
10609         el.queueFx(o, function(){
10610             this.clearOpacity();
10611             this.clip();
10612
10613             // restore values after effect
10614             var r = this.getFxRestore();
10615             var st = this.dom.style;
10616
10617             var after = function(){
10618                 if(o.useDisplay){
10619                     el.setDisplayed(false);
10620                 }else{
10621                     el.hide();
10622                 }
10623
10624                 el.clearOpacity();
10625                 el.setPositioning(r.pos);
10626                 st.width = r.width;
10627                 st.height = r.height;
10628
10629                 el.afterFx(o);
10630             };
10631
10632             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10633                 this.clearOpacity();
10634                 (function(){
10635                     this.fxanim({
10636                         height:{to:1},
10637                         points:{by:[0, this.getHeight() * .5]}
10638                     }, o, 'motion', 0.3, 'easeIn', after);
10639                 }).defer(100, this);
10640             });
10641         });
10642         return this;
10643     },
10644
10645     /**
10646      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10647      * changed using the "attr" config option) and then fading back to the original color. If no original
10648      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10649      * Usage:
10650 <pre><code>
10651 // default: highlight background to yellow
10652 el.highlight();
10653
10654 // custom: highlight foreground text to blue for 2 seconds
10655 el.highlight("0000ff", { attr: 'color', duration: 2 });
10656
10657 // common config options shown with default values
10658 el.highlight("ffff9c", {
10659     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10660     endColor: (current color) or "ffffff",
10661     easing: 'easeIn',
10662     duration: 1
10663 });
10664 </code></pre>
10665      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10666      * @param {Object} options (optional) Object literal with any of the Fx config options
10667      * @return {Roo.Element} The Element
10668      */ 
10669     highlight : function(color, o){
10670         var el = this.getFxEl();
10671         o = o || {};
10672
10673         el.queueFx(o, function(){
10674             color = color || "ffff9c";
10675             attr = o.attr || "backgroundColor";
10676
10677             this.clearOpacity();
10678             this.show();
10679
10680             var origColor = this.getColor(attr);
10681             var restoreColor = this.dom.style[attr];
10682             endColor = (o.endColor || origColor) || "ffffff";
10683
10684             var after = function(){
10685                 el.dom.style[attr] = restoreColor;
10686                 el.afterFx(o);
10687             };
10688
10689             var a = {};
10690             a[attr] = {from: color, to: endColor};
10691             arguments.callee.anim = this.fxanim(a,
10692                 o,
10693                 'color',
10694                 1,
10695                 'easeIn', after);
10696         });
10697         return this;
10698     },
10699
10700    /**
10701     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10702     * Usage:
10703 <pre><code>
10704 // default: a single light blue ripple
10705 el.frame();
10706
10707 // custom: 3 red ripples lasting 3 seconds total
10708 el.frame("ff0000", 3, { duration: 3 });
10709
10710 // common config options shown with default values
10711 el.frame("C3DAF9", 1, {
10712     duration: 1 //duration of entire animation (not each individual ripple)
10713     // Note: Easing is not configurable and will be ignored if included
10714 });
10715 </code></pre>
10716     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10717     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10718     * @param {Object} options (optional) Object literal with any of the Fx config options
10719     * @return {Roo.Element} The Element
10720     */
10721     frame : function(color, count, o){
10722         var el = this.getFxEl();
10723         o = o || {};
10724
10725         el.queueFx(o, function(){
10726             color = color || "#C3DAF9";
10727             if(color.length == 6){
10728                 color = "#" + color;
10729             }
10730             count = count || 1;
10731             duration = o.duration || 1;
10732             this.show();
10733
10734             var b = this.getBox();
10735             var animFn = function(){
10736                 var proxy = this.createProxy({
10737
10738                      style:{
10739                         visbility:"hidden",
10740                         position:"absolute",
10741                         "z-index":"35000", // yee haw
10742                         border:"0px solid " + color
10743                      }
10744                   });
10745                 var scale = Roo.isBorderBox ? 2 : 1;
10746                 proxy.animate({
10747                     top:{from:b.y, to:b.y - 20},
10748                     left:{from:b.x, to:b.x - 20},
10749                     borderWidth:{from:0, to:10},
10750                     opacity:{from:1, to:0},
10751                     height:{from:b.height, to:(b.height + (20*scale))},
10752                     width:{from:b.width, to:(b.width + (20*scale))}
10753                 }, duration, function(){
10754                     proxy.remove();
10755                 });
10756                 if(--count > 0){
10757                      animFn.defer((duration/2)*1000, this);
10758                 }else{
10759                     el.afterFx(o);
10760                 }
10761             };
10762             animFn.call(this);
10763         });
10764         return this;
10765     },
10766
10767    /**
10768     * Creates a pause before any subsequent queued effects begin.  If there are
10769     * no effects queued after the pause it will have no effect.
10770     * Usage:
10771 <pre><code>
10772 el.pause(1);
10773 </code></pre>
10774     * @param {Number} seconds The length of time to pause (in seconds)
10775     * @return {Roo.Element} The Element
10776     */
10777     pause : function(seconds){
10778         var el = this.getFxEl();
10779         var o = {};
10780
10781         el.queueFx(o, function(){
10782             setTimeout(function(){
10783                 el.afterFx(o);
10784             }, seconds * 1000);
10785         });
10786         return this;
10787     },
10788
10789    /**
10790     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10791     * using the "endOpacity" config option.
10792     * Usage:
10793 <pre><code>
10794 // default: fade in from opacity 0 to 100%
10795 el.fadeIn();
10796
10797 // custom: fade in from opacity 0 to 75% over 2 seconds
10798 el.fadeIn({ endOpacity: .75, duration: 2});
10799
10800 // common config options shown with default values
10801 el.fadeIn({
10802     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10803     easing: 'easeOut',
10804     duration: .5
10805 });
10806 </code></pre>
10807     * @param {Object} options (optional) Object literal with any of the Fx config options
10808     * @return {Roo.Element} The Element
10809     */
10810     fadeIn : function(o){
10811         var el = this.getFxEl();
10812         o = o || {};
10813         el.queueFx(o, function(){
10814             this.setOpacity(0);
10815             this.fixDisplay();
10816             this.dom.style.visibility = 'visible';
10817             var to = o.endOpacity || 1;
10818             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10819                 o, null, .5, "easeOut", function(){
10820                 if(to == 1){
10821                     this.clearOpacity();
10822                 }
10823                 el.afterFx(o);
10824             });
10825         });
10826         return this;
10827     },
10828
10829    /**
10830     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10831     * using the "endOpacity" config option.
10832     * Usage:
10833 <pre><code>
10834 // default: fade out from the element's current opacity to 0
10835 el.fadeOut();
10836
10837 // custom: fade out from the element's current opacity to 25% over 2 seconds
10838 el.fadeOut({ endOpacity: .25, duration: 2});
10839
10840 // common config options shown with default values
10841 el.fadeOut({
10842     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10843     easing: 'easeOut',
10844     duration: .5
10845     remove: false,
10846     useDisplay: false
10847 });
10848 </code></pre>
10849     * @param {Object} options (optional) Object literal with any of the Fx config options
10850     * @return {Roo.Element} The Element
10851     */
10852     fadeOut : function(o){
10853         var el = this.getFxEl();
10854         o = o || {};
10855         el.queueFx(o, function(){
10856             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10857                 o, null, .5, "easeOut", function(){
10858                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10859                      this.dom.style.display = "none";
10860                 }else{
10861                      this.dom.style.visibility = "hidden";
10862                 }
10863                 this.clearOpacity();
10864                 el.afterFx(o);
10865             });
10866         });
10867         return this;
10868     },
10869
10870    /**
10871     * Animates the transition of an element's dimensions from a starting height/width
10872     * to an ending height/width.
10873     * Usage:
10874 <pre><code>
10875 // change height and width to 100x100 pixels
10876 el.scale(100, 100);
10877
10878 // common config options shown with default values.  The height and width will default to
10879 // the element's existing values if passed as null.
10880 el.scale(
10881     [element's width],
10882     [element's height], {
10883     easing: 'easeOut',
10884     duration: .35
10885 });
10886 </code></pre>
10887     * @param {Number} width  The new width (pass undefined to keep the original width)
10888     * @param {Number} height  The new height (pass undefined to keep the original height)
10889     * @param {Object} options (optional) Object literal with any of the Fx config options
10890     * @return {Roo.Element} The Element
10891     */
10892     scale : function(w, h, o){
10893         this.shift(Roo.apply({}, o, {
10894             width: w,
10895             height: h
10896         }));
10897         return this;
10898     },
10899
10900    /**
10901     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10902     * Any of these properties not specified in the config object will not be changed.  This effect 
10903     * requires that at least one new dimension, position or opacity setting must be passed in on
10904     * the config object in order for the function to have any effect.
10905     * Usage:
10906 <pre><code>
10907 // slide the element horizontally to x position 200 while changing the height and opacity
10908 el.shift({ x: 200, height: 50, opacity: .8 });
10909
10910 // common config options shown with default values.
10911 el.shift({
10912     width: [element's width],
10913     height: [element's height],
10914     x: [element's x position],
10915     y: [element's y position],
10916     opacity: [element's opacity],
10917     easing: 'easeOut',
10918     duration: .35
10919 });
10920 </code></pre>
10921     * @param {Object} options  Object literal with any of the Fx config options
10922     * @return {Roo.Element} The Element
10923     */
10924     shift : function(o){
10925         var el = this.getFxEl();
10926         o = o || {};
10927         el.queueFx(o, function(){
10928             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10929             if(w !== undefined){
10930                 a.width = {to: this.adjustWidth(w)};
10931             }
10932             if(h !== undefined){
10933                 a.height = {to: this.adjustHeight(h)};
10934             }
10935             if(x !== undefined || y !== undefined){
10936                 a.points = {to: [
10937                     x !== undefined ? x : this.getX(),
10938                     y !== undefined ? y : this.getY()
10939                 ]};
10940             }
10941             if(op !== undefined){
10942                 a.opacity = {to: op};
10943             }
10944             if(o.xy !== undefined){
10945                 a.points = {to: o.xy};
10946             }
10947             arguments.callee.anim = this.fxanim(a,
10948                 o, 'motion', .35, "easeOut", function(){
10949                 el.afterFx(o);
10950             });
10951         });
10952         return this;
10953     },
10954
10955         /**
10956          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10957          * ending point of the effect.
10958          * Usage:
10959          *<pre><code>
10960 // default: slide the element downward while fading out
10961 el.ghost();
10962
10963 // custom: slide the element out to the right with a 2-second duration
10964 el.ghost('r', { duration: 2 });
10965
10966 // common config options shown with default values
10967 el.ghost('b', {
10968     easing: 'easeOut',
10969     duration: .5
10970     remove: false,
10971     useDisplay: false
10972 });
10973 </code></pre>
10974          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10975          * @param {Object} options (optional) Object literal with any of the Fx config options
10976          * @return {Roo.Element} The Element
10977          */
10978     ghost : function(anchor, o){
10979         var el = this.getFxEl();
10980         o = o || {};
10981
10982         el.queueFx(o, function(){
10983             anchor = anchor || "b";
10984
10985             // restore values after effect
10986             var r = this.getFxRestore();
10987             var w = this.getWidth(),
10988                 h = this.getHeight();
10989
10990             var st = this.dom.style;
10991
10992             var after = function(){
10993                 if(o.useDisplay){
10994                     el.setDisplayed(false);
10995                 }else{
10996                     el.hide();
10997                 }
10998
10999                 el.clearOpacity();
11000                 el.setPositioning(r.pos);
11001                 st.width = r.width;
11002                 st.height = r.height;
11003
11004                 el.afterFx(o);
11005             };
11006
11007             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
11008             switch(anchor.toLowerCase()){
11009                 case "t":
11010                     pt.by = [0, -h];
11011                 break;
11012                 case "l":
11013                     pt.by = [-w, 0];
11014                 break;
11015                 case "r":
11016                     pt.by = [w, 0];
11017                 break;
11018                 case "b":
11019                     pt.by = [0, h];
11020                 break;
11021                 case "tl":
11022                     pt.by = [-w, -h];
11023                 break;
11024                 case "bl":
11025                     pt.by = [-w, h];
11026                 break;
11027                 case "br":
11028                     pt.by = [w, h];
11029                 break;
11030                 case "tr":
11031                     pt.by = [w, -h];
11032                 break;
11033             }
11034
11035             arguments.callee.anim = this.fxanim(a,
11036                 o,
11037                 'motion',
11038                 .5,
11039                 "easeOut", after);
11040         });
11041         return this;
11042     },
11043
11044         /**
11045          * Ensures that all effects queued after syncFx is called on the element are
11046          * run concurrently.  This is the opposite of {@link #sequenceFx}.
11047          * @return {Roo.Element} The Element
11048          */
11049     syncFx : function(){
11050         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11051             block : false,
11052             concurrent : true,
11053             stopFx : false
11054         });
11055         return this;
11056     },
11057
11058         /**
11059          * Ensures that all effects queued after sequenceFx is called on the element are
11060          * run in sequence.  This is the opposite of {@link #syncFx}.
11061          * @return {Roo.Element} The Element
11062          */
11063     sequenceFx : function(){
11064         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11065             block : false,
11066             concurrent : false,
11067             stopFx : false
11068         });
11069         return this;
11070     },
11071
11072         /* @private */
11073     nextFx : function(){
11074         var ef = this.fxQueue[0];
11075         if(ef){
11076             ef.call(this);
11077         }
11078     },
11079
11080         /**
11081          * Returns true if the element has any effects actively running or queued, else returns false.
11082          * @return {Boolean} True if element has active effects, else false
11083          */
11084     hasActiveFx : function(){
11085         return this.fxQueue && this.fxQueue[0];
11086     },
11087
11088         /**
11089          * Stops any running effects and clears the element's internal effects queue if it contains
11090          * any additional effects that haven't started yet.
11091          * @return {Roo.Element} The Element
11092          */
11093     stopFx : function(){
11094         if(this.hasActiveFx()){
11095             var cur = this.fxQueue[0];
11096             if(cur && cur.anim && cur.anim.isAnimated()){
11097                 this.fxQueue = [cur]; // clear out others
11098                 cur.anim.stop(true);
11099             }
11100         }
11101         return this;
11102     },
11103
11104         /* @private */
11105     beforeFx : function(o){
11106         if(this.hasActiveFx() && !o.concurrent){
11107            if(o.stopFx){
11108                this.stopFx();
11109                return true;
11110            }
11111            return false;
11112         }
11113         return true;
11114     },
11115
11116         /**
11117          * Returns true if the element is currently blocking so that no other effect can be queued
11118          * until this effect is finished, else returns false if blocking is not set.  This is commonly
11119          * used to ensure that an effect initiated by a user action runs to completion prior to the
11120          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
11121          * @return {Boolean} True if blocking, else false
11122          */
11123     hasFxBlock : function(){
11124         var q = this.fxQueue;
11125         return q && q[0] && q[0].block;
11126     },
11127
11128         /* @private */
11129     queueFx : function(o, fn){
11130         if(!this.fxQueue){
11131             this.fxQueue = [];
11132         }
11133         if(!this.hasFxBlock()){
11134             Roo.applyIf(o, this.fxDefaults);
11135             if(!o.concurrent){
11136                 var run = this.beforeFx(o);
11137                 fn.block = o.block;
11138                 this.fxQueue.push(fn);
11139                 if(run){
11140                     this.nextFx();
11141                 }
11142             }else{
11143                 fn.call(this);
11144             }
11145         }
11146         return this;
11147     },
11148
11149         /* @private */
11150     fxWrap : function(pos, o, vis){
11151         var wrap;
11152         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11153             var wrapXY;
11154             if(o.fixPosition){
11155                 wrapXY = this.getXY();
11156             }
11157             var div = document.createElement("div");
11158             div.style.visibility = vis;
11159             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11160             wrap.setPositioning(pos);
11161             if(wrap.getStyle("position") == "static"){
11162                 wrap.position("relative");
11163             }
11164             this.clearPositioning('auto');
11165             wrap.clip();
11166             wrap.dom.appendChild(this.dom);
11167             if(wrapXY){
11168                 wrap.setXY(wrapXY);
11169             }
11170         }
11171         return wrap;
11172     },
11173
11174         /* @private */
11175     fxUnwrap : function(wrap, pos, o){
11176         this.clearPositioning();
11177         this.setPositioning(pos);
11178         if(!o.wrap){
11179             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11180             wrap.remove();
11181         }
11182     },
11183
11184         /* @private */
11185     getFxRestore : function(){
11186         var st = this.dom.style;
11187         return {pos: this.getPositioning(), width: st.width, height : st.height};
11188     },
11189
11190         /* @private */
11191     afterFx : function(o){
11192         if(o.afterStyle){
11193             this.applyStyles(o.afterStyle);
11194         }
11195         if(o.afterCls){
11196             this.addClass(o.afterCls);
11197         }
11198         if(o.remove === true){
11199             this.remove();
11200         }
11201         Roo.callback(o.callback, o.scope, [this]);
11202         if(!o.concurrent){
11203             this.fxQueue.shift();
11204             this.nextFx();
11205         }
11206     },
11207
11208         /* @private */
11209     getFxEl : function(){ // support for composite element fx
11210         return Roo.get(this.dom);
11211     },
11212
11213         /* @private */
11214     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11215         animType = animType || 'run';
11216         opt = opt || {};
11217         var anim = Roo.lib.Anim[animType](
11218             this.dom, args,
11219             (opt.duration || defaultDur) || .35,
11220             (opt.easing || defaultEase) || 'easeOut',
11221             function(){
11222                 Roo.callback(cb, this);
11223             },
11224             this
11225         );
11226         opt.anim = anim;
11227         return anim;
11228     }
11229 };
11230
11231 // backwords compat
11232 Roo.Fx.resize = Roo.Fx.scale;
11233
11234 //When included, Roo.Fx is automatically applied to Element so that all basic
11235 //effects are available directly via the Element API
11236 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11237  * Based on:
11238  * Ext JS Library 1.1.1
11239  * Copyright(c) 2006-2007, Ext JS, LLC.
11240  *
11241  * Originally Released Under LGPL - original licence link has changed is not relivant.
11242  *
11243  * Fork - LGPL
11244  * <script type="text/javascript">
11245  */
11246
11247
11248 /**
11249  * @class Roo.CompositeElement
11250  * Standard composite class. Creates a Roo.Element for every element in the collection.
11251  * <br><br>
11252  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11253  * actions will be performed on all the elements in this collection.</b>
11254  * <br><br>
11255  * All methods return <i>this</i> and can be chained.
11256  <pre><code>
11257  var els = Roo.select("#some-el div.some-class", true);
11258  // or select directly from an existing element
11259  var el = Roo.get('some-el');
11260  el.select('div.some-class', true);
11261
11262  els.setWidth(100); // all elements become 100 width
11263  els.hide(true); // all elements fade out and hide
11264  // or
11265  els.setWidth(100).hide(true);
11266  </code></pre>
11267  */
11268 Roo.CompositeElement = function(els){
11269     this.elements = [];
11270     this.addElements(els);
11271 };
11272 Roo.CompositeElement.prototype = {
11273     isComposite: true,
11274     addElements : function(els){
11275         if(!els) {
11276             return this;
11277         }
11278         if(typeof els == "string"){
11279             els = Roo.Element.selectorFunction(els);
11280         }
11281         var yels = this.elements;
11282         var index = yels.length-1;
11283         for(var i = 0, len = els.length; i < len; i++) {
11284                 yels[++index] = Roo.get(els[i]);
11285         }
11286         return this;
11287     },
11288
11289     /**
11290     * Clears this composite and adds the elements returned by the passed selector.
11291     * @param {String/Array} els A string CSS selector, an array of elements or an element
11292     * @return {CompositeElement} this
11293     */
11294     fill : function(els){
11295         this.elements = [];
11296         this.add(els);
11297         return this;
11298     },
11299
11300     /**
11301     * Filters this composite to only elements that match the passed selector.
11302     * @param {String} selector A string CSS selector
11303     * @param {Boolean} inverse return inverse filter (not matches)
11304     * @return {CompositeElement} this
11305     */
11306     filter : function(selector, inverse){
11307         var els = [];
11308         inverse = inverse || false;
11309         this.each(function(el){
11310             var match = inverse ? !el.is(selector) : el.is(selector);
11311             if(match){
11312                 els[els.length] = el.dom;
11313             }
11314         });
11315         this.fill(els);
11316         return this;
11317     },
11318
11319     invoke : function(fn, args){
11320         var els = this.elements;
11321         for(var i = 0, len = els.length; i < len; i++) {
11322                 Roo.Element.prototype[fn].apply(els[i], args);
11323         }
11324         return this;
11325     },
11326     /**
11327     * Adds elements to this composite.
11328     * @param {String/Array} els A string CSS selector, an array of elements or an element
11329     * @return {CompositeElement} this
11330     */
11331     add : function(els){
11332         if(typeof els == "string"){
11333             this.addElements(Roo.Element.selectorFunction(els));
11334         }else if(els.length !== undefined){
11335             this.addElements(els);
11336         }else{
11337             this.addElements([els]);
11338         }
11339         return this;
11340     },
11341     /**
11342     * Calls the passed function passing (el, this, index) for each element in this composite.
11343     * @param {Function} fn The function to call
11344     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11345     * @return {CompositeElement} this
11346     */
11347     each : function(fn, scope){
11348         var els = this.elements;
11349         for(var i = 0, len = els.length; i < len; i++){
11350             if(fn.call(scope || els[i], els[i], this, i) === false) {
11351                 break;
11352             }
11353         }
11354         return this;
11355     },
11356
11357     /**
11358      * Returns the Element object at the specified index
11359      * @param {Number} index
11360      * @return {Roo.Element}
11361      */
11362     item : function(index){
11363         return this.elements[index] || null;
11364     },
11365
11366     /**
11367      * Returns the first Element
11368      * @return {Roo.Element}
11369      */
11370     first : function(){
11371         return this.item(0);
11372     },
11373
11374     /**
11375      * Returns the last Element
11376      * @return {Roo.Element}
11377      */
11378     last : function(){
11379         return this.item(this.elements.length-1);
11380     },
11381
11382     /**
11383      * Returns the number of elements in this composite
11384      * @return Number
11385      */
11386     getCount : function(){
11387         return this.elements.length;
11388     },
11389
11390     /**
11391      * Returns true if this composite contains the passed element
11392      * @return Boolean
11393      */
11394     contains : function(el){
11395         return this.indexOf(el) !== -1;
11396     },
11397
11398     /**
11399      * Returns true if this composite contains the passed element
11400      * @return Boolean
11401      */
11402     indexOf : function(el){
11403         return this.elements.indexOf(Roo.get(el));
11404     },
11405
11406
11407     /**
11408     * Removes the specified element(s).
11409     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11410     * or an array of any of those.
11411     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11412     * @return {CompositeElement} this
11413     */
11414     removeElement : function(el, removeDom){
11415         if(el instanceof Array){
11416             for(var i = 0, len = el.length; i < len; i++){
11417                 this.removeElement(el[i]);
11418             }
11419             return this;
11420         }
11421         var index = typeof el == 'number' ? el : this.indexOf(el);
11422         if(index !== -1){
11423             if(removeDom){
11424                 var d = this.elements[index];
11425                 if(d.dom){
11426                     d.remove();
11427                 }else{
11428                     d.parentNode.removeChild(d);
11429                 }
11430             }
11431             this.elements.splice(index, 1);
11432         }
11433         return this;
11434     },
11435
11436     /**
11437     * Replaces the specified element with the passed element.
11438     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11439     * to replace.
11440     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11441     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11442     * @return {CompositeElement} this
11443     */
11444     replaceElement : function(el, replacement, domReplace){
11445         var index = typeof el == 'number' ? el : this.indexOf(el);
11446         if(index !== -1){
11447             if(domReplace){
11448                 this.elements[index].replaceWith(replacement);
11449             }else{
11450                 this.elements.splice(index, 1, Roo.get(replacement))
11451             }
11452         }
11453         return this;
11454     },
11455
11456     /**
11457      * Removes all elements.
11458      */
11459     clear : function(){
11460         this.elements = [];
11461     }
11462 };
11463 (function(){
11464     Roo.CompositeElement.createCall = function(proto, fnName){
11465         if(!proto[fnName]){
11466             proto[fnName] = function(){
11467                 return this.invoke(fnName, arguments);
11468             };
11469         }
11470     };
11471     for(var fnName in Roo.Element.prototype){
11472         if(typeof Roo.Element.prototype[fnName] == "function"){
11473             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11474         }
11475     };
11476 })();
11477 /*
11478  * Based on:
11479  * Ext JS Library 1.1.1
11480  * Copyright(c) 2006-2007, Ext JS, LLC.
11481  *
11482  * Originally Released Under LGPL - original licence link has changed is not relivant.
11483  *
11484  * Fork - LGPL
11485  * <script type="text/javascript">
11486  */
11487
11488 /**
11489  * @class Roo.CompositeElementLite
11490  * @extends Roo.CompositeElement
11491  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11492  <pre><code>
11493  var els = Roo.select("#some-el div.some-class");
11494  // or select directly from an existing element
11495  var el = Roo.get('some-el');
11496  el.select('div.some-class');
11497
11498  els.setWidth(100); // all elements become 100 width
11499  els.hide(true); // all elements fade out and hide
11500  // or
11501  els.setWidth(100).hide(true);
11502  </code></pre><br><br>
11503  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11504  * actions will be performed on all the elements in this collection.</b>
11505  */
11506 Roo.CompositeElementLite = function(els){
11507     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11508     this.el = new Roo.Element.Flyweight();
11509 };
11510 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11511     addElements : function(els){
11512         if(els){
11513             if(els instanceof Array){
11514                 this.elements = this.elements.concat(els);
11515             }else{
11516                 var yels = this.elements;
11517                 var index = yels.length-1;
11518                 for(var i = 0, len = els.length; i < len; i++) {
11519                     yels[++index] = els[i];
11520                 }
11521             }
11522         }
11523         return this;
11524     },
11525     invoke : function(fn, args){
11526         var els = this.elements;
11527         var el = this.el;
11528         for(var i = 0, len = els.length; i < len; i++) {
11529             el.dom = els[i];
11530                 Roo.Element.prototype[fn].apply(el, args);
11531         }
11532         return this;
11533     },
11534     /**
11535      * Returns a flyweight Element of the dom element object at the specified index
11536      * @param {Number} index
11537      * @return {Roo.Element}
11538      */
11539     item : function(index){
11540         if(!this.elements[index]){
11541             return null;
11542         }
11543         this.el.dom = this.elements[index];
11544         return this.el;
11545     },
11546
11547     // fixes scope with flyweight
11548     addListener : function(eventName, handler, scope, opt){
11549         var els = this.elements;
11550         for(var i = 0, len = els.length; i < len; i++) {
11551             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11552         }
11553         return this;
11554     },
11555
11556     /**
11557     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11558     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11559     * a reference to the dom node, use el.dom.</b>
11560     * @param {Function} fn The function to call
11561     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11562     * @return {CompositeElement} this
11563     */
11564     each : function(fn, scope){
11565         var els = this.elements;
11566         var el = this.el;
11567         for(var i = 0, len = els.length; i < len; i++){
11568             el.dom = els[i];
11569                 if(fn.call(scope || el, el, this, i) === false){
11570                 break;
11571             }
11572         }
11573         return this;
11574     },
11575
11576     indexOf : function(el){
11577         return this.elements.indexOf(Roo.getDom(el));
11578     },
11579
11580     replaceElement : function(el, replacement, domReplace){
11581         var index = typeof el == 'number' ? el : this.indexOf(el);
11582         if(index !== -1){
11583             replacement = Roo.getDom(replacement);
11584             if(domReplace){
11585                 var d = this.elements[index];
11586                 d.parentNode.insertBefore(replacement, d);
11587                 d.parentNode.removeChild(d);
11588             }
11589             this.elements.splice(index, 1, replacement);
11590         }
11591         return this;
11592     }
11593 });
11594 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11595
11596 /*
11597  * Based on:
11598  * Ext JS Library 1.1.1
11599  * Copyright(c) 2006-2007, Ext JS, LLC.
11600  *
11601  * Originally Released Under LGPL - original licence link has changed is not relivant.
11602  *
11603  * Fork - LGPL
11604  * <script type="text/javascript">
11605  */
11606
11607  
11608
11609 /**
11610  * @class Roo.data.Connection
11611  * @extends Roo.util.Observable
11612  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11613  * either to a configured URL, or to a URL specified at request time. 
11614  * 
11615  * Requests made by this class are asynchronous, and will return immediately. No data from
11616  * the server will be available to the statement immediately following the {@link #request} call.
11617  * To process returned data, use a callback in the request options object, or an event listener.
11618  * 
11619  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11620  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11621  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11622  * property and, if present, the IFRAME's XML document as the responseXML property.
11623  * 
11624  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11625  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11626  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11627  * standard DOM methods.
11628  * @constructor
11629  * @param {Object} config a configuration object.
11630  */
11631 Roo.data.Connection = function(config){
11632     Roo.apply(this, config);
11633     this.addEvents({
11634         /**
11635          * @event beforerequest
11636          * Fires before a network request is made to retrieve a data object.
11637          * @param {Connection} conn This Connection object.
11638          * @param {Object} options The options config object passed to the {@link #request} method.
11639          */
11640         "beforerequest" : true,
11641         /**
11642          * @event requestcomplete
11643          * Fires if the request was successfully completed.
11644          * @param {Connection} conn This Connection object.
11645          * @param {Object} response The XHR object containing the response data.
11646          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11647          * @param {Object} options The options config object passed to the {@link #request} method.
11648          */
11649         "requestcomplete" : true,
11650         /**
11651          * @event requestexception
11652          * Fires if an error HTTP status was returned from the server.
11653          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11654          * @param {Connection} conn This Connection object.
11655          * @param {Object} response The XHR object containing the response data.
11656          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11657          * @param {Object} options The options config object passed to the {@link #request} method.
11658          */
11659         "requestexception" : true
11660     });
11661     Roo.data.Connection.superclass.constructor.call(this);
11662 };
11663
11664 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11665     /**
11666      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11667      */
11668     /**
11669      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11670      * extra parameters to each request made by this object. (defaults to undefined)
11671      */
11672     /**
11673      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11674      *  to each request made by this object. (defaults to undefined)
11675      */
11676     /**
11677      * @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)
11678      */
11679     /**
11680      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11681      */
11682     timeout : 30000,
11683     /**
11684      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11685      * @type Boolean
11686      */
11687     autoAbort:false,
11688
11689     /**
11690      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11691      * @type Boolean
11692      */
11693     disableCaching: true,
11694
11695     /**
11696      * Sends an HTTP request to a remote server.
11697      * @param {Object} options An object which may contain the following properties:<ul>
11698      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11699      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11700      * request, a url encoded string or a function to call to get either.</li>
11701      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11702      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11703      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11704      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11705      * <li>options {Object} The parameter to the request call.</li>
11706      * <li>success {Boolean} True if the request succeeded.</li>
11707      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11708      * </ul></li>
11709      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11710      * The callback is passed the following parameters:<ul>
11711      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11712      * <li>options {Object} The parameter to the request call.</li>
11713      * </ul></li>
11714      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11715      * The callback is passed the following parameters:<ul>
11716      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11717      * <li>options {Object} The parameter to the request call.</li>
11718      * </ul></li>
11719      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11720      * for the callback function. Defaults to the browser window.</li>
11721      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11722      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11723      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11724      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11725      * params for the post data. Any params will be appended to the URL.</li>
11726      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11727      * </ul>
11728      * @return {Number} transactionId
11729      */
11730     request : function(o){
11731         if(this.fireEvent("beforerequest", this, o) !== false){
11732             var p = o.params;
11733
11734             if(typeof p == "function"){
11735                 p = p.call(o.scope||window, o);
11736             }
11737             if(typeof p == "object"){
11738                 p = Roo.urlEncode(o.params);
11739             }
11740             if(this.extraParams){
11741                 var extras = Roo.urlEncode(this.extraParams);
11742                 p = p ? (p + '&' + extras) : extras;
11743             }
11744
11745             var url = o.url || this.url;
11746             if(typeof url == 'function'){
11747                 url = url.call(o.scope||window, o);
11748             }
11749
11750             if(o.form){
11751                 var form = Roo.getDom(o.form);
11752                 url = url || form.action;
11753
11754                 var enctype = form.getAttribute("enctype");
11755                 
11756                 if (o.formData) {
11757                     return this.doFormDataUpload(o, url);
11758                 }
11759                 
11760                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11761                     return this.doFormUpload(o, p, url);
11762                 }
11763                 var f = Roo.lib.Ajax.serializeForm(form);
11764                 p = p ? (p + '&' + f) : f;
11765             }
11766             
11767             if (!o.form && o.formData) {
11768                 o.formData = o.formData === true ? new FormData() : o.formData;
11769                 for (var k in o.params) {
11770                     o.formData.append(k,o.params[k]);
11771                 }
11772                     
11773                 return this.doFormDataUpload(o, url);
11774             }
11775             
11776
11777             var hs = o.headers;
11778             if(this.defaultHeaders){
11779                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11780                 if(!o.headers){
11781                     o.headers = hs;
11782                 }
11783             }
11784
11785             var cb = {
11786                 success: this.handleResponse,
11787                 failure: this.handleFailure,
11788                 scope: this,
11789                 argument: {options: o},
11790                 timeout : o.timeout || this.timeout
11791             };
11792
11793             var method = o.method||this.method||(p ? "POST" : "GET");
11794
11795             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11796                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11797             }
11798
11799             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11800                 if(o.autoAbort){
11801                     this.abort();
11802                 }
11803             }else if(this.autoAbort !== false){
11804                 this.abort();
11805             }
11806
11807             if((method == 'GET' && p) || o.xmlData){
11808                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11809                 p = '';
11810             }
11811             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11812             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11813             Roo.lib.Ajax.useDefaultHeader == true;
11814             return this.transId;
11815         }else{
11816             Roo.callback(o.callback, o.scope, [o, null, null]);
11817             return null;
11818         }
11819     },
11820
11821     /**
11822      * Determine whether this object has a request outstanding.
11823      * @param {Number} transactionId (Optional) defaults to the last transaction
11824      * @return {Boolean} True if there is an outstanding request.
11825      */
11826     isLoading : function(transId){
11827         if(transId){
11828             return Roo.lib.Ajax.isCallInProgress(transId);
11829         }else{
11830             return this.transId ? true : false;
11831         }
11832     },
11833
11834     /**
11835      * Aborts any outstanding request.
11836      * @param {Number} transactionId (Optional) defaults to the last transaction
11837      */
11838     abort : function(transId){
11839         if(transId || this.isLoading()){
11840             Roo.lib.Ajax.abort(transId || this.transId);
11841         }
11842     },
11843
11844     // private
11845     handleResponse : function(response){
11846         this.transId = false;
11847         var options = response.argument.options;
11848         response.argument = options ? options.argument : null;
11849         this.fireEvent("requestcomplete", this, response, options);
11850         Roo.callback(options.success, options.scope, [response, options]);
11851         Roo.callback(options.callback, options.scope, [options, true, response]);
11852     },
11853
11854     // private
11855     handleFailure : function(response, e){
11856         this.transId = false;
11857         var options = response.argument.options;
11858         response.argument = options ? options.argument : null;
11859         this.fireEvent("requestexception", this, response, options, e);
11860         Roo.callback(options.failure, options.scope, [response, options]);
11861         Roo.callback(options.callback, options.scope, [options, false, response]);
11862     },
11863
11864     // private
11865     doFormUpload : function(o, ps, url){
11866         var id = Roo.id();
11867         var frame = document.createElement('iframe');
11868         frame.id = id;
11869         frame.name = id;
11870         frame.className = 'x-hidden';
11871         if(Roo.isIE){
11872             frame.src = Roo.SSL_SECURE_URL;
11873         }
11874         document.body.appendChild(frame);
11875
11876         if(Roo.isIE){
11877            document.frames[id].name = id;
11878         }
11879
11880         var form = Roo.getDom(o.form);
11881         form.target = id;
11882         form.method = 'POST';
11883         form.enctype = form.encoding = 'multipart/form-data';
11884         if(url){
11885             form.action = url;
11886         }
11887
11888         var hiddens, hd;
11889         if(ps){ // add dynamic params
11890             hiddens = [];
11891             ps = Roo.urlDecode(ps, false);
11892             for(var k in ps){
11893                 if(ps.hasOwnProperty(k)){
11894                     hd = document.createElement('input');
11895                     hd.type = 'hidden';
11896                     hd.name = k;
11897                     hd.value = ps[k];
11898                     form.appendChild(hd);
11899                     hiddens.push(hd);
11900                 }
11901             }
11902         }
11903
11904         function cb(){
11905             var r = {  // bogus response object
11906                 responseText : '',
11907                 responseXML : null
11908             };
11909
11910             r.argument = o ? o.argument : null;
11911
11912             try { //
11913                 var doc;
11914                 if(Roo.isIE){
11915                     doc = frame.contentWindow.document;
11916                 }else {
11917                     doc = (frame.contentDocument || window.frames[id].document);
11918                 }
11919                 if(doc && doc.body){
11920                     r.responseText = doc.body.innerHTML;
11921                 }
11922                 if(doc && doc.XMLDocument){
11923                     r.responseXML = doc.XMLDocument;
11924                 }else {
11925                     r.responseXML = doc;
11926                 }
11927             }
11928             catch(e) {
11929                 // ignore
11930             }
11931
11932             Roo.EventManager.removeListener(frame, 'load', cb, this);
11933
11934             this.fireEvent("requestcomplete", this, r, o);
11935             Roo.callback(o.success, o.scope, [r, o]);
11936             Roo.callback(o.callback, o.scope, [o, true, r]);
11937
11938             setTimeout(function(){document.body.removeChild(frame);}, 100);
11939         }
11940
11941         Roo.EventManager.on(frame, 'load', cb, this);
11942         form.submit();
11943
11944         if(hiddens){ // remove dynamic params
11945             for(var i = 0, len = hiddens.length; i < len; i++){
11946                 form.removeChild(hiddens[i]);
11947             }
11948         }
11949     },
11950     // this is a 'formdata version???'
11951     
11952     
11953     doFormDataUpload : function(o,  url)
11954     {
11955         var formData;
11956         if (o.form) {
11957             var form =  Roo.getDom(o.form);
11958             form.enctype = form.encoding = 'multipart/form-data';
11959             formData = o.formData === true ? new FormData(form) : o.formData;
11960         } else {
11961             formData = o.formData === true ? new FormData() : o.formData;
11962         }
11963         
11964       
11965         var cb = {
11966             success: this.handleResponse,
11967             failure: this.handleFailure,
11968             scope: this,
11969             argument: {options: o},
11970             timeout : o.timeout || this.timeout
11971         };
11972  
11973         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11974             if(o.autoAbort){
11975                 this.abort();
11976             }
11977         }else if(this.autoAbort !== false){
11978             this.abort();
11979         }
11980
11981         //Roo.lib.Ajax.defaultPostHeader = null;
11982         Roo.lib.Ajax.useDefaultHeader = false;
11983         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
11984         Roo.lib.Ajax.useDefaultHeader = true;
11985  
11986          
11987     }
11988     
11989 });
11990 /*
11991  * Based on:
11992  * Ext JS Library 1.1.1
11993  * Copyright(c) 2006-2007, Ext JS, LLC.
11994  *
11995  * Originally Released Under LGPL - original licence link has changed is not relivant.
11996  *
11997  * Fork - LGPL
11998  * <script type="text/javascript">
11999  */
12000  
12001 /**
12002  * Global Ajax request class.
12003  * 
12004  * @class Roo.Ajax
12005  * @extends Roo.data.Connection
12006  * @static
12007  * 
12008  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
12009  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
12010  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
12011  * @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)
12012  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
12013  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
12014  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
12015  */
12016 Roo.Ajax = new Roo.data.Connection({
12017     // fix up the docs
12018     /**
12019      * @scope Roo.Ajax
12020      * @type {Boolear} 
12021      */
12022     autoAbort : false,
12023
12024     /**
12025      * Serialize the passed form into a url encoded string
12026      * @scope Roo.Ajax
12027      * @param {String/HTMLElement} form
12028      * @return {String}
12029      */
12030     serializeForm : function(form){
12031         return Roo.lib.Ajax.serializeForm(form);
12032     }
12033 });/*
12034  * Based on:
12035  * Ext JS Library 1.1.1
12036  * Copyright(c) 2006-2007, Ext JS, LLC.
12037  *
12038  * Originally Released Under LGPL - original licence link has changed is not relivant.
12039  *
12040  * Fork - LGPL
12041  * <script type="text/javascript">
12042  */
12043
12044  
12045 /**
12046  * @class Roo.UpdateManager
12047  * @extends Roo.util.Observable
12048  * Provides AJAX-style update for Element object.<br><br>
12049  * Usage:<br>
12050  * <pre><code>
12051  * // Get it from a Roo.Element object
12052  * var el = Roo.get("foo");
12053  * var mgr = el.getUpdateManager();
12054  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
12055  * ...
12056  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
12057  * <br>
12058  * // or directly (returns the same UpdateManager instance)
12059  * var mgr = new Roo.UpdateManager("myElementId");
12060  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
12061  * mgr.on("update", myFcnNeedsToKnow);
12062  * <br>
12063    // short handed call directly from the element object
12064    Roo.get("foo").load({
12065         url: "bar.php",
12066         scripts:true,
12067         params: "for=bar",
12068         text: "Loading Foo..."
12069    });
12070  * </code></pre>
12071  * @constructor
12072  * Create new UpdateManager directly.
12073  * @param {String/HTMLElement/Roo.Element} el The element to update
12074  * @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).
12075  */
12076 Roo.UpdateManager = function(el, forceNew){
12077     el = Roo.get(el);
12078     if(!forceNew && el.updateManager){
12079         return el.updateManager;
12080     }
12081     /**
12082      * The Element object
12083      * @type Roo.Element
12084      */
12085     this.el = el;
12086     /**
12087      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
12088      * @type String
12089      */
12090     this.defaultUrl = null;
12091
12092     this.addEvents({
12093         /**
12094          * @event beforeupdate
12095          * Fired before an update is made, return false from your handler and the update is cancelled.
12096          * @param {Roo.Element} el
12097          * @param {String/Object/Function} url
12098          * @param {String/Object} params
12099          */
12100         "beforeupdate": true,
12101         /**
12102          * @event update
12103          * Fired after successful update is made.
12104          * @param {Roo.Element} el
12105          * @param {Object} oResponseObject The response Object
12106          */
12107         "update": true,
12108         /**
12109          * @event failure
12110          * Fired on update failure.
12111          * @param {Roo.Element} el
12112          * @param {Object} oResponseObject The response Object
12113          */
12114         "failure": true
12115     });
12116     var d = Roo.UpdateManager.defaults;
12117     /**
12118      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
12119      * @type String
12120      */
12121     this.sslBlankUrl = d.sslBlankUrl;
12122     /**
12123      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
12124      * @type Boolean
12125      */
12126     this.disableCaching = d.disableCaching;
12127     /**
12128      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12129      * @type String
12130      */
12131     this.indicatorText = d.indicatorText;
12132     /**
12133      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
12134      * @type String
12135      */
12136     this.showLoadIndicator = d.showLoadIndicator;
12137     /**
12138      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
12139      * @type Number
12140      */
12141     this.timeout = d.timeout;
12142
12143     /**
12144      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
12145      * @type Boolean
12146      */
12147     this.loadScripts = d.loadScripts;
12148
12149     /**
12150      * Transaction object of current executing transaction
12151      */
12152     this.transaction = null;
12153
12154     /**
12155      * @private
12156      */
12157     this.autoRefreshProcId = null;
12158     /**
12159      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12160      * @type Function
12161      */
12162     this.refreshDelegate = this.refresh.createDelegate(this);
12163     /**
12164      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12165      * @type Function
12166      */
12167     this.updateDelegate = this.update.createDelegate(this);
12168     /**
12169      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12170      * @type Function
12171      */
12172     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12173     /**
12174      * @private
12175      */
12176     this.successDelegate = this.processSuccess.createDelegate(this);
12177     /**
12178      * @private
12179      */
12180     this.failureDelegate = this.processFailure.createDelegate(this);
12181
12182     if(!this.renderer){
12183      /**
12184       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12185       */
12186     this.renderer = new Roo.UpdateManager.BasicRenderer();
12187     }
12188     
12189     Roo.UpdateManager.superclass.constructor.call(this);
12190 };
12191
12192 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12193     /**
12194      * Get the Element this UpdateManager is bound to
12195      * @return {Roo.Element} The element
12196      */
12197     getEl : function(){
12198         return this.el;
12199     },
12200     /**
12201      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12202      * @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:
12203 <pre><code>
12204 um.update({<br/>
12205     url: "your-url.php",<br/>
12206     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12207     callback: yourFunction,<br/>
12208     scope: yourObject, //(optional scope)  <br/>
12209     discardUrl: false, <br/>
12210     nocache: false,<br/>
12211     text: "Loading...",<br/>
12212     timeout: 30,<br/>
12213     scripts: false<br/>
12214 });
12215 </code></pre>
12216      * The only required property is url. The optional properties nocache, text and scripts
12217      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12218      * @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}
12219      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12220      * @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.
12221      */
12222     update : function(url, params, callback, discardUrl){
12223         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12224             var method = this.method,
12225                 cfg;
12226             if(typeof url == "object"){ // must be config object
12227                 cfg = url;
12228                 url = cfg.url;
12229                 params = params || cfg.params;
12230                 callback = callback || cfg.callback;
12231                 discardUrl = discardUrl || cfg.discardUrl;
12232                 if(callback && cfg.scope){
12233                     callback = callback.createDelegate(cfg.scope);
12234                 }
12235                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12236                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12237                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12238                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12239                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12240             }
12241             this.showLoading();
12242             if(!discardUrl){
12243                 this.defaultUrl = url;
12244             }
12245             if(typeof url == "function"){
12246                 url = url.call(this);
12247             }
12248
12249             method = method || (params ? "POST" : "GET");
12250             if(method == "GET"){
12251                 url = this.prepareUrl(url);
12252             }
12253
12254             var o = Roo.apply(cfg ||{}, {
12255                 url : url,
12256                 params: params,
12257                 success: this.successDelegate,
12258                 failure: this.failureDelegate,
12259                 callback: undefined,
12260                 timeout: (this.timeout*1000),
12261                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12262             });
12263             Roo.log("updated manager called with timeout of " + o.timeout);
12264             this.transaction = Roo.Ajax.request(o);
12265         }
12266     },
12267
12268     /**
12269      * 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.
12270      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12271      * @param {String/HTMLElement} form The form Id or form element
12272      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12273      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12274      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12275      */
12276     formUpdate : function(form, url, reset, callback){
12277         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12278             if(typeof url == "function"){
12279                 url = url.call(this);
12280             }
12281             form = Roo.getDom(form);
12282             this.transaction = Roo.Ajax.request({
12283                 form: form,
12284                 url:url,
12285                 success: this.successDelegate,
12286                 failure: this.failureDelegate,
12287                 timeout: (this.timeout*1000),
12288                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12289             });
12290             this.showLoading.defer(1, this);
12291         }
12292     },
12293
12294     /**
12295      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12296      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12297      */
12298     refresh : function(callback){
12299         if(this.defaultUrl == null){
12300             return;
12301         }
12302         this.update(this.defaultUrl, null, callback, true);
12303     },
12304
12305     /**
12306      * Set this element to auto refresh.
12307      * @param {Number} interval How often to update (in seconds).
12308      * @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)
12309      * @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}
12310      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12311      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12312      */
12313     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12314         if(refreshNow){
12315             this.update(url || this.defaultUrl, params, callback, true);
12316         }
12317         if(this.autoRefreshProcId){
12318             clearInterval(this.autoRefreshProcId);
12319         }
12320         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12321     },
12322
12323     /**
12324      * Stop auto refresh on this element.
12325      */
12326      stopAutoRefresh : function(){
12327         if(this.autoRefreshProcId){
12328             clearInterval(this.autoRefreshProcId);
12329             delete this.autoRefreshProcId;
12330         }
12331     },
12332
12333     isAutoRefreshing : function(){
12334        return this.autoRefreshProcId ? true : false;
12335     },
12336     /**
12337      * Called to update the element to "Loading" state. Override to perform custom action.
12338      */
12339     showLoading : function(){
12340         if(this.showLoadIndicator){
12341             this.el.update(this.indicatorText);
12342         }
12343     },
12344
12345     /**
12346      * Adds unique parameter to query string if disableCaching = true
12347      * @private
12348      */
12349     prepareUrl : function(url){
12350         if(this.disableCaching){
12351             var append = "_dc=" + (new Date().getTime());
12352             if(url.indexOf("?") !== -1){
12353                 url += "&" + append;
12354             }else{
12355                 url += "?" + append;
12356             }
12357         }
12358         return url;
12359     },
12360
12361     /**
12362      * @private
12363      */
12364     processSuccess : function(response){
12365         this.transaction = null;
12366         if(response.argument.form && response.argument.reset){
12367             try{ // put in try/catch since some older FF releases had problems with this
12368                 response.argument.form.reset();
12369             }catch(e){}
12370         }
12371         if(this.loadScripts){
12372             this.renderer.render(this.el, response, this,
12373                 this.updateComplete.createDelegate(this, [response]));
12374         }else{
12375             this.renderer.render(this.el, response, this);
12376             this.updateComplete(response);
12377         }
12378     },
12379
12380     updateComplete : function(response){
12381         this.fireEvent("update", this.el, response);
12382         if(typeof response.argument.callback == "function"){
12383             response.argument.callback(this.el, true, response);
12384         }
12385     },
12386
12387     /**
12388      * @private
12389      */
12390     processFailure : function(response){
12391         this.transaction = null;
12392         this.fireEvent("failure", this.el, response);
12393         if(typeof response.argument.callback == "function"){
12394             response.argument.callback(this.el, false, response);
12395         }
12396     },
12397
12398     /**
12399      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12400      * @param {Object} renderer The object implementing the render() method
12401      */
12402     setRenderer : function(renderer){
12403         this.renderer = renderer;
12404     },
12405
12406     getRenderer : function(){
12407        return this.renderer;
12408     },
12409
12410     /**
12411      * Set the defaultUrl used for updates
12412      * @param {String/Function} defaultUrl The url or a function to call to get the url
12413      */
12414     setDefaultUrl : function(defaultUrl){
12415         this.defaultUrl = defaultUrl;
12416     },
12417
12418     /**
12419      * Aborts the executing transaction
12420      */
12421     abort : function(){
12422         if(this.transaction){
12423             Roo.Ajax.abort(this.transaction);
12424         }
12425     },
12426
12427     /**
12428      * Returns true if an update is in progress
12429      * @return {Boolean}
12430      */
12431     isUpdating : function(){
12432         if(this.transaction){
12433             return Roo.Ajax.isLoading(this.transaction);
12434         }
12435         return false;
12436     }
12437 });
12438
12439 /**
12440  * @class Roo.UpdateManager.defaults
12441  * @static (not really - but it helps the doc tool)
12442  * The defaults collection enables customizing the default properties of UpdateManager
12443  */
12444    Roo.UpdateManager.defaults = {
12445        /**
12446          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12447          * @type Number
12448          */
12449          timeout : 30,
12450
12451          /**
12452          * True to process scripts by default (Defaults to false).
12453          * @type Boolean
12454          */
12455         loadScripts : false,
12456
12457         /**
12458         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12459         * @type String
12460         */
12461         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12462         /**
12463          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12464          * @type Boolean
12465          */
12466         disableCaching : false,
12467         /**
12468          * Whether to show indicatorText when loading (Defaults to true).
12469          * @type Boolean
12470          */
12471         showLoadIndicator : true,
12472         /**
12473          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12474          * @type String
12475          */
12476         indicatorText : '<div class="loading-indicator">Loading...</div>'
12477    };
12478
12479 /**
12480  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12481  *Usage:
12482  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12483  * @param {String/HTMLElement/Roo.Element} el The element to update
12484  * @param {String} url The url
12485  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12486  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12487  * @static
12488  * @deprecated
12489  * @member Roo.UpdateManager
12490  */
12491 Roo.UpdateManager.updateElement = function(el, url, params, options){
12492     var um = Roo.get(el, true).getUpdateManager();
12493     Roo.apply(um, options);
12494     um.update(url, params, options ? options.callback : null);
12495 };
12496 // alias for backwards compat
12497 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12498 /**
12499  * @class Roo.UpdateManager.BasicRenderer
12500  * Default Content renderer. Updates the elements innerHTML with the responseText.
12501  */
12502 Roo.UpdateManager.BasicRenderer = function(){};
12503
12504 Roo.UpdateManager.BasicRenderer.prototype = {
12505     /**
12506      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12507      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12508      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12509      * @param {Roo.Element} el The element being rendered
12510      * @param {Object} response The YUI Connect response object
12511      * @param {UpdateManager} updateManager The calling update manager
12512      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12513      */
12514      render : function(el, response, updateManager, callback){
12515         el.update(response.responseText, updateManager.loadScripts, callback);
12516     }
12517 };
12518 /*
12519  * Based on:
12520  * Roo JS
12521  * (c)) Alan Knowles
12522  * Licence : LGPL
12523  */
12524
12525
12526 /**
12527  * @class Roo.DomTemplate
12528  * @extends Roo.Template
12529  * An effort at a dom based template engine..
12530  *
12531  * Similar to XTemplate, except it uses dom parsing to create the template..
12532  *
12533  * Supported features:
12534  *
12535  *  Tags:
12536
12537 <pre><code>
12538       {a_variable} - output encoded.
12539       {a_variable.format:("Y-m-d")} - call a method on the variable
12540       {a_variable:raw} - unencoded output
12541       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12542       {a_variable:this.method_on_template(...)} - call a method on the template object.
12543  
12544 </code></pre>
12545  *  The tpl tag:
12546 <pre><code>
12547         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12548         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12549         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12550         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12551   
12552 </code></pre>
12553  *      
12554  */
12555 Roo.DomTemplate = function()
12556 {
12557      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12558      if (this.html) {
12559         this.compile();
12560      }
12561 };
12562
12563
12564 Roo.extend(Roo.DomTemplate, Roo.Template, {
12565     /**
12566      * id counter for sub templates.
12567      */
12568     id : 0,
12569     /**
12570      * flag to indicate if dom parser is inside a pre,
12571      * it will strip whitespace if not.
12572      */
12573     inPre : false,
12574     
12575     /**
12576      * The various sub templates
12577      */
12578     tpls : false,
12579     
12580     
12581     
12582     /**
12583      *
12584      * basic tag replacing syntax
12585      * WORD:WORD()
12586      *
12587      * // you can fake an object call by doing this
12588      *  x.t:(test,tesT) 
12589      * 
12590      */
12591     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12592     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12593     
12594     iterChild : function (node, method) {
12595         
12596         var oldPre = this.inPre;
12597         if (node.tagName == 'PRE') {
12598             this.inPre = true;
12599         }
12600         for( var i = 0; i < node.childNodes.length; i++) {
12601             method.call(this, node.childNodes[i]);
12602         }
12603         this.inPre = oldPre;
12604     },
12605     
12606     
12607     
12608     /**
12609      * compile the template
12610      *
12611      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12612      *
12613      */
12614     compile: function()
12615     {
12616         var s = this.html;
12617         
12618         // covert the html into DOM...
12619         var doc = false;
12620         var div =false;
12621         try {
12622             doc = document.implementation.createHTMLDocument("");
12623             doc.documentElement.innerHTML =   this.html  ;
12624             div = doc.documentElement;
12625         } catch (e) {
12626             // old IE... - nasty -- it causes all sorts of issues.. with
12627             // images getting pulled from server..
12628             div = document.createElement('div');
12629             div.innerHTML = this.html;
12630         }
12631         //doc.documentElement.innerHTML = htmlBody
12632          
12633         
12634         
12635         this.tpls = [];
12636         var _t = this;
12637         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12638         
12639         var tpls = this.tpls;
12640         
12641         // create a top level template from the snippet..
12642         
12643         //Roo.log(div.innerHTML);
12644         
12645         var tpl = {
12646             uid : 'master',
12647             id : this.id++,
12648             attr : false,
12649             value : false,
12650             body : div.innerHTML,
12651             
12652             forCall : false,
12653             execCall : false,
12654             dom : div,
12655             isTop : true
12656             
12657         };
12658         tpls.unshift(tpl);
12659         
12660         
12661         // compile them...
12662         this.tpls = [];
12663         Roo.each(tpls, function(tp){
12664             this.compileTpl(tp);
12665             this.tpls[tp.id] = tp;
12666         }, this);
12667         
12668         this.master = tpls[0];
12669         return this;
12670         
12671         
12672     },
12673     
12674     compileNode : function(node, istop) {
12675         // test for
12676         //Roo.log(node);
12677         
12678         
12679         // skip anything not a tag..
12680         if (node.nodeType != 1) {
12681             if (node.nodeType == 3 && !this.inPre) {
12682                 // reduce white space..
12683                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12684                 
12685             }
12686             return;
12687         }
12688         
12689         var tpl = {
12690             uid : false,
12691             id : false,
12692             attr : false,
12693             value : false,
12694             body : '',
12695             
12696             forCall : false,
12697             execCall : false,
12698             dom : false,
12699             isTop : istop
12700             
12701             
12702         };
12703         
12704         
12705         switch(true) {
12706             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12707             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12708             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12709             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12710             // no default..
12711         }
12712         
12713         
12714         if (!tpl.attr) {
12715             // just itterate children..
12716             this.iterChild(node,this.compileNode);
12717             return;
12718         }
12719         tpl.uid = this.id++;
12720         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12721         node.removeAttribute('roo-'+ tpl.attr);
12722         if (tpl.attr != 'name') {
12723             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12724             node.parentNode.replaceChild(placeholder,  node);
12725         } else {
12726             
12727             var placeholder =  document.createElement('span');
12728             placeholder.className = 'roo-tpl-' + tpl.value;
12729             node.parentNode.replaceChild(placeholder,  node);
12730         }
12731         
12732         // parent now sees '{domtplXXXX}
12733         this.iterChild(node,this.compileNode);
12734         
12735         // we should now have node body...
12736         var div = document.createElement('div');
12737         div.appendChild(node);
12738         tpl.dom = node;
12739         // this has the unfortunate side effect of converting tagged attributes
12740         // eg. href="{...}" into %7C...%7D
12741         // this has been fixed by searching for those combo's although it's a bit hacky..
12742         
12743         
12744         tpl.body = div.innerHTML;
12745         
12746         
12747          
12748         tpl.id = tpl.uid;
12749         switch(tpl.attr) {
12750             case 'for' :
12751                 switch (tpl.value) {
12752                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12753                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12754                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12755                 }
12756                 break;
12757             
12758             case 'exec':
12759                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12760                 break;
12761             
12762             case 'if':     
12763                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12764                 break;
12765             
12766             case 'name':
12767                 tpl.id  = tpl.value; // replace non characters???
12768                 break;
12769             
12770         }
12771         
12772         
12773         this.tpls.push(tpl);
12774         
12775         
12776         
12777     },
12778     
12779     
12780     
12781     
12782     /**
12783      * Compile a segment of the template into a 'sub-template'
12784      *
12785      * 
12786      * 
12787      *
12788      */
12789     compileTpl : function(tpl)
12790     {
12791         var fm = Roo.util.Format;
12792         var useF = this.disableFormats !== true;
12793         
12794         var sep = Roo.isGecko ? "+\n" : ",\n";
12795         
12796         var undef = function(str) {
12797             Roo.debug && Roo.log("Property not found :"  + str);
12798             return '';
12799         };
12800           
12801         //Roo.log(tpl.body);
12802         
12803         
12804         
12805         var fn = function(m, lbrace, name, format, args)
12806         {
12807             //Roo.log("ARGS");
12808             //Roo.log(arguments);
12809             args = args ? args.replace(/\\'/g,"'") : args;
12810             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12811             if (typeof(format) == 'undefined') {
12812                 format =  'htmlEncode'; 
12813             }
12814             if (format == 'raw' ) {
12815                 format = false;
12816             }
12817             
12818             if(name.substr(0, 6) == 'domtpl'){
12819                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12820             }
12821             
12822             // build an array of options to determine if value is undefined..
12823             
12824             // basically get 'xxxx.yyyy' then do
12825             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12826             //    (function () { Roo.log("Property not found"); return ''; })() :
12827             //    ......
12828             
12829             var udef_ar = [];
12830             var lookfor = '';
12831             Roo.each(name.split('.'), function(st) {
12832                 lookfor += (lookfor.length ? '.': '') + st;
12833                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12834             });
12835             
12836             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12837             
12838             
12839             if(format && useF){
12840                 
12841                 args = args ? ',' + args : "";
12842                  
12843                 if(format.substr(0, 5) != "this."){
12844                     format = "fm." + format + '(';
12845                 }else{
12846                     format = 'this.call("'+ format.substr(5) + '", ';
12847                     args = ", values";
12848                 }
12849                 
12850                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12851             }
12852              
12853             if (args && args.length) {
12854                 // called with xxyx.yuu:(test,test)
12855                 // change to ()
12856                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12857             }
12858             // raw.. - :raw modifier..
12859             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12860             
12861         };
12862         var body;
12863         // branched to use + in gecko and [].join() in others
12864         if(Roo.isGecko){
12865             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12866                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12867                     "';};};";
12868         }else{
12869             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12870             body.push(tpl.body.replace(/(\r\n|\n)/g,
12871                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12872             body.push("'].join('');};};");
12873             body = body.join('');
12874         }
12875         
12876         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12877        
12878         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12879         eval(body);
12880         
12881         return this;
12882     },
12883      
12884     /**
12885      * same as applyTemplate, except it's done to one of the subTemplates
12886      * when using named templates, you can do:
12887      *
12888      * var str = pl.applySubTemplate('your-name', values);
12889      *
12890      * 
12891      * @param {Number} id of the template
12892      * @param {Object} values to apply to template
12893      * @param {Object} parent (normaly the instance of this object)
12894      */
12895     applySubTemplate : function(id, values, parent)
12896     {
12897         
12898         
12899         var t = this.tpls[id];
12900         
12901         
12902         try { 
12903             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12904                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12905                 return '';
12906             }
12907         } catch(e) {
12908             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12909             Roo.log(values);
12910           
12911             return '';
12912         }
12913         try { 
12914             
12915             if(t.execCall && t.execCall.call(this, values, parent)){
12916                 return '';
12917             }
12918         } catch(e) {
12919             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12920             Roo.log(values);
12921             return '';
12922         }
12923         
12924         try {
12925             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12926             parent = t.target ? values : parent;
12927             if(t.forCall && vs instanceof Array){
12928                 var buf = [];
12929                 for(var i = 0, len = vs.length; i < len; i++){
12930                     try {
12931                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12932                     } catch (e) {
12933                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12934                         Roo.log(e.body);
12935                         //Roo.log(t.compiled);
12936                         Roo.log(vs[i]);
12937                     }   
12938                 }
12939                 return buf.join('');
12940             }
12941         } catch (e) {
12942             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12943             Roo.log(values);
12944             return '';
12945         }
12946         try {
12947             return t.compiled.call(this, vs, parent);
12948         } catch (e) {
12949             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12950             Roo.log(e.body);
12951             //Roo.log(t.compiled);
12952             Roo.log(values);
12953             return '';
12954         }
12955     },
12956
12957    
12958
12959     applyTemplate : function(values){
12960         return this.master.compiled.call(this, values, {});
12961         //var s = this.subs;
12962     },
12963
12964     apply : function(){
12965         return this.applyTemplate.apply(this, arguments);
12966     }
12967
12968  });
12969
12970 Roo.DomTemplate.from = function(el){
12971     el = Roo.getDom(el);
12972     return new Roo.Domtemplate(el.value || el.innerHTML);
12973 };/*
12974  * Based on:
12975  * Ext JS Library 1.1.1
12976  * Copyright(c) 2006-2007, Ext JS, LLC.
12977  *
12978  * Originally Released Under LGPL - original licence link has changed is not relivant.
12979  *
12980  * Fork - LGPL
12981  * <script type="text/javascript">
12982  */
12983
12984 /**
12985  * @class Roo.util.DelayedTask
12986  * Provides a convenient method of performing setTimeout where a new
12987  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12988  * You can use this class to buffer
12989  * the keypress events for a certain number of milliseconds, and perform only if they stop
12990  * for that amount of time.
12991  * @constructor The parameters to this constructor serve as defaults and are not required.
12992  * @param {Function} fn (optional) The default function to timeout
12993  * @param {Object} scope (optional) The default scope of that timeout
12994  * @param {Array} args (optional) The default Array of arguments
12995  */
12996 Roo.util.DelayedTask = function(fn, scope, args){
12997     var id = null, d, t;
12998
12999     var call = function(){
13000         var now = new Date().getTime();
13001         if(now - t >= d){
13002             clearInterval(id);
13003             id = null;
13004             fn.apply(scope, args || []);
13005         }
13006     };
13007     /**
13008      * Cancels any pending timeout and queues a new one
13009      * @param {Number} delay The milliseconds to delay
13010      * @param {Function} newFn (optional) Overrides function passed to constructor
13011      * @param {Object} newScope (optional) Overrides scope passed to constructor
13012      * @param {Array} newArgs (optional) Overrides args passed to constructor
13013      */
13014     this.delay = function(delay, newFn, newScope, newArgs){
13015         if(id && delay != d){
13016             this.cancel();
13017         }
13018         d = delay;
13019         t = new Date().getTime();
13020         fn = newFn || fn;
13021         scope = newScope || scope;
13022         args = newArgs || args;
13023         if(!id){
13024             id = setInterval(call, d);
13025         }
13026     };
13027
13028     /**
13029      * Cancel the last queued timeout
13030      */
13031     this.cancel = function(){
13032         if(id){
13033             clearInterval(id);
13034             id = null;
13035         }
13036     };
13037 };/*
13038  * Based on:
13039  * Ext JS Library 1.1.1
13040  * Copyright(c) 2006-2007, Ext JS, LLC.
13041  *
13042  * Originally Released Under LGPL - original licence link has changed is not relivant.
13043  *
13044  * Fork - LGPL
13045  * <script type="text/javascript">
13046  */
13047  
13048  
13049 Roo.util.TaskRunner = function(interval){
13050     interval = interval || 10;
13051     var tasks = [], removeQueue = [];
13052     var id = 0;
13053     var running = false;
13054
13055     var stopThread = function(){
13056         running = false;
13057         clearInterval(id);
13058         id = 0;
13059     };
13060
13061     var startThread = function(){
13062         if(!running){
13063             running = true;
13064             id = setInterval(runTasks, interval);
13065         }
13066     };
13067
13068     var removeTask = function(task){
13069         removeQueue.push(task);
13070         if(task.onStop){
13071             task.onStop();
13072         }
13073     };
13074
13075     var runTasks = function(){
13076         if(removeQueue.length > 0){
13077             for(var i = 0, len = removeQueue.length; i < len; i++){
13078                 tasks.remove(removeQueue[i]);
13079             }
13080             removeQueue = [];
13081             if(tasks.length < 1){
13082                 stopThread();
13083                 return;
13084             }
13085         }
13086         var now = new Date().getTime();
13087         for(var i = 0, len = tasks.length; i < len; ++i){
13088             var t = tasks[i];
13089             var itime = now - t.taskRunTime;
13090             if(t.interval <= itime){
13091                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
13092                 t.taskRunTime = now;
13093                 if(rt === false || t.taskRunCount === t.repeat){
13094                     removeTask(t);
13095                     return;
13096                 }
13097             }
13098             if(t.duration && t.duration <= (now - t.taskStartTime)){
13099                 removeTask(t);
13100             }
13101         }
13102     };
13103
13104     /**
13105      * Queues a new task.
13106      * @param {Object} task
13107      */
13108     this.start = function(task){
13109         tasks.push(task);
13110         task.taskStartTime = new Date().getTime();
13111         task.taskRunTime = 0;
13112         task.taskRunCount = 0;
13113         startThread();
13114         return task;
13115     };
13116
13117     this.stop = function(task){
13118         removeTask(task);
13119         return task;
13120     };
13121
13122     this.stopAll = function(){
13123         stopThread();
13124         for(var i = 0, len = tasks.length; i < len; i++){
13125             if(tasks[i].onStop){
13126                 tasks[i].onStop();
13127             }
13128         }
13129         tasks = [];
13130         removeQueue = [];
13131     };
13132 };
13133
13134 Roo.TaskMgr = new Roo.util.TaskRunner();/*
13135  * Based on:
13136  * Ext JS Library 1.1.1
13137  * Copyright(c) 2006-2007, Ext JS, LLC.
13138  *
13139  * Originally Released Under LGPL - original licence link has changed is not relivant.
13140  *
13141  * Fork - LGPL
13142  * <script type="text/javascript">
13143  */
13144
13145  
13146 /**
13147  * @class Roo.util.MixedCollection
13148  * @extends Roo.util.Observable
13149  * A Collection class that maintains both numeric indexes and keys and exposes events.
13150  * @constructor
13151  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
13152  * collection (defaults to false)
13153  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13154  * and return the key value for that item.  This is used when available to look up the key on items that
13155  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13156  * equivalent to providing an implementation for the {@link #getKey} method.
13157  */
13158 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13159     this.items = [];
13160     this.map = {};
13161     this.keys = [];
13162     this.length = 0;
13163     this.addEvents({
13164         /**
13165          * @event clear
13166          * Fires when the collection is cleared.
13167          */
13168         "clear" : true,
13169         /**
13170          * @event add
13171          * Fires when an item is added to the collection.
13172          * @param {Number} index The index at which the item was added.
13173          * @param {Object} o The item added.
13174          * @param {String} key The key associated with the added item.
13175          */
13176         "add" : true,
13177         /**
13178          * @event replace
13179          * Fires when an item is replaced in the collection.
13180          * @param {String} key he key associated with the new added.
13181          * @param {Object} old The item being replaced.
13182          * @param {Object} new The new item.
13183          */
13184         "replace" : true,
13185         /**
13186          * @event remove
13187          * Fires when an item is removed from the collection.
13188          * @param {Object} o The item being removed.
13189          * @param {String} key (optional) The key associated with the removed item.
13190          */
13191         "remove" : true,
13192         "sort" : true
13193     });
13194     this.allowFunctions = allowFunctions === true;
13195     if(keyFn){
13196         this.getKey = keyFn;
13197     }
13198     Roo.util.MixedCollection.superclass.constructor.call(this);
13199 };
13200
13201 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13202     allowFunctions : false,
13203     
13204 /**
13205  * Adds an item to the collection.
13206  * @param {String} key The key to associate with the item
13207  * @param {Object} o The item to add.
13208  * @return {Object} The item added.
13209  */
13210     add : function(key, o){
13211         if(arguments.length == 1){
13212             o = arguments[0];
13213             key = this.getKey(o);
13214         }
13215         if(typeof key == "undefined" || key === null){
13216             this.length++;
13217             this.items.push(o);
13218             this.keys.push(null);
13219         }else{
13220             var old = this.map[key];
13221             if(old){
13222                 return this.replace(key, o);
13223             }
13224             this.length++;
13225             this.items.push(o);
13226             this.map[key] = o;
13227             this.keys.push(key);
13228         }
13229         this.fireEvent("add", this.length-1, o, key);
13230         return o;
13231     },
13232        
13233 /**
13234   * MixedCollection has a generic way to fetch keys if you implement getKey.
13235 <pre><code>
13236 // normal way
13237 var mc = new Roo.util.MixedCollection();
13238 mc.add(someEl.dom.id, someEl);
13239 mc.add(otherEl.dom.id, otherEl);
13240 //and so on
13241
13242 // using getKey
13243 var mc = new Roo.util.MixedCollection();
13244 mc.getKey = function(el){
13245    return el.dom.id;
13246 };
13247 mc.add(someEl);
13248 mc.add(otherEl);
13249
13250 // or via the constructor
13251 var mc = new Roo.util.MixedCollection(false, function(el){
13252    return el.dom.id;
13253 });
13254 mc.add(someEl);
13255 mc.add(otherEl);
13256 </code></pre>
13257  * @param o {Object} The item for which to find the key.
13258  * @return {Object} The key for the passed item.
13259  */
13260     getKey : function(o){
13261          return o.id; 
13262     },
13263    
13264 /**
13265  * Replaces an item in the collection.
13266  * @param {String} key The key associated with the item to replace, or the item to replace.
13267  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13268  * @return {Object}  The new item.
13269  */
13270     replace : function(key, o){
13271         if(arguments.length == 1){
13272             o = arguments[0];
13273             key = this.getKey(o);
13274         }
13275         var old = this.item(key);
13276         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13277              return this.add(key, o);
13278         }
13279         var index = this.indexOfKey(key);
13280         this.items[index] = o;
13281         this.map[key] = o;
13282         this.fireEvent("replace", key, old, o);
13283         return o;
13284     },
13285    
13286 /**
13287  * Adds all elements of an Array or an Object to the collection.
13288  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13289  * an Array of values, each of which are added to the collection.
13290  */
13291     addAll : function(objs){
13292         if(arguments.length > 1 || objs instanceof Array){
13293             var args = arguments.length > 1 ? arguments : objs;
13294             for(var i = 0, len = args.length; i < len; i++){
13295                 this.add(args[i]);
13296             }
13297         }else{
13298             for(var key in objs){
13299                 if(this.allowFunctions || typeof objs[key] != "function"){
13300                     this.add(key, objs[key]);
13301                 }
13302             }
13303         }
13304     },
13305    
13306 /**
13307  * Executes the specified function once for every item in the collection, passing each
13308  * item as the first and only parameter. returning false from the function will stop the iteration.
13309  * @param {Function} fn The function to execute for each item.
13310  * @param {Object} scope (optional) The scope in which to execute the function.
13311  */
13312     each : function(fn, scope){
13313         var items = [].concat(this.items); // each safe for removal
13314         for(var i = 0, len = items.length; i < len; i++){
13315             if(fn.call(scope || items[i], items[i], i, len) === false){
13316                 break;
13317             }
13318         }
13319     },
13320    
13321 /**
13322  * Executes the specified function once for every key in the collection, passing each
13323  * key, and its associated item as the first two parameters.
13324  * @param {Function} fn The function to execute for each item.
13325  * @param {Object} scope (optional) The scope in which to execute the function.
13326  */
13327     eachKey : function(fn, scope){
13328         for(var i = 0, len = this.keys.length; i < len; i++){
13329             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13330         }
13331     },
13332    
13333 /**
13334  * Returns the first item in the collection which elicits a true return value from the
13335  * passed selection function.
13336  * @param {Function} fn The selection function to execute for each item.
13337  * @param {Object} scope (optional) The scope in which to execute the function.
13338  * @return {Object} The first item in the collection which returned true from the selection function.
13339  */
13340     find : function(fn, scope){
13341         for(var i = 0, len = this.items.length; i < len; i++){
13342             if(fn.call(scope || window, this.items[i], this.keys[i])){
13343                 return this.items[i];
13344             }
13345         }
13346         return null;
13347     },
13348    
13349 /**
13350  * Inserts an item at the specified index in the collection.
13351  * @param {Number} index The index to insert the item at.
13352  * @param {String} key The key to associate with the new item, or the item itself.
13353  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13354  * @return {Object} The item inserted.
13355  */
13356     insert : function(index, key, o){
13357         if(arguments.length == 2){
13358             o = arguments[1];
13359             key = this.getKey(o);
13360         }
13361         if(index >= this.length){
13362             return this.add(key, o);
13363         }
13364         this.length++;
13365         this.items.splice(index, 0, o);
13366         if(typeof key != "undefined" && key != null){
13367             this.map[key] = o;
13368         }
13369         this.keys.splice(index, 0, key);
13370         this.fireEvent("add", index, o, key);
13371         return o;
13372     },
13373    
13374 /**
13375  * Removed an item from the collection.
13376  * @param {Object} o The item to remove.
13377  * @return {Object} The item removed.
13378  */
13379     remove : function(o){
13380         return this.removeAt(this.indexOf(o));
13381     },
13382    
13383 /**
13384  * Remove an item from a specified index in the collection.
13385  * @param {Number} index The index within the collection of the item to remove.
13386  */
13387     removeAt : function(index){
13388         if(index < this.length && index >= 0){
13389             this.length--;
13390             var o = this.items[index];
13391             this.items.splice(index, 1);
13392             var key = this.keys[index];
13393             if(typeof key != "undefined"){
13394                 delete this.map[key];
13395             }
13396             this.keys.splice(index, 1);
13397             this.fireEvent("remove", o, key);
13398         }
13399     },
13400    
13401 /**
13402  * Removed an item associated with the passed key fom the collection.
13403  * @param {String} key The key of the item to remove.
13404  */
13405     removeKey : function(key){
13406         return this.removeAt(this.indexOfKey(key));
13407     },
13408    
13409 /**
13410  * Returns the number of items in the collection.
13411  * @return {Number} the number of items in the collection.
13412  */
13413     getCount : function(){
13414         return this.length; 
13415     },
13416    
13417 /**
13418  * Returns index within the collection of the passed Object.
13419  * @param {Object} o The item to find the index of.
13420  * @return {Number} index of the item.
13421  */
13422     indexOf : function(o){
13423         if(!this.items.indexOf){
13424             for(var i = 0, len = this.items.length; i < len; i++){
13425                 if(this.items[i] == o) {
13426                     return i;
13427                 }
13428             }
13429             return -1;
13430         }else{
13431             return this.items.indexOf(o);
13432         }
13433     },
13434    
13435 /**
13436  * Returns index within the collection of the passed key.
13437  * @param {String} key The key to find the index of.
13438  * @return {Number} index of the key.
13439  */
13440     indexOfKey : function(key){
13441         if(!this.keys.indexOf){
13442             for(var i = 0, len = this.keys.length; i < len; i++){
13443                 if(this.keys[i] == key) {
13444                     return i;
13445                 }
13446             }
13447             return -1;
13448         }else{
13449             return this.keys.indexOf(key);
13450         }
13451     },
13452    
13453 /**
13454  * Returns the item associated with the passed key OR index. Key has priority over index.
13455  * @param {String/Number} key The key or index of the item.
13456  * @return {Object} The item associated with the passed key.
13457  */
13458     item : function(key){
13459         if (key === 'length') {
13460             return null;
13461         }
13462         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13463         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13464     },
13465     
13466 /**
13467  * Returns the item at the specified index.
13468  * @param {Number} index The index of the item.
13469  * @return {Object}
13470  */
13471     itemAt : function(index){
13472         return this.items[index];
13473     },
13474     
13475 /**
13476  * Returns the item associated with the passed key.
13477  * @param {String/Number} key The key of the item.
13478  * @return {Object} The item associated with the passed key.
13479  */
13480     key : function(key){
13481         return this.map[key];
13482     },
13483    
13484 /**
13485  * Returns true if the collection contains the passed Object as an item.
13486  * @param {Object} o  The Object to look for in the collection.
13487  * @return {Boolean} True if the collection contains the Object as an item.
13488  */
13489     contains : function(o){
13490         return this.indexOf(o) != -1;
13491     },
13492    
13493 /**
13494  * Returns true if the collection contains the passed Object as a key.
13495  * @param {String} key The key to look for in the collection.
13496  * @return {Boolean} True if the collection contains the Object as a key.
13497  */
13498     containsKey : function(key){
13499         return typeof this.map[key] != "undefined";
13500     },
13501    
13502 /**
13503  * Removes all items from the collection.
13504  */
13505     clear : function(){
13506         this.length = 0;
13507         this.items = [];
13508         this.keys = [];
13509         this.map = {};
13510         this.fireEvent("clear");
13511     },
13512    
13513 /**
13514  * Returns the first item in the collection.
13515  * @return {Object} the first item in the collection..
13516  */
13517     first : function(){
13518         return this.items[0]; 
13519     },
13520    
13521 /**
13522  * Returns the last item in the collection.
13523  * @return {Object} the last item in the collection..
13524  */
13525     last : function(){
13526         return this.items[this.length-1];   
13527     },
13528     
13529     _sort : function(property, dir, fn){
13530         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13531         fn = fn || function(a, b){
13532             return a-b;
13533         };
13534         var c = [], k = this.keys, items = this.items;
13535         for(var i = 0, len = items.length; i < len; i++){
13536             c[c.length] = {key: k[i], value: items[i], index: i};
13537         }
13538         c.sort(function(a, b){
13539             var v = fn(a[property], b[property]) * dsc;
13540             if(v == 0){
13541                 v = (a.index < b.index ? -1 : 1);
13542             }
13543             return v;
13544         });
13545         for(var i = 0, len = c.length; i < len; i++){
13546             items[i] = c[i].value;
13547             k[i] = c[i].key;
13548         }
13549         this.fireEvent("sort", this);
13550     },
13551     
13552     /**
13553      * Sorts this collection with the passed comparison function
13554      * @param {String} direction (optional) "ASC" or "DESC"
13555      * @param {Function} fn (optional) comparison function
13556      */
13557     sort : function(dir, fn){
13558         this._sort("value", dir, fn);
13559     },
13560     
13561     /**
13562      * Sorts this collection by keys
13563      * @param {String} direction (optional) "ASC" or "DESC"
13564      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13565      */
13566     keySort : function(dir, fn){
13567         this._sort("key", dir, fn || function(a, b){
13568             return String(a).toUpperCase()-String(b).toUpperCase();
13569         });
13570     },
13571     
13572     /**
13573      * Returns a range of items in this collection
13574      * @param {Number} startIndex (optional) defaults to 0
13575      * @param {Number} endIndex (optional) default to the last item
13576      * @return {Array} An array of items
13577      */
13578     getRange : function(start, end){
13579         var items = this.items;
13580         if(items.length < 1){
13581             return [];
13582         }
13583         start = start || 0;
13584         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13585         var r = [];
13586         if(start <= end){
13587             for(var i = start; i <= end; i++) {
13588                     r[r.length] = items[i];
13589             }
13590         }else{
13591             for(var i = start; i >= end; i--) {
13592                     r[r.length] = items[i];
13593             }
13594         }
13595         return r;
13596     },
13597         
13598     /**
13599      * Filter the <i>objects</i> in this collection by a specific property. 
13600      * Returns a new collection that has been filtered.
13601      * @param {String} property A property on your objects
13602      * @param {String/RegExp} value Either string that the property values 
13603      * should start with or a RegExp to test against the property
13604      * @return {MixedCollection} The new filtered collection
13605      */
13606     filter : function(property, value){
13607         if(!value.exec){ // not a regex
13608             value = String(value);
13609             if(value.length == 0){
13610                 return this.clone();
13611             }
13612             value = new RegExp("^" + Roo.escapeRe(value), "i");
13613         }
13614         return this.filterBy(function(o){
13615             return o && value.test(o[property]);
13616         });
13617         },
13618     
13619     /**
13620      * Filter by a function. * Returns a new collection that has been filtered.
13621      * The passed function will be called with each 
13622      * object in the collection. If the function returns true, the value is included 
13623      * otherwise it is filtered.
13624      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13625      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13626      * @return {MixedCollection} The new filtered collection
13627      */
13628     filterBy : function(fn, scope){
13629         var r = new Roo.util.MixedCollection();
13630         r.getKey = this.getKey;
13631         var k = this.keys, it = this.items;
13632         for(var i = 0, len = it.length; i < len; i++){
13633             if(fn.call(scope||this, it[i], k[i])){
13634                                 r.add(k[i], it[i]);
13635                         }
13636         }
13637         return r;
13638     },
13639     
13640     /**
13641      * Creates a duplicate of this collection
13642      * @return {MixedCollection}
13643      */
13644     clone : function(){
13645         var r = new Roo.util.MixedCollection();
13646         var k = this.keys, it = this.items;
13647         for(var i = 0, len = it.length; i < len; i++){
13648             r.add(k[i], it[i]);
13649         }
13650         r.getKey = this.getKey;
13651         return r;
13652     }
13653 });
13654 /**
13655  * Returns the item associated with the passed key or index.
13656  * @method
13657  * @param {String/Number} key The key or index of the item.
13658  * @return {Object} The item associated with the passed key.
13659  */
13660 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13661  * Based on:
13662  * Ext JS Library 1.1.1
13663  * Copyright(c) 2006-2007, Ext JS, LLC.
13664  *
13665  * Originally Released Under LGPL - original licence link has changed is not relivant.
13666  *
13667  * Fork - LGPL
13668  * <script type="text/javascript">
13669  */
13670 /**
13671  * @class Roo.util.JSON
13672  * Modified version of Douglas Crockford"s json.js that doesn"t
13673  * mess with the Object prototype 
13674  * http://www.json.org/js.html
13675  * @singleton
13676  */
13677 Roo.util.JSON = new (function(){
13678     var useHasOwn = {}.hasOwnProperty ? true : false;
13679     
13680     // crashes Safari in some instances
13681     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13682     
13683     var pad = function(n) {
13684         return n < 10 ? "0" + n : n;
13685     };
13686     
13687     var m = {
13688         "\b": '\\b',
13689         "\t": '\\t',
13690         "\n": '\\n',
13691         "\f": '\\f',
13692         "\r": '\\r',
13693         '"' : '\\"',
13694         "\\": '\\\\'
13695     };
13696
13697     var encodeString = function(s){
13698         if (/["\\\x00-\x1f]/.test(s)) {
13699             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13700                 var c = m[b];
13701                 if(c){
13702                     return c;
13703                 }
13704                 c = b.charCodeAt();
13705                 return "\\u00" +
13706                     Math.floor(c / 16).toString(16) +
13707                     (c % 16).toString(16);
13708             }) + '"';
13709         }
13710         return '"' + s + '"';
13711     };
13712     
13713     var encodeArray = function(o){
13714         var a = ["["], b, i, l = o.length, v;
13715             for (i = 0; i < l; i += 1) {
13716                 v = o[i];
13717                 switch (typeof v) {
13718                     case "undefined":
13719                     case "function":
13720                     case "unknown":
13721                         break;
13722                     default:
13723                         if (b) {
13724                             a.push(',');
13725                         }
13726                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13727                         b = true;
13728                 }
13729             }
13730             a.push("]");
13731             return a.join("");
13732     };
13733     
13734     var encodeDate = function(o){
13735         return '"' + o.getFullYear() + "-" +
13736                 pad(o.getMonth() + 1) + "-" +
13737                 pad(o.getDate()) + "T" +
13738                 pad(o.getHours()) + ":" +
13739                 pad(o.getMinutes()) + ":" +
13740                 pad(o.getSeconds()) + '"';
13741     };
13742     
13743     /**
13744      * Encodes an Object, Array or other value
13745      * @param {Mixed} o The variable to encode
13746      * @return {String} The JSON string
13747      */
13748     this.encode = function(o)
13749     {
13750         // should this be extended to fully wrap stringify..
13751         
13752         if(typeof o == "undefined" || o === null){
13753             return "null";
13754         }else if(o instanceof Array){
13755             return encodeArray(o);
13756         }else if(o instanceof Date){
13757             return encodeDate(o);
13758         }else if(typeof o == "string"){
13759             return encodeString(o);
13760         }else if(typeof o == "number"){
13761             return isFinite(o) ? String(o) : "null";
13762         }else if(typeof o == "boolean"){
13763             return String(o);
13764         }else {
13765             var a = ["{"], b, i, v;
13766             for (i in o) {
13767                 if(!useHasOwn || o.hasOwnProperty(i)) {
13768                     v = o[i];
13769                     switch (typeof v) {
13770                     case "undefined":
13771                     case "function":
13772                     case "unknown":
13773                         break;
13774                     default:
13775                         if(b){
13776                             a.push(',');
13777                         }
13778                         a.push(this.encode(i), ":",
13779                                 v === null ? "null" : this.encode(v));
13780                         b = true;
13781                     }
13782                 }
13783             }
13784             a.push("}");
13785             return a.join("");
13786         }
13787     };
13788     
13789     /**
13790      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13791      * @param {String} json The JSON string
13792      * @return {Object} The resulting object
13793      */
13794     this.decode = function(json){
13795         
13796         return  /** eval:var:json */ eval("(" + json + ')');
13797     };
13798 })();
13799 /** 
13800  * Shorthand for {@link Roo.util.JSON#encode}
13801  * @member Roo encode 
13802  * @method */
13803 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13804 /** 
13805  * Shorthand for {@link Roo.util.JSON#decode}
13806  * @member Roo decode 
13807  * @method */
13808 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13809 /*
13810  * Based on:
13811  * Ext JS Library 1.1.1
13812  * Copyright(c) 2006-2007, Ext JS, LLC.
13813  *
13814  * Originally Released Under LGPL - original licence link has changed is not relivant.
13815  *
13816  * Fork - LGPL
13817  * <script type="text/javascript">
13818  */
13819  
13820 /**
13821  * @class Roo.util.Format
13822  * Reusable data formatting functions
13823  * @singleton
13824  */
13825 Roo.util.Format = function(){
13826     var trimRe = /^\s+|\s+$/g;
13827     return {
13828         /**
13829          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13830          * @param {String} value The string to truncate
13831          * @param {Number} length The maximum length to allow before truncating
13832          * @return {String} The converted text
13833          */
13834         ellipsis : function(value, len){
13835             if(value && value.length > len){
13836                 return value.substr(0, len-3)+"...";
13837             }
13838             return value;
13839         },
13840
13841         /**
13842          * Checks a reference and converts it to empty string if it is undefined
13843          * @param {Mixed} value Reference to check
13844          * @return {Mixed} Empty string if converted, otherwise the original value
13845          */
13846         undef : function(value){
13847             return typeof value != "undefined" ? value : "";
13848         },
13849
13850         /**
13851          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13852          * @param {String} value The string to encode
13853          * @return {String} The encoded text
13854          */
13855         htmlEncode : function(value){
13856             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13857         },
13858
13859         /**
13860          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13861          * @param {String} value The string to decode
13862          * @return {String} The decoded text
13863          */
13864         htmlDecode : function(value){
13865             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13866         },
13867
13868         /**
13869          * Trims any whitespace from either side of a string
13870          * @param {String} value The text to trim
13871          * @return {String} The trimmed text
13872          */
13873         trim : function(value){
13874             return String(value).replace(trimRe, "");
13875         },
13876
13877         /**
13878          * Returns a substring from within an original string
13879          * @param {String} value The original text
13880          * @param {Number} start The start index of the substring
13881          * @param {Number} length The length of the substring
13882          * @return {String} The substring
13883          */
13884         substr : function(value, start, length){
13885             return String(value).substr(start, length);
13886         },
13887
13888         /**
13889          * Converts a string to all lower case letters
13890          * @param {String} value The text to convert
13891          * @return {String} The converted text
13892          */
13893         lowercase : function(value){
13894             return String(value).toLowerCase();
13895         },
13896
13897         /**
13898          * Converts a string to all upper case letters
13899          * @param {String} value The text to convert
13900          * @return {String} The converted text
13901          */
13902         uppercase : function(value){
13903             return String(value).toUpperCase();
13904         },
13905
13906         /**
13907          * Converts the first character only of a string to upper case
13908          * @param {String} value The text to convert
13909          * @return {String} The converted text
13910          */
13911         capitalize : function(value){
13912             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13913         },
13914
13915         // private
13916         call : function(value, fn){
13917             if(arguments.length > 2){
13918                 var args = Array.prototype.slice.call(arguments, 2);
13919                 args.unshift(value);
13920                  
13921                 return /** eval:var:value */  eval(fn).apply(window, args);
13922             }else{
13923                 /** eval:var:value */
13924                 return /** eval:var:value */ eval(fn).call(window, value);
13925             }
13926         },
13927
13928        
13929         /**
13930          * safer version of Math.toFixed..??/
13931          * @param {Number/String} value The numeric value to format
13932          * @param {Number/String} value Decimal places 
13933          * @return {String} The formatted currency string
13934          */
13935         toFixed : function(v, n)
13936         {
13937             // why not use to fixed - precision is buggered???
13938             if (!n) {
13939                 return Math.round(v-0);
13940             }
13941             var fact = Math.pow(10,n+1);
13942             v = (Math.round((v-0)*fact))/fact;
13943             var z = (''+fact).substring(2);
13944             if (v == Math.floor(v)) {
13945                 return Math.floor(v) + '.' + z;
13946             }
13947             
13948             // now just padd decimals..
13949             var ps = String(v).split('.');
13950             var fd = (ps[1] + z);
13951             var r = fd.substring(0,n); 
13952             var rm = fd.substring(n); 
13953             if (rm < 5) {
13954                 return ps[0] + '.' + r;
13955             }
13956             r*=1; // turn it into a number;
13957             r++;
13958             if (String(r).length != n) {
13959                 ps[0]*=1;
13960                 ps[0]++;
13961                 r = String(r).substring(1); // chop the end off.
13962             }
13963             
13964             return ps[0] + '.' + r;
13965              
13966         },
13967         
13968         /**
13969          * Format a number as US currency
13970          * @param {Number/String} value The numeric value to format
13971          * @return {String} The formatted currency string
13972          */
13973         usMoney : function(v){
13974             return '$' + Roo.util.Format.number(v);
13975         },
13976         
13977         /**
13978          * Format a number
13979          * eventually this should probably emulate php's number_format
13980          * @param {Number/String} value The numeric value to format
13981          * @param {Number} decimals number of decimal places
13982          * @param {String} delimiter for thousands (default comma)
13983          * @return {String} The formatted currency string
13984          */
13985         number : function(v, decimals, thousandsDelimiter)
13986         {
13987             // multiply and round.
13988             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13989             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13990             
13991             var mul = Math.pow(10, decimals);
13992             var zero = String(mul).substring(1);
13993             v = (Math.round((v-0)*mul))/mul;
13994             
13995             // if it's '0' number.. then
13996             
13997             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13998             v = String(v);
13999             var ps = v.split('.');
14000             var whole = ps[0];
14001             
14002             var r = /(\d+)(\d{3})/;
14003             // add comma's
14004             
14005             if(thousandsDelimiter.length != 0) {
14006                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
14007             } 
14008             
14009             var sub = ps[1] ?
14010                     // has decimals..
14011                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
14012                     // does not have decimals
14013                     (decimals ? ('.' + zero) : '');
14014             
14015             
14016             return whole + sub ;
14017         },
14018         
14019         /**
14020          * Parse a value into a formatted date using the specified format pattern.
14021          * @param {Mixed} value The value to format
14022          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
14023          * @return {String} The formatted date string
14024          */
14025         date : function(v, format){
14026             if(!v){
14027                 return "";
14028             }
14029             if(!(v instanceof Date)){
14030                 v = new Date(Date.parse(v));
14031             }
14032             return v.dateFormat(format || Roo.util.Format.defaults.date);
14033         },
14034
14035         /**
14036          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
14037          * @param {String} format Any valid date format string
14038          * @return {Function} The date formatting function
14039          */
14040         dateRenderer : function(format){
14041             return function(v){
14042                 return Roo.util.Format.date(v, format);  
14043             };
14044         },
14045
14046         // private
14047         stripTagsRE : /<\/?[^>]+>/gi,
14048         
14049         /**
14050          * Strips all HTML tags
14051          * @param {Mixed} value The text from which to strip tags
14052          * @return {String} The stripped text
14053          */
14054         stripTags : function(v){
14055             return !v ? v : String(v).replace(this.stripTagsRE, "");
14056         },
14057         
14058         /**
14059          * Size in Mb,Gb etc.
14060          * @param {Number} value The number to be formated
14061          * @param {number} decimals how many decimal places
14062          * @return {String} the formated string
14063          */
14064         size : function(value, decimals)
14065         {
14066             var sizes = ['b', 'k', 'M', 'G', 'T'];
14067             if (value == 0) {
14068                 return 0;
14069             }
14070             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
14071             return Roo.util.Format.number(value/ Math.pow(1024, i) ,decimals)   + sizes[i];
14072         }
14073         
14074         
14075         
14076     };
14077 }();
14078 Roo.util.Format.defaults = {
14079     date : 'd/M/Y'
14080 };/*
14081  * Based on:
14082  * Ext JS Library 1.1.1
14083  * Copyright(c) 2006-2007, Ext JS, LLC.
14084  *
14085  * Originally Released Under LGPL - original licence link has changed is not relivant.
14086  *
14087  * Fork - LGPL
14088  * <script type="text/javascript">
14089  */
14090
14091
14092  
14093
14094 /**
14095  * @class Roo.MasterTemplate
14096  * @extends Roo.Template
14097  * Provides a template that can have child templates. The syntax is:
14098 <pre><code>
14099 var t = new Roo.MasterTemplate(
14100         '&lt;select name="{name}"&gt;',
14101                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
14102         '&lt;/select&gt;'
14103 );
14104 t.add('options', {value: 'foo', text: 'bar'});
14105 // or you can add multiple child elements in one shot
14106 t.addAll('options', [
14107     {value: 'foo', text: 'bar'},
14108     {value: 'foo2', text: 'bar2'},
14109     {value: 'foo3', text: 'bar3'}
14110 ]);
14111 // then append, applying the master template values
14112 t.append('my-form', {name: 'my-select'});
14113 </code></pre>
14114 * A name attribute for the child template is not required if you have only one child
14115 * template or you want to refer to them by index.
14116  */
14117 Roo.MasterTemplate = function(){
14118     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14119     this.originalHtml = this.html;
14120     var st = {};
14121     var m, re = this.subTemplateRe;
14122     re.lastIndex = 0;
14123     var subIndex = 0;
14124     while(m = re.exec(this.html)){
14125         var name = m[1], content = m[2];
14126         st[subIndex] = {
14127             name: name,
14128             index: subIndex,
14129             buffer: [],
14130             tpl : new Roo.Template(content)
14131         };
14132         if(name){
14133             st[name] = st[subIndex];
14134         }
14135         st[subIndex].tpl.compile();
14136         st[subIndex].tpl.call = this.call.createDelegate(this);
14137         subIndex++;
14138     }
14139     this.subCount = subIndex;
14140     this.subs = st;
14141 };
14142 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14143     /**
14144     * The regular expression used to match sub templates
14145     * @type RegExp
14146     * @property
14147     */
14148     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14149
14150     /**
14151      * Applies the passed values to a child template.
14152      * @param {String/Number} name (optional) The name or index of the child template
14153      * @param {Array/Object} values The values to be applied to the template
14154      * @return {MasterTemplate} this
14155      */
14156      add : function(name, values){
14157         if(arguments.length == 1){
14158             values = arguments[0];
14159             name = 0;
14160         }
14161         var s = this.subs[name];
14162         s.buffer[s.buffer.length] = s.tpl.apply(values);
14163         return this;
14164     },
14165
14166     /**
14167      * Applies all the passed values to a child template.
14168      * @param {String/Number} name (optional) The name or index of the child template
14169      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14170      * @param {Boolean} reset (optional) True to reset the template first
14171      * @return {MasterTemplate} this
14172      */
14173     fill : function(name, values, reset){
14174         var a = arguments;
14175         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14176             values = a[0];
14177             name = 0;
14178             reset = a[1];
14179         }
14180         if(reset){
14181             this.reset();
14182         }
14183         for(var i = 0, len = values.length; i < len; i++){
14184             this.add(name, values[i]);
14185         }
14186         return this;
14187     },
14188
14189     /**
14190      * Resets the template for reuse
14191      * @return {MasterTemplate} this
14192      */
14193      reset : function(){
14194         var s = this.subs;
14195         for(var i = 0; i < this.subCount; i++){
14196             s[i].buffer = [];
14197         }
14198         return this;
14199     },
14200
14201     applyTemplate : function(values){
14202         var s = this.subs;
14203         var replaceIndex = -1;
14204         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14205             return s[++replaceIndex].buffer.join("");
14206         });
14207         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14208     },
14209
14210     apply : function(){
14211         return this.applyTemplate.apply(this, arguments);
14212     },
14213
14214     compile : function(){return this;}
14215 });
14216
14217 /**
14218  * Alias for fill().
14219  * @method
14220  */
14221 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14222  /**
14223  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14224  * var tpl = Roo.MasterTemplate.from('element-id');
14225  * @param {String/HTMLElement} el
14226  * @param {Object} config
14227  * @static
14228  */
14229 Roo.MasterTemplate.from = function(el, config){
14230     el = Roo.getDom(el);
14231     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14232 };/*
14233  * Based on:
14234  * Ext JS Library 1.1.1
14235  * Copyright(c) 2006-2007, Ext JS, LLC.
14236  *
14237  * Originally Released Under LGPL - original licence link has changed is not relivant.
14238  *
14239  * Fork - LGPL
14240  * <script type="text/javascript">
14241  */
14242
14243  
14244 /**
14245  * @class Roo.util.CSS
14246  * Utility class for manipulating CSS rules
14247  * @singleton
14248  */
14249 Roo.util.CSS = function(){
14250         var rules = null;
14251         var doc = document;
14252
14253     var camelRe = /(-[a-z])/gi;
14254     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14255
14256    return {
14257    /**
14258     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14259     * tag and appended to the HEAD of the document.
14260     * @param {String|Object} cssText The text containing the css rules
14261     * @param {String} id An id to add to the stylesheet for later removal
14262     * @return {StyleSheet}
14263     */
14264     createStyleSheet : function(cssText, id){
14265         var ss;
14266         var head = doc.getElementsByTagName("head")[0];
14267         var nrules = doc.createElement("style");
14268         nrules.setAttribute("type", "text/css");
14269         if(id){
14270             nrules.setAttribute("id", id);
14271         }
14272         if (typeof(cssText) != 'string') {
14273             // support object maps..
14274             // not sure if this a good idea.. 
14275             // perhaps it should be merged with the general css handling
14276             // and handle js style props.
14277             var cssTextNew = [];
14278             for(var n in cssText) {
14279                 var citems = [];
14280                 for(var k in cssText[n]) {
14281                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14282                 }
14283                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14284                 
14285             }
14286             cssText = cssTextNew.join("\n");
14287             
14288         }
14289        
14290        
14291        if(Roo.isIE){
14292            head.appendChild(nrules);
14293            ss = nrules.styleSheet;
14294            ss.cssText = cssText;
14295        }else{
14296            try{
14297                 nrules.appendChild(doc.createTextNode(cssText));
14298            }catch(e){
14299                nrules.cssText = cssText; 
14300            }
14301            head.appendChild(nrules);
14302            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14303        }
14304        this.cacheStyleSheet(ss);
14305        return ss;
14306    },
14307
14308    /**
14309     * Removes a style or link tag by id
14310     * @param {String} id The id of the tag
14311     */
14312    removeStyleSheet : function(id){
14313        var existing = doc.getElementById(id);
14314        if(existing){
14315            existing.parentNode.removeChild(existing);
14316        }
14317    },
14318
14319    /**
14320     * Dynamically swaps an existing stylesheet reference for a new one
14321     * @param {String} id The id of an existing link tag to remove
14322     * @param {String} url The href of the new stylesheet to include
14323     */
14324    swapStyleSheet : function(id, url){
14325        this.removeStyleSheet(id);
14326        var ss = doc.createElement("link");
14327        ss.setAttribute("rel", "stylesheet");
14328        ss.setAttribute("type", "text/css");
14329        ss.setAttribute("id", id);
14330        ss.setAttribute("href", url);
14331        doc.getElementsByTagName("head")[0].appendChild(ss);
14332    },
14333    
14334    /**
14335     * Refresh the rule cache if you have dynamically added stylesheets
14336     * @return {Object} An object (hash) of rules indexed by selector
14337     */
14338    refreshCache : function(){
14339        return this.getRules(true);
14340    },
14341
14342    // private
14343    cacheStyleSheet : function(stylesheet){
14344        if(!rules){
14345            rules = {};
14346        }
14347        try{// try catch for cross domain access issue
14348            var ssRules = stylesheet.cssRules || stylesheet.rules;
14349            for(var j = ssRules.length-1; j >= 0; --j){
14350                rules[ssRules[j].selectorText] = ssRules[j];
14351            }
14352        }catch(e){}
14353    },
14354    
14355    /**
14356     * Gets all css rules for the document
14357     * @param {Boolean} refreshCache true to refresh the internal cache
14358     * @return {Object} An object (hash) of rules indexed by selector
14359     */
14360    getRules : function(refreshCache){
14361                 if(rules == null || refreshCache){
14362                         rules = {};
14363                         var ds = doc.styleSheets;
14364                         for(var i =0, len = ds.length; i < len; i++){
14365                             try{
14366                         this.cacheStyleSheet(ds[i]);
14367                     }catch(e){} 
14368                 }
14369                 }
14370                 return rules;
14371         },
14372         
14373         /**
14374     * Gets an an individual CSS rule by selector(s)
14375     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14376     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14377     * @return {CSSRule} The CSS rule or null if one is not found
14378     */
14379    getRule : function(selector, refreshCache){
14380                 var rs = this.getRules(refreshCache);
14381                 if(!(selector instanceof Array)){
14382                     return rs[selector];
14383                 }
14384                 for(var i = 0; i < selector.length; i++){
14385                         if(rs[selector[i]]){
14386                                 return rs[selector[i]];
14387                         }
14388                 }
14389                 return null;
14390         },
14391         
14392         
14393         /**
14394     * Updates a rule property
14395     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14396     * @param {String} property The css property
14397     * @param {String} value The new value for the property
14398     * @return {Boolean} true If a rule was found and updated
14399     */
14400    updateRule : function(selector, property, value){
14401                 if(!(selector instanceof Array)){
14402                         var rule = this.getRule(selector);
14403                         if(rule){
14404                                 rule.style[property.replace(camelRe, camelFn)] = value;
14405                                 return true;
14406                         }
14407                 }else{
14408                         for(var i = 0; i < selector.length; i++){
14409                                 if(this.updateRule(selector[i], property, value)){
14410                                         return true;
14411                                 }
14412                         }
14413                 }
14414                 return false;
14415         }
14416    };   
14417 }();/*
14418  * Based on:
14419  * Ext JS Library 1.1.1
14420  * Copyright(c) 2006-2007, Ext JS, LLC.
14421  *
14422  * Originally Released Under LGPL - original licence link has changed is not relivant.
14423  *
14424  * Fork - LGPL
14425  * <script type="text/javascript">
14426  */
14427
14428  
14429
14430 /**
14431  * @class Roo.util.ClickRepeater
14432  * @extends Roo.util.Observable
14433  * 
14434  * A wrapper class which can be applied to any element. Fires a "click" event while the
14435  * mouse is pressed. The interval between firings may be specified in the config but
14436  * defaults to 10 milliseconds.
14437  * 
14438  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14439  * 
14440  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14441  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14442  * Similar to an autorepeat key delay.
14443  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14444  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14445  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14446  *           "interval" and "delay" are ignored. "immediate" is honored.
14447  * @cfg {Boolean} preventDefault True to prevent the default click event
14448  * @cfg {Boolean} stopDefault True to stop the default click event
14449  * 
14450  * @history
14451  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14452  *     2007-02-02 jvs Renamed to ClickRepeater
14453  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14454  *
14455  *  @constructor
14456  * @param {String/HTMLElement/Element} el The element to listen on
14457  * @param {Object} config
14458  **/
14459 Roo.util.ClickRepeater = function(el, config)
14460 {
14461     this.el = Roo.get(el);
14462     this.el.unselectable();
14463
14464     Roo.apply(this, config);
14465
14466     this.addEvents({
14467     /**
14468      * @event mousedown
14469      * Fires when the mouse button is depressed.
14470      * @param {Roo.util.ClickRepeater} this
14471      */
14472         "mousedown" : true,
14473     /**
14474      * @event click
14475      * Fires on a specified interval during the time the element is pressed.
14476      * @param {Roo.util.ClickRepeater} this
14477      */
14478         "click" : true,
14479     /**
14480      * @event mouseup
14481      * Fires when the mouse key is released.
14482      * @param {Roo.util.ClickRepeater} this
14483      */
14484         "mouseup" : true
14485     });
14486
14487     this.el.on("mousedown", this.handleMouseDown, this);
14488     if(this.preventDefault || this.stopDefault){
14489         this.el.on("click", function(e){
14490             if(this.preventDefault){
14491                 e.preventDefault();
14492             }
14493             if(this.stopDefault){
14494                 e.stopEvent();
14495             }
14496         }, this);
14497     }
14498
14499     // allow inline handler
14500     if(this.handler){
14501         this.on("click", this.handler,  this.scope || this);
14502     }
14503
14504     Roo.util.ClickRepeater.superclass.constructor.call(this);
14505 };
14506
14507 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14508     interval : 20,
14509     delay: 250,
14510     preventDefault : true,
14511     stopDefault : false,
14512     timer : 0,
14513
14514     // private
14515     handleMouseDown : function(){
14516         clearTimeout(this.timer);
14517         this.el.blur();
14518         if(this.pressClass){
14519             this.el.addClass(this.pressClass);
14520         }
14521         this.mousedownTime = new Date();
14522
14523         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14524         this.el.on("mouseout", this.handleMouseOut, this);
14525
14526         this.fireEvent("mousedown", this);
14527         this.fireEvent("click", this);
14528         
14529         this.timer = this.click.defer(this.delay || this.interval, this);
14530     },
14531
14532     // private
14533     click : function(){
14534         this.fireEvent("click", this);
14535         this.timer = this.click.defer(this.getInterval(), this);
14536     },
14537
14538     // private
14539     getInterval: function(){
14540         if(!this.accelerate){
14541             return this.interval;
14542         }
14543         var pressTime = this.mousedownTime.getElapsed();
14544         if(pressTime < 500){
14545             return 400;
14546         }else if(pressTime < 1700){
14547             return 320;
14548         }else if(pressTime < 2600){
14549             return 250;
14550         }else if(pressTime < 3500){
14551             return 180;
14552         }else if(pressTime < 4400){
14553             return 140;
14554         }else if(pressTime < 5300){
14555             return 80;
14556         }else if(pressTime < 6200){
14557             return 50;
14558         }else{
14559             return 10;
14560         }
14561     },
14562
14563     // private
14564     handleMouseOut : function(){
14565         clearTimeout(this.timer);
14566         if(this.pressClass){
14567             this.el.removeClass(this.pressClass);
14568         }
14569         this.el.on("mouseover", this.handleMouseReturn, this);
14570     },
14571
14572     // private
14573     handleMouseReturn : function(){
14574         this.el.un("mouseover", this.handleMouseReturn);
14575         if(this.pressClass){
14576             this.el.addClass(this.pressClass);
14577         }
14578         this.click();
14579     },
14580
14581     // private
14582     handleMouseUp : function(){
14583         clearTimeout(this.timer);
14584         this.el.un("mouseover", this.handleMouseReturn);
14585         this.el.un("mouseout", this.handleMouseOut);
14586         Roo.get(document).un("mouseup", this.handleMouseUp);
14587         this.el.removeClass(this.pressClass);
14588         this.fireEvent("mouseup", this);
14589     }
14590 });/**
14591  * @class Roo.util.Clipboard
14592  * @static
14593  * 
14594  * Clipboard UTILS
14595  * 
14596  **/
14597 Roo.util.Clipboard = {
14598     /**
14599      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
14600      * @param {String} text to copy to clipboard
14601      */
14602     write : function(text) {
14603         // navigator clipboard api needs a secure context (https)
14604         if (navigator.clipboard && window.isSecureContext) {
14605             // navigator clipboard api method'
14606             navigator.clipboard.writeText(text);
14607             return ;
14608         } 
14609         // text area method
14610         var ta = document.createElement("textarea");
14611         ta.value = text;
14612         // make the textarea out of viewport
14613         ta.style.position = "fixed";
14614         ta.style.left = "-999999px";
14615         ta.style.top = "-999999px";
14616         document.body.appendChild(ta);
14617         ta.focus();
14618         ta.select();
14619         document.execCommand('copy');
14620         (function() {
14621             ta.remove();
14622         }).defer(100);
14623         
14624     }
14625         
14626 }
14627     /*
14628  * Based on:
14629  * Ext JS Library 1.1.1
14630  * Copyright(c) 2006-2007, Ext JS, LLC.
14631  *
14632  * Originally Released Under LGPL - original licence link has changed is not relivant.
14633  *
14634  * Fork - LGPL
14635  * <script type="text/javascript">
14636  */
14637
14638  
14639 /**
14640  * @class Roo.KeyNav
14641  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14642  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14643  * way to implement custom navigation schemes for any UI component.</p>
14644  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14645  * pageUp, pageDown, del, home, end.  Usage:</p>
14646  <pre><code>
14647 var nav = new Roo.KeyNav("my-element", {
14648     "left" : function(e){
14649         this.moveLeft(e.ctrlKey);
14650     },
14651     "right" : function(e){
14652         this.moveRight(e.ctrlKey);
14653     },
14654     "enter" : function(e){
14655         this.save();
14656     },
14657     scope : this
14658 });
14659 </code></pre>
14660  * @constructor
14661  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14662  * @param {Object} config The config
14663  */
14664 Roo.KeyNav = function(el, config){
14665     this.el = Roo.get(el);
14666     Roo.apply(this, config);
14667     if(!this.disabled){
14668         this.disabled = true;
14669         this.enable();
14670     }
14671 };
14672
14673 Roo.KeyNav.prototype = {
14674     /**
14675      * @cfg {Boolean} disabled
14676      * True to disable this KeyNav instance (defaults to false)
14677      */
14678     disabled : false,
14679     /**
14680      * @cfg {String} defaultEventAction
14681      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14682      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14683      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14684      */
14685     defaultEventAction: "stopEvent",
14686     /**
14687      * @cfg {Boolean} forceKeyDown
14688      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14689      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14690      * handle keydown instead of keypress.
14691      */
14692     forceKeyDown : false,
14693
14694     // private
14695     prepareEvent : function(e){
14696         var k = e.getKey();
14697         var h = this.keyToHandler[k];
14698         //if(h && this[h]){
14699         //    e.stopPropagation();
14700         //}
14701         if(Roo.isSafari && h && k >= 37 && k <= 40){
14702             e.stopEvent();
14703         }
14704     },
14705
14706     // private
14707     relay : function(e){
14708         var k = e.getKey();
14709         var h = this.keyToHandler[k];
14710         if(h && this[h]){
14711             if(this.doRelay(e, this[h], h) !== true){
14712                 e[this.defaultEventAction]();
14713             }
14714         }
14715     },
14716
14717     // private
14718     doRelay : function(e, h, hname){
14719         return h.call(this.scope || this, e);
14720     },
14721
14722     // possible handlers
14723     enter : false,
14724     left : false,
14725     right : false,
14726     up : false,
14727     down : false,
14728     tab : false,
14729     esc : false,
14730     pageUp : false,
14731     pageDown : false,
14732     del : false,
14733     home : false,
14734     end : false,
14735
14736     // quick lookup hash
14737     keyToHandler : {
14738         37 : "left",
14739         39 : "right",
14740         38 : "up",
14741         40 : "down",
14742         33 : "pageUp",
14743         34 : "pageDown",
14744         46 : "del",
14745         36 : "home",
14746         35 : "end",
14747         13 : "enter",
14748         27 : "esc",
14749         9  : "tab"
14750     },
14751
14752         /**
14753          * Enable this KeyNav
14754          */
14755         enable: function(){
14756                 if(this.disabled){
14757             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14758             // the EventObject will normalize Safari automatically
14759             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14760                 this.el.on("keydown", this.relay,  this);
14761             }else{
14762                 this.el.on("keydown", this.prepareEvent,  this);
14763                 this.el.on("keypress", this.relay,  this);
14764             }
14765                     this.disabled = false;
14766                 }
14767         },
14768
14769         /**
14770          * Disable this KeyNav
14771          */
14772         disable: function(){
14773                 if(!this.disabled){
14774                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14775                 this.el.un("keydown", this.relay);
14776             }else{
14777                 this.el.un("keydown", this.prepareEvent);
14778                 this.el.un("keypress", this.relay);
14779             }
14780                     this.disabled = true;
14781                 }
14782         }
14783 };/*
14784  * Based on:
14785  * Ext JS Library 1.1.1
14786  * Copyright(c) 2006-2007, Ext JS, LLC.
14787  *
14788  * Originally Released Under LGPL - original licence link has changed is not relivant.
14789  *
14790  * Fork - LGPL
14791  * <script type="text/javascript">
14792  */
14793
14794  
14795 /**
14796  * @class Roo.KeyMap
14797  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14798  * The constructor accepts the same config object as defined by {@link #addBinding}.
14799  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14800  * combination it will call the function with this signature (if the match is a multi-key
14801  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14802  * A KeyMap can also handle a string representation of keys.<br />
14803  * Usage:
14804  <pre><code>
14805 // map one key by key code
14806 var map = new Roo.KeyMap("my-element", {
14807     key: 13, // or Roo.EventObject.ENTER
14808     fn: myHandler,
14809     scope: myObject
14810 });
14811
14812 // map multiple keys to one action by string
14813 var map = new Roo.KeyMap("my-element", {
14814     key: "a\r\n\t",
14815     fn: myHandler,
14816     scope: myObject
14817 });
14818
14819 // map multiple keys to multiple actions by strings and array of codes
14820 var map = new Roo.KeyMap("my-element", [
14821     {
14822         key: [10,13],
14823         fn: function(){ alert("Return was pressed"); }
14824     }, {
14825         key: "abc",
14826         fn: function(){ alert('a, b or c was pressed'); }
14827     }, {
14828         key: "\t",
14829         ctrl:true,
14830         shift:true,
14831         fn: function(){ alert('Control + shift + tab was pressed.'); }
14832     }
14833 ]);
14834 </code></pre>
14835  * <b>Note: A KeyMap starts enabled</b>
14836  * @constructor
14837  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14838  * @param {Object} config The config (see {@link #addBinding})
14839  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14840  */
14841 Roo.KeyMap = function(el, config, eventName){
14842     this.el  = Roo.get(el);
14843     this.eventName = eventName || "keydown";
14844     this.bindings = [];
14845     if(config){
14846         this.addBinding(config);
14847     }
14848     this.enable();
14849 };
14850
14851 Roo.KeyMap.prototype = {
14852     /**
14853      * True to stop the event from bubbling and prevent the default browser action if the
14854      * key was handled by the KeyMap (defaults to false)
14855      * @type Boolean
14856      */
14857     stopEvent : false,
14858
14859     /**
14860      * Add a new binding to this KeyMap. The following config object properties are supported:
14861      * <pre>
14862 Property    Type             Description
14863 ----------  ---------------  ----------------------------------------------------------------------
14864 key         String/Array     A single keycode or an array of keycodes to handle
14865 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14866 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14867 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14868 fn          Function         The function to call when KeyMap finds the expected key combination
14869 scope       Object           The scope of the callback function
14870 </pre>
14871      *
14872      * Usage:
14873      * <pre><code>
14874 // Create a KeyMap
14875 var map = new Roo.KeyMap(document, {
14876     key: Roo.EventObject.ENTER,
14877     fn: handleKey,
14878     scope: this
14879 });
14880
14881 //Add a new binding to the existing KeyMap later
14882 map.addBinding({
14883     key: 'abc',
14884     shift: true,
14885     fn: handleKey,
14886     scope: this
14887 });
14888 </code></pre>
14889      * @param {Object/Array} config A single KeyMap config or an array of configs
14890      */
14891         addBinding : function(config){
14892         if(config instanceof Array){
14893             for(var i = 0, len = config.length; i < len; i++){
14894                 this.addBinding(config[i]);
14895             }
14896             return;
14897         }
14898         var keyCode = config.key,
14899             shift = config.shift, 
14900             ctrl = config.ctrl, 
14901             alt = config.alt,
14902             fn = config.fn,
14903             scope = config.scope;
14904         if(typeof keyCode == "string"){
14905             var ks = [];
14906             var keyString = keyCode.toUpperCase();
14907             for(var j = 0, len = keyString.length; j < len; j++){
14908                 ks.push(keyString.charCodeAt(j));
14909             }
14910             keyCode = ks;
14911         }
14912         var keyArray = keyCode instanceof Array;
14913         var handler = function(e){
14914             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14915                 var k = e.getKey();
14916                 if(keyArray){
14917                     for(var i = 0, len = keyCode.length; i < len; i++){
14918                         if(keyCode[i] == k){
14919                           if(this.stopEvent){
14920                               e.stopEvent();
14921                           }
14922                           fn.call(scope || window, k, e);
14923                           return;
14924                         }
14925                     }
14926                 }else{
14927                     if(k == keyCode){
14928                         if(this.stopEvent){
14929                            e.stopEvent();
14930                         }
14931                         fn.call(scope || window, k, e);
14932                     }
14933                 }
14934             }
14935         };
14936         this.bindings.push(handler);  
14937         },
14938
14939     /**
14940      * Shorthand for adding a single key listener
14941      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14942      * following options:
14943      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14944      * @param {Function} fn The function to call
14945      * @param {Object} scope (optional) The scope of the function
14946      */
14947     on : function(key, fn, scope){
14948         var keyCode, shift, ctrl, alt;
14949         if(typeof key == "object" && !(key instanceof Array)){
14950             keyCode = key.key;
14951             shift = key.shift;
14952             ctrl = key.ctrl;
14953             alt = key.alt;
14954         }else{
14955             keyCode = key;
14956         }
14957         this.addBinding({
14958             key: keyCode,
14959             shift: shift,
14960             ctrl: ctrl,
14961             alt: alt,
14962             fn: fn,
14963             scope: scope
14964         })
14965     },
14966
14967     // private
14968     handleKeyDown : function(e){
14969             if(this.enabled){ //just in case
14970             var b = this.bindings;
14971             for(var i = 0, len = b.length; i < len; i++){
14972                 b[i].call(this, e);
14973             }
14974             }
14975         },
14976         
14977         /**
14978          * Returns true if this KeyMap is enabled
14979          * @return {Boolean} 
14980          */
14981         isEnabled : function(){
14982             return this.enabled;  
14983         },
14984         
14985         /**
14986          * Enables this KeyMap
14987          */
14988         enable: function(){
14989                 if(!this.enabled){
14990                     this.el.on(this.eventName, this.handleKeyDown, this);
14991                     this.enabled = true;
14992                 }
14993         },
14994
14995         /**
14996          * Disable this KeyMap
14997          */
14998         disable: function(){
14999                 if(this.enabled){
15000                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
15001                     this.enabled = false;
15002                 }
15003         }
15004 };/*
15005  * Based on:
15006  * Ext JS Library 1.1.1
15007  * Copyright(c) 2006-2007, Ext JS, LLC.
15008  *
15009  * Originally Released Under LGPL - original licence link has changed is not relivant.
15010  *
15011  * Fork - LGPL
15012  * <script type="text/javascript">
15013  */
15014
15015  
15016 /**
15017  * @class Roo.util.TextMetrics
15018  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
15019  * wide, in pixels, a given block of text will be.
15020  * @singleton
15021  */
15022 Roo.util.TextMetrics = function(){
15023     var shared;
15024     return {
15025         /**
15026          * Measures the size of the specified text
15027          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
15028          * that can affect the size of the rendered text
15029          * @param {String} text The text to measure
15030          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15031          * in order to accurately measure the text height
15032          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15033          */
15034         measure : function(el, text, fixedWidth){
15035             if(!shared){
15036                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
15037             }
15038             shared.bind(el);
15039             shared.setFixedWidth(fixedWidth || 'auto');
15040             return shared.getSize(text);
15041         },
15042
15043         /**
15044          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
15045          * the overhead of multiple calls to initialize the style properties on each measurement.
15046          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
15047          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
15048          * in order to accurately measure the text height
15049          * @return {Roo.util.TextMetrics.Instance} instance The new instance
15050          */
15051         createInstance : function(el, fixedWidth){
15052             return Roo.util.TextMetrics.Instance(el, fixedWidth);
15053         }
15054     };
15055 }();
15056
15057  
15058
15059 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
15060     var ml = new Roo.Element(document.createElement('div'));
15061     document.body.appendChild(ml.dom);
15062     ml.position('absolute');
15063     ml.setLeftTop(-1000, -1000);
15064     ml.hide();
15065
15066     if(fixedWidth){
15067         ml.setWidth(fixedWidth);
15068     }
15069      
15070     var instance = {
15071         /**
15072          * Returns the size of the specified text based on the internal element's style and width properties
15073          * @memberOf Roo.util.TextMetrics.Instance#
15074          * @param {String} text The text to measure
15075          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15076          */
15077         getSize : function(text){
15078             ml.update(text);
15079             var s = ml.getSize();
15080             ml.update('');
15081             return s;
15082         },
15083
15084         /**
15085          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
15086          * that can affect the size of the rendered text
15087          * @memberOf Roo.util.TextMetrics.Instance#
15088          * @param {String/HTMLElement} el The element, dom node or id
15089          */
15090         bind : function(el){
15091             ml.setStyle(
15092                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
15093             );
15094         },
15095
15096         /**
15097          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
15098          * to set a fixed width in order to accurately measure the text height.
15099          * @memberOf Roo.util.TextMetrics.Instance#
15100          * @param {Number} width The width to set on the element
15101          */
15102         setFixedWidth : function(width){
15103             ml.setWidth(width);
15104         },
15105
15106         /**
15107          * Returns the measured width of the specified text
15108          * @memberOf Roo.util.TextMetrics.Instance#
15109          * @param {String} text The text to measure
15110          * @return {Number} width The width in pixels
15111          */
15112         getWidth : function(text){
15113             ml.dom.style.width = 'auto';
15114             return this.getSize(text).width;
15115         },
15116
15117         /**
15118          * Returns the measured height of the specified text.  For multiline text, be sure to call
15119          * {@link #setFixedWidth} if necessary.
15120          * @memberOf Roo.util.TextMetrics.Instance#
15121          * @param {String} text The text to measure
15122          * @return {Number} height The height in pixels
15123          */
15124         getHeight : function(text){
15125             return this.getSize(text).height;
15126         }
15127     };
15128
15129     instance.bind(bindTo);
15130
15131     return instance;
15132 };
15133
15134 // backwards compat
15135 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
15136  * Based on:
15137  * Ext JS Library 1.1.1
15138  * Copyright(c) 2006-2007, Ext JS, LLC.
15139  *
15140  * Originally Released Under LGPL - original licence link has changed is not relivant.
15141  *
15142  * Fork - LGPL
15143  * <script type="text/javascript">
15144  */
15145
15146 /**
15147  * @class Roo.state.Provider
15148  * Abstract base class for state provider implementations. This class provides methods
15149  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15150  * Provider interface.
15151  */
15152 Roo.state.Provider = function(){
15153     /**
15154      * @event statechange
15155      * Fires when a state change occurs.
15156      * @param {Provider} this This state provider
15157      * @param {String} key The state key which was changed
15158      * @param {String} value The encoded value for the state
15159      */
15160     this.addEvents({
15161         "statechange": true
15162     });
15163     this.state = {};
15164     Roo.state.Provider.superclass.constructor.call(this);
15165 };
15166 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15167     /**
15168      * Returns the current value for a key
15169      * @param {String} name The key name
15170      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15171      * @return {Mixed} The state data
15172      */
15173     get : function(name, defaultValue){
15174         return typeof this.state[name] == "undefined" ?
15175             defaultValue : this.state[name];
15176     },
15177     
15178     /**
15179      * Clears a value from the state
15180      * @param {String} name The key name
15181      */
15182     clear : function(name){
15183         delete this.state[name];
15184         this.fireEvent("statechange", this, name, null);
15185     },
15186     
15187     /**
15188      * Sets the value for a key
15189      * @param {String} name The key name
15190      * @param {Mixed} value The value to set
15191      */
15192     set : function(name, value){
15193         this.state[name] = value;
15194         this.fireEvent("statechange", this, name, value);
15195     },
15196     
15197     /**
15198      * Decodes a string previously encoded with {@link #encodeValue}.
15199      * @param {String} value The value to decode
15200      * @return {Mixed} The decoded value
15201      */
15202     decodeValue : function(cookie){
15203         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15204         var matches = re.exec(unescape(cookie));
15205         if(!matches || !matches[1]) {
15206             return; // non state cookie
15207         }
15208         var type = matches[1];
15209         var v = matches[2];
15210         switch(type){
15211             case "n":
15212                 return parseFloat(v);
15213             case "d":
15214                 return new Date(Date.parse(v));
15215             case "b":
15216                 return (v == "1");
15217             case "a":
15218                 var all = [];
15219                 var values = v.split("^");
15220                 for(var i = 0, len = values.length; i < len; i++){
15221                     all.push(this.decodeValue(values[i]));
15222                 }
15223                 return all;
15224            case "o":
15225                 var all = {};
15226                 var values = v.split("^");
15227                 for(var i = 0, len = values.length; i < len; i++){
15228                     var kv = values[i].split("=");
15229                     all[kv[0]] = this.decodeValue(kv[1]);
15230                 }
15231                 return all;
15232            default:
15233                 return v;
15234         }
15235     },
15236     
15237     /**
15238      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15239      * @param {Mixed} value The value to encode
15240      * @return {String} The encoded value
15241      */
15242     encodeValue : function(v){
15243         var enc;
15244         if(typeof v == "number"){
15245             enc = "n:" + v;
15246         }else if(typeof v == "boolean"){
15247             enc = "b:" + (v ? "1" : "0");
15248         }else if(v instanceof Date){
15249             enc = "d:" + v.toGMTString();
15250         }else if(v instanceof Array){
15251             var flat = "";
15252             for(var i = 0, len = v.length; i < len; i++){
15253                 flat += this.encodeValue(v[i]);
15254                 if(i != len-1) {
15255                     flat += "^";
15256                 }
15257             }
15258             enc = "a:" + flat;
15259         }else if(typeof v == "object"){
15260             var flat = "";
15261             for(var key in v){
15262                 if(typeof v[key] != "function"){
15263                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15264                 }
15265             }
15266             enc = "o:" + flat.substring(0, flat.length-1);
15267         }else{
15268             enc = "s:" + v;
15269         }
15270         return escape(enc);        
15271     }
15272 });
15273
15274 /*
15275  * Based on:
15276  * Ext JS Library 1.1.1
15277  * Copyright(c) 2006-2007, Ext JS, LLC.
15278  *
15279  * Originally Released Under LGPL - original licence link has changed is not relivant.
15280  *
15281  * Fork - LGPL
15282  * <script type="text/javascript">
15283  */
15284 /**
15285  * @class Roo.state.Manager
15286  * This is the global state manager. By default all components that are "state aware" check this class
15287  * for state information if you don't pass them a custom state provider. In order for this class
15288  * to be useful, it must be initialized with a provider when your application initializes.
15289  <pre><code>
15290 // in your initialization function
15291 init : function(){
15292    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15293    ...
15294    // supposed you have a {@link Roo.BorderLayout}
15295    var layout = new Roo.BorderLayout(...);
15296    layout.restoreState();
15297    // or a {Roo.BasicDialog}
15298    var dialog = new Roo.BasicDialog(...);
15299    dialog.restoreState();
15300  </code></pre>
15301  * @singleton
15302  */
15303 Roo.state.Manager = function(){
15304     var provider = new Roo.state.Provider();
15305     
15306     return {
15307         /**
15308          * Configures the default state provider for your application
15309          * @param {Provider} stateProvider The state provider to set
15310          */
15311         setProvider : function(stateProvider){
15312             provider = stateProvider;
15313         },
15314         
15315         /**
15316          * Returns the current value for a key
15317          * @param {String} name The key name
15318          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15319          * @return {Mixed} The state data
15320          */
15321         get : function(key, defaultValue){
15322             return provider.get(key, defaultValue);
15323         },
15324         
15325         /**
15326          * Sets the value for a key
15327          * @param {String} name The key name
15328          * @param {Mixed} value The state data
15329          */
15330          set : function(key, value){
15331             provider.set(key, value);
15332         },
15333         
15334         /**
15335          * Clears a value from the state
15336          * @param {String} name The key name
15337          */
15338         clear : function(key){
15339             provider.clear(key);
15340         },
15341         
15342         /**
15343          * Gets the currently configured state provider
15344          * @return {Provider} The state provider
15345          */
15346         getProvider : function(){
15347             return provider;
15348         }
15349     };
15350 }();
15351 /*
15352  * Based on:
15353  * Ext JS Library 1.1.1
15354  * Copyright(c) 2006-2007, Ext JS, LLC.
15355  *
15356  * Originally Released Under LGPL - original licence link has changed is not relivant.
15357  *
15358  * Fork - LGPL
15359  * <script type="text/javascript">
15360  */
15361 /**
15362  * @class Roo.state.CookieProvider
15363  * @extends Roo.state.Provider
15364  * The default Provider implementation which saves state via cookies.
15365  * <br />Usage:
15366  <pre><code>
15367    var cp = new Roo.state.CookieProvider({
15368        path: "/cgi-bin/",
15369        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15370        domain: "roojs.com"
15371    })
15372    Roo.state.Manager.setProvider(cp);
15373  </code></pre>
15374  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15375  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15376  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15377  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15378  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15379  * domain the page is running on including the 'www' like 'www.roojs.com')
15380  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15381  * @constructor
15382  * Create a new CookieProvider
15383  * @param {Object} config The configuration object
15384  */
15385 Roo.state.CookieProvider = function(config){
15386     Roo.state.CookieProvider.superclass.constructor.call(this);
15387     this.path = "/";
15388     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15389     this.domain = null;
15390     this.secure = false;
15391     Roo.apply(this, config);
15392     this.state = this.readCookies();
15393 };
15394
15395 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15396     // private
15397     set : function(name, value){
15398         if(typeof value == "undefined" || value === null){
15399             this.clear(name);
15400             return;
15401         }
15402         this.setCookie(name, value);
15403         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15404     },
15405
15406     // private
15407     clear : function(name){
15408         this.clearCookie(name);
15409         Roo.state.CookieProvider.superclass.clear.call(this, name);
15410     },
15411
15412     // private
15413     readCookies : function(){
15414         var cookies = {};
15415         var c = document.cookie + ";";
15416         var re = /\s?(.*?)=(.*?);/g;
15417         var matches;
15418         while((matches = re.exec(c)) != null){
15419             var name = matches[1];
15420             var value = matches[2];
15421             if(name && name.substring(0,3) == "ys-"){
15422                 cookies[name.substr(3)] = this.decodeValue(value);
15423             }
15424         }
15425         return cookies;
15426     },
15427
15428     // private
15429     setCookie : function(name, value){
15430         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15431            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15432            ((this.path == null) ? "" : ("; path=" + this.path)) +
15433            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15434            ((this.secure == true) ? "; secure" : "");
15435     },
15436
15437     // private
15438     clearCookie : function(name){
15439         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15440            ((this.path == null) ? "" : ("; path=" + this.path)) +
15441            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15442            ((this.secure == true) ? "; secure" : "");
15443     }
15444 });/*
15445  * Based on:
15446  * Ext JS Library 1.1.1
15447  * Copyright(c) 2006-2007, Ext JS, LLC.
15448  *
15449  * Originally Released Under LGPL - original licence link has changed is not relivant.
15450  *
15451  * Fork - LGPL
15452  * <script type="text/javascript">
15453  */
15454  
15455
15456 /**
15457  * @class Roo.ComponentMgr
15458  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15459  * @singleton
15460  */
15461 Roo.ComponentMgr = function(){
15462     var all = new Roo.util.MixedCollection();
15463
15464     return {
15465         /**
15466          * Registers a component.
15467          * @param {Roo.Component} c The component
15468          */
15469         register : function(c){
15470             all.add(c);
15471         },
15472
15473         /**
15474          * Unregisters a component.
15475          * @param {Roo.Component} c The component
15476          */
15477         unregister : function(c){
15478             all.remove(c);
15479         },
15480
15481         /**
15482          * Returns a component by id
15483          * @param {String} id The component id
15484          */
15485         get : function(id){
15486             return all.get(id);
15487         },
15488
15489         /**
15490          * Registers a function that will be called when a specified component is added to ComponentMgr
15491          * @param {String} id The component id
15492          * @param {Funtction} fn The callback function
15493          * @param {Object} scope The scope of the callback
15494          */
15495         onAvailable : function(id, fn, scope){
15496             all.on("add", function(index, o){
15497                 if(o.id == id){
15498                     fn.call(scope || o, o);
15499                     all.un("add", fn, scope);
15500                 }
15501             });
15502         }
15503     };
15504 }();/*
15505  * Based on:
15506  * Ext JS Library 1.1.1
15507  * Copyright(c) 2006-2007, Ext JS, LLC.
15508  *
15509  * Originally Released Under LGPL - original licence link has changed is not relivant.
15510  *
15511  * Fork - LGPL
15512  * <script type="text/javascript">
15513  */
15514  
15515 /**
15516  * @class Roo.Component
15517  * @extends Roo.util.Observable
15518  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15519  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15520  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15521  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15522  * All visual components (widgets) that require rendering into a layout should subclass Component.
15523  * @constructor
15524  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15525  * 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
15526  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15527  */
15528 Roo.Component = function(config){
15529     config = config || {};
15530     if(config.tagName || config.dom || typeof config == "string"){ // element object
15531         config = {el: config, id: config.id || config};
15532     }
15533     this.initialConfig = config;
15534
15535     Roo.apply(this, config);
15536     this.addEvents({
15537         /**
15538          * @event disable
15539          * Fires after the component is disabled.
15540              * @param {Roo.Component} this
15541              */
15542         disable : true,
15543         /**
15544          * @event enable
15545          * Fires after the component is enabled.
15546              * @param {Roo.Component} this
15547              */
15548         enable : true,
15549         /**
15550          * @event beforeshow
15551          * Fires before the component is shown.  Return false to stop the show.
15552              * @param {Roo.Component} this
15553              */
15554         beforeshow : true,
15555         /**
15556          * @event show
15557          * Fires after the component is shown.
15558              * @param {Roo.Component} this
15559              */
15560         show : true,
15561         /**
15562          * @event beforehide
15563          * Fires before the component is hidden. Return false to stop the hide.
15564              * @param {Roo.Component} this
15565              */
15566         beforehide : true,
15567         /**
15568          * @event hide
15569          * Fires after the component is hidden.
15570              * @param {Roo.Component} this
15571              */
15572         hide : true,
15573         /**
15574          * @event beforerender
15575          * Fires before the component is rendered. Return false to stop the render.
15576              * @param {Roo.Component} this
15577              */
15578         beforerender : true,
15579         /**
15580          * @event render
15581          * Fires after the component is rendered.
15582              * @param {Roo.Component} this
15583              */
15584         render : true,
15585         /**
15586          * @event beforedestroy
15587          * Fires before the component is destroyed. Return false to stop the destroy.
15588              * @param {Roo.Component} this
15589              */
15590         beforedestroy : true,
15591         /**
15592          * @event destroy
15593          * Fires after the component is destroyed.
15594              * @param {Roo.Component} this
15595              */
15596         destroy : true
15597     });
15598     if(!this.id){
15599         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15600     }
15601     Roo.ComponentMgr.register(this);
15602     Roo.Component.superclass.constructor.call(this);
15603     this.initComponent();
15604     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15605         this.render(this.renderTo);
15606         delete this.renderTo;
15607     }
15608 };
15609
15610 /** @private */
15611 Roo.Component.AUTO_ID = 1000;
15612
15613 Roo.extend(Roo.Component, Roo.util.Observable, {
15614     /**
15615      * @scope Roo.Component.prototype
15616      * @type {Boolean}
15617      * true if this component is hidden. Read-only.
15618      */
15619     hidden : false,
15620     /**
15621      * @type {Boolean}
15622      * true if this component is disabled. Read-only.
15623      */
15624     disabled : false,
15625     /**
15626      * @type {Boolean}
15627      * true if this component has been rendered. Read-only.
15628      */
15629     rendered : false,
15630     
15631     /** @cfg {String} disableClass
15632      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15633      */
15634     disabledClass : "x-item-disabled",
15635         /** @cfg {Boolean} allowDomMove
15636          * Whether the component can move the Dom node when rendering (defaults to true).
15637          */
15638     allowDomMove : true,
15639     /** @cfg {String} hideMode (display|visibility)
15640      * How this component should hidden. Supported values are
15641      * "visibility" (css visibility), "offsets" (negative offset position) and
15642      * "display" (css display) - defaults to "display".
15643      */
15644     hideMode: 'display',
15645
15646     /** @private */
15647     ctype : "Roo.Component",
15648
15649     /**
15650      * @cfg {String} actionMode 
15651      * which property holds the element that used for  hide() / show() / disable() / enable()
15652      * default is 'el' for forms you probably want to set this to fieldEl 
15653      */
15654     actionMode : "el",
15655
15656     /** @private */
15657     getActionEl : function(){
15658         return this[this.actionMode];
15659     },
15660
15661     initComponent : Roo.emptyFn,
15662     /**
15663      * If this is a lazy rendering component, render it to its container element.
15664      * @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.
15665      */
15666     render : function(container, position){
15667         
15668         if(this.rendered){
15669             return this;
15670         }
15671         
15672         if(this.fireEvent("beforerender", this) === false){
15673             return false;
15674         }
15675         
15676         if(!container && this.el){
15677             this.el = Roo.get(this.el);
15678             container = this.el.dom.parentNode;
15679             this.allowDomMove = false;
15680         }
15681         this.container = Roo.get(container);
15682         this.rendered = true;
15683         if(position !== undefined){
15684             if(typeof position == 'number'){
15685                 position = this.container.dom.childNodes[position];
15686             }else{
15687                 position = Roo.getDom(position);
15688             }
15689         }
15690         this.onRender(this.container, position || null);
15691         if(this.cls){
15692             this.el.addClass(this.cls);
15693             delete this.cls;
15694         }
15695         if(this.style){
15696             this.el.applyStyles(this.style);
15697             delete this.style;
15698         }
15699         this.fireEvent("render", this);
15700         this.afterRender(this.container);
15701         if(this.hidden){
15702             this.hide();
15703         }
15704         if(this.disabled){
15705             this.disable();
15706         }
15707
15708         return this;
15709         
15710     },
15711
15712     /** @private */
15713     // default function is not really useful
15714     onRender : function(ct, position){
15715         if(this.el){
15716             this.el = Roo.get(this.el);
15717             if(this.allowDomMove !== false){
15718                 ct.dom.insertBefore(this.el.dom, position);
15719             }
15720         }
15721     },
15722
15723     /** @private */
15724     getAutoCreate : function(){
15725         var cfg = typeof this.autoCreate == "object" ?
15726                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15727         if(this.id && !cfg.id){
15728             cfg.id = this.id;
15729         }
15730         return cfg;
15731     },
15732
15733     /** @private */
15734     afterRender : Roo.emptyFn,
15735
15736     /**
15737      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15738      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15739      */
15740     destroy : function(){
15741         if(this.fireEvent("beforedestroy", this) !== false){
15742             this.purgeListeners();
15743             this.beforeDestroy();
15744             if(this.rendered){
15745                 this.el.removeAllListeners();
15746                 this.el.remove();
15747                 if(this.actionMode == "container"){
15748                     this.container.remove();
15749                 }
15750             }
15751             this.onDestroy();
15752             Roo.ComponentMgr.unregister(this);
15753             this.fireEvent("destroy", this);
15754         }
15755     },
15756
15757         /** @private */
15758     beforeDestroy : function(){
15759
15760     },
15761
15762         /** @private */
15763         onDestroy : function(){
15764
15765     },
15766
15767     /**
15768      * Returns the underlying {@link Roo.Element}.
15769      * @return {Roo.Element} The element
15770      */
15771     getEl : function(){
15772         return this.el;
15773     },
15774
15775     /**
15776      * Returns the id of this component.
15777      * @return {String}
15778      */
15779     getId : function(){
15780         return this.id;
15781     },
15782
15783     /**
15784      * Try to focus this component.
15785      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15786      * @return {Roo.Component} this
15787      */
15788     focus : function(selectText){
15789         if(this.rendered){
15790             this.el.focus();
15791             if(selectText === true){
15792                 this.el.dom.select();
15793             }
15794         }
15795         return this;
15796     },
15797
15798     /** @private */
15799     blur : function(){
15800         if(this.rendered){
15801             this.el.blur();
15802         }
15803         return this;
15804     },
15805
15806     /**
15807      * Disable this component.
15808      * @return {Roo.Component} this
15809      */
15810     disable : function(){
15811         if(this.rendered){
15812             this.onDisable();
15813         }
15814         this.disabled = true;
15815         this.fireEvent("disable", this);
15816         return this;
15817     },
15818
15819         // private
15820     onDisable : function(){
15821         this.getActionEl().addClass(this.disabledClass);
15822         this.el.dom.disabled = true;
15823     },
15824
15825     /**
15826      * Enable this component.
15827      * @return {Roo.Component} this
15828      */
15829     enable : function(){
15830         if(this.rendered){
15831             this.onEnable();
15832         }
15833         this.disabled = false;
15834         this.fireEvent("enable", this);
15835         return this;
15836     },
15837
15838         // private
15839     onEnable : function(){
15840         this.getActionEl().removeClass(this.disabledClass);
15841         this.el.dom.disabled = false;
15842     },
15843
15844     /**
15845      * Convenience function for setting disabled/enabled by boolean.
15846      * @param {Boolean} disabled
15847      */
15848     setDisabled : function(disabled){
15849         this[disabled ? "disable" : "enable"]();
15850     },
15851
15852     /**
15853      * Show this component.
15854      * @return {Roo.Component} this
15855      */
15856     show: function(){
15857         if(this.fireEvent("beforeshow", this) !== false){
15858             this.hidden = false;
15859             if(this.rendered){
15860                 this.onShow();
15861             }
15862             this.fireEvent("show", this);
15863         }
15864         return this;
15865     },
15866
15867     // private
15868     onShow : function(){
15869         var ae = this.getActionEl();
15870         if(this.hideMode == 'visibility'){
15871             ae.dom.style.visibility = "visible";
15872         }else if(this.hideMode == 'offsets'){
15873             ae.removeClass('x-hidden');
15874         }else{
15875             ae.dom.style.display = "";
15876         }
15877     },
15878
15879     /**
15880      * Hide this component.
15881      * @return {Roo.Component} this
15882      */
15883     hide: function(){
15884         if(this.fireEvent("beforehide", this) !== false){
15885             this.hidden = true;
15886             if(this.rendered){
15887                 this.onHide();
15888             }
15889             this.fireEvent("hide", this);
15890         }
15891         return this;
15892     },
15893
15894     // private
15895     onHide : function(){
15896         var ae = this.getActionEl();
15897         if(this.hideMode == 'visibility'){
15898             ae.dom.style.visibility = "hidden";
15899         }else if(this.hideMode == 'offsets'){
15900             ae.addClass('x-hidden');
15901         }else{
15902             ae.dom.style.display = "none";
15903         }
15904     },
15905
15906     /**
15907      * Convenience function to hide or show this component by boolean.
15908      * @param {Boolean} visible True to show, false to hide
15909      * @return {Roo.Component} this
15910      */
15911     setVisible: function(visible){
15912         if(visible) {
15913             this.show();
15914         }else{
15915             this.hide();
15916         }
15917         return this;
15918     },
15919
15920     /**
15921      * Returns true if this component is visible.
15922      */
15923     isVisible : function(){
15924         return this.getActionEl().isVisible();
15925     },
15926
15927     cloneConfig : function(overrides){
15928         overrides = overrides || {};
15929         var id = overrides.id || Roo.id();
15930         var cfg = Roo.applyIf(overrides, this.initialConfig);
15931         cfg.id = id; // prevent dup id
15932         return new this.constructor(cfg);
15933     }
15934 });/*
15935  * Based on:
15936  * Ext JS Library 1.1.1
15937  * Copyright(c) 2006-2007, Ext JS, LLC.
15938  *
15939  * Originally Released Under LGPL - original licence link has changed is not relivant.
15940  *
15941  * Fork - LGPL
15942  * <script type="text/javascript">
15943  */
15944
15945 /**
15946  * @class Roo.BoxComponent
15947  * @extends Roo.Component
15948  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15949  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15950  * container classes should subclass BoxComponent so that they will work consistently when nested within other Roo
15951  * layout containers.
15952  * @constructor
15953  * @param {Roo.Element/String/Object} config The configuration options.
15954  */
15955 Roo.BoxComponent = function(config){
15956     Roo.Component.call(this, config);
15957     this.addEvents({
15958         /**
15959          * @event resize
15960          * Fires after the component is resized.
15961              * @param {Roo.Component} this
15962              * @param {Number} adjWidth The box-adjusted width that was set
15963              * @param {Number} adjHeight The box-adjusted height that was set
15964              * @param {Number} rawWidth The width that was originally specified
15965              * @param {Number} rawHeight The height that was originally specified
15966              */
15967         resize : true,
15968         /**
15969          * @event move
15970          * Fires after the component is moved.
15971              * @param {Roo.Component} this
15972              * @param {Number} x The new x position
15973              * @param {Number} y The new y position
15974              */
15975         move : true
15976     });
15977 };
15978
15979 Roo.extend(Roo.BoxComponent, Roo.Component, {
15980     // private, set in afterRender to signify that the component has been rendered
15981     boxReady : false,
15982     // private, used to defer height settings to subclasses
15983     deferHeight: false,
15984     /** @cfg {Number} width
15985      * width (optional) size of component
15986      */
15987      /** @cfg {Number} height
15988      * height (optional) size of component
15989      */
15990      
15991     /**
15992      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15993      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15994      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15995      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15996      * @return {Roo.BoxComponent} this
15997      */
15998     setSize : function(w, h){
15999         // support for standard size objects
16000         if(typeof w == 'object'){
16001             h = w.height;
16002             w = w.width;
16003         }
16004         // not rendered
16005         if(!this.boxReady){
16006             this.width = w;
16007             this.height = h;
16008             return this;
16009         }
16010
16011         // prevent recalcs when not needed
16012         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
16013             return this;
16014         }
16015         this.lastSize = {width: w, height: h};
16016
16017         var adj = this.adjustSize(w, h);
16018         var aw = adj.width, ah = adj.height;
16019         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
16020             var rz = this.getResizeEl();
16021             if(!this.deferHeight && aw !== undefined && ah !== undefined){
16022                 rz.setSize(aw, ah);
16023             }else if(!this.deferHeight && ah !== undefined){
16024                 rz.setHeight(ah);
16025             }else if(aw !== undefined){
16026                 rz.setWidth(aw);
16027             }
16028             this.onResize(aw, ah, w, h);
16029             this.fireEvent('resize', this, aw, ah, w, h);
16030         }
16031         return this;
16032     },
16033
16034     /**
16035      * Gets the current size of the component's underlying element.
16036      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
16037      */
16038     getSize : function(){
16039         return this.el.getSize();
16040     },
16041
16042     /**
16043      * Gets the current XY position of the component's underlying element.
16044      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16045      * @return {Array} The XY position of the element (e.g., [100, 200])
16046      */
16047     getPosition : function(local){
16048         if(local === true){
16049             return [this.el.getLeft(true), this.el.getTop(true)];
16050         }
16051         return this.xy || this.el.getXY();
16052     },
16053
16054     /**
16055      * Gets the current box measurements of the component's underlying element.
16056      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
16057      * @returns {Object} box An object in the format {x, y, width, height}
16058      */
16059     getBox : function(local){
16060         var s = this.el.getSize();
16061         if(local){
16062             s.x = this.el.getLeft(true);
16063             s.y = this.el.getTop(true);
16064         }else{
16065             var xy = this.xy || this.el.getXY();
16066             s.x = xy[0];
16067             s.y = xy[1];
16068         }
16069         return s;
16070     },
16071
16072     /**
16073      * Sets the current box measurements of the component's underlying element.
16074      * @param {Object} box An object in the format {x, y, width, height}
16075      * @returns {Roo.BoxComponent} this
16076      */
16077     updateBox : function(box){
16078         this.setSize(box.width, box.height);
16079         this.setPagePosition(box.x, box.y);
16080         return this;
16081     },
16082
16083     // protected
16084     getResizeEl : function(){
16085         return this.resizeEl || this.el;
16086     },
16087
16088     // protected
16089     getPositionEl : function(){
16090         return this.positionEl || this.el;
16091     },
16092
16093     /**
16094      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
16095      * This method fires the move event.
16096      * @param {Number} left The new left
16097      * @param {Number} top The new top
16098      * @returns {Roo.BoxComponent} this
16099      */
16100     setPosition : function(x, y){
16101         this.x = x;
16102         this.y = y;
16103         if(!this.boxReady){
16104             return this;
16105         }
16106         var adj = this.adjustPosition(x, y);
16107         var ax = adj.x, ay = adj.y;
16108
16109         var el = this.getPositionEl();
16110         if(ax !== undefined || ay !== undefined){
16111             if(ax !== undefined && ay !== undefined){
16112                 el.setLeftTop(ax, ay);
16113             }else if(ax !== undefined){
16114                 el.setLeft(ax);
16115             }else if(ay !== undefined){
16116                 el.setTop(ay);
16117             }
16118             this.onPosition(ax, ay);
16119             this.fireEvent('move', this, ax, ay);
16120         }
16121         return this;
16122     },
16123
16124     /**
16125      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
16126      * This method fires the move event.
16127      * @param {Number} x The new x position
16128      * @param {Number} y The new y position
16129      * @returns {Roo.BoxComponent} this
16130      */
16131     setPagePosition : function(x, y){
16132         this.pageX = x;
16133         this.pageY = y;
16134         if(!this.boxReady){
16135             return;
16136         }
16137         if(x === undefined || y === undefined){ // cannot translate undefined points
16138             return;
16139         }
16140         var p = this.el.translatePoints(x, y);
16141         this.setPosition(p.left, p.top);
16142         return this;
16143     },
16144
16145     // private
16146     onRender : function(ct, position){
16147         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16148         if(this.resizeEl){
16149             this.resizeEl = Roo.get(this.resizeEl);
16150         }
16151         if(this.positionEl){
16152             this.positionEl = Roo.get(this.positionEl);
16153         }
16154     },
16155
16156     // private
16157     afterRender : function(){
16158         Roo.BoxComponent.superclass.afterRender.call(this);
16159         this.boxReady = true;
16160         this.setSize(this.width, this.height);
16161         if(this.x || this.y){
16162             this.setPosition(this.x, this.y);
16163         }
16164         if(this.pageX || this.pageY){
16165             this.setPagePosition(this.pageX, this.pageY);
16166         }
16167     },
16168
16169     /**
16170      * Force the component's size to recalculate based on the underlying element's current height and width.
16171      * @returns {Roo.BoxComponent} this
16172      */
16173     syncSize : function(){
16174         delete this.lastSize;
16175         this.setSize(this.el.getWidth(), this.el.getHeight());
16176         return this;
16177     },
16178
16179     /**
16180      * Called after the component is resized, this method is empty by default but can be implemented by any
16181      * subclass that needs to perform custom logic after a resize occurs.
16182      * @param {Number} adjWidth The box-adjusted width that was set
16183      * @param {Number} adjHeight The box-adjusted height that was set
16184      * @param {Number} rawWidth The width that was originally specified
16185      * @param {Number} rawHeight The height that was originally specified
16186      */
16187     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16188
16189     },
16190
16191     /**
16192      * Called after the component is moved, this method is empty by default but can be implemented by any
16193      * subclass that needs to perform custom logic after a move occurs.
16194      * @param {Number} x The new x position
16195      * @param {Number} y The new y position
16196      */
16197     onPosition : function(x, y){
16198
16199     },
16200
16201     // private
16202     adjustSize : function(w, h){
16203         if(this.autoWidth){
16204             w = 'auto';
16205         }
16206         if(this.autoHeight){
16207             h = 'auto';
16208         }
16209         return {width : w, height: h};
16210     },
16211
16212     // private
16213     adjustPosition : function(x, y){
16214         return {x : x, y: y};
16215     }
16216 });/*
16217  * Based on:
16218  * Ext JS Library 1.1.1
16219  * Copyright(c) 2006-2007, Ext JS, LLC.
16220  *
16221  * Originally Released Under LGPL - original licence link has changed is not relivant.
16222  *
16223  * Fork - LGPL
16224  * <script type="text/javascript">
16225  */
16226  (function(){ 
16227 /**
16228  * @class Roo.Layer
16229  * @extends Roo.Element
16230  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16231  * automatic maintaining of shadow/shim positions.
16232  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16233  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16234  * you can pass a string with a CSS class name. False turns off the shadow.
16235  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16236  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16237  * @cfg {String} cls CSS class to add to the element
16238  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16239  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16240  * @constructor
16241  * @param {Object} config An object with config options.
16242  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16243  */
16244
16245 Roo.Layer = function(config, existingEl){
16246     config = config || {};
16247     var dh = Roo.DomHelper;
16248     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16249     if(existingEl){
16250         this.dom = Roo.getDom(existingEl);
16251     }
16252     if(!this.dom){
16253         var o = config.dh || {tag: "div", cls: "x-layer"};
16254         this.dom = dh.append(pel, o);
16255     }
16256     if(config.cls){
16257         this.addClass(config.cls);
16258     }
16259     this.constrain = config.constrain !== false;
16260     this.visibilityMode = Roo.Element.VISIBILITY;
16261     if(config.id){
16262         this.id = this.dom.id = config.id;
16263     }else{
16264         this.id = Roo.id(this.dom);
16265     }
16266     this.zindex = config.zindex || this.getZIndex();
16267     this.position("absolute", this.zindex);
16268     if(config.shadow){
16269         this.shadowOffset = config.shadowOffset || 4;
16270         this.shadow = new Roo.Shadow({
16271             offset : this.shadowOffset,
16272             mode : config.shadow
16273         });
16274     }else{
16275         this.shadowOffset = 0;
16276     }
16277     this.useShim = config.shim !== false && Roo.useShims;
16278     this.useDisplay = config.useDisplay;
16279     this.hide();
16280 };
16281
16282 var supr = Roo.Element.prototype;
16283
16284 // shims are shared among layer to keep from having 100 iframes
16285 var shims = [];
16286
16287 Roo.extend(Roo.Layer, Roo.Element, {
16288
16289     getZIndex : function(){
16290         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16291     },
16292
16293     getShim : function(){
16294         if(!this.useShim){
16295             return null;
16296         }
16297         if(this.shim){
16298             return this.shim;
16299         }
16300         var shim = shims.shift();
16301         if(!shim){
16302             shim = this.createShim();
16303             shim.enableDisplayMode('block');
16304             shim.dom.style.display = 'none';
16305             shim.dom.style.visibility = 'visible';
16306         }
16307         var pn = this.dom.parentNode;
16308         if(shim.dom.parentNode != pn){
16309             pn.insertBefore(shim.dom, this.dom);
16310         }
16311         shim.setStyle('z-index', this.getZIndex()-2);
16312         this.shim = shim;
16313         return shim;
16314     },
16315
16316     hideShim : function(){
16317         if(this.shim){
16318             this.shim.setDisplayed(false);
16319             shims.push(this.shim);
16320             delete this.shim;
16321         }
16322     },
16323
16324     disableShadow : function(){
16325         if(this.shadow){
16326             this.shadowDisabled = true;
16327             this.shadow.hide();
16328             this.lastShadowOffset = this.shadowOffset;
16329             this.shadowOffset = 0;
16330         }
16331     },
16332
16333     enableShadow : function(show){
16334         if(this.shadow){
16335             this.shadowDisabled = false;
16336             this.shadowOffset = this.lastShadowOffset;
16337             delete this.lastShadowOffset;
16338             if(show){
16339                 this.sync(true);
16340             }
16341         }
16342     },
16343
16344     // private
16345     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16346     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16347     sync : function(doShow){
16348         var sw = this.shadow;
16349         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16350             var sh = this.getShim();
16351
16352             var w = this.getWidth(),
16353                 h = this.getHeight();
16354
16355             var l = this.getLeft(true),
16356                 t = this.getTop(true);
16357
16358             if(sw && !this.shadowDisabled){
16359                 if(doShow && !sw.isVisible()){
16360                     sw.show(this);
16361                 }else{
16362                     sw.realign(l, t, w, h);
16363                 }
16364                 if(sh){
16365                     if(doShow){
16366                        sh.show();
16367                     }
16368                     // fit the shim behind the shadow, so it is shimmed too
16369                     var a = sw.adjusts, s = sh.dom.style;
16370                     s.left = (Math.min(l, l+a.l))+"px";
16371                     s.top = (Math.min(t, t+a.t))+"px";
16372                     s.width = (w+a.w)+"px";
16373                     s.height = (h+a.h)+"px";
16374                 }
16375             }else if(sh){
16376                 if(doShow){
16377                    sh.show();
16378                 }
16379                 sh.setSize(w, h);
16380                 sh.setLeftTop(l, t);
16381             }
16382             
16383         }
16384     },
16385
16386     // private
16387     destroy : function(){
16388         this.hideShim();
16389         if(this.shadow){
16390             this.shadow.hide();
16391         }
16392         this.removeAllListeners();
16393         var pn = this.dom.parentNode;
16394         if(pn){
16395             pn.removeChild(this.dom);
16396         }
16397         Roo.Element.uncache(this.id);
16398     },
16399
16400     remove : function(){
16401         this.destroy();
16402     },
16403
16404     // private
16405     beginUpdate : function(){
16406         this.updating = true;
16407     },
16408
16409     // private
16410     endUpdate : function(){
16411         this.updating = false;
16412         this.sync(true);
16413     },
16414
16415     // private
16416     hideUnders : function(negOffset){
16417         if(this.shadow){
16418             this.shadow.hide();
16419         }
16420         this.hideShim();
16421     },
16422
16423     // private
16424     constrainXY : function(){
16425         if(this.constrain){
16426             var vw = Roo.lib.Dom.getViewWidth(),
16427                 vh = Roo.lib.Dom.getViewHeight();
16428             var s = Roo.get(document).getScroll();
16429
16430             var xy = this.getXY();
16431             var x = xy[0], y = xy[1];   
16432             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16433             // only move it if it needs it
16434             var moved = false;
16435             // first validate right/bottom
16436             if((x + w) > vw+s.left){
16437                 x = vw - w - this.shadowOffset;
16438                 moved = true;
16439             }
16440             if((y + h) > vh+s.top){
16441                 y = vh - h - this.shadowOffset;
16442                 moved = true;
16443             }
16444             // then make sure top/left isn't negative
16445             if(x < s.left){
16446                 x = s.left;
16447                 moved = true;
16448             }
16449             if(y < s.top){
16450                 y = s.top;
16451                 moved = true;
16452             }
16453             if(moved){
16454                 if(this.avoidY){
16455                     var ay = this.avoidY;
16456                     if(y <= ay && (y+h) >= ay){
16457                         y = ay-h-5;   
16458                     }
16459                 }
16460                 xy = [x, y];
16461                 this.storeXY(xy);
16462                 supr.setXY.call(this, xy);
16463                 this.sync();
16464             }
16465         }
16466     },
16467
16468     isVisible : function(){
16469         return this.visible;    
16470     },
16471
16472     // private
16473     showAction : function(){
16474         this.visible = true; // track visibility to prevent getStyle calls
16475         if(this.useDisplay === true){
16476             this.setDisplayed("");
16477         }else if(this.lastXY){
16478             supr.setXY.call(this, this.lastXY);
16479         }else if(this.lastLT){
16480             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16481         }
16482     },
16483
16484     // private
16485     hideAction : function(){
16486         this.visible = false;
16487         if(this.useDisplay === true){
16488             this.setDisplayed(false);
16489         }else{
16490             this.setLeftTop(-10000,-10000);
16491         }
16492     },
16493
16494     // overridden Element method
16495     setVisible : function(v, a, d, c, e){
16496         if(v){
16497             this.showAction();
16498         }
16499         if(a && v){
16500             var cb = function(){
16501                 this.sync(true);
16502                 if(c){
16503                     c();
16504                 }
16505             }.createDelegate(this);
16506             supr.setVisible.call(this, true, true, d, cb, e);
16507         }else{
16508             if(!v){
16509                 this.hideUnders(true);
16510             }
16511             var cb = c;
16512             if(a){
16513                 cb = function(){
16514                     this.hideAction();
16515                     if(c){
16516                         c();
16517                     }
16518                 }.createDelegate(this);
16519             }
16520             supr.setVisible.call(this, v, a, d, cb, e);
16521             if(v){
16522                 this.sync(true);
16523             }else if(!a){
16524                 this.hideAction();
16525             }
16526         }
16527     },
16528
16529     storeXY : function(xy){
16530         delete this.lastLT;
16531         this.lastXY = xy;
16532     },
16533
16534     storeLeftTop : function(left, top){
16535         delete this.lastXY;
16536         this.lastLT = [left, top];
16537     },
16538
16539     // private
16540     beforeFx : function(){
16541         this.beforeAction();
16542         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16543     },
16544
16545     // private
16546     afterFx : function(){
16547         Roo.Layer.superclass.afterFx.apply(this, arguments);
16548         this.sync(this.isVisible());
16549     },
16550
16551     // private
16552     beforeAction : function(){
16553         if(!this.updating && this.shadow){
16554             this.shadow.hide();
16555         }
16556     },
16557
16558     // overridden Element method
16559     setLeft : function(left){
16560         this.storeLeftTop(left, this.getTop(true));
16561         supr.setLeft.apply(this, arguments);
16562         this.sync();
16563     },
16564
16565     setTop : function(top){
16566         this.storeLeftTop(this.getLeft(true), top);
16567         supr.setTop.apply(this, arguments);
16568         this.sync();
16569     },
16570
16571     setLeftTop : function(left, top){
16572         this.storeLeftTop(left, top);
16573         supr.setLeftTop.apply(this, arguments);
16574         this.sync();
16575     },
16576
16577     setXY : function(xy, a, d, c, e){
16578         this.fixDisplay();
16579         this.beforeAction();
16580         this.storeXY(xy);
16581         var cb = this.createCB(c);
16582         supr.setXY.call(this, xy, a, d, cb, e);
16583         if(!a){
16584             cb();
16585         }
16586     },
16587
16588     // private
16589     createCB : function(c){
16590         var el = this;
16591         return function(){
16592             el.constrainXY();
16593             el.sync(true);
16594             if(c){
16595                 c();
16596             }
16597         };
16598     },
16599
16600     // overridden Element method
16601     setX : function(x, a, d, c, e){
16602         this.setXY([x, this.getY()], a, d, c, e);
16603     },
16604
16605     // overridden Element method
16606     setY : function(y, a, d, c, e){
16607         this.setXY([this.getX(), y], a, d, c, e);
16608     },
16609
16610     // overridden Element method
16611     setSize : function(w, h, a, d, c, e){
16612         this.beforeAction();
16613         var cb = this.createCB(c);
16614         supr.setSize.call(this, w, h, a, d, cb, e);
16615         if(!a){
16616             cb();
16617         }
16618     },
16619
16620     // overridden Element method
16621     setWidth : function(w, a, d, c, e){
16622         this.beforeAction();
16623         var cb = this.createCB(c);
16624         supr.setWidth.call(this, w, a, d, cb, e);
16625         if(!a){
16626             cb();
16627         }
16628     },
16629
16630     // overridden Element method
16631     setHeight : function(h, a, d, c, e){
16632         this.beforeAction();
16633         var cb = this.createCB(c);
16634         supr.setHeight.call(this, h, a, d, cb, e);
16635         if(!a){
16636             cb();
16637         }
16638     },
16639
16640     // overridden Element method
16641     setBounds : function(x, y, w, h, a, d, c, e){
16642         this.beforeAction();
16643         var cb = this.createCB(c);
16644         if(!a){
16645             this.storeXY([x, y]);
16646             supr.setXY.call(this, [x, y]);
16647             supr.setSize.call(this, w, h, a, d, cb, e);
16648             cb();
16649         }else{
16650             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16651         }
16652         return this;
16653     },
16654     
16655     /**
16656      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16657      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16658      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16659      * @param {Number} zindex The new z-index to set
16660      * @return {this} The Layer
16661      */
16662     setZIndex : function(zindex){
16663         this.zindex = zindex;
16664         this.setStyle("z-index", zindex + 2);
16665         if(this.shadow){
16666             this.shadow.setZIndex(zindex + 1);
16667         }
16668         if(this.shim){
16669             this.shim.setStyle("z-index", zindex);
16670         }
16671     }
16672 });
16673 })();/*
16674  * Original code for Roojs - LGPL
16675  * <script type="text/javascript">
16676  */
16677  
16678 /**
16679  * @class Roo.XComponent
16680  * A delayed Element creator...
16681  * Or a way to group chunks of interface together.
16682  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16683  *  used in conjunction with XComponent.build() it will create an instance of each element,
16684  *  then call addxtype() to build the User interface.
16685  * 
16686  * Mypart.xyx = new Roo.XComponent({
16687
16688     parent : 'Mypart.xyz', // empty == document.element.!!
16689     order : '001',
16690     name : 'xxxx'
16691     region : 'xxxx'
16692     disabled : function() {} 
16693      
16694     tree : function() { // return an tree of xtype declared components
16695         var MODULE = this;
16696         return 
16697         {
16698             xtype : 'NestedLayoutPanel',
16699             // technicall
16700         }
16701      ]
16702  *})
16703  *
16704  *
16705  * It can be used to build a big heiracy, with parent etc.
16706  * or you can just use this to render a single compoent to a dom element
16707  * MYPART.render(Roo.Element | String(id) | dom_element )
16708  *
16709  *
16710  * Usage patterns.
16711  *
16712  * Classic Roo
16713  *
16714  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16715  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16716  *
16717  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16718  *
16719  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16720  * - if mulitple topModules exist, the last one is defined as the top module.
16721  *
16722  * Embeded Roo
16723  * 
16724  * When the top level or multiple modules are to embedded into a existing HTML page,
16725  * the parent element can container '#id' of the element where the module will be drawn.
16726  *
16727  * Bootstrap Roo
16728  *
16729  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16730  * it relies more on a include mechanism, where sub modules are included into an outer page.
16731  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16732  * 
16733  * Bootstrap Roo Included elements
16734  *
16735  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16736  * hence confusing the component builder as it thinks there are multiple top level elements. 
16737  *
16738  * String Over-ride & Translations
16739  *
16740  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16741  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16742  * are needed. @see Roo.XComponent.overlayString  
16743  * 
16744  * 
16745  * 
16746  * @extends Roo.util.Observable
16747  * @constructor
16748  * @param cfg {Object} configuration of component
16749  * 
16750  */
16751 Roo.XComponent = function(cfg) {
16752     Roo.apply(this, cfg);
16753     this.addEvents({ 
16754         /**
16755              * @event built
16756              * Fires when this the componnt is built
16757              * @param {Roo.XComponent} c the component
16758              */
16759         'built' : true
16760         
16761     });
16762     this.region = this.region || 'center'; // default..
16763     Roo.XComponent.register(this);
16764     this.modules = false;
16765     this.el = false; // where the layout goes..
16766     
16767     
16768 }
16769 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16770     /**
16771      * @property el
16772      * The created element (with Roo.factory())
16773      * @type {Roo.Layout}
16774      */
16775     el  : false,
16776     
16777     /**
16778      * @property el
16779      * for BC  - use el in new code
16780      * @type {Roo.Layout}
16781      */
16782     panel : false,
16783     
16784     /**
16785      * @property layout
16786      * for BC  - use el in new code
16787      * @type {Roo.Layout}
16788      */
16789     layout : false,
16790     
16791      /**
16792      * @cfg {Function|boolean} disabled
16793      * If this module is disabled by some rule, return true from the funtion
16794      */
16795     disabled : false,
16796     
16797     /**
16798      * @cfg {String} parent 
16799      * Name of parent element which it get xtype added to..
16800      */
16801     parent: false,
16802     
16803     /**
16804      * @cfg {String} order
16805      * Used to set the order in which elements are created (usefull for multiple tabs)
16806      */
16807     
16808     order : false,
16809     /**
16810      * @cfg {String} name
16811      * String to display while loading.
16812      */
16813     name : false,
16814     /**
16815      * @cfg {String} region
16816      * Region to render component to (defaults to center)
16817      */
16818     region : 'center',
16819     
16820     /**
16821      * @cfg {Array} items
16822      * A single item array - the first element is the root of the tree..
16823      * It's done this way to stay compatible with the Xtype system...
16824      */
16825     items : false,
16826     
16827     /**
16828      * @property _tree
16829      * The method that retuns the tree of parts that make up this compoennt 
16830      * @type {function}
16831      */
16832     _tree  : false,
16833     
16834      /**
16835      * render
16836      * render element to dom or tree
16837      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16838      */
16839     
16840     render : function(el)
16841     {
16842         
16843         el = el || false;
16844         var hp = this.parent ? 1 : 0;
16845         Roo.debug &&  Roo.log(this);
16846         
16847         var tree = this._tree ? this._tree() : this.tree();
16848
16849         
16850         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16851             // if parent is a '#.....' string, then let's use that..
16852             var ename = this.parent.substr(1);
16853             this.parent = false;
16854             Roo.debug && Roo.log(ename);
16855             switch (ename) {
16856                 case 'bootstrap-body':
16857                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16858                         // this is the BorderLayout standard?
16859                        this.parent = { el : true };
16860                        break;
16861                     }
16862                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16863                         // need to insert stuff...
16864                         this.parent =  {
16865                              el : new Roo.bootstrap.layout.Border({
16866                                  el : document.body, 
16867                      
16868                                  center: {
16869                                     titlebar: false,
16870                                     autoScroll:false,
16871                                     closeOnTab: true,
16872                                     tabPosition: 'top',
16873                                       //resizeTabs: true,
16874                                     alwaysShowTabs: true,
16875                                     hideTabs: false
16876                                      //minTabWidth: 140
16877                                  }
16878                              })
16879                         
16880                          };
16881                          break;
16882                     }
16883                          
16884                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16885                         this.parent = { el :  new  Roo.bootstrap.Body() };
16886                         Roo.debug && Roo.log("setting el to doc body");
16887                          
16888                     } else {
16889                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16890                     }
16891                     break;
16892                 case 'bootstrap':
16893                     this.parent = { el : true};
16894                     // fall through
16895                 default:
16896                     el = Roo.get(ename);
16897                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16898                         this.parent = { el : true};
16899                     }
16900                     
16901                     break;
16902             }
16903                 
16904             
16905             if (!el && !this.parent) {
16906                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16907                 return;
16908             }
16909         }
16910         
16911         Roo.debug && Roo.log("EL:");
16912         Roo.debug && Roo.log(el);
16913         Roo.debug && Roo.log("this.parent.el:");
16914         Roo.debug && Roo.log(this.parent.el);
16915         
16916
16917         // altertive root elements ??? - we need a better way to indicate these.
16918         var is_alt = Roo.XComponent.is_alt ||
16919                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16920                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16921                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16922         
16923         
16924         
16925         if (!this.parent && is_alt) {
16926             //el = Roo.get(document.body);
16927             this.parent = { el : true };
16928         }
16929             
16930             
16931         
16932         if (!this.parent) {
16933             
16934             Roo.debug && Roo.log("no parent - creating one");
16935             
16936             el = el ? Roo.get(el) : false;      
16937             
16938             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16939                 
16940                 this.parent =  {
16941                     el : new Roo.bootstrap.layout.Border({
16942                         el: el || document.body,
16943                     
16944                         center: {
16945                             titlebar: false,
16946                             autoScroll:false,
16947                             closeOnTab: true,
16948                             tabPosition: 'top',
16949                              //resizeTabs: true,
16950                             alwaysShowTabs: false,
16951                             hideTabs: true,
16952                             minTabWidth: 140,
16953                             overflow: 'visible'
16954                          }
16955                      })
16956                 };
16957             } else {
16958             
16959                 // it's a top level one..
16960                 this.parent =  {
16961                     el : new Roo.BorderLayout(el || document.body, {
16962                         center: {
16963                             titlebar: false,
16964                             autoScroll:false,
16965                             closeOnTab: true,
16966                             tabPosition: 'top',
16967                              //resizeTabs: true,
16968                             alwaysShowTabs: el && hp? false :  true,
16969                             hideTabs: el || !hp ? true :  false,
16970                             minTabWidth: 140
16971                          }
16972                     })
16973                 };
16974             }
16975         }
16976         
16977         if (!this.parent.el) {
16978                 // probably an old style ctor, which has been disabled.
16979                 return;
16980
16981         }
16982                 // The 'tree' method is  '_tree now' 
16983             
16984         tree.region = tree.region || this.region;
16985         var is_body = false;
16986         if (this.parent.el === true) {
16987             // bootstrap... - body..
16988             if (el) {
16989                 tree.el = el;
16990             }
16991             this.parent.el = Roo.factory(tree);
16992             is_body = true;
16993         }
16994         
16995         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16996         this.fireEvent('built', this);
16997         
16998         this.panel = this.el;
16999         this.layout = this.panel.layout;
17000         this.parentLayout = this.parent.layout  || false;  
17001          
17002     }
17003     
17004 });
17005
17006 Roo.apply(Roo.XComponent, {
17007     /**
17008      * @property  hideProgress
17009      * true to disable the building progress bar.. usefull on single page renders.
17010      * @type Boolean
17011      */
17012     hideProgress : false,
17013     /**
17014      * @property  buildCompleted
17015      * True when the builder has completed building the interface.
17016      * @type Boolean
17017      */
17018     buildCompleted : false,
17019      
17020     /**
17021      * @property  topModule
17022      * the upper most module - uses document.element as it's constructor.
17023      * @type Object
17024      */
17025      
17026     topModule  : false,
17027       
17028     /**
17029      * @property  modules
17030      * array of modules to be created by registration system.
17031      * @type {Array} of Roo.XComponent
17032      */
17033     
17034     modules : [],
17035     /**
17036      * @property  elmodules
17037      * array of modules to be created by which use #ID 
17038      * @type {Array} of Roo.XComponent
17039      */
17040      
17041     elmodules : [],
17042
17043      /**
17044      * @property  is_alt
17045      * Is an alternative Root - normally used by bootstrap or other systems,
17046      *    where the top element in the tree can wrap 'body' 
17047      * @type {boolean}  (default false)
17048      */
17049      
17050     is_alt : false,
17051     /**
17052      * @property  build_from_html
17053      * Build elements from html - used by bootstrap HTML stuff 
17054      *    - this is cleared after build is completed
17055      * @type {boolean}    (default false)
17056      */
17057      
17058     build_from_html : false,
17059     /**
17060      * Register components to be built later.
17061      *
17062      * This solves the following issues
17063      * - Building is not done on page load, but after an authentication process has occured.
17064      * - Interface elements are registered on page load
17065      * - Parent Interface elements may not be loaded before child, so this handles that..
17066      * 
17067      *
17068      * example:
17069      * 
17070      * MyApp.register({
17071           order : '000001',
17072           module : 'Pman.Tab.projectMgr',
17073           region : 'center',
17074           parent : 'Pman.layout',
17075           disabled : false,  // or use a function..
17076         })
17077      
17078      * * @param {Object} details about module
17079      */
17080     register : function(obj) {
17081                 
17082         Roo.XComponent.event.fireEvent('register', obj);
17083         switch(typeof(obj.disabled) ) {
17084                 
17085             case 'undefined':
17086                 break;
17087             
17088             case 'function':
17089                 if ( obj.disabled() ) {
17090                         return;
17091                 }
17092                 break;
17093             
17094             default:
17095                 if (obj.disabled || obj.region == '#disabled') {
17096                         return;
17097                 }
17098                 break;
17099         }
17100                 
17101         this.modules.push(obj);
17102          
17103     },
17104     /**
17105      * convert a string to an object..
17106      * eg. 'AAA.BBB' -> finds AAA.BBB
17107
17108      */
17109     
17110     toObject : function(str)
17111     {
17112         if (!str || typeof(str) == 'object') {
17113             return str;
17114         }
17115         if (str.substring(0,1) == '#') {
17116             return str;
17117         }
17118
17119         var ar = str.split('.');
17120         var rt, o;
17121         rt = ar.shift();
17122             /** eval:var:o */
17123         try {
17124             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
17125         } catch (e) {
17126             throw "Module not found : " + str;
17127         }
17128         
17129         if (o === false) {
17130             throw "Module not found : " + str;
17131         }
17132         Roo.each(ar, function(e) {
17133             if (typeof(o[e]) == 'undefined') {
17134                 throw "Module not found : " + str;
17135             }
17136             o = o[e];
17137         });
17138         
17139         return o;
17140         
17141     },
17142     
17143     
17144     /**
17145      * move modules into their correct place in the tree..
17146      * 
17147      */
17148     preBuild : function ()
17149     {
17150         var _t = this;
17151         Roo.each(this.modules , function (obj)
17152         {
17153             Roo.XComponent.event.fireEvent('beforebuild', obj);
17154             
17155             var opar = obj.parent;
17156             try { 
17157                 obj.parent = this.toObject(opar);
17158             } catch(e) {
17159                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17160                 return;
17161             }
17162             
17163             if (!obj.parent) {
17164                 Roo.debug && Roo.log("GOT top level module");
17165                 Roo.debug && Roo.log(obj);
17166                 obj.modules = new Roo.util.MixedCollection(false, 
17167                     function(o) { return o.order + '' }
17168                 );
17169                 this.topModule = obj;
17170                 return;
17171             }
17172                         // parent is a string (usually a dom element name..)
17173             if (typeof(obj.parent) == 'string') {
17174                 this.elmodules.push(obj);
17175                 return;
17176             }
17177             if (obj.parent.constructor != Roo.XComponent) {
17178                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17179             }
17180             if (!obj.parent.modules) {
17181                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17182                     function(o) { return o.order + '' }
17183                 );
17184             }
17185             if (obj.parent.disabled) {
17186                 obj.disabled = true;
17187             }
17188             obj.parent.modules.add(obj);
17189         }, this);
17190     },
17191     
17192      /**
17193      * make a list of modules to build.
17194      * @return {Array} list of modules. 
17195      */ 
17196     
17197     buildOrder : function()
17198     {
17199         var _this = this;
17200         var cmp = function(a,b) {   
17201             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17202         };
17203         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17204             throw "No top level modules to build";
17205         }
17206         
17207         // make a flat list in order of modules to build.
17208         var mods = this.topModule ? [ this.topModule ] : [];
17209                 
17210         
17211         // elmodules (is a list of DOM based modules )
17212         Roo.each(this.elmodules, function(e) {
17213             mods.push(e);
17214             if (!this.topModule &&
17215                 typeof(e.parent) == 'string' &&
17216                 e.parent.substring(0,1) == '#' &&
17217                 Roo.get(e.parent.substr(1))
17218                ) {
17219                 
17220                 _this.topModule = e;
17221             }
17222             
17223         });
17224
17225         
17226         // add modules to their parents..
17227         var addMod = function(m) {
17228             Roo.debug && Roo.log("build Order: add: " + m.name);
17229                 
17230             mods.push(m);
17231             if (m.modules && !m.disabled) {
17232                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17233                 m.modules.keySort('ASC',  cmp );
17234                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17235     
17236                 m.modules.each(addMod);
17237             } else {
17238                 Roo.debug && Roo.log("build Order: no child modules");
17239             }
17240             // not sure if this is used any more..
17241             if (m.finalize) {
17242                 m.finalize.name = m.name + " (clean up) ";
17243                 mods.push(m.finalize);
17244             }
17245             
17246         }
17247         if (this.topModule && this.topModule.modules) { 
17248             this.topModule.modules.keySort('ASC',  cmp );
17249             this.topModule.modules.each(addMod);
17250         } 
17251         return mods;
17252     },
17253     
17254      /**
17255      * Build the registered modules.
17256      * @param {Object} parent element.
17257      * @param {Function} optional method to call after module has been added.
17258      * 
17259      */ 
17260    
17261     build : function(opts) 
17262     {
17263         
17264         if (typeof(opts) != 'undefined') {
17265             Roo.apply(this,opts);
17266         }
17267         
17268         this.preBuild();
17269         var mods = this.buildOrder();
17270       
17271         //this.allmods = mods;
17272         //Roo.debug && Roo.log(mods);
17273         //return;
17274         if (!mods.length) { // should not happen
17275             throw "NO modules!!!";
17276         }
17277         
17278         
17279         var msg = "Building Interface...";
17280         // flash it up as modal - so we store the mask!?
17281         if (!this.hideProgress && Roo.MessageBox) {
17282             Roo.MessageBox.show({ title: 'loading' });
17283             Roo.MessageBox.show({
17284                title: "Please wait...",
17285                msg: msg,
17286                width:450,
17287                progress:true,
17288                buttons : false,
17289                closable:false,
17290                modal: false
17291               
17292             });
17293         }
17294         var total = mods.length;
17295         
17296         var _this = this;
17297         var progressRun = function() {
17298             if (!mods.length) {
17299                 Roo.debug && Roo.log('hide?');
17300                 if (!this.hideProgress && Roo.MessageBox) {
17301                     Roo.MessageBox.hide();
17302                 }
17303                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17304                 
17305                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17306                 
17307                 // THE END...
17308                 return false;   
17309             }
17310             
17311             var m = mods.shift();
17312             
17313             
17314             Roo.debug && Roo.log(m);
17315             // not sure if this is supported any more.. - modules that are are just function
17316             if (typeof(m) == 'function') { 
17317                 m.call(this);
17318                 return progressRun.defer(10, _this);
17319             } 
17320             
17321             
17322             msg = "Building Interface " + (total  - mods.length) + 
17323                     " of " + total + 
17324                     (m.name ? (' - ' + m.name) : '');
17325                         Roo.debug && Roo.log(msg);
17326             if (!_this.hideProgress &&  Roo.MessageBox) { 
17327                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17328             }
17329             
17330          
17331             // is the module disabled?
17332             var disabled = (typeof(m.disabled) == 'function') ?
17333                 m.disabled.call(m.module.disabled) : m.disabled;    
17334             
17335             
17336             if (disabled) {
17337                 return progressRun(); // we do not update the display!
17338             }
17339             
17340             // now build 
17341             
17342                         
17343                         
17344             m.render();
17345             // it's 10 on top level, and 1 on others??? why...
17346             return progressRun.defer(10, _this);
17347              
17348         }
17349         progressRun.defer(1, _this);
17350      
17351         
17352         
17353     },
17354     /**
17355      * Overlay a set of modified strings onto a component
17356      * This is dependant on our builder exporting the strings and 'named strings' elements.
17357      * 
17358      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17359      * @param {Object} associative array of 'named' string and it's new value.
17360      * 
17361      */
17362         overlayStrings : function( component, strings )
17363     {
17364         if (typeof(component['_named_strings']) == 'undefined') {
17365             throw "ERROR: component does not have _named_strings";
17366         }
17367         for ( var k in strings ) {
17368             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17369             if (md !== false) {
17370                 component['_strings'][md] = strings[k];
17371             } else {
17372                 Roo.log('could not find named string: ' + k + ' in');
17373                 Roo.log(component);
17374             }
17375             
17376         }
17377         
17378     },
17379     
17380         
17381         /**
17382          * Event Object.
17383          *
17384          *
17385          */
17386         event: false, 
17387     /**
17388          * wrapper for event.on - aliased later..  
17389          * Typically use to register a event handler for register:
17390          *
17391          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17392          *
17393          */
17394     on : false
17395    
17396     
17397     
17398 });
17399
17400 Roo.XComponent.event = new Roo.util.Observable({
17401                 events : { 
17402                         /**
17403                          * @event register
17404                          * Fires when an Component is registered,
17405                          * set the disable property on the Component to stop registration.
17406                          * @param {Roo.XComponent} c the component being registerd.
17407                          * 
17408                          */
17409                         'register' : true,
17410             /**
17411                          * @event beforebuild
17412                          * Fires before each Component is built
17413                          * can be used to apply permissions.
17414                          * @param {Roo.XComponent} c the component being registerd.
17415                          * 
17416                          */
17417                         'beforebuild' : true,
17418                         /**
17419                          * @event buildcomplete
17420                          * Fires on the top level element when all elements have been built
17421                          * @param {Roo.XComponent} the top level component.
17422                          */
17423                         'buildcomplete' : true
17424                         
17425                 }
17426 });
17427
17428 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17429  //
17430  /**
17431  * marked - a markdown parser
17432  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17433  * https://github.com/chjj/marked
17434  */
17435
17436
17437 /**
17438  *
17439  * Roo.Markdown - is a very crude wrapper around marked..
17440  *
17441  * usage:
17442  * 
17443  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17444  * 
17445  * Note: move the sample code to the bottom of this
17446  * file before uncommenting it.
17447  *
17448  */
17449
17450 Roo.Markdown = {};
17451 Roo.Markdown.toHtml = function(text) {
17452     
17453     var c = new Roo.Markdown.marked.setOptions({
17454             renderer: new Roo.Markdown.marked.Renderer(),
17455             gfm: true,
17456             tables: true,
17457             breaks: false,
17458             pedantic: false,
17459             sanitize: false,
17460             smartLists: true,
17461             smartypants: false
17462           });
17463     // A FEW HACKS!!?
17464     
17465     text = text.replace(/\\\n/g,' ');
17466     return Roo.Markdown.marked(text);
17467 };
17468 //
17469 // converter
17470 //
17471 // Wraps all "globals" so that the only thing
17472 // exposed is makeHtml().
17473 //
17474 (function() {
17475     
17476      /**
17477          * eval:var:escape
17478          * eval:var:unescape
17479          * eval:var:replace
17480          */
17481       
17482     /**
17483      * Helpers
17484      */
17485     
17486     var escape = function (html, encode) {
17487       return html
17488         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17489         .replace(/</g, '&lt;')
17490         .replace(/>/g, '&gt;')
17491         .replace(/"/g, '&quot;')
17492         .replace(/'/g, '&#39;');
17493     }
17494     
17495     var unescape = function (html) {
17496         // explicitly match decimal, hex, and named HTML entities 
17497       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17498         n = n.toLowerCase();
17499         if (n === 'colon') { return ':'; }
17500         if (n.charAt(0) === '#') {
17501           return n.charAt(1) === 'x'
17502             ? String.fromCharCode(parseInt(n.substring(2), 16))
17503             : String.fromCharCode(+n.substring(1));
17504         }
17505         return '';
17506       });
17507     }
17508     
17509     var replace = function (regex, opt) {
17510       regex = regex.source;
17511       opt = opt || '';
17512       return function self(name, val) {
17513         if (!name) { return new RegExp(regex, opt); }
17514         val = val.source || val;
17515         val = val.replace(/(^|[^\[])\^/g, '$1');
17516         regex = regex.replace(name, val);
17517         return self;
17518       };
17519     }
17520
17521
17522          /**
17523          * eval:var:noop
17524     */
17525     var noop = function () {}
17526     noop.exec = noop;
17527     
17528          /**
17529          * eval:var:merge
17530     */
17531     var merge = function (obj) {
17532       var i = 1
17533         , target
17534         , key;
17535     
17536       for (; i < arguments.length; i++) {
17537         target = arguments[i];
17538         for (key in target) {
17539           if (Object.prototype.hasOwnProperty.call(target, key)) {
17540             obj[key] = target[key];
17541           }
17542         }
17543       }
17544     
17545       return obj;
17546     }
17547     
17548     
17549     /**
17550      * Block-Level Grammar
17551      */
17552     
17553     
17554     
17555     
17556     var block = {
17557       newline: /^\n+/,
17558       code: /^( {4}[^\n]+\n*)+/,
17559       fences: noop,
17560       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17561       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17562       nptable: noop,
17563       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17564       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17565       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17566       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17567       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17568       table: noop,
17569       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17570       text: /^[^\n]+/
17571     };
17572     
17573     block.bullet = /(?:[*+-]|\d+\.)/;
17574     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17575     block.item = replace(block.item, 'gm')
17576       (/bull/g, block.bullet)
17577       ();
17578     
17579     block.list = replace(block.list)
17580       (/bull/g, block.bullet)
17581       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17582       ('def', '\\n+(?=' + block.def.source + ')')
17583       ();
17584     
17585     block.blockquote = replace(block.blockquote)
17586       ('def', block.def)
17587       ();
17588     
17589     block._tag = '(?!(?:'
17590       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17591       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17592       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17593     
17594     block.html = replace(block.html)
17595       ('comment', /<!--[\s\S]*?-->/)
17596       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17597       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17598       (/tag/g, block._tag)
17599       ();
17600     
17601     block.paragraph = replace(block.paragraph)
17602       ('hr', block.hr)
17603       ('heading', block.heading)
17604       ('lheading', block.lheading)
17605       ('blockquote', block.blockquote)
17606       ('tag', '<' + block._tag)
17607       ('def', block.def)
17608       ();
17609     
17610     /**
17611      * Normal Block Grammar
17612      */
17613     
17614     block.normal = merge({}, block);
17615     
17616     /**
17617      * GFM Block Grammar
17618      */
17619     
17620     block.gfm = merge({}, block.normal, {
17621       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17622       paragraph: /^/,
17623       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17624     });
17625     
17626     block.gfm.paragraph = replace(block.paragraph)
17627       ('(?!', '(?!'
17628         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17629         + block.list.source.replace('\\1', '\\3') + '|')
17630       ();
17631     
17632     /**
17633      * GFM + Tables Block Grammar
17634      */
17635     
17636     block.tables = merge({}, block.gfm, {
17637       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17638       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17639     });
17640     
17641     /**
17642      * Block Lexer
17643      */
17644     
17645     var Lexer = function (options) {
17646       this.tokens = [];
17647       this.tokens.links = {};
17648       this.options = options || marked.defaults;
17649       this.rules = block.normal;
17650     
17651       if (this.options.gfm) {
17652         if (this.options.tables) {
17653           this.rules = block.tables;
17654         } else {
17655           this.rules = block.gfm;
17656         }
17657       }
17658     }
17659     
17660     /**
17661      * Expose Block Rules
17662      */
17663     
17664     Lexer.rules = block;
17665     
17666     /**
17667      * Static Lex Method
17668      */
17669     
17670     Lexer.lex = function(src, options) {
17671       var lexer = new Lexer(options);
17672       return lexer.lex(src);
17673     };
17674     
17675     /**
17676      * Preprocessing
17677      */
17678     
17679     Lexer.prototype.lex = function(src) {
17680       src = src
17681         .replace(/\r\n|\r/g, '\n')
17682         .replace(/\t/g, '    ')
17683         .replace(/\u00a0/g, ' ')
17684         .replace(/\u2424/g, '\n');
17685     
17686       return this.token(src, true);
17687     };
17688     
17689     /**
17690      * Lexing
17691      */
17692     
17693     Lexer.prototype.token = function(src, top, bq) {
17694       var src = src.replace(/^ +$/gm, '')
17695         , next
17696         , loose
17697         , cap
17698         , bull
17699         , b
17700         , item
17701         , space
17702         , i
17703         , l;
17704     
17705       while (src) {
17706         // newline
17707         if (cap = this.rules.newline.exec(src)) {
17708           src = src.substring(cap[0].length);
17709           if (cap[0].length > 1) {
17710             this.tokens.push({
17711               type: 'space'
17712             });
17713           }
17714         }
17715     
17716         // code
17717         if (cap = this.rules.code.exec(src)) {
17718           src = src.substring(cap[0].length);
17719           cap = cap[0].replace(/^ {4}/gm, '');
17720           this.tokens.push({
17721             type: 'code',
17722             text: !this.options.pedantic
17723               ? cap.replace(/\n+$/, '')
17724               : cap
17725           });
17726           continue;
17727         }
17728     
17729         // fences (gfm)
17730         if (cap = this.rules.fences.exec(src)) {
17731           src = src.substring(cap[0].length);
17732           this.tokens.push({
17733             type: 'code',
17734             lang: cap[2],
17735             text: cap[3] || ''
17736           });
17737           continue;
17738         }
17739     
17740         // heading
17741         if (cap = this.rules.heading.exec(src)) {
17742           src = src.substring(cap[0].length);
17743           this.tokens.push({
17744             type: 'heading',
17745             depth: cap[1].length,
17746             text: cap[2]
17747           });
17748           continue;
17749         }
17750     
17751         // table no leading pipe (gfm)
17752         if (top && (cap = this.rules.nptable.exec(src))) {
17753           src = src.substring(cap[0].length);
17754     
17755           item = {
17756             type: 'table',
17757             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17758             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17759             cells: cap[3].replace(/\n$/, '').split('\n')
17760           };
17761     
17762           for (i = 0; i < item.align.length; i++) {
17763             if (/^ *-+: *$/.test(item.align[i])) {
17764               item.align[i] = 'right';
17765             } else if (/^ *:-+: *$/.test(item.align[i])) {
17766               item.align[i] = 'center';
17767             } else if (/^ *:-+ *$/.test(item.align[i])) {
17768               item.align[i] = 'left';
17769             } else {
17770               item.align[i] = null;
17771             }
17772           }
17773     
17774           for (i = 0; i < item.cells.length; i++) {
17775             item.cells[i] = item.cells[i].split(/ *\| */);
17776           }
17777     
17778           this.tokens.push(item);
17779     
17780           continue;
17781         }
17782     
17783         // lheading
17784         if (cap = this.rules.lheading.exec(src)) {
17785           src = src.substring(cap[0].length);
17786           this.tokens.push({
17787             type: 'heading',
17788             depth: cap[2] === '=' ? 1 : 2,
17789             text: cap[1]
17790           });
17791           continue;
17792         }
17793     
17794         // hr
17795         if (cap = this.rules.hr.exec(src)) {
17796           src = src.substring(cap[0].length);
17797           this.tokens.push({
17798             type: 'hr'
17799           });
17800           continue;
17801         }
17802     
17803         // blockquote
17804         if (cap = this.rules.blockquote.exec(src)) {
17805           src = src.substring(cap[0].length);
17806     
17807           this.tokens.push({
17808             type: 'blockquote_start'
17809           });
17810     
17811           cap = cap[0].replace(/^ *> ?/gm, '');
17812     
17813           // Pass `top` to keep the current
17814           // "toplevel" state. This is exactly
17815           // how markdown.pl works.
17816           this.token(cap, top, true);
17817     
17818           this.tokens.push({
17819             type: 'blockquote_end'
17820           });
17821     
17822           continue;
17823         }
17824     
17825         // list
17826         if (cap = this.rules.list.exec(src)) {
17827           src = src.substring(cap[0].length);
17828           bull = cap[2];
17829     
17830           this.tokens.push({
17831             type: 'list_start',
17832             ordered: bull.length > 1
17833           });
17834     
17835           // Get each top-level item.
17836           cap = cap[0].match(this.rules.item);
17837     
17838           next = false;
17839           l = cap.length;
17840           i = 0;
17841     
17842           for (; i < l; i++) {
17843             item = cap[i];
17844     
17845             // Remove the list item's bullet
17846             // so it is seen as the next token.
17847             space = item.length;
17848             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17849     
17850             // Outdent whatever the
17851             // list item contains. Hacky.
17852             if (~item.indexOf('\n ')) {
17853               space -= item.length;
17854               item = !this.options.pedantic
17855                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17856                 : item.replace(/^ {1,4}/gm, '');
17857             }
17858     
17859             // Determine whether the next list item belongs here.
17860             // Backpedal if it does not belong in this list.
17861             if (this.options.smartLists && i !== l - 1) {
17862               b = block.bullet.exec(cap[i + 1])[0];
17863               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17864                 src = cap.slice(i + 1).join('\n') + src;
17865                 i = l - 1;
17866               }
17867             }
17868     
17869             // Determine whether item is loose or not.
17870             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17871             // for discount behavior.
17872             loose = next || /\n\n(?!\s*$)/.test(item);
17873             if (i !== l - 1) {
17874               next = item.charAt(item.length - 1) === '\n';
17875               if (!loose) { loose = next; }
17876             }
17877     
17878             this.tokens.push({
17879               type: loose
17880                 ? 'loose_item_start'
17881                 : 'list_item_start'
17882             });
17883     
17884             // Recurse.
17885             this.token(item, false, bq);
17886     
17887             this.tokens.push({
17888               type: 'list_item_end'
17889             });
17890           }
17891     
17892           this.tokens.push({
17893             type: 'list_end'
17894           });
17895     
17896           continue;
17897         }
17898     
17899         // html
17900         if (cap = this.rules.html.exec(src)) {
17901           src = src.substring(cap[0].length);
17902           this.tokens.push({
17903             type: this.options.sanitize
17904               ? 'paragraph'
17905               : 'html',
17906             pre: !this.options.sanitizer
17907               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17908             text: cap[0]
17909           });
17910           continue;
17911         }
17912     
17913         // def
17914         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17915           src = src.substring(cap[0].length);
17916           this.tokens.links[cap[1].toLowerCase()] = {
17917             href: cap[2],
17918             title: cap[3]
17919           };
17920           continue;
17921         }
17922     
17923         // table (gfm)
17924         if (top && (cap = this.rules.table.exec(src))) {
17925           src = src.substring(cap[0].length);
17926     
17927           item = {
17928             type: 'table',
17929             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17930             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17931             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17932           };
17933     
17934           for (i = 0; i < item.align.length; i++) {
17935             if (/^ *-+: *$/.test(item.align[i])) {
17936               item.align[i] = 'right';
17937             } else if (/^ *:-+: *$/.test(item.align[i])) {
17938               item.align[i] = 'center';
17939             } else if (/^ *:-+ *$/.test(item.align[i])) {
17940               item.align[i] = 'left';
17941             } else {
17942               item.align[i] = null;
17943             }
17944           }
17945     
17946           for (i = 0; i < item.cells.length; i++) {
17947             item.cells[i] = item.cells[i]
17948               .replace(/^ *\| *| *\| *$/g, '')
17949               .split(/ *\| */);
17950           }
17951     
17952           this.tokens.push(item);
17953     
17954           continue;
17955         }
17956     
17957         // top-level paragraph
17958         if (top && (cap = this.rules.paragraph.exec(src))) {
17959           src = src.substring(cap[0].length);
17960           this.tokens.push({
17961             type: 'paragraph',
17962             text: cap[1].charAt(cap[1].length - 1) === '\n'
17963               ? cap[1].slice(0, -1)
17964               : cap[1]
17965           });
17966           continue;
17967         }
17968     
17969         // text
17970         if (cap = this.rules.text.exec(src)) {
17971           // Top-level should never reach here.
17972           src = src.substring(cap[0].length);
17973           this.tokens.push({
17974             type: 'text',
17975             text: cap[0]
17976           });
17977           continue;
17978         }
17979     
17980         if (src) {
17981           throw new
17982             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17983         }
17984       }
17985     
17986       return this.tokens;
17987     };
17988     
17989     /**
17990      * Inline-Level Grammar
17991      */
17992     
17993     var inline = {
17994       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17995       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17996       url: noop,
17997       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17998       link: /^!?\[(inside)\]\(href\)/,
17999       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
18000       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
18001       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
18002       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
18003       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
18004       br: /^ {2,}\n(?!\s*$)/,
18005       del: noop,
18006       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
18007     };
18008     
18009     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
18010     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
18011     
18012     inline.link = replace(inline.link)
18013       ('inside', inline._inside)
18014       ('href', inline._href)
18015       ();
18016     
18017     inline.reflink = replace(inline.reflink)
18018       ('inside', inline._inside)
18019       ();
18020     
18021     /**
18022      * Normal Inline Grammar
18023      */
18024     
18025     inline.normal = merge({}, inline);
18026     
18027     /**
18028      * Pedantic Inline Grammar
18029      */
18030     
18031     inline.pedantic = merge({}, inline.normal, {
18032       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
18033       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
18034     });
18035     
18036     /**
18037      * GFM Inline Grammar
18038      */
18039     
18040     inline.gfm = merge({}, inline.normal, {
18041       escape: replace(inline.escape)('])', '~|])')(),
18042       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
18043       del: /^~~(?=\S)([\s\S]*?\S)~~/,
18044       text: replace(inline.text)
18045         (']|', '~]|')
18046         ('|', '|https?://|')
18047         ()
18048     });
18049     
18050     /**
18051      * GFM + Line Breaks Inline Grammar
18052      */
18053     
18054     inline.breaks = merge({}, inline.gfm, {
18055       br: replace(inline.br)('{2,}', '*')(),
18056       text: replace(inline.gfm.text)('{2,}', '*')()
18057     });
18058     
18059     /**
18060      * Inline Lexer & Compiler
18061      */
18062     
18063     var InlineLexer  = function (links, options) {
18064       this.options = options || marked.defaults;
18065       this.links = links;
18066       this.rules = inline.normal;
18067       this.renderer = this.options.renderer || new Renderer;
18068       this.renderer.options = this.options;
18069     
18070       if (!this.links) {
18071         throw new
18072           Error('Tokens array requires a `links` property.');
18073       }
18074     
18075       if (this.options.gfm) {
18076         if (this.options.breaks) {
18077           this.rules = inline.breaks;
18078         } else {
18079           this.rules = inline.gfm;
18080         }
18081       } else if (this.options.pedantic) {
18082         this.rules = inline.pedantic;
18083       }
18084     }
18085     
18086     /**
18087      * Expose Inline Rules
18088      */
18089     
18090     InlineLexer.rules = inline;
18091     
18092     /**
18093      * Static Lexing/Compiling Method
18094      */
18095     
18096     InlineLexer.output = function(src, links, options) {
18097       var inline = new InlineLexer(links, options);
18098       return inline.output(src);
18099     };
18100     
18101     /**
18102      * Lexing/Compiling
18103      */
18104     
18105     InlineLexer.prototype.output = function(src) {
18106       var out = ''
18107         , link
18108         , text
18109         , href
18110         , cap;
18111     
18112       while (src) {
18113         // escape
18114         if (cap = this.rules.escape.exec(src)) {
18115           src = src.substring(cap[0].length);
18116           out += cap[1];
18117           continue;
18118         }
18119     
18120         // autolink
18121         if (cap = this.rules.autolink.exec(src)) {
18122           src = src.substring(cap[0].length);
18123           if (cap[2] === '@') {
18124             text = cap[1].charAt(6) === ':'
18125               ? this.mangle(cap[1].substring(7))
18126               : this.mangle(cap[1]);
18127             href = this.mangle('mailto:') + text;
18128           } else {
18129             text = escape(cap[1]);
18130             href = text;
18131           }
18132           out += this.renderer.link(href, null, text);
18133           continue;
18134         }
18135     
18136         // url (gfm)
18137         if (!this.inLink && (cap = this.rules.url.exec(src))) {
18138           src = src.substring(cap[0].length);
18139           text = escape(cap[1]);
18140           href = text;
18141           out += this.renderer.link(href, null, text);
18142           continue;
18143         }
18144     
18145         // tag
18146         if (cap = this.rules.tag.exec(src)) {
18147           if (!this.inLink && /^<a /i.test(cap[0])) {
18148             this.inLink = true;
18149           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18150             this.inLink = false;
18151           }
18152           src = src.substring(cap[0].length);
18153           out += this.options.sanitize
18154             ? this.options.sanitizer
18155               ? this.options.sanitizer(cap[0])
18156               : escape(cap[0])
18157             : cap[0];
18158           continue;
18159         }
18160     
18161         // link
18162         if (cap = this.rules.link.exec(src)) {
18163           src = src.substring(cap[0].length);
18164           this.inLink = true;
18165           out += this.outputLink(cap, {
18166             href: cap[2],
18167             title: cap[3]
18168           });
18169           this.inLink = false;
18170           continue;
18171         }
18172     
18173         // reflink, nolink
18174         if ((cap = this.rules.reflink.exec(src))
18175             || (cap = this.rules.nolink.exec(src))) {
18176           src = src.substring(cap[0].length);
18177           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18178           link = this.links[link.toLowerCase()];
18179           if (!link || !link.href) {
18180             out += cap[0].charAt(0);
18181             src = cap[0].substring(1) + src;
18182             continue;
18183           }
18184           this.inLink = true;
18185           out += this.outputLink(cap, link);
18186           this.inLink = false;
18187           continue;
18188         }
18189     
18190         // strong
18191         if (cap = this.rules.strong.exec(src)) {
18192           src = src.substring(cap[0].length);
18193           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18194           continue;
18195         }
18196     
18197         // em
18198         if (cap = this.rules.em.exec(src)) {
18199           src = src.substring(cap[0].length);
18200           out += this.renderer.em(this.output(cap[2] || cap[1]));
18201           continue;
18202         }
18203     
18204         // code
18205         if (cap = this.rules.code.exec(src)) {
18206           src = src.substring(cap[0].length);
18207           out += this.renderer.codespan(escape(cap[2], true));
18208           continue;
18209         }
18210     
18211         // br
18212         if (cap = this.rules.br.exec(src)) {
18213           src = src.substring(cap[0].length);
18214           out += this.renderer.br();
18215           continue;
18216         }
18217     
18218         // del (gfm)
18219         if (cap = this.rules.del.exec(src)) {
18220           src = src.substring(cap[0].length);
18221           out += this.renderer.del(this.output(cap[1]));
18222           continue;
18223         }
18224     
18225         // text
18226         if (cap = this.rules.text.exec(src)) {
18227           src = src.substring(cap[0].length);
18228           out += this.renderer.text(escape(this.smartypants(cap[0])));
18229           continue;
18230         }
18231     
18232         if (src) {
18233           throw new
18234             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18235         }
18236       }
18237     
18238       return out;
18239     };
18240     
18241     /**
18242      * Compile Link
18243      */
18244     
18245     InlineLexer.prototype.outputLink = function(cap, link) {
18246       var href = escape(link.href)
18247         , title = link.title ? escape(link.title) : null;
18248     
18249       return cap[0].charAt(0) !== '!'
18250         ? this.renderer.link(href, title, this.output(cap[1]))
18251         : this.renderer.image(href, title, escape(cap[1]));
18252     };
18253     
18254     /**
18255      * Smartypants Transformations
18256      */
18257     
18258     InlineLexer.prototype.smartypants = function(text) {
18259       if (!this.options.smartypants)  { return text; }
18260       return text
18261         // em-dashes
18262         .replace(/---/g, '\u2014')
18263         // en-dashes
18264         .replace(/--/g, '\u2013')
18265         // opening singles
18266         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18267         // closing singles & apostrophes
18268         .replace(/'/g, '\u2019')
18269         // opening doubles
18270         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18271         // closing doubles
18272         .replace(/"/g, '\u201d')
18273         // ellipses
18274         .replace(/\.{3}/g, '\u2026');
18275     };
18276     
18277     /**
18278      * Mangle Links
18279      */
18280     
18281     InlineLexer.prototype.mangle = function(text) {
18282       if (!this.options.mangle) { return text; }
18283       var out = ''
18284         , l = text.length
18285         , i = 0
18286         , ch;
18287     
18288       for (; i < l; i++) {
18289         ch = text.charCodeAt(i);
18290         if (Math.random() > 0.5) {
18291           ch = 'x' + ch.toString(16);
18292         }
18293         out += '&#' + ch + ';';
18294       }
18295     
18296       return out;
18297     };
18298     
18299     /**
18300      * Renderer
18301      */
18302     
18303      /**
18304          * eval:var:Renderer
18305     */
18306     
18307     var Renderer   = function (options) {
18308       this.options = options || {};
18309     }
18310     
18311     Renderer.prototype.code = function(code, lang, escaped) {
18312       if (this.options.highlight) {
18313         var out = this.options.highlight(code, lang);
18314         if (out != null && out !== code) {
18315           escaped = true;
18316           code = out;
18317         }
18318       } else {
18319             // hack!!! - it's already escapeD?
18320             escaped = true;
18321       }
18322     
18323       if (!lang) {
18324         return '<pre><code>'
18325           + (escaped ? code : escape(code, true))
18326           + '\n</code></pre>';
18327       }
18328     
18329       return '<pre><code class="'
18330         + this.options.langPrefix
18331         + escape(lang, true)
18332         + '">'
18333         + (escaped ? code : escape(code, true))
18334         + '\n</code></pre>\n';
18335     };
18336     
18337     Renderer.prototype.blockquote = function(quote) {
18338       return '<blockquote>\n' + quote + '</blockquote>\n';
18339     };
18340     
18341     Renderer.prototype.html = function(html) {
18342       return html;
18343     };
18344     
18345     Renderer.prototype.heading = function(text, level, raw) {
18346       return '<h'
18347         + level
18348         + ' id="'
18349         + this.options.headerPrefix
18350         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18351         + '">'
18352         + text
18353         + '</h'
18354         + level
18355         + '>\n';
18356     };
18357     
18358     Renderer.prototype.hr = function() {
18359       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18360     };
18361     
18362     Renderer.prototype.list = function(body, ordered) {
18363       var type = ordered ? 'ol' : 'ul';
18364       return '<' + type + '>\n' + body + '</' + type + '>\n';
18365     };
18366     
18367     Renderer.prototype.listitem = function(text) {
18368       return '<li>' + text + '</li>\n';
18369     };
18370     
18371     Renderer.prototype.paragraph = function(text) {
18372       return '<p>' + text + '</p>\n';
18373     };
18374     
18375     Renderer.prototype.table = function(header, body) {
18376       return '<table class="table table-striped">\n'
18377         + '<thead>\n'
18378         + header
18379         + '</thead>\n'
18380         + '<tbody>\n'
18381         + body
18382         + '</tbody>\n'
18383         + '</table>\n';
18384     };
18385     
18386     Renderer.prototype.tablerow = function(content) {
18387       return '<tr>\n' + content + '</tr>\n';
18388     };
18389     
18390     Renderer.prototype.tablecell = function(content, flags) {
18391       var type = flags.header ? 'th' : 'td';
18392       var tag = flags.align
18393         ? '<' + type + ' style="text-align:' + flags.align + '">'
18394         : '<' + type + '>';
18395       return tag + content + '</' + type + '>\n';
18396     };
18397     
18398     // span level renderer
18399     Renderer.prototype.strong = function(text) {
18400       return '<strong>' + text + '</strong>';
18401     };
18402     
18403     Renderer.prototype.em = function(text) {
18404       return '<em>' + text + '</em>';
18405     };
18406     
18407     Renderer.prototype.codespan = function(text) {
18408       return '<code>' + text + '</code>';
18409     };
18410     
18411     Renderer.prototype.br = function() {
18412       return this.options.xhtml ? '<br/>' : '<br>';
18413     };
18414     
18415     Renderer.prototype.del = function(text) {
18416       return '<del>' + text + '</del>';
18417     };
18418     
18419     Renderer.prototype.link = function(href, title, text) {
18420       if (this.options.sanitize) {
18421         try {
18422           var prot = decodeURIComponent(unescape(href))
18423             .replace(/[^\w:]/g, '')
18424             .toLowerCase();
18425         } catch (e) {
18426           return '';
18427         }
18428         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18429           return '';
18430         }
18431       }
18432       var out = '<a href="' + href + '"';
18433       if (title) {
18434         out += ' title="' + title + '"';
18435       }
18436       out += '>' + text + '</a>';
18437       return out;
18438     };
18439     
18440     Renderer.prototype.image = function(href, title, text) {
18441       var out = '<img src="' + href + '" alt="' + text + '"';
18442       if (title) {
18443         out += ' title="' + title + '"';
18444       }
18445       out += this.options.xhtml ? '/>' : '>';
18446       return out;
18447     };
18448     
18449     Renderer.prototype.text = function(text) {
18450       return text;
18451     };
18452     
18453     /**
18454      * Parsing & Compiling
18455      */
18456          /**
18457          * eval:var:Parser
18458     */
18459     
18460     var Parser= function (options) {
18461       this.tokens = [];
18462       this.token = null;
18463       this.options = options || marked.defaults;
18464       this.options.renderer = this.options.renderer || new Renderer;
18465       this.renderer = this.options.renderer;
18466       this.renderer.options = this.options;
18467     }
18468     
18469     /**
18470      * Static Parse Method
18471      */
18472     
18473     Parser.parse = function(src, options, renderer) {
18474       var parser = new Parser(options, renderer);
18475       return parser.parse(src);
18476     };
18477     
18478     /**
18479      * Parse Loop
18480      */
18481     
18482     Parser.prototype.parse = function(src) {
18483       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18484       this.tokens = src.reverse();
18485     
18486       var out = '';
18487       while (this.next()) {
18488         out += this.tok();
18489       }
18490     
18491       return out;
18492     };
18493     
18494     /**
18495      * Next Token
18496      */
18497     
18498     Parser.prototype.next = function() {
18499       return this.token = this.tokens.pop();
18500     };
18501     
18502     /**
18503      * Preview Next Token
18504      */
18505     
18506     Parser.prototype.peek = function() {
18507       return this.tokens[this.tokens.length - 1] || 0;
18508     };
18509     
18510     /**
18511      * Parse Text Tokens
18512      */
18513     
18514     Parser.prototype.parseText = function() {
18515       var body = this.token.text;
18516     
18517       while (this.peek().type === 'text') {
18518         body += '\n' + this.next().text;
18519       }
18520     
18521       return this.inline.output(body);
18522     };
18523     
18524     /**
18525      * Parse Current Token
18526      */
18527     
18528     Parser.prototype.tok = function() {
18529       switch (this.token.type) {
18530         case 'space': {
18531           return '';
18532         }
18533         case 'hr': {
18534           return this.renderer.hr();
18535         }
18536         case 'heading': {
18537           return this.renderer.heading(
18538             this.inline.output(this.token.text),
18539             this.token.depth,
18540             this.token.text);
18541         }
18542         case 'code': {
18543           return this.renderer.code(this.token.text,
18544             this.token.lang,
18545             this.token.escaped);
18546         }
18547         case 'table': {
18548           var header = ''
18549             , body = ''
18550             , i
18551             , row
18552             , cell
18553             , flags
18554             , j;
18555     
18556           // header
18557           cell = '';
18558           for (i = 0; i < this.token.header.length; i++) {
18559             flags = { header: true, align: this.token.align[i] };
18560             cell += this.renderer.tablecell(
18561               this.inline.output(this.token.header[i]),
18562               { header: true, align: this.token.align[i] }
18563             );
18564           }
18565           header += this.renderer.tablerow(cell);
18566     
18567           for (i = 0; i < this.token.cells.length; i++) {
18568             row = this.token.cells[i];
18569     
18570             cell = '';
18571             for (j = 0; j < row.length; j++) {
18572               cell += this.renderer.tablecell(
18573                 this.inline.output(row[j]),
18574                 { header: false, align: this.token.align[j] }
18575               );
18576             }
18577     
18578             body += this.renderer.tablerow(cell);
18579           }
18580           return this.renderer.table(header, body);
18581         }
18582         case 'blockquote_start': {
18583           var body = '';
18584     
18585           while (this.next().type !== 'blockquote_end') {
18586             body += this.tok();
18587           }
18588     
18589           return this.renderer.blockquote(body);
18590         }
18591         case 'list_start': {
18592           var body = ''
18593             , ordered = this.token.ordered;
18594     
18595           while (this.next().type !== 'list_end') {
18596             body += this.tok();
18597           }
18598     
18599           return this.renderer.list(body, ordered);
18600         }
18601         case 'list_item_start': {
18602           var body = '';
18603     
18604           while (this.next().type !== 'list_item_end') {
18605             body += this.token.type === 'text'
18606               ? this.parseText()
18607               : this.tok();
18608           }
18609     
18610           return this.renderer.listitem(body);
18611         }
18612         case 'loose_item_start': {
18613           var body = '';
18614     
18615           while (this.next().type !== 'list_item_end') {
18616             body += this.tok();
18617           }
18618     
18619           return this.renderer.listitem(body);
18620         }
18621         case 'html': {
18622           var html = !this.token.pre && !this.options.pedantic
18623             ? this.inline.output(this.token.text)
18624             : this.token.text;
18625           return this.renderer.html(html);
18626         }
18627         case 'paragraph': {
18628           return this.renderer.paragraph(this.inline.output(this.token.text));
18629         }
18630         case 'text': {
18631           return this.renderer.paragraph(this.parseText());
18632         }
18633       }
18634     };
18635   
18636     
18637     /**
18638      * Marked
18639      */
18640          /**
18641          * eval:var:marked
18642     */
18643     var marked = function (src, opt, callback) {
18644       if (callback || typeof opt === 'function') {
18645         if (!callback) {
18646           callback = opt;
18647           opt = null;
18648         }
18649     
18650         opt = merge({}, marked.defaults, opt || {});
18651     
18652         var highlight = opt.highlight
18653           , tokens
18654           , pending
18655           , i = 0;
18656     
18657         try {
18658           tokens = Lexer.lex(src, opt)
18659         } catch (e) {
18660           return callback(e);
18661         }
18662     
18663         pending = tokens.length;
18664          /**
18665          * eval:var:done
18666     */
18667         var done = function(err) {
18668           if (err) {
18669             opt.highlight = highlight;
18670             return callback(err);
18671           }
18672     
18673           var out;
18674     
18675           try {
18676             out = Parser.parse(tokens, opt);
18677           } catch (e) {
18678             err = e;
18679           }
18680     
18681           opt.highlight = highlight;
18682     
18683           return err
18684             ? callback(err)
18685             : callback(null, out);
18686         };
18687     
18688         if (!highlight || highlight.length < 3) {
18689           return done();
18690         }
18691     
18692         delete opt.highlight;
18693     
18694         if (!pending) { return done(); }
18695     
18696         for (; i < tokens.length; i++) {
18697           (function(token) {
18698             if (token.type !== 'code') {
18699               return --pending || done();
18700             }
18701             return highlight(token.text, token.lang, function(err, code) {
18702               if (err) { return done(err); }
18703               if (code == null || code === token.text) {
18704                 return --pending || done();
18705               }
18706               token.text = code;
18707               token.escaped = true;
18708               --pending || done();
18709             });
18710           })(tokens[i]);
18711         }
18712     
18713         return;
18714       }
18715       try {
18716         if (opt) { opt = merge({}, marked.defaults, opt); }
18717         return Parser.parse(Lexer.lex(src, opt), opt);
18718       } catch (e) {
18719         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18720         if ((opt || marked.defaults).silent) {
18721           return '<p>An error occured:</p><pre>'
18722             + escape(e.message + '', true)
18723             + '</pre>';
18724         }
18725         throw e;
18726       }
18727     }
18728     
18729     /**
18730      * Options
18731      */
18732     
18733     marked.options =
18734     marked.setOptions = function(opt) {
18735       merge(marked.defaults, opt);
18736       return marked;
18737     };
18738     
18739     marked.defaults = {
18740       gfm: true,
18741       tables: true,
18742       breaks: false,
18743       pedantic: false,
18744       sanitize: false,
18745       sanitizer: null,
18746       mangle: true,
18747       smartLists: false,
18748       silent: false,
18749       highlight: null,
18750       langPrefix: 'lang-',
18751       smartypants: false,
18752       headerPrefix: '',
18753       renderer: new Renderer,
18754       xhtml: false
18755     };
18756     
18757     /**
18758      * Expose
18759      */
18760     
18761     marked.Parser = Parser;
18762     marked.parser = Parser.parse;
18763     
18764     marked.Renderer = Renderer;
18765     
18766     marked.Lexer = Lexer;
18767     marked.lexer = Lexer.lex;
18768     
18769     marked.InlineLexer = InlineLexer;
18770     marked.inlineLexer = InlineLexer.output;
18771     
18772     marked.parse = marked;
18773     
18774     Roo.Markdown.marked = marked;
18775
18776 })();/*
18777  * Based on:
18778  * Ext JS Library 1.1.1
18779  * Copyright(c) 2006-2007, Ext JS, LLC.
18780  *
18781  * Originally Released Under LGPL - original licence link has changed is not relivant.
18782  *
18783  * Fork - LGPL
18784  * <script type="text/javascript">
18785  */
18786
18787
18788
18789 /*
18790  * These classes are derivatives of the similarly named classes in the YUI Library.
18791  * The original license:
18792  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18793  * Code licensed under the BSD License:
18794  * http://developer.yahoo.net/yui/license.txt
18795  */
18796
18797 (function() {
18798
18799 var Event=Roo.EventManager;
18800 var Dom=Roo.lib.Dom;
18801
18802 /**
18803  * @class Roo.dd.DragDrop
18804  * @extends Roo.util.Observable
18805  * Defines the interface and base operation of items that that can be
18806  * dragged or can be drop targets.  It was designed to be extended, overriding
18807  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18808  * Up to three html elements can be associated with a DragDrop instance:
18809  * <ul>
18810  * <li>linked element: the element that is passed into the constructor.
18811  * This is the element which defines the boundaries for interaction with
18812  * other DragDrop objects.</li>
18813  * <li>handle element(s): The drag operation only occurs if the element that
18814  * was clicked matches a handle element.  By default this is the linked
18815  * element, but there are times that you will want only a portion of the
18816  * linked element to initiate the drag operation, and the setHandleElId()
18817  * method provides a way to define this.</li>
18818  * <li>drag element: this represents the element that would be moved along
18819  * with the cursor during a drag operation.  By default, this is the linked
18820  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18821  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18822  * </li>
18823  * </ul>
18824  * This class should not be instantiated until the onload event to ensure that
18825  * the associated elements are available.
18826  * The following would define a DragDrop obj that would interact with any
18827  * other DragDrop obj in the "group1" group:
18828  * <pre>
18829  *  dd = new Roo.dd.DragDrop("div1", "group1");
18830  * </pre>
18831  * Since none of the event handlers have been implemented, nothing would
18832  * actually happen if you were to run the code above.  Normally you would
18833  * override this class or one of the default implementations, but you can
18834  * also override the methods you want on an instance of the class...
18835  * <pre>
18836  *  dd.onDragDrop = function(e, id) {
18837  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18838  *  }
18839  * </pre>
18840  * @constructor
18841  * @param {String} id of the element that is linked to this instance
18842  * @param {String} sGroup the group of related DragDrop objects
18843  * @param {object} config an object containing configurable attributes
18844  *                Valid properties for DragDrop:
18845  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18846  */
18847 Roo.dd.DragDrop = function(id, sGroup, config) {
18848     if (id) {
18849         this.init(id, sGroup, config);
18850     }
18851     
18852 };
18853
18854 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18855
18856     /**
18857      * The id of the element associated with this object.  This is what we
18858      * refer to as the "linked element" because the size and position of
18859      * this element is used to determine when the drag and drop objects have
18860      * interacted.
18861      * @property id
18862      * @type String
18863      */
18864     id: null,
18865
18866     /**
18867      * Configuration attributes passed into the constructor
18868      * @property config
18869      * @type object
18870      */
18871     config: null,
18872
18873     /**
18874      * The id of the element that will be dragged.  By default this is same
18875      * as the linked element , but could be changed to another element. Ex:
18876      * Roo.dd.DDProxy
18877      * @property dragElId
18878      * @type String
18879      * @private
18880      */
18881     dragElId: null,
18882
18883     /**
18884      * the id of the element that initiates the drag operation.  By default
18885      * this is the linked element, but could be changed to be a child of this
18886      * element.  This lets us do things like only starting the drag when the
18887      * header element within the linked html element is clicked.
18888      * @property handleElId
18889      * @type String
18890      * @private
18891      */
18892     handleElId: null,
18893
18894     /**
18895      * An associative array of HTML tags that will be ignored if clicked.
18896      * @property invalidHandleTypes
18897      * @type {string: string}
18898      */
18899     invalidHandleTypes: null,
18900
18901     /**
18902      * An associative array of ids for elements that will be ignored if clicked
18903      * @property invalidHandleIds
18904      * @type {string: string}
18905      */
18906     invalidHandleIds: null,
18907
18908     /**
18909      * An indexted array of css class names for elements that will be ignored
18910      * if clicked.
18911      * @property invalidHandleClasses
18912      * @type string[]
18913      */
18914     invalidHandleClasses: null,
18915
18916     /**
18917      * The linked element's absolute X position at the time the drag was
18918      * started
18919      * @property startPageX
18920      * @type int
18921      * @private
18922      */
18923     startPageX: 0,
18924
18925     /**
18926      * The linked element's absolute X position at the time the drag was
18927      * started
18928      * @property startPageY
18929      * @type int
18930      * @private
18931      */
18932     startPageY: 0,
18933
18934     /**
18935      * The group defines a logical collection of DragDrop objects that are
18936      * related.  Instances only get events when interacting with other
18937      * DragDrop object in the same group.  This lets us define multiple
18938      * groups using a single DragDrop subclass if we want.
18939      * @property groups
18940      * @type {string: string}
18941      */
18942     groups: null,
18943
18944     /**
18945      * Individual drag/drop instances can be locked.  This will prevent
18946      * onmousedown start drag.
18947      * @property locked
18948      * @type boolean
18949      * @private
18950      */
18951     locked: false,
18952
18953     /**
18954      * Lock this instance
18955      * @method lock
18956      */
18957     lock: function() { this.locked = true; },
18958
18959     /**
18960      * Unlock this instace
18961      * @method unlock
18962      */
18963     unlock: function() { this.locked = false; },
18964
18965     /**
18966      * By default, all insances can be a drop target.  This can be disabled by
18967      * setting isTarget to false.
18968      * @method isTarget
18969      * @type boolean
18970      */
18971     isTarget: true,
18972
18973     /**
18974      * The padding configured for this drag and drop object for calculating
18975      * the drop zone intersection with this object.
18976      * @method padding
18977      * @type int[]
18978      */
18979     padding: null,
18980
18981     /**
18982      * Cached reference to the linked element
18983      * @property _domRef
18984      * @private
18985      */
18986     _domRef: null,
18987
18988     /**
18989      * Internal typeof flag
18990      * @property __ygDragDrop
18991      * @private
18992      */
18993     __ygDragDrop: true,
18994
18995     /**
18996      * Set to true when horizontal contraints are applied
18997      * @property constrainX
18998      * @type boolean
18999      * @private
19000      */
19001     constrainX: false,
19002
19003     /**
19004      * Set to true when vertical contraints are applied
19005      * @property constrainY
19006      * @type boolean
19007      * @private
19008      */
19009     constrainY: false,
19010
19011     /**
19012      * The left constraint
19013      * @property minX
19014      * @type int
19015      * @private
19016      */
19017     minX: 0,
19018
19019     /**
19020      * The right constraint
19021      * @property maxX
19022      * @type int
19023      * @private
19024      */
19025     maxX: 0,
19026
19027     /**
19028      * The up constraint
19029      * @property minY
19030      * @type int
19031      * @type int
19032      * @private
19033      */
19034     minY: 0,
19035
19036     /**
19037      * The down constraint
19038      * @property maxY
19039      * @type int
19040      * @private
19041      */
19042     maxY: 0,
19043
19044     /**
19045      * Maintain offsets when we resetconstraints.  Set to true when you want
19046      * the position of the element relative to its parent to stay the same
19047      * when the page changes
19048      *
19049      * @property maintainOffset
19050      * @type boolean
19051      */
19052     maintainOffset: false,
19053
19054     /**
19055      * Array of pixel locations the element will snap to if we specified a
19056      * horizontal graduation/interval.  This array is generated automatically
19057      * when you define a tick interval.
19058      * @property xTicks
19059      * @type int[]
19060      */
19061     xTicks: null,
19062
19063     /**
19064      * Array of pixel locations the element will snap to if we specified a
19065      * vertical graduation/interval.  This array is generated automatically
19066      * when you define a tick interval.
19067      * @property yTicks
19068      * @type int[]
19069      */
19070     yTicks: null,
19071
19072     /**
19073      * By default the drag and drop instance will only respond to the primary
19074      * button click (left button for a right-handed mouse).  Set to true to
19075      * allow drag and drop to start with any mouse click that is propogated
19076      * by the browser
19077      * @property primaryButtonOnly
19078      * @type boolean
19079      */
19080     primaryButtonOnly: true,
19081
19082     /**
19083      * The availabe property is false until the linked dom element is accessible.
19084      * @property available
19085      * @type boolean
19086      */
19087     available: false,
19088
19089     /**
19090      * By default, drags can only be initiated if the mousedown occurs in the
19091      * region the linked element is.  This is done in part to work around a
19092      * bug in some browsers that mis-report the mousedown if the previous
19093      * mouseup happened outside of the window.  This property is set to true
19094      * if outer handles are defined.
19095      *
19096      * @property hasOuterHandles
19097      * @type boolean
19098      * @default false
19099      */
19100     hasOuterHandles: false,
19101
19102     /**
19103      * Code that executes immediately before the startDrag event
19104      * @method b4StartDrag
19105      * @private
19106      */
19107     b4StartDrag: function(x, y) { },
19108
19109     /**
19110      * Abstract method called after a drag/drop object is clicked
19111      * and the drag or mousedown time thresholds have beeen met.
19112      * @method startDrag
19113      * @param {int} X click location
19114      * @param {int} Y click location
19115      */
19116     startDrag: function(x, y) { /* override this */ },
19117
19118     /**
19119      * Code that executes immediately before the onDrag event
19120      * @method b4Drag
19121      * @private
19122      */
19123     b4Drag: function(e) { },
19124
19125     /**
19126      * Abstract method called during the onMouseMove event while dragging an
19127      * object.
19128      * @method onDrag
19129      * @param {Event} e the mousemove event
19130      */
19131     onDrag: function(e) { /* override this */ },
19132
19133     /**
19134      * Abstract method called when this element fist begins hovering over
19135      * another DragDrop obj
19136      * @method onDragEnter
19137      * @param {Event} e the mousemove event
19138      * @param {String|DragDrop[]} id In POINT mode, the element
19139      * id this is hovering over.  In INTERSECT mode, an array of one or more
19140      * dragdrop items being hovered over.
19141      */
19142     onDragEnter: function(e, id) { /* override this */ },
19143
19144     /**
19145      * Code that executes immediately before the onDragOver event
19146      * @method b4DragOver
19147      * @private
19148      */
19149     b4DragOver: function(e) { },
19150
19151     /**
19152      * Abstract method called when this element is hovering over another
19153      * DragDrop obj
19154      * @method onDragOver
19155      * @param {Event} e the mousemove event
19156      * @param {String|DragDrop[]} id In POINT mode, the element
19157      * id this is hovering over.  In INTERSECT mode, an array of dd items
19158      * being hovered over.
19159      */
19160     onDragOver: function(e, id) { /* override this */ },
19161
19162     /**
19163      * Code that executes immediately before the onDragOut event
19164      * @method b4DragOut
19165      * @private
19166      */
19167     b4DragOut: function(e) { },
19168
19169     /**
19170      * Abstract method called when we are no longer hovering over an element
19171      * @method onDragOut
19172      * @param {Event} e the mousemove event
19173      * @param {String|DragDrop[]} id In POINT mode, the element
19174      * id this was hovering over.  In INTERSECT mode, an array of dd items
19175      * that the mouse is no longer over.
19176      */
19177     onDragOut: function(e, id) { /* override this */ },
19178
19179     /**
19180      * Code that executes immediately before the onDragDrop event
19181      * @method b4DragDrop
19182      * @private
19183      */
19184     b4DragDrop: function(e) { },
19185
19186     /**
19187      * Abstract method called when this item is dropped on another DragDrop
19188      * obj
19189      * @method onDragDrop
19190      * @param {Event} e the mouseup event
19191      * @param {String|DragDrop[]} id In POINT mode, the element
19192      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19193      * was dropped on.
19194      */
19195     onDragDrop: function(e, id) { /* override this */ },
19196
19197     /**
19198      * Abstract method called when this item is dropped on an area with no
19199      * drop target
19200      * @method onInvalidDrop
19201      * @param {Event} e the mouseup event
19202      */
19203     onInvalidDrop: function(e) { /* override this */ },
19204
19205     /**
19206      * Code that executes immediately before the endDrag event
19207      * @method b4EndDrag
19208      * @private
19209      */
19210     b4EndDrag: function(e) { },
19211
19212     /**
19213      * Fired when we are done dragging the object
19214      * @method endDrag
19215      * @param {Event} e the mouseup event
19216      */
19217     endDrag: function(e) { /* override this */ },
19218
19219     /**
19220      * Code executed immediately before the onMouseDown event
19221      * @method b4MouseDown
19222      * @param {Event} e the mousedown event
19223      * @private
19224      */
19225     b4MouseDown: function(e) {  },
19226
19227     /**
19228      * Event handler that fires when a drag/drop obj gets a mousedown
19229      * @method onMouseDown
19230      * @param {Event} e the mousedown event
19231      */
19232     onMouseDown: function(e) { /* override this */ },
19233
19234     /**
19235      * Event handler that fires when a drag/drop obj gets a mouseup
19236      * @method onMouseUp
19237      * @param {Event} e the mouseup event
19238      */
19239     onMouseUp: function(e) { /* override this */ },
19240
19241     /**
19242      * Override the onAvailable method to do what is needed after the initial
19243      * position was determined.
19244      * @method onAvailable
19245      */
19246     onAvailable: function () {
19247     },
19248
19249     /*
19250      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19251      * @type Object
19252      */
19253     defaultPadding : {left:0, right:0, top:0, bottom:0},
19254
19255     /*
19256      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19257  *
19258  * Usage:
19259  <pre><code>
19260  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19261                 { dragElId: "existingProxyDiv" });
19262  dd.startDrag = function(){
19263      this.constrainTo("parent-id");
19264  };
19265  </code></pre>
19266  * Or you can initalize it using the {@link Roo.Element} object:
19267  <pre><code>
19268  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19269      startDrag : function(){
19270          this.constrainTo("parent-id");
19271      }
19272  });
19273  </code></pre>
19274      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19275      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19276      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19277      * an object containing the sides to pad. For example: {right:10, bottom:10}
19278      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19279      */
19280     constrainTo : function(constrainTo, pad, inContent){
19281         if(typeof pad == "number"){
19282             pad = {left: pad, right:pad, top:pad, bottom:pad};
19283         }
19284         pad = pad || this.defaultPadding;
19285         var b = Roo.get(this.getEl()).getBox();
19286         var ce = Roo.get(constrainTo);
19287         var s = ce.getScroll();
19288         var c, cd = ce.dom;
19289         if(cd == document.body){
19290             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19291         }else{
19292             xy = ce.getXY();
19293             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19294         }
19295
19296
19297         var topSpace = b.y - c.y;
19298         var leftSpace = b.x - c.x;
19299
19300         this.resetConstraints();
19301         this.setXConstraint(leftSpace - (pad.left||0), // left
19302                 c.width - leftSpace - b.width - (pad.right||0) //right
19303         );
19304         this.setYConstraint(topSpace - (pad.top||0), //top
19305                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19306         );
19307     },
19308
19309     /**
19310      * Returns a reference to the linked element
19311      * @method getEl
19312      * @return {HTMLElement} the html element
19313      */
19314     getEl: function() {
19315         if (!this._domRef) {
19316             this._domRef = Roo.getDom(this.id);
19317         }
19318
19319         return this._domRef;
19320     },
19321
19322     /**
19323      * Returns a reference to the actual element to drag.  By default this is
19324      * the same as the html element, but it can be assigned to another
19325      * element. An example of this can be found in Roo.dd.DDProxy
19326      * @method getDragEl
19327      * @return {HTMLElement} the html element
19328      */
19329     getDragEl: function() {
19330         return Roo.getDom(this.dragElId);
19331     },
19332
19333     /**
19334      * Sets up the DragDrop object.  Must be called in the constructor of any
19335      * Roo.dd.DragDrop subclass
19336      * @method init
19337      * @param id the id of the linked element
19338      * @param {String} sGroup the group of related items
19339      * @param {object} config configuration attributes
19340      */
19341     init: function(id, sGroup, config) {
19342         this.initTarget(id, sGroup, config);
19343         if (!Roo.isTouch) {
19344             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19345         }
19346         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19347         // Event.on(this.id, "selectstart", Event.preventDefault);
19348     },
19349
19350     /**
19351      * Initializes Targeting functionality only... the object does not
19352      * get a mousedown handler.
19353      * @method initTarget
19354      * @param id the id of the linked element
19355      * @param {String} sGroup the group of related items
19356      * @param {object} config configuration attributes
19357      */
19358     initTarget: function(id, sGroup, config) {
19359
19360         // configuration attributes
19361         this.config = config || {};
19362
19363         // create a local reference to the drag and drop manager
19364         this.DDM = Roo.dd.DDM;
19365         // initialize the groups array
19366         this.groups = {};
19367
19368         // assume that we have an element reference instead of an id if the
19369         // parameter is not a string
19370         if (typeof id !== "string") {
19371             id = Roo.id(id);
19372         }
19373
19374         // set the id
19375         this.id = id;
19376
19377         // add to an interaction group
19378         this.addToGroup((sGroup) ? sGroup : "default");
19379
19380         // We don't want to register this as the handle with the manager
19381         // so we just set the id rather than calling the setter.
19382         this.handleElId = id;
19383
19384         // the linked element is the element that gets dragged by default
19385         this.setDragElId(id);
19386
19387         // by default, clicked anchors will not start drag operations.
19388         this.invalidHandleTypes = { A: "A" };
19389         this.invalidHandleIds = {};
19390         this.invalidHandleClasses = [];
19391
19392         this.applyConfig();
19393
19394         this.handleOnAvailable();
19395     },
19396
19397     /**
19398      * Applies the configuration parameters that were passed into the constructor.
19399      * This is supposed to happen at each level through the inheritance chain.  So
19400      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19401      * DragDrop in order to get all of the parameters that are available in
19402      * each object.
19403      * @method applyConfig
19404      */
19405     applyConfig: function() {
19406
19407         // configurable properties:
19408         //    padding, isTarget, maintainOffset, primaryButtonOnly
19409         this.padding           = this.config.padding || [0, 0, 0, 0];
19410         this.isTarget          = (this.config.isTarget !== false);
19411         this.maintainOffset    = (this.config.maintainOffset);
19412         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19413
19414     },
19415
19416     /**
19417      * Executed when the linked element is available
19418      * @method handleOnAvailable
19419      * @private
19420      */
19421     handleOnAvailable: function() {
19422         this.available = true;
19423         this.resetConstraints();
19424         this.onAvailable();
19425     },
19426
19427      /**
19428      * Configures the padding for the target zone in px.  Effectively expands
19429      * (or reduces) the virtual object size for targeting calculations.
19430      * Supports css-style shorthand; if only one parameter is passed, all sides
19431      * will have that padding, and if only two are passed, the top and bottom
19432      * will have the first param, the left and right the second.
19433      * @method setPadding
19434      * @param {int} iTop    Top pad
19435      * @param {int} iRight  Right pad
19436      * @param {int} iBot    Bot pad
19437      * @param {int} iLeft   Left pad
19438      */
19439     setPadding: function(iTop, iRight, iBot, iLeft) {
19440         // this.padding = [iLeft, iRight, iTop, iBot];
19441         if (!iRight && 0 !== iRight) {
19442             this.padding = [iTop, iTop, iTop, iTop];
19443         } else if (!iBot && 0 !== iBot) {
19444             this.padding = [iTop, iRight, iTop, iRight];
19445         } else {
19446             this.padding = [iTop, iRight, iBot, iLeft];
19447         }
19448     },
19449
19450     /**
19451      * Stores the initial placement of the linked element.
19452      * @method setInitialPosition
19453      * @param {int} diffX   the X offset, default 0
19454      * @param {int} diffY   the Y offset, default 0
19455      */
19456     setInitPosition: function(diffX, diffY) {
19457         var el = this.getEl();
19458
19459         if (!this.DDM.verifyEl(el)) {
19460             return;
19461         }
19462
19463         var dx = diffX || 0;
19464         var dy = diffY || 0;
19465
19466         var p = Dom.getXY( el );
19467
19468         this.initPageX = p[0] - dx;
19469         this.initPageY = p[1] - dy;
19470
19471         this.lastPageX = p[0];
19472         this.lastPageY = p[1];
19473
19474
19475         this.setStartPosition(p);
19476     },
19477
19478     /**
19479      * Sets the start position of the element.  This is set when the obj
19480      * is initialized, the reset when a drag is started.
19481      * @method setStartPosition
19482      * @param pos current position (from previous lookup)
19483      * @private
19484      */
19485     setStartPosition: function(pos) {
19486         var p = pos || Dom.getXY( this.getEl() );
19487         this.deltaSetXY = null;
19488
19489         this.startPageX = p[0];
19490         this.startPageY = p[1];
19491     },
19492
19493     /**
19494      * Add this instance to a group of related drag/drop objects.  All
19495      * instances belong to at least one group, and can belong to as many
19496      * groups as needed.
19497      * @method addToGroup
19498      * @param sGroup {string} the name of the group
19499      */
19500     addToGroup: function(sGroup) {
19501         this.groups[sGroup] = true;
19502         this.DDM.regDragDrop(this, sGroup);
19503     },
19504
19505     /**
19506      * Remove's this instance from the supplied interaction group
19507      * @method removeFromGroup
19508      * @param {string}  sGroup  The group to drop
19509      */
19510     removeFromGroup: function(sGroup) {
19511         if (this.groups[sGroup]) {
19512             delete this.groups[sGroup];
19513         }
19514
19515         this.DDM.removeDDFromGroup(this, sGroup);
19516     },
19517
19518     /**
19519      * Allows you to specify that an element other than the linked element
19520      * will be moved with the cursor during a drag
19521      * @method setDragElId
19522      * @param id {string} the id of the element that will be used to initiate the drag
19523      */
19524     setDragElId: function(id) {
19525         this.dragElId = id;
19526     },
19527
19528     /**
19529      * Allows you to specify a child of the linked element that should be
19530      * used to initiate the drag operation.  An example of this would be if
19531      * you have a content div with text and links.  Clicking anywhere in the
19532      * content area would normally start the drag operation.  Use this method
19533      * to specify that an element inside of the content div is the element
19534      * that starts the drag operation.
19535      * @method setHandleElId
19536      * @param id {string} the id of the element that will be used to
19537      * initiate the drag.
19538      */
19539     setHandleElId: function(id) {
19540         if (typeof id !== "string") {
19541             id = Roo.id(id);
19542         }
19543         this.handleElId = id;
19544         this.DDM.regHandle(this.id, id);
19545     },
19546
19547     /**
19548      * Allows you to set an element outside of the linked element as a drag
19549      * handle
19550      * @method setOuterHandleElId
19551      * @param id the id of the element that will be used to initiate the drag
19552      */
19553     setOuterHandleElId: function(id) {
19554         if (typeof id !== "string") {
19555             id = Roo.id(id);
19556         }
19557         Event.on(id, "mousedown",
19558                 this.handleMouseDown, this);
19559         this.setHandleElId(id);
19560
19561         this.hasOuterHandles = true;
19562     },
19563
19564     /**
19565      * Remove all drag and drop hooks for this element
19566      * @method unreg
19567      */
19568     unreg: function() {
19569         Event.un(this.id, "mousedown",
19570                 this.handleMouseDown);
19571         Event.un(this.id, "touchstart",
19572                 this.handleMouseDown);
19573         this._domRef = null;
19574         this.DDM._remove(this);
19575     },
19576
19577     destroy : function(){
19578         this.unreg();
19579     },
19580
19581     /**
19582      * Returns true if this instance is locked, or the drag drop mgr is locked
19583      * (meaning that all drag/drop is disabled on the page.)
19584      * @method isLocked
19585      * @return {boolean} true if this obj or all drag/drop is locked, else
19586      * false
19587      */
19588     isLocked: function() {
19589         return (this.DDM.isLocked() || this.locked);
19590     },
19591
19592     /**
19593      * Fired when this object is clicked
19594      * @method handleMouseDown
19595      * @param {Event} e
19596      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19597      * @private
19598      */
19599     handleMouseDown: function(e, oDD){
19600      
19601         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19602             //Roo.log('not touch/ button !=0');
19603             return;
19604         }
19605         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19606             return; // double touch..
19607         }
19608         
19609
19610         if (this.isLocked()) {
19611             //Roo.log('locked');
19612             return;
19613         }
19614
19615         this.DDM.refreshCache(this.groups);
19616 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19617         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19618         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19619             //Roo.log('no outer handes or not over target');
19620                 // do nothing.
19621         } else {
19622 //            Roo.log('check validator');
19623             if (this.clickValidator(e)) {
19624 //                Roo.log('validate success');
19625                 // set the initial element position
19626                 this.setStartPosition();
19627
19628
19629                 this.b4MouseDown(e);
19630                 this.onMouseDown(e);
19631
19632                 this.DDM.handleMouseDown(e, this);
19633
19634                 this.DDM.stopEvent(e);
19635             } else {
19636
19637
19638             }
19639         }
19640     },
19641
19642     clickValidator: function(e) {
19643         var target = e.getTarget();
19644         return ( this.isValidHandleChild(target) &&
19645                     (this.id == this.handleElId ||
19646                         this.DDM.handleWasClicked(target, this.id)) );
19647     },
19648
19649     /**
19650      * Allows you to specify a tag name that should not start a drag operation
19651      * when clicked.  This is designed to facilitate embedding links within a
19652      * drag handle that do something other than start the drag.
19653      * @method addInvalidHandleType
19654      * @param {string} tagName the type of element to exclude
19655      */
19656     addInvalidHandleType: function(tagName) {
19657         var type = tagName.toUpperCase();
19658         this.invalidHandleTypes[type] = type;
19659     },
19660
19661     /**
19662      * Lets you to specify an element id for a child of a drag handle
19663      * that should not initiate a drag
19664      * @method addInvalidHandleId
19665      * @param {string} id the element id of the element you wish to ignore
19666      */
19667     addInvalidHandleId: function(id) {
19668         if (typeof id !== "string") {
19669             id = Roo.id(id);
19670         }
19671         this.invalidHandleIds[id] = id;
19672     },
19673
19674     /**
19675      * Lets you specify a css class of elements that will not initiate a drag
19676      * @method addInvalidHandleClass
19677      * @param {string} cssClass the class of the elements you wish to ignore
19678      */
19679     addInvalidHandleClass: function(cssClass) {
19680         this.invalidHandleClasses.push(cssClass);
19681     },
19682
19683     /**
19684      * Unsets an excluded tag name set by addInvalidHandleType
19685      * @method removeInvalidHandleType
19686      * @param {string} tagName the type of element to unexclude
19687      */
19688     removeInvalidHandleType: function(tagName) {
19689         var type = tagName.toUpperCase();
19690         // this.invalidHandleTypes[type] = null;
19691         delete this.invalidHandleTypes[type];
19692     },
19693
19694     /**
19695      * Unsets an invalid handle id
19696      * @method removeInvalidHandleId
19697      * @param {string} id the id of the element to re-enable
19698      */
19699     removeInvalidHandleId: function(id) {
19700         if (typeof id !== "string") {
19701             id = Roo.id(id);
19702         }
19703         delete this.invalidHandleIds[id];
19704     },
19705
19706     /**
19707      * Unsets an invalid css class
19708      * @method removeInvalidHandleClass
19709      * @param {string} cssClass the class of the element(s) you wish to
19710      * re-enable
19711      */
19712     removeInvalidHandleClass: function(cssClass) {
19713         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19714             if (this.invalidHandleClasses[i] == cssClass) {
19715                 delete this.invalidHandleClasses[i];
19716             }
19717         }
19718     },
19719
19720     /**
19721      * Checks the tag exclusion list to see if this click should be ignored
19722      * @method isValidHandleChild
19723      * @param {HTMLElement} node the HTMLElement to evaluate
19724      * @return {boolean} true if this is a valid tag type, false if not
19725      */
19726     isValidHandleChild: function(node) {
19727
19728         var valid = true;
19729         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19730         var nodeName;
19731         try {
19732             nodeName = node.nodeName.toUpperCase();
19733         } catch(e) {
19734             nodeName = node.nodeName;
19735         }
19736         valid = valid && !this.invalidHandleTypes[nodeName];
19737         valid = valid && !this.invalidHandleIds[node.id];
19738
19739         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19740             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19741         }
19742
19743
19744         return valid;
19745
19746     },
19747
19748     /**
19749      * Create the array of horizontal tick marks if an interval was specified
19750      * in setXConstraint().
19751      * @method setXTicks
19752      * @private
19753      */
19754     setXTicks: function(iStartX, iTickSize) {
19755         this.xTicks = [];
19756         this.xTickSize = iTickSize;
19757
19758         var tickMap = {};
19759
19760         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19761             if (!tickMap[i]) {
19762                 this.xTicks[this.xTicks.length] = i;
19763                 tickMap[i] = true;
19764             }
19765         }
19766
19767         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19768             if (!tickMap[i]) {
19769                 this.xTicks[this.xTicks.length] = i;
19770                 tickMap[i] = true;
19771             }
19772         }
19773
19774         this.xTicks.sort(this.DDM.numericSort) ;
19775     },
19776
19777     /**
19778      * Create the array of vertical tick marks if an interval was specified in
19779      * setYConstraint().
19780      * @method setYTicks
19781      * @private
19782      */
19783     setYTicks: function(iStartY, iTickSize) {
19784         this.yTicks = [];
19785         this.yTickSize = iTickSize;
19786
19787         var tickMap = {};
19788
19789         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19790             if (!tickMap[i]) {
19791                 this.yTicks[this.yTicks.length] = i;
19792                 tickMap[i] = true;
19793             }
19794         }
19795
19796         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19797             if (!tickMap[i]) {
19798                 this.yTicks[this.yTicks.length] = i;
19799                 tickMap[i] = true;
19800             }
19801         }
19802
19803         this.yTicks.sort(this.DDM.numericSort) ;
19804     },
19805
19806     /**
19807      * By default, the element can be dragged any place on the screen.  Use
19808      * this method to limit the horizontal travel of the element.  Pass in
19809      * 0,0 for the parameters if you want to lock the drag to the y axis.
19810      * @method setXConstraint
19811      * @param {int} iLeft the number of pixels the element can move to the left
19812      * @param {int} iRight the number of pixels the element can move to the
19813      * right
19814      * @param {int} iTickSize optional parameter for specifying that the
19815      * element
19816      * should move iTickSize pixels at a time.
19817      */
19818     setXConstraint: function(iLeft, iRight, iTickSize) {
19819         this.leftConstraint = iLeft;
19820         this.rightConstraint = iRight;
19821
19822         this.minX = this.initPageX - iLeft;
19823         this.maxX = this.initPageX + iRight;
19824         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19825
19826         this.constrainX = true;
19827     },
19828
19829     /**
19830      * Clears any constraints applied to this instance.  Also clears ticks
19831      * since they can't exist independent of a constraint at this time.
19832      * @method clearConstraints
19833      */
19834     clearConstraints: function() {
19835         this.constrainX = false;
19836         this.constrainY = false;
19837         this.clearTicks();
19838     },
19839
19840     /**
19841      * Clears any tick interval defined for this instance
19842      * @method clearTicks
19843      */
19844     clearTicks: function() {
19845         this.xTicks = null;
19846         this.yTicks = null;
19847         this.xTickSize = 0;
19848         this.yTickSize = 0;
19849     },
19850
19851     /**
19852      * By default, the element can be dragged any place on the screen.  Set
19853      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19854      * parameters if you want to lock the drag to the x axis.
19855      * @method setYConstraint
19856      * @param {int} iUp the number of pixels the element can move up
19857      * @param {int} iDown the number of pixels the element can move down
19858      * @param {int} iTickSize optional parameter for specifying that the
19859      * element should move iTickSize pixels at a time.
19860      */
19861     setYConstraint: function(iUp, iDown, iTickSize) {
19862         this.topConstraint = iUp;
19863         this.bottomConstraint = iDown;
19864
19865         this.minY = this.initPageY - iUp;
19866         this.maxY = this.initPageY + iDown;
19867         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19868
19869         this.constrainY = true;
19870
19871     },
19872
19873     /**
19874      * resetConstraints must be called if you manually reposition a dd element.
19875      * @method resetConstraints
19876      * @param {boolean} maintainOffset
19877      */
19878     resetConstraints: function() {
19879
19880
19881         // Maintain offsets if necessary
19882         if (this.initPageX || this.initPageX === 0) {
19883             // figure out how much this thing has moved
19884             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19885             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19886
19887             this.setInitPosition(dx, dy);
19888
19889         // This is the first time we have detected the element's position
19890         } else {
19891             this.setInitPosition();
19892         }
19893
19894         if (this.constrainX) {
19895             this.setXConstraint( this.leftConstraint,
19896                                  this.rightConstraint,
19897                                  this.xTickSize        );
19898         }
19899
19900         if (this.constrainY) {
19901             this.setYConstraint( this.topConstraint,
19902                                  this.bottomConstraint,
19903                                  this.yTickSize         );
19904         }
19905     },
19906
19907     /**
19908      * Normally the drag element is moved pixel by pixel, but we can specify
19909      * that it move a number of pixels at a time.  This method resolves the
19910      * location when we have it set up like this.
19911      * @method getTick
19912      * @param {int} val where we want to place the object
19913      * @param {int[]} tickArray sorted array of valid points
19914      * @return {int} the closest tick
19915      * @private
19916      */
19917     getTick: function(val, tickArray) {
19918
19919         if (!tickArray) {
19920             // If tick interval is not defined, it is effectively 1 pixel,
19921             // so we return the value passed to us.
19922             return val;
19923         } else if (tickArray[0] >= val) {
19924             // The value is lower than the first tick, so we return the first
19925             // tick.
19926             return tickArray[0];
19927         } else {
19928             for (var i=0, len=tickArray.length; i<len; ++i) {
19929                 var next = i + 1;
19930                 if (tickArray[next] && tickArray[next] >= val) {
19931                     var diff1 = val - tickArray[i];
19932                     var diff2 = tickArray[next] - val;
19933                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19934                 }
19935             }
19936
19937             // The value is larger than the last tick, so we return the last
19938             // tick.
19939             return tickArray[tickArray.length - 1];
19940         }
19941     },
19942
19943     /**
19944      * toString method
19945      * @method toString
19946      * @return {string} string representation of the dd obj
19947      */
19948     toString: function() {
19949         return ("DragDrop " + this.id);
19950     }
19951
19952 });
19953
19954 })();
19955 /*
19956  * Based on:
19957  * Ext JS Library 1.1.1
19958  * Copyright(c) 2006-2007, Ext JS, LLC.
19959  *
19960  * Originally Released Under LGPL - original licence link has changed is not relivant.
19961  *
19962  * Fork - LGPL
19963  * <script type="text/javascript">
19964  */
19965
19966
19967 /**
19968  * The drag and drop utility provides a framework for building drag and drop
19969  * applications.  In addition to enabling drag and drop for specific elements,
19970  * the drag and drop elements are tracked by the manager class, and the
19971  * interactions between the various elements are tracked during the drag and
19972  * the implementing code is notified about these important moments.
19973  */
19974
19975 // Only load the library once.  Rewriting the manager class would orphan
19976 // existing drag and drop instances.
19977 if (!Roo.dd.DragDropMgr) {
19978
19979 /**
19980  * @class Roo.dd.DragDropMgr
19981  * DragDropMgr is a singleton that tracks the element interaction for
19982  * all DragDrop items in the window.  Generally, you will not call
19983  * this class directly, but it does have helper methods that could
19984  * be useful in your DragDrop implementations.
19985  * @singleton
19986  */
19987 Roo.dd.DragDropMgr = function() {
19988
19989     var Event = Roo.EventManager;
19990
19991     return {
19992
19993         /**
19994          * Two dimensional Array of registered DragDrop objects.  The first
19995          * dimension is the DragDrop item group, the second the DragDrop
19996          * object.
19997          * @property ids
19998          * @type {string: string}
19999          * @private
20000          * @static
20001          */
20002         ids: {},
20003
20004         /**
20005          * Array of element ids defined as drag handles.  Used to determine
20006          * if the element that generated the mousedown event is actually the
20007          * handle and not the html element itself.
20008          * @property handleIds
20009          * @type {string: string}
20010          * @private
20011          * @static
20012          */
20013         handleIds: {},
20014
20015         /**
20016          * the DragDrop object that is currently being dragged
20017          * @property dragCurrent
20018          * @type DragDrop
20019          * @private
20020          * @static
20021          **/
20022         dragCurrent: null,
20023
20024         /**
20025          * the DragDrop object(s) that are being hovered over
20026          * @property dragOvers
20027          * @type Array
20028          * @private
20029          * @static
20030          */
20031         dragOvers: {},
20032
20033         /**
20034          * the X distance between the cursor and the object being dragged
20035          * @property deltaX
20036          * @type int
20037          * @private
20038          * @static
20039          */
20040         deltaX: 0,
20041
20042         /**
20043          * the Y distance between the cursor and the object being dragged
20044          * @property deltaY
20045          * @type int
20046          * @private
20047          * @static
20048          */
20049         deltaY: 0,
20050
20051         /**
20052          * Flag to determine if we should prevent the default behavior of the
20053          * events we define. By default this is true, but this can be set to
20054          * false if you need the default behavior (not recommended)
20055          * @property preventDefault
20056          * @type boolean
20057          * @static
20058          */
20059         preventDefault: true,
20060
20061         /**
20062          * Flag to determine if we should stop the propagation of the events
20063          * we generate. This is true by default but you may want to set it to
20064          * false if the html element contains other features that require the
20065          * mouse click.
20066          * @property stopPropagation
20067          * @type boolean
20068          * @static
20069          */
20070         stopPropagation: true,
20071
20072         /**
20073          * Internal flag that is set to true when drag and drop has been
20074          * intialized
20075          * @property initialized
20076          * @private
20077          * @static
20078          */
20079         initalized: false,
20080
20081         /**
20082          * All drag and drop can be disabled.
20083          * @property locked
20084          * @private
20085          * @static
20086          */
20087         locked: false,
20088
20089         /**
20090          * Called the first time an element is registered.
20091          * @method init
20092          * @private
20093          * @static
20094          */
20095         init: function() {
20096             this.initialized = true;
20097         },
20098
20099         /**
20100          * In point mode, drag and drop interaction is defined by the
20101          * location of the cursor during the drag/drop
20102          * @property POINT
20103          * @type int
20104          * @static
20105          */
20106         POINT: 0,
20107
20108         /**
20109          * In intersect mode, drag and drop interactio nis defined by the
20110          * overlap of two or more drag and drop objects.
20111          * @property INTERSECT
20112          * @type int
20113          * @static
20114          */
20115         INTERSECT: 1,
20116
20117         /**
20118          * The current drag and drop mode.  Default: POINT
20119          * @property mode
20120          * @type int
20121          * @static
20122          */
20123         mode: 0,
20124
20125         /**
20126          * Runs method on all drag and drop objects
20127          * @method _execOnAll
20128          * @private
20129          * @static
20130          */
20131         _execOnAll: function(sMethod, args) {
20132             for (var i in this.ids) {
20133                 for (var j in this.ids[i]) {
20134                     var oDD = this.ids[i][j];
20135                     if (! this.isTypeOfDD(oDD)) {
20136                         continue;
20137                     }
20138                     oDD[sMethod].apply(oDD, args);
20139                 }
20140             }
20141         },
20142
20143         /**
20144          * Drag and drop initialization.  Sets up the global event handlers
20145          * @method _onLoad
20146          * @private
20147          * @static
20148          */
20149         _onLoad: function() {
20150
20151             this.init();
20152
20153             if (!Roo.isTouch) {
20154                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20155                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20156             }
20157             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20158             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20159             
20160             Event.on(window,   "unload",    this._onUnload, this, true);
20161             Event.on(window,   "resize",    this._onResize, this, true);
20162             // Event.on(window,   "mouseout",    this._test);
20163
20164         },
20165
20166         /**
20167          * Reset constraints on all drag and drop objs
20168          * @method _onResize
20169          * @private
20170          * @static
20171          */
20172         _onResize: function(e) {
20173             this._execOnAll("resetConstraints", []);
20174         },
20175
20176         /**
20177          * Lock all drag and drop functionality
20178          * @method lock
20179          * @static
20180          */
20181         lock: function() { this.locked = true; },
20182
20183         /**
20184          * Unlock all drag and drop functionality
20185          * @method unlock
20186          * @static
20187          */
20188         unlock: function() { this.locked = false; },
20189
20190         /**
20191          * Is drag and drop locked?
20192          * @method isLocked
20193          * @return {boolean} True if drag and drop is locked, false otherwise.
20194          * @static
20195          */
20196         isLocked: function() { return this.locked; },
20197
20198         /**
20199          * Location cache that is set for all drag drop objects when a drag is
20200          * initiated, cleared when the drag is finished.
20201          * @property locationCache
20202          * @private
20203          * @static
20204          */
20205         locationCache: {},
20206
20207         /**
20208          * Set useCache to false if you want to force object the lookup of each
20209          * drag and drop linked element constantly during a drag.
20210          * @property useCache
20211          * @type boolean
20212          * @static
20213          */
20214         useCache: true,
20215
20216         /**
20217          * The number of pixels that the mouse needs to move after the
20218          * mousedown before the drag is initiated.  Default=3;
20219          * @property clickPixelThresh
20220          * @type int
20221          * @static
20222          */
20223         clickPixelThresh: 3,
20224
20225         /**
20226          * The number of milliseconds after the mousedown event to initiate the
20227          * drag if we don't get a mouseup event. Default=1000
20228          * @property clickTimeThresh
20229          * @type int
20230          * @static
20231          */
20232         clickTimeThresh: 350,
20233
20234         /**
20235          * Flag that indicates that either the drag pixel threshold or the
20236          * mousdown time threshold has been met
20237          * @property dragThreshMet
20238          * @type boolean
20239          * @private
20240          * @static
20241          */
20242         dragThreshMet: false,
20243
20244         /**
20245          * Timeout used for the click time threshold
20246          * @property clickTimeout
20247          * @type Object
20248          * @private
20249          * @static
20250          */
20251         clickTimeout: null,
20252
20253         /**
20254          * The X position of the mousedown event stored for later use when a
20255          * drag threshold is met.
20256          * @property startX
20257          * @type int
20258          * @private
20259          * @static
20260          */
20261         startX: 0,
20262
20263         /**
20264          * The Y position of the mousedown event stored for later use when a
20265          * drag threshold is met.
20266          * @property startY
20267          * @type int
20268          * @private
20269          * @static
20270          */
20271         startY: 0,
20272
20273         /**
20274          * Each DragDrop instance must be registered with the DragDropMgr.
20275          * This is executed in DragDrop.init()
20276          * @method regDragDrop
20277          * @param {DragDrop} oDD the DragDrop object to register
20278          * @param {String} sGroup the name of the group this element belongs to
20279          * @static
20280          */
20281         regDragDrop: function(oDD, sGroup) {
20282             if (!this.initialized) { this.init(); }
20283
20284             if (!this.ids[sGroup]) {
20285                 this.ids[sGroup] = {};
20286             }
20287             this.ids[sGroup][oDD.id] = oDD;
20288         },
20289
20290         /**
20291          * Removes the supplied dd instance from the supplied group. Executed
20292          * by DragDrop.removeFromGroup, so don't call this function directly.
20293          * @method removeDDFromGroup
20294          * @private
20295          * @static
20296          */
20297         removeDDFromGroup: function(oDD, sGroup) {
20298             if (!this.ids[sGroup]) {
20299                 this.ids[sGroup] = {};
20300             }
20301
20302             var obj = this.ids[sGroup];
20303             if (obj && obj[oDD.id]) {
20304                 delete obj[oDD.id];
20305             }
20306         },
20307
20308         /**
20309          * Unregisters a drag and drop item.  This is executed in
20310          * DragDrop.unreg, use that method instead of calling this directly.
20311          * @method _remove
20312          * @private
20313          * @static
20314          */
20315         _remove: function(oDD) {
20316             for (var g in oDD.groups) {
20317                 if (g && this.ids[g][oDD.id]) {
20318                     delete this.ids[g][oDD.id];
20319                 }
20320             }
20321             delete this.handleIds[oDD.id];
20322         },
20323
20324         /**
20325          * Each DragDrop handle element must be registered.  This is done
20326          * automatically when executing DragDrop.setHandleElId()
20327          * @method regHandle
20328          * @param {String} sDDId the DragDrop id this element is a handle for
20329          * @param {String} sHandleId the id of the element that is the drag
20330          * handle
20331          * @static
20332          */
20333         regHandle: function(sDDId, sHandleId) {
20334             if (!this.handleIds[sDDId]) {
20335                 this.handleIds[sDDId] = {};
20336             }
20337             this.handleIds[sDDId][sHandleId] = sHandleId;
20338         },
20339
20340         /**
20341          * Utility function to determine if a given element has been
20342          * registered as a drag drop item.
20343          * @method isDragDrop
20344          * @param {String} id the element id to check
20345          * @return {boolean} true if this element is a DragDrop item,
20346          * false otherwise
20347          * @static
20348          */
20349         isDragDrop: function(id) {
20350             return ( this.getDDById(id) ) ? true : false;
20351         },
20352
20353         /**
20354          * Returns the drag and drop instances that are in all groups the
20355          * passed in instance belongs to.
20356          * @method getRelated
20357          * @param {DragDrop} p_oDD the obj to get related data for
20358          * @param {boolean} bTargetsOnly if true, only return targetable objs
20359          * @return {DragDrop[]} the related instances
20360          * @static
20361          */
20362         getRelated: function(p_oDD, bTargetsOnly) {
20363             var oDDs = [];
20364             for (var i in p_oDD.groups) {
20365                 for (j in this.ids[i]) {
20366                     var dd = this.ids[i][j];
20367                     if (! this.isTypeOfDD(dd)) {
20368                         continue;
20369                     }
20370                     if (!bTargetsOnly || dd.isTarget) {
20371                         oDDs[oDDs.length] = dd;
20372                     }
20373                 }
20374             }
20375
20376             return oDDs;
20377         },
20378
20379         /**
20380          * Returns true if the specified dd target is a legal target for
20381          * the specifice drag obj
20382          * @method isLegalTarget
20383          * @param {DragDrop} the drag obj
20384          * @param {DragDrop} the target
20385          * @return {boolean} true if the target is a legal target for the
20386          * dd obj
20387          * @static
20388          */
20389         isLegalTarget: function (oDD, oTargetDD) {
20390             var targets = this.getRelated(oDD, true);
20391             for (var i=0, len=targets.length;i<len;++i) {
20392                 if (targets[i].id == oTargetDD.id) {
20393                     return true;
20394                 }
20395             }
20396
20397             return false;
20398         },
20399
20400         /**
20401          * My goal is to be able to transparently determine if an object is
20402          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20403          * returns "object", oDD.constructor.toString() always returns
20404          * "DragDrop" and not the name of the subclass.  So for now it just
20405          * evaluates a well-known variable in DragDrop.
20406          * @method isTypeOfDD
20407          * @param {Object} the object to evaluate
20408          * @return {boolean} true if typeof oDD = DragDrop
20409          * @static
20410          */
20411         isTypeOfDD: function (oDD) {
20412             return (oDD && oDD.__ygDragDrop);
20413         },
20414
20415         /**
20416          * Utility function to determine if a given element has been
20417          * registered as a drag drop handle for the given Drag Drop object.
20418          * @method isHandle
20419          * @param {String} id the element id to check
20420          * @return {boolean} true if this element is a DragDrop handle, false
20421          * otherwise
20422          * @static
20423          */
20424         isHandle: function(sDDId, sHandleId) {
20425             return ( this.handleIds[sDDId] &&
20426                             this.handleIds[sDDId][sHandleId] );
20427         },
20428
20429         /**
20430          * Returns the DragDrop instance for a given id
20431          * @method getDDById
20432          * @param {String} id the id of the DragDrop object
20433          * @return {DragDrop} the drag drop object, null if it is not found
20434          * @static
20435          */
20436         getDDById: function(id) {
20437             for (var i in this.ids) {
20438                 if (this.ids[i][id]) {
20439                     return this.ids[i][id];
20440                 }
20441             }
20442             return null;
20443         },
20444
20445         /**
20446          * Fired after a registered DragDrop object gets the mousedown event.
20447          * Sets up the events required to track the object being dragged
20448          * @method handleMouseDown
20449          * @param {Event} e the event
20450          * @param oDD the DragDrop object being dragged
20451          * @private
20452          * @static
20453          */
20454         handleMouseDown: function(e, oDD) {
20455             if(Roo.QuickTips){
20456                 Roo.QuickTips.disable();
20457             }
20458             this.currentTarget = e.getTarget();
20459
20460             this.dragCurrent = oDD;
20461
20462             var el = oDD.getEl();
20463
20464             // track start position
20465             this.startX = e.getPageX();
20466             this.startY = e.getPageY();
20467
20468             this.deltaX = this.startX - el.offsetLeft;
20469             this.deltaY = this.startY - el.offsetTop;
20470
20471             this.dragThreshMet = false;
20472
20473             this.clickTimeout = setTimeout(
20474                     function() {
20475                         var DDM = Roo.dd.DDM;
20476                         DDM.startDrag(DDM.startX, DDM.startY);
20477                     },
20478                     this.clickTimeThresh );
20479         },
20480
20481         /**
20482          * Fired when either the drag pixel threshol or the mousedown hold
20483          * time threshold has been met.
20484          * @method startDrag
20485          * @param x {int} the X position of the original mousedown
20486          * @param y {int} the Y position of the original mousedown
20487          * @static
20488          */
20489         startDrag: function(x, y) {
20490             clearTimeout(this.clickTimeout);
20491             if (this.dragCurrent) {
20492                 this.dragCurrent.b4StartDrag(x, y);
20493                 this.dragCurrent.startDrag(x, y);
20494             }
20495             this.dragThreshMet = true;
20496         },
20497
20498         /**
20499          * Internal function to handle the mouseup event.  Will be invoked
20500          * from the context of the document.
20501          * @method handleMouseUp
20502          * @param {Event} e the event
20503          * @private
20504          * @static
20505          */
20506         handleMouseUp: function(e) {
20507
20508             if(Roo.QuickTips){
20509                 Roo.QuickTips.enable();
20510             }
20511             if (! this.dragCurrent) {
20512                 return;
20513             }
20514
20515             clearTimeout(this.clickTimeout);
20516
20517             if (this.dragThreshMet) {
20518                 this.fireEvents(e, true);
20519             } else {
20520             }
20521
20522             this.stopDrag(e);
20523
20524             this.stopEvent(e);
20525         },
20526
20527         /**
20528          * Utility to stop event propagation and event default, if these
20529          * features are turned on.
20530          * @method stopEvent
20531          * @param {Event} e the event as returned by this.getEvent()
20532          * @static
20533          */
20534         stopEvent: function(e){
20535             if(this.stopPropagation) {
20536                 e.stopPropagation();
20537             }
20538
20539             if (this.preventDefault) {
20540                 e.preventDefault();
20541             }
20542         },
20543
20544         /**
20545          * Internal function to clean up event handlers after the drag
20546          * operation is complete
20547          * @method stopDrag
20548          * @param {Event} e the event
20549          * @private
20550          * @static
20551          */
20552         stopDrag: function(e) {
20553             // Fire the drag end event for the item that was dragged
20554             if (this.dragCurrent) {
20555                 if (this.dragThreshMet) {
20556                     this.dragCurrent.b4EndDrag(e);
20557                     this.dragCurrent.endDrag(e);
20558                 }
20559
20560                 this.dragCurrent.onMouseUp(e);
20561             }
20562
20563             this.dragCurrent = null;
20564             this.dragOvers = {};
20565         },
20566
20567         /**
20568          * Internal function to handle the mousemove event.  Will be invoked
20569          * from the context of the html element.
20570          *
20571          * @TODO figure out what we can do about mouse events lost when the
20572          * user drags objects beyond the window boundary.  Currently we can
20573          * detect this in internet explorer by verifying that the mouse is
20574          * down during the mousemove event.  Firefox doesn't give us the
20575          * button state on the mousemove event.
20576          * @method handleMouseMove
20577          * @param {Event} e the event
20578          * @private
20579          * @static
20580          */
20581         handleMouseMove: function(e) {
20582             if (! this.dragCurrent) {
20583                 return true;
20584             }
20585
20586             // var button = e.which || e.button;
20587
20588             // check for IE mouseup outside of page boundary
20589             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20590                 this.stopEvent(e);
20591                 return this.handleMouseUp(e);
20592             }
20593
20594             if (!this.dragThreshMet) {
20595                 var diffX = Math.abs(this.startX - e.getPageX());
20596                 var diffY = Math.abs(this.startY - e.getPageY());
20597                 if (diffX > this.clickPixelThresh ||
20598                             diffY > this.clickPixelThresh) {
20599                     this.startDrag(this.startX, this.startY);
20600                 }
20601             }
20602
20603             if (this.dragThreshMet) {
20604                 this.dragCurrent.b4Drag(e);
20605                 this.dragCurrent.onDrag(e);
20606                 if(!this.dragCurrent.moveOnly){
20607                     this.fireEvents(e, false);
20608                 }
20609             }
20610
20611             this.stopEvent(e);
20612
20613             return true;
20614         },
20615
20616         /**
20617          * Iterates over all of the DragDrop elements to find ones we are
20618          * hovering over or dropping on
20619          * @method fireEvents
20620          * @param {Event} e the event
20621          * @param {boolean} isDrop is this a drop op or a mouseover op?
20622          * @private
20623          * @static
20624          */
20625         fireEvents: function(e, isDrop) {
20626             var dc = this.dragCurrent;
20627
20628             // If the user did the mouse up outside of the window, we could
20629             // get here even though we have ended the drag.
20630             if (!dc || dc.isLocked()) {
20631                 return;
20632             }
20633
20634             var pt = e.getPoint();
20635
20636             // cache the previous dragOver array
20637             var oldOvers = [];
20638
20639             var outEvts   = [];
20640             var overEvts  = [];
20641             var dropEvts  = [];
20642             var enterEvts = [];
20643
20644             // Check to see if the object(s) we were hovering over is no longer
20645             // being hovered over so we can fire the onDragOut event
20646             for (var i in this.dragOvers) {
20647
20648                 var ddo = this.dragOvers[i];
20649
20650                 if (! this.isTypeOfDD(ddo)) {
20651                     continue;
20652                 }
20653
20654                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20655                     outEvts.push( ddo );
20656                 }
20657
20658                 oldOvers[i] = true;
20659                 delete this.dragOvers[i];
20660             }
20661
20662             for (var sGroup in dc.groups) {
20663
20664                 if ("string" != typeof sGroup) {
20665                     continue;
20666                 }
20667
20668                 for (i in this.ids[sGroup]) {
20669                     var oDD = this.ids[sGroup][i];
20670                     if (! this.isTypeOfDD(oDD)) {
20671                         continue;
20672                     }
20673
20674                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20675                         if (this.isOverTarget(pt, oDD, this.mode)) {
20676                             // look for drop interactions
20677                             if (isDrop) {
20678                                 dropEvts.push( oDD );
20679                             // look for drag enter and drag over interactions
20680                             } else {
20681
20682                                 // initial drag over: dragEnter fires
20683                                 if (!oldOvers[oDD.id]) {
20684                                     enterEvts.push( oDD );
20685                                 // subsequent drag overs: dragOver fires
20686                                 } else {
20687                                     overEvts.push( oDD );
20688                                 }
20689
20690                                 this.dragOvers[oDD.id] = oDD;
20691                             }
20692                         }
20693                     }
20694                 }
20695             }
20696
20697             if (this.mode) {
20698                 if (outEvts.length) {
20699                     dc.b4DragOut(e, outEvts);
20700                     dc.onDragOut(e, outEvts);
20701                 }
20702
20703                 if (enterEvts.length) {
20704                     dc.onDragEnter(e, enterEvts);
20705                 }
20706
20707                 if (overEvts.length) {
20708                     dc.b4DragOver(e, overEvts);
20709                     dc.onDragOver(e, overEvts);
20710                 }
20711
20712                 if (dropEvts.length) {
20713                     dc.b4DragDrop(e, dropEvts);
20714                     dc.onDragDrop(e, dropEvts);
20715                 }
20716
20717             } else {
20718                 // fire dragout events
20719                 var len = 0;
20720                 for (i=0, len=outEvts.length; i<len; ++i) {
20721                     dc.b4DragOut(e, outEvts[i].id);
20722                     dc.onDragOut(e, outEvts[i].id);
20723                 }
20724
20725                 // fire enter events
20726                 for (i=0,len=enterEvts.length; i<len; ++i) {
20727                     // dc.b4DragEnter(e, oDD.id);
20728                     dc.onDragEnter(e, enterEvts[i].id);
20729                 }
20730
20731                 // fire over events
20732                 for (i=0,len=overEvts.length; i<len; ++i) {
20733                     dc.b4DragOver(e, overEvts[i].id);
20734                     dc.onDragOver(e, overEvts[i].id);
20735                 }
20736
20737                 // fire drop events
20738                 for (i=0, len=dropEvts.length; i<len; ++i) {
20739                     dc.b4DragDrop(e, dropEvts[i].id);
20740                     dc.onDragDrop(e, dropEvts[i].id);
20741                 }
20742
20743             }
20744
20745             // notify about a drop that did not find a target
20746             if (isDrop && !dropEvts.length) {
20747                 dc.onInvalidDrop(e);
20748             }
20749
20750         },
20751
20752         /**
20753          * Helper function for getting the best match from the list of drag
20754          * and drop objects returned by the drag and drop events when we are
20755          * in INTERSECT mode.  It returns either the first object that the
20756          * cursor is over, or the object that has the greatest overlap with
20757          * the dragged element.
20758          * @method getBestMatch
20759          * @param  {DragDrop[]} dds The array of drag and drop objects
20760          * targeted
20761          * @return {DragDrop}       The best single match
20762          * @static
20763          */
20764         getBestMatch: function(dds) {
20765             var winner = null;
20766             // Return null if the input is not what we expect
20767             //if (!dds || !dds.length || dds.length == 0) {
20768                // winner = null;
20769             // If there is only one item, it wins
20770             //} else if (dds.length == 1) {
20771
20772             var len = dds.length;
20773
20774             if (len == 1) {
20775                 winner = dds[0];
20776             } else {
20777                 // Loop through the targeted items
20778                 for (var i=0; i<len; ++i) {
20779                     var dd = dds[i];
20780                     // If the cursor is over the object, it wins.  If the
20781                     // cursor is over multiple matches, the first one we come
20782                     // to wins.
20783                     if (dd.cursorIsOver) {
20784                         winner = dd;
20785                         break;
20786                     // Otherwise the object with the most overlap wins
20787                     } else {
20788                         if (!winner ||
20789                             winner.overlap.getArea() < dd.overlap.getArea()) {
20790                             winner = dd;
20791                         }
20792                     }
20793                 }
20794             }
20795
20796             return winner;
20797         },
20798
20799         /**
20800          * Refreshes the cache of the top-left and bottom-right points of the
20801          * drag and drop objects in the specified group(s).  This is in the
20802          * format that is stored in the drag and drop instance, so typical
20803          * usage is:
20804          * <code>
20805          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20806          * </code>
20807          * Alternatively:
20808          * <code>
20809          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20810          * </code>
20811          * @TODO this really should be an indexed array.  Alternatively this
20812          * method could accept both.
20813          * @method refreshCache
20814          * @param {Object} groups an associative array of groups to refresh
20815          * @static
20816          */
20817         refreshCache: function(groups) {
20818             for (var sGroup in groups) {
20819                 if ("string" != typeof sGroup) {
20820                     continue;
20821                 }
20822                 for (var i in this.ids[sGroup]) {
20823                     var oDD = this.ids[sGroup][i];
20824
20825                     if (this.isTypeOfDD(oDD)) {
20826                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20827                         var loc = this.getLocation(oDD);
20828                         if (loc) {
20829                             this.locationCache[oDD.id] = loc;
20830                         } else {
20831                             delete this.locationCache[oDD.id];
20832                             // this will unregister the drag and drop object if
20833                             // the element is not in a usable state
20834                             // oDD.unreg();
20835                         }
20836                     }
20837                 }
20838             }
20839         },
20840
20841         /**
20842          * This checks to make sure an element exists and is in the DOM.  The
20843          * main purpose is to handle cases where innerHTML is used to remove
20844          * drag and drop objects from the DOM.  IE provides an 'unspecified
20845          * error' when trying to access the offsetParent of such an element
20846          * @method verifyEl
20847          * @param {HTMLElement} el the element to check
20848          * @return {boolean} true if the element looks usable
20849          * @static
20850          */
20851         verifyEl: function(el) {
20852             if (el) {
20853                 var parent;
20854                 if(Roo.isIE){
20855                     try{
20856                         parent = el.offsetParent;
20857                     }catch(e){}
20858                 }else{
20859                     parent = el.offsetParent;
20860                 }
20861                 if (parent) {
20862                     return true;
20863                 }
20864             }
20865
20866             return false;
20867         },
20868
20869         /**
20870          * Returns a Region object containing the drag and drop element's position
20871          * and size, including the padding configured for it
20872          * @method getLocation
20873          * @param {DragDrop} oDD the drag and drop object to get the
20874          *                       location for
20875          * @return {Roo.lib.Region} a Region object representing the total area
20876          *                             the element occupies, including any padding
20877          *                             the instance is configured for.
20878          * @static
20879          */
20880         getLocation: function(oDD) {
20881             if (! this.isTypeOfDD(oDD)) {
20882                 return null;
20883             }
20884
20885             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20886
20887             try {
20888                 pos= Roo.lib.Dom.getXY(el);
20889             } catch (e) { }
20890
20891             if (!pos) {
20892                 return null;
20893             }
20894
20895             x1 = pos[0];
20896             x2 = x1 + el.offsetWidth;
20897             y1 = pos[1];
20898             y2 = y1 + el.offsetHeight;
20899
20900             t = y1 - oDD.padding[0];
20901             r = x2 + oDD.padding[1];
20902             b = y2 + oDD.padding[2];
20903             l = x1 - oDD.padding[3];
20904
20905             return new Roo.lib.Region( t, r, b, l );
20906         },
20907
20908         /**
20909          * Checks the cursor location to see if it over the target
20910          * @method isOverTarget
20911          * @param {Roo.lib.Point} pt The point to evaluate
20912          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20913          * @return {boolean} true if the mouse is over the target
20914          * @private
20915          * @static
20916          */
20917         isOverTarget: function(pt, oTarget, intersect) {
20918             // use cache if available
20919             var loc = this.locationCache[oTarget.id];
20920             if (!loc || !this.useCache) {
20921                 loc = this.getLocation(oTarget);
20922                 this.locationCache[oTarget.id] = loc;
20923
20924             }
20925
20926             if (!loc) {
20927                 return false;
20928             }
20929
20930             oTarget.cursorIsOver = loc.contains( pt );
20931
20932             // DragDrop is using this as a sanity check for the initial mousedown
20933             // in this case we are done.  In POINT mode, if the drag obj has no
20934             // contraints, we are also done. Otherwise we need to evaluate the
20935             // location of the target as related to the actual location of the
20936             // dragged element.
20937             var dc = this.dragCurrent;
20938             if (!dc || !dc.getTargetCoord ||
20939                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20940                 return oTarget.cursorIsOver;
20941             }
20942
20943             oTarget.overlap = null;
20944
20945             // Get the current location of the drag element, this is the
20946             // location of the mouse event less the delta that represents
20947             // where the original mousedown happened on the element.  We
20948             // need to consider constraints and ticks as well.
20949             var pos = dc.getTargetCoord(pt.x, pt.y);
20950
20951             var el = dc.getDragEl();
20952             var curRegion = new Roo.lib.Region( pos.y,
20953                                                    pos.x + el.offsetWidth,
20954                                                    pos.y + el.offsetHeight,
20955                                                    pos.x );
20956
20957             var overlap = curRegion.intersect(loc);
20958
20959             if (overlap) {
20960                 oTarget.overlap = overlap;
20961                 return (intersect) ? true : oTarget.cursorIsOver;
20962             } else {
20963                 return false;
20964             }
20965         },
20966
20967         /**
20968          * unload event handler
20969          * @method _onUnload
20970          * @private
20971          * @static
20972          */
20973         _onUnload: function(e, me) {
20974             Roo.dd.DragDropMgr.unregAll();
20975         },
20976
20977         /**
20978          * Cleans up the drag and drop events and objects.
20979          * @method unregAll
20980          * @private
20981          * @static
20982          */
20983         unregAll: function() {
20984
20985             if (this.dragCurrent) {
20986                 this.stopDrag();
20987                 this.dragCurrent = null;
20988             }
20989
20990             this._execOnAll("unreg", []);
20991
20992             for (i in this.elementCache) {
20993                 delete this.elementCache[i];
20994             }
20995
20996             this.elementCache = {};
20997             this.ids = {};
20998         },
20999
21000         /**
21001          * A cache of DOM elements
21002          * @property elementCache
21003          * @private
21004          * @static
21005          */
21006         elementCache: {},
21007
21008         /**
21009          * Get the wrapper for the DOM element specified
21010          * @method getElWrapper
21011          * @param {String} id the id of the element to get
21012          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
21013          * @private
21014          * @deprecated This wrapper isn't that useful
21015          * @static
21016          */
21017         getElWrapper: function(id) {
21018             var oWrapper = this.elementCache[id];
21019             if (!oWrapper || !oWrapper.el) {
21020                 oWrapper = this.elementCache[id] =
21021                     new this.ElementWrapper(Roo.getDom(id));
21022             }
21023             return oWrapper;
21024         },
21025
21026         /**
21027          * Returns the actual DOM element
21028          * @method getElement
21029          * @param {String} id the id of the elment to get
21030          * @return {Object} The element
21031          * @deprecated use Roo.getDom instead
21032          * @static
21033          */
21034         getElement: function(id) {
21035             return Roo.getDom(id);
21036         },
21037
21038         /**
21039          * Returns the style property for the DOM element (i.e.,
21040          * document.getElById(id).style)
21041          * @method getCss
21042          * @param {String} id the id of the elment to get
21043          * @return {Object} The style property of the element
21044          * @deprecated use Roo.getDom instead
21045          * @static
21046          */
21047         getCss: function(id) {
21048             var el = Roo.getDom(id);
21049             return (el) ? el.style : null;
21050         },
21051
21052         /**
21053          * Inner class for cached elements
21054          * @class DragDropMgr.ElementWrapper
21055          * @for DragDropMgr
21056          * @private
21057          * @deprecated
21058          */
21059         ElementWrapper: function(el) {
21060                 /**
21061                  * The element
21062                  * @property el
21063                  */
21064                 this.el = el || null;
21065                 /**
21066                  * The element id
21067                  * @property id
21068                  */
21069                 this.id = this.el && el.id;
21070                 /**
21071                  * A reference to the style property
21072                  * @property css
21073                  */
21074                 this.css = this.el && el.style;
21075             },
21076
21077         /**
21078          * Returns the X position of an html element
21079          * @method getPosX
21080          * @param el the element for which to get the position
21081          * @return {int} the X coordinate
21082          * @for DragDropMgr
21083          * @deprecated use Roo.lib.Dom.getX instead
21084          * @static
21085          */
21086         getPosX: function(el) {
21087             return Roo.lib.Dom.getX(el);
21088         },
21089
21090         /**
21091          * Returns the Y position of an html element
21092          * @method getPosY
21093          * @param el the element for which to get the position
21094          * @return {int} the Y coordinate
21095          * @deprecated use Roo.lib.Dom.getY instead
21096          * @static
21097          */
21098         getPosY: function(el) {
21099             return Roo.lib.Dom.getY(el);
21100         },
21101
21102         /**
21103          * Swap two nodes.  In IE, we use the native method, for others we
21104          * emulate the IE behavior
21105          * @method swapNode
21106          * @param n1 the first node to swap
21107          * @param n2 the other node to swap
21108          * @static
21109          */
21110         swapNode: function(n1, n2) {
21111             if (n1.swapNode) {
21112                 n1.swapNode(n2);
21113             } else {
21114                 var p = n2.parentNode;
21115                 var s = n2.nextSibling;
21116
21117                 if (s == n1) {
21118                     p.insertBefore(n1, n2);
21119                 } else if (n2 == n1.nextSibling) {
21120                     p.insertBefore(n2, n1);
21121                 } else {
21122                     n1.parentNode.replaceChild(n2, n1);
21123                     p.insertBefore(n1, s);
21124                 }
21125             }
21126         },
21127
21128         /**
21129          * Returns the current scroll position
21130          * @method getScroll
21131          * @private
21132          * @static
21133          */
21134         getScroll: function () {
21135             var t, l, dde=document.documentElement, db=document.body;
21136             if (dde && (dde.scrollTop || dde.scrollLeft)) {
21137                 t = dde.scrollTop;
21138                 l = dde.scrollLeft;
21139             } else if (db) {
21140                 t = db.scrollTop;
21141                 l = db.scrollLeft;
21142             } else {
21143
21144             }
21145             return { top: t, left: l };
21146         },
21147
21148         /**
21149          * Returns the specified element style property
21150          * @method getStyle
21151          * @param {HTMLElement} el          the element
21152          * @param {string}      styleProp   the style property
21153          * @return {string} The value of the style property
21154          * @deprecated use Roo.lib.Dom.getStyle
21155          * @static
21156          */
21157         getStyle: function(el, styleProp) {
21158             return Roo.fly(el).getStyle(styleProp);
21159         },
21160
21161         /**
21162          * Gets the scrollTop
21163          * @method getScrollTop
21164          * @return {int} the document's scrollTop
21165          * @static
21166          */
21167         getScrollTop: function () { return this.getScroll().top; },
21168
21169         /**
21170          * Gets the scrollLeft
21171          * @method getScrollLeft
21172          * @return {int} the document's scrollTop
21173          * @static
21174          */
21175         getScrollLeft: function () { return this.getScroll().left; },
21176
21177         /**
21178          * Sets the x/y position of an element to the location of the
21179          * target element.
21180          * @method moveToEl
21181          * @param {HTMLElement} moveEl      The element to move
21182          * @param {HTMLElement} targetEl    The position reference element
21183          * @static
21184          */
21185         moveToEl: function (moveEl, targetEl) {
21186             var aCoord = Roo.lib.Dom.getXY(targetEl);
21187             Roo.lib.Dom.setXY(moveEl, aCoord);
21188         },
21189
21190         /**
21191          * Numeric array sort function
21192          * @method numericSort
21193          * @static
21194          */
21195         numericSort: function(a, b) { return (a - b); },
21196
21197         /**
21198          * Internal counter
21199          * @property _timeoutCount
21200          * @private
21201          * @static
21202          */
21203         _timeoutCount: 0,
21204
21205         /**
21206          * Trying to make the load order less important.  Without this we get
21207          * an error if this file is loaded before the Event Utility.
21208          * @method _addListeners
21209          * @private
21210          * @static
21211          */
21212         _addListeners: function() {
21213             var DDM = Roo.dd.DDM;
21214             if ( Roo.lib.Event && document ) {
21215                 DDM._onLoad();
21216             } else {
21217                 if (DDM._timeoutCount > 2000) {
21218                 } else {
21219                     setTimeout(DDM._addListeners, 10);
21220                     if (document && document.body) {
21221                         DDM._timeoutCount += 1;
21222                     }
21223                 }
21224             }
21225         },
21226
21227         /**
21228          * Recursively searches the immediate parent and all child nodes for
21229          * the handle element in order to determine wheter or not it was
21230          * clicked.
21231          * @method handleWasClicked
21232          * @param node the html element to inspect
21233          * @static
21234          */
21235         handleWasClicked: function(node, id) {
21236             if (this.isHandle(id, node.id)) {
21237                 return true;
21238             } else {
21239                 // check to see if this is a text node child of the one we want
21240                 var p = node.parentNode;
21241
21242                 while (p) {
21243                     if (this.isHandle(id, p.id)) {
21244                         return true;
21245                     } else {
21246                         p = p.parentNode;
21247                     }
21248                 }
21249             }
21250
21251             return false;
21252         }
21253
21254     };
21255
21256 }();
21257
21258 // shorter alias, save a few bytes
21259 Roo.dd.DDM = Roo.dd.DragDropMgr;
21260 Roo.dd.DDM._addListeners();
21261
21262 }/*
21263  * Based on:
21264  * Ext JS Library 1.1.1
21265  * Copyright(c) 2006-2007, Ext JS, LLC.
21266  *
21267  * Originally Released Under LGPL - original licence link has changed is not relivant.
21268  *
21269  * Fork - LGPL
21270  * <script type="text/javascript">
21271  */
21272
21273 /**
21274  * @class Roo.dd.DD
21275  * A DragDrop implementation where the linked element follows the
21276  * mouse cursor during a drag.
21277  * @extends Roo.dd.DragDrop
21278  * @constructor
21279  * @param {String} id the id of the linked element
21280  * @param {String} sGroup the group of related DragDrop items
21281  * @param {object} config an object containing configurable attributes
21282  *                Valid properties for DD:
21283  *                    scroll
21284  */
21285 Roo.dd.DD = function(id, sGroup, config) {
21286     if (id) {
21287         this.init(id, sGroup, config);
21288     }
21289 };
21290
21291 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21292
21293     /**
21294      * When set to true, the utility automatically tries to scroll the browser
21295      * window wehn a drag and drop element is dragged near the viewport boundary.
21296      * Defaults to true.
21297      * @property scroll
21298      * @type boolean
21299      */
21300     scroll: true,
21301
21302     /**
21303      * Sets the pointer offset to the distance between the linked element's top
21304      * left corner and the location the element was clicked
21305      * @method autoOffset
21306      * @param {int} iPageX the X coordinate of the click
21307      * @param {int} iPageY the Y coordinate of the click
21308      */
21309     autoOffset: function(iPageX, iPageY) {
21310         var x = iPageX - this.startPageX;
21311         var y = iPageY - this.startPageY;
21312         this.setDelta(x, y);
21313     },
21314
21315     /**
21316      * Sets the pointer offset.  You can call this directly to force the
21317      * offset to be in a particular location (e.g., pass in 0,0 to set it
21318      * to the center of the object)
21319      * @method setDelta
21320      * @param {int} iDeltaX the distance from the left
21321      * @param {int} iDeltaY the distance from the top
21322      */
21323     setDelta: function(iDeltaX, iDeltaY) {
21324         this.deltaX = iDeltaX;
21325         this.deltaY = iDeltaY;
21326     },
21327
21328     /**
21329      * Sets the drag element to the location of the mousedown or click event,
21330      * maintaining the cursor location relative to the location on the element
21331      * that was clicked.  Override this if you want to place the element in a
21332      * location other than where the cursor is.
21333      * @method setDragElPos
21334      * @param {int} iPageX the X coordinate of the mousedown or drag event
21335      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21336      */
21337     setDragElPos: function(iPageX, iPageY) {
21338         // the first time we do this, we are going to check to make sure
21339         // the element has css positioning
21340
21341         var el = this.getDragEl();
21342         this.alignElWithMouse(el, iPageX, iPageY);
21343     },
21344
21345     /**
21346      * Sets the element to the location of the mousedown or click event,
21347      * maintaining the cursor location relative to the location on the element
21348      * that was clicked.  Override this if you want to place the element in a
21349      * location other than where the cursor is.
21350      * @method alignElWithMouse
21351      * @param {HTMLElement} el the element to move
21352      * @param {int} iPageX the X coordinate of the mousedown or drag event
21353      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21354      */
21355     alignElWithMouse: function(el, iPageX, iPageY) {
21356         var oCoord = this.getTargetCoord(iPageX, iPageY);
21357         var fly = el.dom ? el : Roo.fly(el);
21358         if (!this.deltaSetXY) {
21359             var aCoord = [oCoord.x, oCoord.y];
21360             fly.setXY(aCoord);
21361             var newLeft = fly.getLeft(true);
21362             var newTop  = fly.getTop(true);
21363             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21364         } else {
21365             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21366         }
21367
21368         this.cachePosition(oCoord.x, oCoord.y);
21369         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21370         return oCoord;
21371     },
21372
21373     /**
21374      * Saves the most recent position so that we can reset the constraints and
21375      * tick marks on-demand.  We need to know this so that we can calculate the
21376      * number of pixels the element is offset from its original position.
21377      * @method cachePosition
21378      * @param iPageX the current x position (optional, this just makes it so we
21379      * don't have to look it up again)
21380      * @param iPageY the current y position (optional, this just makes it so we
21381      * don't have to look it up again)
21382      */
21383     cachePosition: function(iPageX, iPageY) {
21384         if (iPageX) {
21385             this.lastPageX = iPageX;
21386             this.lastPageY = iPageY;
21387         } else {
21388             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21389             this.lastPageX = aCoord[0];
21390             this.lastPageY = aCoord[1];
21391         }
21392     },
21393
21394     /**
21395      * Auto-scroll the window if the dragged object has been moved beyond the
21396      * visible window boundary.
21397      * @method autoScroll
21398      * @param {int} x the drag element's x position
21399      * @param {int} y the drag element's y position
21400      * @param {int} h the height of the drag element
21401      * @param {int} w the width of the drag element
21402      * @private
21403      */
21404     autoScroll: function(x, y, h, w) {
21405
21406         if (this.scroll) {
21407             // The client height
21408             var clientH = Roo.lib.Dom.getViewWidth();
21409
21410             // The client width
21411             var clientW = Roo.lib.Dom.getViewHeight();
21412
21413             // The amt scrolled down
21414             var st = this.DDM.getScrollTop();
21415
21416             // The amt scrolled right
21417             var sl = this.DDM.getScrollLeft();
21418
21419             // Location of the bottom of the element
21420             var bot = h + y;
21421
21422             // Location of the right of the element
21423             var right = w + x;
21424
21425             // The distance from the cursor to the bottom of the visible area,
21426             // adjusted so that we don't scroll if the cursor is beyond the
21427             // element drag constraints
21428             var toBot = (clientH + st - y - this.deltaY);
21429
21430             // The distance from the cursor to the right of the visible area
21431             var toRight = (clientW + sl - x - this.deltaX);
21432
21433
21434             // How close to the edge the cursor must be before we scroll
21435             // var thresh = (document.all) ? 100 : 40;
21436             var thresh = 40;
21437
21438             // How many pixels to scroll per autoscroll op.  This helps to reduce
21439             // clunky scrolling. IE is more sensitive about this ... it needs this
21440             // value to be higher.
21441             var scrAmt = (document.all) ? 80 : 30;
21442
21443             // Scroll down if we are near the bottom of the visible page and the
21444             // obj extends below the crease
21445             if ( bot > clientH && toBot < thresh ) {
21446                 window.scrollTo(sl, st + scrAmt);
21447             }
21448
21449             // Scroll up if the window is scrolled down and the top of the object
21450             // goes above the top border
21451             if ( y < st && st > 0 && y - st < thresh ) {
21452                 window.scrollTo(sl, st - scrAmt);
21453             }
21454
21455             // Scroll right if the obj is beyond the right border and the cursor is
21456             // near the border.
21457             if ( right > clientW && toRight < thresh ) {
21458                 window.scrollTo(sl + scrAmt, st);
21459             }
21460
21461             // Scroll left if the window has been scrolled to the right and the obj
21462             // extends past the left border
21463             if ( x < sl && sl > 0 && x - sl < thresh ) {
21464                 window.scrollTo(sl - scrAmt, st);
21465             }
21466         }
21467     },
21468
21469     /**
21470      * Finds the location the element should be placed if we want to move
21471      * it to where the mouse location less the click offset would place us.
21472      * @method getTargetCoord
21473      * @param {int} iPageX the X coordinate of the click
21474      * @param {int} iPageY the Y coordinate of the click
21475      * @return an object that contains the coordinates (Object.x and Object.y)
21476      * @private
21477      */
21478     getTargetCoord: function(iPageX, iPageY) {
21479
21480
21481         var x = iPageX - this.deltaX;
21482         var y = iPageY - this.deltaY;
21483
21484         if (this.constrainX) {
21485             if (x < this.minX) { x = this.minX; }
21486             if (x > this.maxX) { x = this.maxX; }
21487         }
21488
21489         if (this.constrainY) {
21490             if (y < this.minY) { y = this.minY; }
21491             if (y > this.maxY) { y = this.maxY; }
21492         }
21493
21494         x = this.getTick(x, this.xTicks);
21495         y = this.getTick(y, this.yTicks);
21496
21497
21498         return {x:x, y:y};
21499     },
21500
21501     /*
21502      * Sets up config options specific to this class. Overrides
21503      * Roo.dd.DragDrop, but all versions of this method through the
21504      * inheritance chain are called
21505      */
21506     applyConfig: function() {
21507         Roo.dd.DD.superclass.applyConfig.call(this);
21508         this.scroll = (this.config.scroll !== false);
21509     },
21510
21511     /*
21512      * Event that fires prior to the onMouseDown event.  Overrides
21513      * Roo.dd.DragDrop.
21514      */
21515     b4MouseDown: function(e) {
21516         // this.resetConstraints();
21517         this.autoOffset(e.getPageX(),
21518                             e.getPageY());
21519     },
21520
21521     /*
21522      * Event that fires prior to the onDrag event.  Overrides
21523      * Roo.dd.DragDrop.
21524      */
21525     b4Drag: function(e) {
21526         this.setDragElPos(e.getPageX(),
21527                             e.getPageY());
21528     },
21529
21530     toString: function() {
21531         return ("DD " + this.id);
21532     }
21533
21534     //////////////////////////////////////////////////////////////////////////
21535     // Debugging ygDragDrop events that can be overridden
21536     //////////////////////////////////////////////////////////////////////////
21537     /*
21538     startDrag: function(x, y) {
21539     },
21540
21541     onDrag: function(e) {
21542     },
21543
21544     onDragEnter: function(e, id) {
21545     },
21546
21547     onDragOver: function(e, id) {
21548     },
21549
21550     onDragOut: function(e, id) {
21551     },
21552
21553     onDragDrop: function(e, id) {
21554     },
21555
21556     endDrag: function(e) {
21557     }
21558
21559     */
21560
21561 });/*
21562  * Based on:
21563  * Ext JS Library 1.1.1
21564  * Copyright(c) 2006-2007, Ext JS, LLC.
21565  *
21566  * Originally Released Under LGPL - original licence link has changed is not relivant.
21567  *
21568  * Fork - LGPL
21569  * <script type="text/javascript">
21570  */
21571
21572 /**
21573  * @class Roo.dd.DDProxy
21574  * A DragDrop implementation that inserts an empty, bordered div into
21575  * the document that follows the cursor during drag operations.  At the time of
21576  * the click, the frame div is resized to the dimensions of the linked html
21577  * element, and moved to the exact location of the linked element.
21578  *
21579  * References to the "frame" element refer to the single proxy element that
21580  * was created to be dragged in place of all DDProxy elements on the
21581  * page.
21582  *
21583  * @extends Roo.dd.DD
21584  * @constructor
21585  * @param {String} id the id of the linked html element
21586  * @param {String} sGroup the group of related DragDrop objects
21587  * @param {object} config an object containing configurable attributes
21588  *                Valid properties for DDProxy in addition to those in DragDrop:
21589  *                   resizeFrame, centerFrame, dragElId
21590  */
21591 Roo.dd.DDProxy = function(id, sGroup, config) {
21592     if (id) {
21593         this.init(id, sGroup, config);
21594         this.initFrame();
21595     }
21596 };
21597
21598 /**
21599  * The default drag frame div id
21600  * @property Roo.dd.DDProxy.dragElId
21601  * @type String
21602  * @static
21603  */
21604 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21605
21606 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21607
21608     /**
21609      * By default we resize the drag frame to be the same size as the element
21610      * we want to drag (this is to get the frame effect).  We can turn it off
21611      * if we want a different behavior.
21612      * @property resizeFrame
21613      * @type boolean
21614      */
21615     resizeFrame: true,
21616
21617     /**
21618      * By default the frame is positioned exactly where the drag element is, so
21619      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21620      * you do not have constraints on the obj is to have the drag frame centered
21621      * around the cursor.  Set centerFrame to true for this effect.
21622      * @property centerFrame
21623      * @type boolean
21624      */
21625     centerFrame: false,
21626
21627     /**
21628      * Creates the proxy element if it does not yet exist
21629      * @method createFrame
21630      */
21631     createFrame: function() {
21632         var self = this;
21633         var body = document.body;
21634
21635         if (!body || !body.firstChild) {
21636             setTimeout( function() { self.createFrame(); }, 50 );
21637             return;
21638         }
21639
21640         var div = this.getDragEl();
21641
21642         if (!div) {
21643             div    = document.createElement("div");
21644             div.id = this.dragElId;
21645             var s  = div.style;
21646
21647             s.position   = "absolute";
21648             s.visibility = "hidden";
21649             s.cursor     = "move";
21650             s.border     = "2px solid #aaa";
21651             s.zIndex     = 999;
21652
21653             // appendChild can blow up IE if invoked prior to the window load event
21654             // while rendering a table.  It is possible there are other scenarios
21655             // that would cause this to happen as well.
21656             body.insertBefore(div, body.firstChild);
21657         }
21658     },
21659
21660     /**
21661      * Initialization for the drag frame element.  Must be called in the
21662      * constructor of all subclasses
21663      * @method initFrame
21664      */
21665     initFrame: function() {
21666         this.createFrame();
21667     },
21668
21669     applyConfig: function() {
21670         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21671
21672         this.resizeFrame = (this.config.resizeFrame !== false);
21673         this.centerFrame = (this.config.centerFrame);
21674         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21675     },
21676
21677     /**
21678      * Resizes the drag frame to the dimensions of the clicked object, positions
21679      * it over the object, and finally displays it
21680      * @method showFrame
21681      * @param {int} iPageX X click position
21682      * @param {int} iPageY Y click position
21683      * @private
21684      */
21685     showFrame: function(iPageX, iPageY) {
21686         var el = this.getEl();
21687         var dragEl = this.getDragEl();
21688         var s = dragEl.style;
21689
21690         this._resizeProxy();
21691
21692         if (this.centerFrame) {
21693             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21694                            Math.round(parseInt(s.height, 10)/2) );
21695         }
21696
21697         this.setDragElPos(iPageX, iPageY);
21698
21699         Roo.fly(dragEl).show();
21700     },
21701
21702     /**
21703      * The proxy is automatically resized to the dimensions of the linked
21704      * element when a drag is initiated, unless resizeFrame is set to false
21705      * @method _resizeProxy
21706      * @private
21707      */
21708     _resizeProxy: function() {
21709         if (this.resizeFrame) {
21710             var el = this.getEl();
21711             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21712         }
21713     },
21714
21715     // overrides Roo.dd.DragDrop
21716     b4MouseDown: function(e) {
21717         var x = e.getPageX();
21718         var y = e.getPageY();
21719         this.autoOffset(x, y);
21720         this.setDragElPos(x, y);
21721     },
21722
21723     // overrides Roo.dd.DragDrop
21724     b4StartDrag: function(x, y) {
21725         // show the drag frame
21726         this.showFrame(x, y);
21727     },
21728
21729     // overrides Roo.dd.DragDrop
21730     b4EndDrag: function(e) {
21731         Roo.fly(this.getDragEl()).hide();
21732     },
21733
21734     // overrides Roo.dd.DragDrop
21735     // By default we try to move the element to the last location of the frame.
21736     // This is so that the default behavior mirrors that of Roo.dd.DD.
21737     endDrag: function(e) {
21738
21739         var lel = this.getEl();
21740         var del = this.getDragEl();
21741
21742         // Show the drag frame briefly so we can get its position
21743         del.style.visibility = "";
21744
21745         this.beforeMove();
21746         // Hide the linked element before the move to get around a Safari
21747         // rendering bug.
21748         lel.style.visibility = "hidden";
21749         Roo.dd.DDM.moveToEl(lel, del);
21750         del.style.visibility = "hidden";
21751         lel.style.visibility = "";
21752
21753         this.afterDrag();
21754     },
21755
21756     beforeMove : function(){
21757
21758     },
21759
21760     afterDrag : function(){
21761
21762     },
21763
21764     toString: function() {
21765         return ("DDProxy " + this.id);
21766     }
21767
21768 });
21769 /*
21770  * Based on:
21771  * Ext JS Library 1.1.1
21772  * Copyright(c) 2006-2007, Ext JS, LLC.
21773  *
21774  * Originally Released Under LGPL - original licence link has changed is not relivant.
21775  *
21776  * Fork - LGPL
21777  * <script type="text/javascript">
21778  */
21779
21780  /**
21781  * @class Roo.dd.DDTarget
21782  * A DragDrop implementation that does not move, but can be a drop
21783  * target.  You would get the same result by simply omitting implementation
21784  * for the event callbacks, but this way we reduce the processing cost of the
21785  * event listener and the callbacks.
21786  * @extends Roo.dd.DragDrop
21787  * @constructor
21788  * @param {String} id the id of the element that is a drop target
21789  * @param {String} sGroup the group of related DragDrop objects
21790  * @param {object} config an object containing configurable attributes
21791  *                 Valid properties for DDTarget in addition to those in
21792  *                 DragDrop:
21793  *                    none
21794  */
21795 Roo.dd.DDTarget = function(id, sGroup, config) {
21796     if (id) {
21797         this.initTarget(id, sGroup, config);
21798     }
21799     if (config && (config.listeners || config.events)) { 
21800         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21801             listeners : config.listeners || {}, 
21802             events : config.events || {} 
21803         });    
21804     }
21805 };
21806
21807 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21808 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21809     toString: function() {
21810         return ("DDTarget " + this.id);
21811     }
21812 });
21813 /*
21814  * Based on:
21815  * Ext JS Library 1.1.1
21816  * Copyright(c) 2006-2007, Ext JS, LLC.
21817  *
21818  * Originally Released Under LGPL - original licence link has changed is not relivant.
21819  *
21820  * Fork - LGPL
21821  * <script type="text/javascript">
21822  */
21823  
21824
21825 /**
21826  * @class Roo.dd.ScrollManager
21827  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21828  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21829  * @singleton
21830  */
21831 Roo.dd.ScrollManager = function(){
21832     var ddm = Roo.dd.DragDropMgr;
21833     var els = {};
21834     var dragEl = null;
21835     var proc = {};
21836     
21837     
21838     
21839     var onStop = function(e){
21840         dragEl = null;
21841         clearProc();
21842     };
21843     
21844     var triggerRefresh = function(){
21845         if(ddm.dragCurrent){
21846              ddm.refreshCache(ddm.dragCurrent.groups);
21847         }
21848     };
21849     
21850     var doScroll = function(){
21851         if(ddm.dragCurrent){
21852             var dds = Roo.dd.ScrollManager;
21853             if(!dds.animate){
21854                 if(proc.el.scroll(proc.dir, dds.increment)){
21855                     triggerRefresh();
21856                 }
21857             }else{
21858                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21859             }
21860         }
21861     };
21862     
21863     var clearProc = function(){
21864         if(proc.id){
21865             clearInterval(proc.id);
21866         }
21867         proc.id = 0;
21868         proc.el = null;
21869         proc.dir = "";
21870     };
21871     
21872     var startProc = function(el, dir){
21873          Roo.log('scroll startproc');
21874         clearProc();
21875         proc.el = el;
21876         proc.dir = dir;
21877         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21878     };
21879     
21880     var onFire = function(e, isDrop){
21881        
21882         if(isDrop || !ddm.dragCurrent){ return; }
21883         var dds = Roo.dd.ScrollManager;
21884         if(!dragEl || dragEl != ddm.dragCurrent){
21885             dragEl = ddm.dragCurrent;
21886             // refresh regions on drag start
21887             dds.refreshCache();
21888         }
21889         
21890         var xy = Roo.lib.Event.getXY(e);
21891         var pt = new Roo.lib.Point(xy[0], xy[1]);
21892         for(var id in els){
21893             var el = els[id], r = el._region;
21894             if(r && r.contains(pt) && el.isScrollable()){
21895                 if(r.bottom - pt.y <= dds.thresh){
21896                     if(proc.el != el){
21897                         startProc(el, "down");
21898                     }
21899                     return;
21900                 }else if(r.right - pt.x <= dds.thresh){
21901                     if(proc.el != el){
21902                         startProc(el, "left");
21903                     }
21904                     return;
21905                 }else if(pt.y - r.top <= dds.thresh){
21906                     if(proc.el != el){
21907                         startProc(el, "up");
21908                     }
21909                     return;
21910                 }else if(pt.x - r.left <= dds.thresh){
21911                     if(proc.el != el){
21912                         startProc(el, "right");
21913                     }
21914                     return;
21915                 }
21916             }
21917         }
21918         clearProc();
21919     };
21920     
21921     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21922     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21923     
21924     return {
21925         /**
21926          * Registers new overflow element(s) to auto scroll
21927          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21928          */
21929         register : function(el){
21930             if(el instanceof Array){
21931                 for(var i = 0, len = el.length; i < len; i++) {
21932                         this.register(el[i]);
21933                 }
21934             }else{
21935                 el = Roo.get(el);
21936                 els[el.id] = el;
21937             }
21938             Roo.dd.ScrollManager.els = els;
21939         },
21940         
21941         /**
21942          * Unregisters overflow element(s) so they are no longer scrolled
21943          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21944          */
21945         unregister : function(el){
21946             if(el instanceof Array){
21947                 for(var i = 0, len = el.length; i < len; i++) {
21948                         this.unregister(el[i]);
21949                 }
21950             }else{
21951                 el = Roo.get(el);
21952                 delete els[el.id];
21953             }
21954         },
21955         
21956         /**
21957          * The number of pixels from the edge of a container the pointer needs to be to 
21958          * trigger scrolling (defaults to 25)
21959          * @type Number
21960          */
21961         thresh : 25,
21962         
21963         /**
21964          * The number of pixels to scroll in each scroll increment (defaults to 50)
21965          * @type Number
21966          */
21967         increment : 100,
21968         
21969         /**
21970          * The frequency of scrolls in milliseconds (defaults to 500)
21971          * @type Number
21972          */
21973         frequency : 500,
21974         
21975         /**
21976          * True to animate the scroll (defaults to true)
21977          * @type Boolean
21978          */
21979         animate: true,
21980         
21981         /**
21982          * The animation duration in seconds - 
21983          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21984          * @type Number
21985          */
21986         animDuration: .4,
21987         
21988         /**
21989          * Manually trigger a cache refresh.
21990          */
21991         refreshCache : function(){
21992             for(var id in els){
21993                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21994                     els[id]._region = els[id].getRegion();
21995                 }
21996             }
21997         }
21998     };
21999 }();/*
22000  * Based on:
22001  * Ext JS Library 1.1.1
22002  * Copyright(c) 2006-2007, Ext JS, LLC.
22003  *
22004  * Originally Released Under LGPL - original licence link has changed is not relivant.
22005  *
22006  * Fork - LGPL
22007  * <script type="text/javascript">
22008  */
22009  
22010
22011 /**
22012  * @class Roo.dd.Registry
22013  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
22014  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
22015  * @singleton
22016  */
22017 Roo.dd.Registry = function(){
22018     var elements = {}; 
22019     var handles = {}; 
22020     var autoIdSeed = 0;
22021
22022     var getId = function(el, autogen){
22023         if(typeof el == "string"){
22024             return el;
22025         }
22026         var id = el.id;
22027         if(!id && autogen !== false){
22028             id = "roodd-" + (++autoIdSeed);
22029             el.id = id;
22030         }
22031         return id;
22032     };
22033     
22034     return {
22035     /**
22036      * Register a drag drop element
22037      * @param {String|HTMLElement} element The id or DOM node to register
22038      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
22039      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
22040      * knows how to interpret, plus there are some specific properties known to the Registry that should be
22041      * populated in the data object (if applicable):
22042      * <pre>
22043 Value      Description<br />
22044 ---------  ------------------------------------------<br />
22045 handles    Array of DOM nodes that trigger dragging<br />
22046            for the element being registered<br />
22047 isHandle   True if the element passed in triggers<br />
22048            dragging itself, else false
22049 </pre>
22050      */
22051         register : function(el, data){
22052             data = data || {};
22053             if(typeof el == "string"){
22054                 el = document.getElementById(el);
22055             }
22056             data.ddel = el;
22057             elements[getId(el)] = data;
22058             if(data.isHandle !== false){
22059                 handles[data.ddel.id] = data;
22060             }
22061             if(data.handles){
22062                 var hs = data.handles;
22063                 for(var i = 0, len = hs.length; i < len; i++){
22064                         handles[getId(hs[i])] = data;
22065                 }
22066             }
22067         },
22068
22069     /**
22070      * Unregister a drag drop element
22071      * @param {String|HTMLElement}  element The id or DOM node to unregister
22072      */
22073         unregister : function(el){
22074             var id = getId(el, false);
22075             var data = elements[id];
22076             if(data){
22077                 delete elements[id];
22078                 if(data.handles){
22079                     var hs = data.handles;
22080                     for(var i = 0, len = hs.length; i < len; i++){
22081                         delete handles[getId(hs[i], false)];
22082                     }
22083                 }
22084             }
22085         },
22086
22087     /**
22088      * Returns the handle registered for a DOM Node by id
22089      * @param {String|HTMLElement} id The DOM node or id to look up
22090      * @return {Object} handle The custom handle data
22091      */
22092         getHandle : function(id){
22093             if(typeof id != "string"){ // must be element?
22094                 id = id.id;
22095             }
22096             return handles[id];
22097         },
22098
22099     /**
22100      * Returns the handle that is registered for the DOM node that is the target of the event
22101      * @param {Event} e The event
22102      * @return {Object} handle The custom handle data
22103      */
22104         getHandleFromEvent : function(e){
22105             var t = Roo.lib.Event.getTarget(e);
22106             return t ? handles[t.id] : null;
22107         },
22108
22109     /**
22110      * Returns a custom data object that is registered for a DOM node by id
22111      * @param {String|HTMLElement} id The DOM node or id to look up
22112      * @return {Object} data The custom data
22113      */
22114         getTarget : function(id){
22115             if(typeof id != "string"){ // must be element?
22116                 id = id.id;
22117             }
22118             return elements[id];
22119         },
22120
22121     /**
22122      * Returns a custom data object that is registered for the DOM node that is the target of the event
22123      * @param {Event} e The event
22124      * @return {Object} data The custom data
22125      */
22126         getTargetFromEvent : function(e){
22127             var t = Roo.lib.Event.getTarget(e);
22128             return t ? elements[t.id] || handles[t.id] : null;
22129         }
22130     };
22131 }();/*
22132  * Based on:
22133  * Ext JS Library 1.1.1
22134  * Copyright(c) 2006-2007, Ext JS, LLC.
22135  *
22136  * Originally Released Under LGPL - original licence link has changed is not relivant.
22137  *
22138  * Fork - LGPL
22139  * <script type="text/javascript">
22140  */
22141  
22142
22143 /**
22144  * @class Roo.dd.StatusProxy
22145  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
22146  * default drag proxy used by all Roo.dd components.
22147  * @constructor
22148  * @param {Object} config
22149  */
22150 Roo.dd.StatusProxy = function(config){
22151     Roo.apply(this, config);
22152     this.id = this.id || Roo.id();
22153     this.el = new Roo.Layer({
22154         dh: {
22155             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22156                 {tag: "div", cls: "x-dd-drop-icon"},
22157                 {tag: "div", cls: "x-dd-drag-ghost"}
22158             ]
22159         }, 
22160         shadow: !config || config.shadow !== false
22161     });
22162     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22163     this.dropStatus = this.dropNotAllowed;
22164 };
22165
22166 Roo.dd.StatusProxy.prototype = {
22167     /**
22168      * @cfg {String} dropAllowed
22169      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22170      */
22171     dropAllowed : "x-dd-drop-ok",
22172     /**
22173      * @cfg {String} dropNotAllowed
22174      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22175      */
22176     dropNotAllowed : "x-dd-drop-nodrop",
22177
22178     /**
22179      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22180      * over the current target element.
22181      * @param {String} cssClass The css class for the new drop status indicator image
22182      */
22183     setStatus : function(cssClass){
22184         cssClass = cssClass || this.dropNotAllowed;
22185         if(this.dropStatus != cssClass){
22186             this.el.replaceClass(this.dropStatus, cssClass);
22187             this.dropStatus = cssClass;
22188         }
22189     },
22190
22191     /**
22192      * Resets the status indicator to the default dropNotAllowed value
22193      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22194      */
22195     reset : function(clearGhost){
22196         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22197         this.dropStatus = this.dropNotAllowed;
22198         if(clearGhost){
22199             this.ghost.update("");
22200         }
22201     },
22202
22203     /**
22204      * Updates the contents of the ghost element
22205      * @param {String} html The html that will replace the current innerHTML of the ghost element
22206      */
22207     update : function(html){
22208         if(typeof html == "string"){
22209             this.ghost.update(html);
22210         }else{
22211             this.ghost.update("");
22212             html.style.margin = "0";
22213             this.ghost.dom.appendChild(html);
22214         }
22215         // ensure float = none set?? cant remember why though.
22216         var el = this.ghost.dom.firstChild;
22217                 if(el){
22218                         Roo.fly(el).setStyle('float', 'none');
22219                 }
22220     },
22221     
22222     /**
22223      * Returns the underlying proxy {@link Roo.Layer}
22224      * @return {Roo.Layer} el
22225     */
22226     getEl : function(){
22227         return this.el;
22228     },
22229
22230     /**
22231      * Returns the ghost element
22232      * @return {Roo.Element} el
22233      */
22234     getGhost : function(){
22235         return this.ghost;
22236     },
22237
22238     /**
22239      * Hides the proxy
22240      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22241      */
22242     hide : function(clear){
22243         this.el.hide();
22244         if(clear){
22245             this.reset(true);
22246         }
22247     },
22248
22249     /**
22250      * Stops the repair animation if it's currently running
22251      */
22252     stop : function(){
22253         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22254             this.anim.stop();
22255         }
22256     },
22257
22258     /**
22259      * Displays this proxy
22260      */
22261     show : function(){
22262         this.el.show();
22263     },
22264
22265     /**
22266      * Force the Layer to sync its shadow and shim positions to the element
22267      */
22268     sync : function(){
22269         this.el.sync();
22270     },
22271
22272     /**
22273      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22274      * invalid drop operation by the item being dragged.
22275      * @param {Array} xy The XY position of the element ([x, y])
22276      * @param {Function} callback The function to call after the repair is complete
22277      * @param {Object} scope The scope in which to execute the callback
22278      */
22279     repair : function(xy, callback, scope){
22280         this.callback = callback;
22281         this.scope = scope;
22282         if(xy && this.animRepair !== false){
22283             this.el.addClass("x-dd-drag-repair");
22284             this.el.hideUnders(true);
22285             this.anim = this.el.shift({
22286                 duration: this.repairDuration || .5,
22287                 easing: 'easeOut',
22288                 xy: xy,
22289                 stopFx: true,
22290                 callback: this.afterRepair,
22291                 scope: this
22292             });
22293         }else{
22294             this.afterRepair();
22295         }
22296     },
22297
22298     // private
22299     afterRepair : function(){
22300         this.hide(true);
22301         if(typeof this.callback == "function"){
22302             this.callback.call(this.scope || this);
22303         }
22304         this.callback = null;
22305         this.scope = null;
22306     }
22307 };/*
22308  * Based on:
22309  * Ext JS Library 1.1.1
22310  * Copyright(c) 2006-2007, Ext JS, LLC.
22311  *
22312  * Originally Released Under LGPL - original licence link has changed is not relivant.
22313  *
22314  * Fork - LGPL
22315  * <script type="text/javascript">
22316  */
22317
22318 /**
22319  * @class Roo.dd.DragSource
22320  * @extends Roo.dd.DDProxy
22321  * A simple class that provides the basic implementation needed to make any element draggable.
22322  * @constructor
22323  * @param {String/HTMLElement/Element} el The container element
22324  * @param {Object} config
22325  */
22326 Roo.dd.DragSource = function(el, config){
22327     this.el = Roo.get(el);
22328     this.dragData = {};
22329     
22330     Roo.apply(this, config);
22331     
22332     if(!this.proxy){
22333         this.proxy = new Roo.dd.StatusProxy();
22334     }
22335
22336     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22337           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22338     
22339     this.dragging = false;
22340 };
22341
22342 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22343     /**
22344      * @cfg {String} dropAllowed
22345      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22346      */
22347     dropAllowed : "x-dd-drop-ok",
22348     /**
22349      * @cfg {String} dropNotAllowed
22350      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22351      */
22352     dropNotAllowed : "x-dd-drop-nodrop",
22353
22354     /**
22355      * Returns the data object associated with this drag source
22356      * @return {Object} data An object containing arbitrary data
22357      */
22358     getDragData : function(e){
22359         return this.dragData;
22360     },
22361
22362     // private
22363     onDragEnter : function(e, id){
22364         var target = Roo.dd.DragDropMgr.getDDById(id);
22365         this.cachedTarget = target;
22366         if(this.beforeDragEnter(target, e, id) !== false){
22367             if(target.isNotifyTarget){
22368                 var status = target.notifyEnter(this, e, this.dragData);
22369                 this.proxy.setStatus(status);
22370             }else{
22371                 this.proxy.setStatus(this.dropAllowed);
22372             }
22373             
22374             if(this.afterDragEnter){
22375                 /**
22376                  * An empty function by default, but provided so that you can perform a custom action
22377                  * when the dragged item enters the drop target by providing an implementation.
22378                  * @param {Roo.dd.DragDrop} target The drop target
22379                  * @param {Event} e The event object
22380                  * @param {String} id The id of the dragged element
22381                  * @method afterDragEnter
22382                  */
22383                 this.afterDragEnter(target, e, id);
22384             }
22385         }
22386     },
22387
22388     /**
22389      * An empty function by default, but provided so that you can perform a custom action
22390      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22391      * @param {Roo.dd.DragDrop} target The drop target
22392      * @param {Event} e The event object
22393      * @param {String} id The id of the dragged element
22394      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22395      */
22396     beforeDragEnter : function(target, e, id){
22397         return true;
22398     },
22399
22400     // private
22401     alignElWithMouse: function() {
22402         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22403         this.proxy.sync();
22404     },
22405
22406     // private
22407     onDragOver : function(e, id){
22408         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22409         if(this.beforeDragOver(target, e, id) !== false){
22410             if(target.isNotifyTarget){
22411                 var status = target.notifyOver(this, e, this.dragData);
22412                 this.proxy.setStatus(status);
22413             }
22414
22415             if(this.afterDragOver){
22416                 /**
22417                  * An empty function by default, but provided so that you can perform a custom action
22418                  * while the dragged item is over the drop target by providing an implementation.
22419                  * @param {Roo.dd.DragDrop} target The drop target
22420                  * @param {Event} e The event object
22421                  * @param {String} id The id of the dragged element
22422                  * @method afterDragOver
22423                  */
22424                 this.afterDragOver(target, e, id);
22425             }
22426         }
22427     },
22428
22429     /**
22430      * An empty function by default, but provided so that you can perform a custom action
22431      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22432      * @param {Roo.dd.DragDrop} target The drop target
22433      * @param {Event} e The event object
22434      * @param {String} id The id of the dragged element
22435      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22436      */
22437     beforeDragOver : function(target, e, id){
22438         return true;
22439     },
22440
22441     // private
22442     onDragOut : function(e, id){
22443         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22444         if(this.beforeDragOut(target, e, id) !== false){
22445             if(target.isNotifyTarget){
22446                 target.notifyOut(this, e, this.dragData);
22447             }
22448             this.proxy.reset();
22449             if(this.afterDragOut){
22450                 /**
22451                  * An empty function by default, but provided so that you can perform a custom action
22452                  * after the dragged item is dragged out of the target without dropping.
22453                  * @param {Roo.dd.DragDrop} target The drop target
22454                  * @param {Event} e The event object
22455                  * @param {String} id The id of the dragged element
22456                  * @method afterDragOut
22457                  */
22458                 this.afterDragOut(target, e, id);
22459             }
22460         }
22461         this.cachedTarget = null;
22462     },
22463
22464     /**
22465      * An empty function by default, but provided so that you can perform a custom action before the dragged
22466      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22467      * @param {Roo.dd.DragDrop} target The drop target
22468      * @param {Event} e The event object
22469      * @param {String} id The id of the dragged element
22470      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22471      */
22472     beforeDragOut : function(target, e, id){
22473         return true;
22474     },
22475     
22476     // private
22477     onDragDrop : function(e, id){
22478         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22479         if(this.beforeDragDrop(target, e, id) !== false){
22480             if(target.isNotifyTarget){
22481                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22482                     this.onValidDrop(target, e, id);
22483                 }else{
22484                     this.onInvalidDrop(target, e, id);
22485                 }
22486             }else{
22487                 this.onValidDrop(target, e, id);
22488             }
22489             
22490             if(this.afterDragDrop){
22491                 /**
22492                  * An empty function by default, but provided so that you can perform a custom action
22493                  * after a valid drag drop has occurred by providing an implementation.
22494                  * @param {Roo.dd.DragDrop} target The drop target
22495                  * @param {Event} e The event object
22496                  * @param {String} id The id of the dropped element
22497                  * @method afterDragDrop
22498                  */
22499                 this.afterDragDrop(target, e, id);
22500             }
22501         }
22502         delete this.cachedTarget;
22503     },
22504
22505     /**
22506      * An empty function by default, but provided so that you can perform a custom action before the dragged
22507      * item is dropped onto the target and optionally cancel the onDragDrop.
22508      * @param {Roo.dd.DragDrop} target The drop target
22509      * @param {Event} e The event object
22510      * @param {String} id The id of the dragged element
22511      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22512      */
22513     beforeDragDrop : function(target, e, id){
22514         return true;
22515     },
22516
22517     // private
22518     onValidDrop : function(target, e, id){
22519         this.hideProxy();
22520         if(this.afterValidDrop){
22521             /**
22522              * An empty function by default, but provided so that you can perform a custom action
22523              * after a valid drop has occurred by providing an implementation.
22524              * @param {Object} target The target DD 
22525              * @param {Event} e The event object
22526              * @param {String} id The id of the dropped element
22527              * @method afterInvalidDrop
22528              */
22529             this.afterValidDrop(target, e, id);
22530         }
22531     },
22532
22533     // private
22534     getRepairXY : function(e, data){
22535         return this.el.getXY();  
22536     },
22537
22538     // private
22539     onInvalidDrop : function(target, e, id){
22540         this.beforeInvalidDrop(target, e, id);
22541         if(this.cachedTarget){
22542             if(this.cachedTarget.isNotifyTarget){
22543                 this.cachedTarget.notifyOut(this, e, this.dragData);
22544             }
22545             this.cacheTarget = null;
22546         }
22547         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22548
22549         if(this.afterInvalidDrop){
22550             /**
22551              * An empty function by default, but provided so that you can perform a custom action
22552              * after an invalid drop has occurred by providing an implementation.
22553              * @param {Event} e The event object
22554              * @param {String} id The id of the dropped element
22555              * @method afterInvalidDrop
22556              */
22557             this.afterInvalidDrop(e, id);
22558         }
22559     },
22560
22561     // private
22562     afterRepair : function(){
22563         if(Roo.enableFx){
22564             this.el.highlight(this.hlColor || "c3daf9");
22565         }
22566         this.dragging = false;
22567     },
22568
22569     /**
22570      * An empty function by default, but provided so that you can perform a custom action after an invalid
22571      * drop has occurred.
22572      * @param {Roo.dd.DragDrop} target The drop target
22573      * @param {Event} e The event object
22574      * @param {String} id The id of the dragged element
22575      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22576      */
22577     beforeInvalidDrop : function(target, e, id){
22578         return true;
22579     },
22580
22581     // private
22582     handleMouseDown : function(e){
22583         if(this.dragging) {
22584             return;
22585         }
22586         var data = this.getDragData(e);
22587         if(data && this.onBeforeDrag(data, e) !== false){
22588             this.dragData = data;
22589             this.proxy.stop();
22590             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22591         } 
22592     },
22593
22594     /**
22595      * An empty function by default, but provided so that you can perform a custom action before the initial
22596      * drag event begins and optionally cancel it.
22597      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22598      * @param {Event} e The event object
22599      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22600      */
22601     onBeforeDrag : function(data, e){
22602         return true;
22603     },
22604
22605     /**
22606      * An empty function by default, but provided so that you can perform a custom action once the initial
22607      * drag event has begun.  The drag cannot be canceled from this function.
22608      * @param {Number} x The x position of the click on the dragged object
22609      * @param {Number} y The y position of the click on the dragged object
22610      */
22611     onStartDrag : Roo.emptyFn,
22612
22613     // private - YUI override
22614     startDrag : function(x, y){
22615         this.proxy.reset();
22616         this.dragging = true;
22617         this.proxy.update("");
22618         this.onInitDrag(x, y);
22619         this.proxy.show();
22620     },
22621
22622     // private
22623     onInitDrag : function(x, y){
22624         var clone = this.el.dom.cloneNode(true);
22625         clone.id = Roo.id(); // prevent duplicate ids
22626         this.proxy.update(clone);
22627         this.onStartDrag(x, y);
22628         return true;
22629     },
22630
22631     /**
22632      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22633      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22634      */
22635     getProxy : function(){
22636         return this.proxy;  
22637     },
22638
22639     /**
22640      * Hides the drag source's {@link Roo.dd.StatusProxy}
22641      */
22642     hideProxy : function(){
22643         this.proxy.hide();  
22644         this.proxy.reset(true);
22645         this.dragging = false;
22646     },
22647
22648     // private
22649     triggerCacheRefresh : function(){
22650         Roo.dd.DDM.refreshCache(this.groups);
22651     },
22652
22653     // private - override to prevent hiding
22654     b4EndDrag: function(e) {
22655     },
22656
22657     // private - override to prevent moving
22658     endDrag : function(e){
22659         this.onEndDrag(this.dragData, e);
22660     },
22661
22662     // private
22663     onEndDrag : function(data, e){
22664     },
22665     
22666     // private - pin to cursor
22667     autoOffset : function(x, y) {
22668         this.setDelta(-12, -20);
22669     }    
22670 });/*
22671  * Based on:
22672  * Ext JS Library 1.1.1
22673  * Copyright(c) 2006-2007, Ext JS, LLC.
22674  *
22675  * Originally Released Under LGPL - original licence link has changed is not relivant.
22676  *
22677  * Fork - LGPL
22678  * <script type="text/javascript">
22679  */
22680
22681
22682 /**
22683  * @class Roo.dd.DropTarget
22684  * @extends Roo.dd.DDTarget
22685  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22686  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22687  * @constructor
22688  * @param {String/HTMLElement/Element} el The container element
22689  * @param {Object} config
22690  */
22691 Roo.dd.DropTarget = function(el, config){
22692     this.el = Roo.get(el);
22693     
22694     var listeners = false; ;
22695     if (config && config.listeners) {
22696         listeners= config.listeners;
22697         delete config.listeners;
22698     }
22699     Roo.apply(this, config);
22700     
22701     if(this.containerScroll){
22702         Roo.dd.ScrollManager.register(this.el);
22703     }
22704     this.addEvents( {
22705          /**
22706          * @scope Roo.dd.DropTarget
22707          */
22708          
22709          /**
22710          * @event enter
22711          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22712          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22713          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22714          * 
22715          * IMPORTANT : it should set  this.valid to true|false
22716          * 
22717          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22718          * @param {Event} e The event
22719          * @param {Object} data An object containing arbitrary data supplied by the drag source
22720          */
22721         "enter" : true,
22722         
22723          /**
22724          * @event over
22725          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22726          * This method will be called on every mouse movement while the drag source is over the drop target.
22727          * This default implementation simply returns the dropAllowed config value.
22728          * 
22729          * IMPORTANT : it should set  this.valid to true|false
22730          * 
22731          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22732          * @param {Event} e The event
22733          * @param {Object} data An object containing arbitrary data supplied by the drag source
22734          
22735          */
22736         "over" : true,
22737         /**
22738          * @event out
22739          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22740          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22741          * overClass (if any) from the drop element.
22742          * 
22743          * 
22744          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22745          * @param {Event} e The event
22746          * @param {Object} data An object containing arbitrary data supplied by the drag source
22747          */
22748          "out" : true,
22749          
22750         /**
22751          * @event drop
22752          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22753          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22754          * implementation that does something to process the drop event and returns true so that the drag source's
22755          * repair action does not run.
22756          * 
22757          * IMPORTANT : it should set this.success
22758          * 
22759          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22760          * @param {Event} e The event
22761          * @param {Object} data An object containing arbitrary data supplied by the drag source
22762         */
22763          "drop" : true
22764     });
22765             
22766      
22767     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22768         this.el.dom, 
22769         this.ddGroup || this.group,
22770         {
22771             isTarget: true,
22772             listeners : listeners || {} 
22773            
22774         
22775         }
22776     );
22777
22778 };
22779
22780 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22781     /**
22782      * @cfg {String} overClass
22783      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22784      */
22785      /**
22786      * @cfg {String} ddGroup
22787      * The drag drop group to handle drop events for
22788      */
22789      
22790     /**
22791      * @cfg {String} dropAllowed
22792      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22793      */
22794     dropAllowed : "x-dd-drop-ok",
22795     /**
22796      * @cfg {String} dropNotAllowed
22797      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22798      */
22799     dropNotAllowed : "x-dd-drop-nodrop",
22800     /**
22801      * @cfg {boolean} success
22802      * set this after drop listener.. 
22803      */
22804     success : false,
22805     /**
22806      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22807      * if the drop point is valid for over/enter..
22808      */
22809     valid : false,
22810     // private
22811     isTarget : true,
22812
22813     // private
22814     isNotifyTarget : true,
22815     
22816     /**
22817      * @hide
22818      */
22819     notifyEnter : function(dd, e, data)
22820     {
22821         this.valid = true;
22822         this.fireEvent('enter', dd, e, data);
22823         if(this.overClass){
22824             this.el.addClass(this.overClass);
22825         }
22826         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22827             this.valid ? this.dropAllowed : this.dropNotAllowed
22828         );
22829     },
22830
22831     /**
22832      * @hide
22833      */
22834     notifyOver : function(dd, e, data)
22835     {
22836         this.valid = true;
22837         this.fireEvent('over', dd, e, data);
22838         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22839             this.valid ? this.dropAllowed : this.dropNotAllowed
22840         );
22841     },
22842
22843     /**
22844      * @hide
22845      */
22846     notifyOut : function(dd, e, data)
22847     {
22848         this.fireEvent('out', dd, e, data);
22849         if(this.overClass){
22850             this.el.removeClass(this.overClass);
22851         }
22852     },
22853
22854     /**
22855      * @hide
22856      */
22857     notifyDrop : function(dd, e, data)
22858     {
22859         this.success = false;
22860         this.fireEvent('drop', dd, e, data);
22861         return this.success;
22862     }
22863 });/*
22864  * Based on:
22865  * Ext JS Library 1.1.1
22866  * Copyright(c) 2006-2007, Ext JS, LLC.
22867  *
22868  * Originally Released Under LGPL - original licence link has changed is not relivant.
22869  *
22870  * Fork - LGPL
22871  * <script type="text/javascript">
22872  */
22873
22874
22875 /**
22876  * @class Roo.dd.DragZone
22877  * @extends Roo.dd.DragSource
22878  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22879  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22880  * @constructor
22881  * @param {String/HTMLElement/Element} el The container element
22882  * @param {Object} config
22883  */
22884 Roo.dd.DragZone = function(el, config){
22885     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22886     if(this.containerScroll){
22887         Roo.dd.ScrollManager.register(this.el);
22888     }
22889 };
22890
22891 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22892     /**
22893      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22894      * for auto scrolling during drag operations.
22895      */
22896     /**
22897      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22898      * method after a failed drop (defaults to "c3daf9" - light blue)
22899      */
22900
22901     /**
22902      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22903      * for a valid target to drag based on the mouse down. Override this method
22904      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22905      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22906      * @param {EventObject} e The mouse down event
22907      * @return {Object} The dragData
22908      */
22909     getDragData : function(e){
22910         return Roo.dd.Registry.getHandleFromEvent(e);
22911     },
22912     
22913     /**
22914      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22915      * this.dragData.ddel
22916      * @param {Number} x The x position of the click on the dragged object
22917      * @param {Number} y The y position of the click on the dragged object
22918      * @return {Boolean} true to continue the drag, false to cancel
22919      */
22920     onInitDrag : function(x, y){
22921         this.proxy.update(this.dragData.ddel.cloneNode(true));
22922         this.onStartDrag(x, y);
22923         return true;
22924     },
22925     
22926     /**
22927      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22928      */
22929     afterRepair : function(){
22930         if(Roo.enableFx){
22931             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22932         }
22933         this.dragging = false;
22934     },
22935
22936     /**
22937      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22938      * the XY of this.dragData.ddel
22939      * @param {EventObject} e The mouse up event
22940      * @return {Array} The xy location (e.g. [100, 200])
22941      */
22942     getRepairXY : function(e){
22943         return Roo.Element.fly(this.dragData.ddel).getXY();  
22944     }
22945 });/*
22946  * Based on:
22947  * Ext JS Library 1.1.1
22948  * Copyright(c) 2006-2007, Ext JS, LLC.
22949  *
22950  * Originally Released Under LGPL - original licence link has changed is not relivant.
22951  *
22952  * Fork - LGPL
22953  * <script type="text/javascript">
22954  */
22955 /**
22956  * @class Roo.dd.DropZone
22957  * @extends Roo.dd.DropTarget
22958  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22959  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22960  * @constructor
22961  * @param {String/HTMLElement/Element} el The container element
22962  * @param {Object} config
22963  */
22964 Roo.dd.DropZone = function(el, config){
22965     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22966 };
22967
22968 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22969     /**
22970      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22971      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22972      * provide your own custom lookup.
22973      * @param {Event} e The event
22974      * @return {Object} data The custom data
22975      */
22976     getTargetFromEvent : function(e){
22977         return Roo.dd.Registry.getTargetFromEvent(e);
22978     },
22979
22980     /**
22981      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22982      * that it has registered.  This method has no default implementation and should be overridden to provide
22983      * node-specific processing if necessary.
22984      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22985      * {@link #getTargetFromEvent} for this node)
22986      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22987      * @param {Event} e The event
22988      * @param {Object} data An object containing arbitrary data supplied by the drag source
22989      */
22990     onNodeEnter : function(n, dd, e, data){
22991         
22992     },
22993
22994     /**
22995      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22996      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22997      * overridden to provide the proper feedback.
22998      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22999      * {@link #getTargetFromEvent} for this node)
23000      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23001      * @param {Event} e The event
23002      * @param {Object} data An object containing arbitrary data supplied by the drag source
23003      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23004      * underlying {@link Roo.dd.StatusProxy} can be updated
23005      */
23006     onNodeOver : function(n, dd, e, data){
23007         return this.dropAllowed;
23008     },
23009
23010     /**
23011      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
23012      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
23013      * node-specific processing if necessary.
23014      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
23015      * {@link #getTargetFromEvent} for this node)
23016      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23017      * @param {Event} e The event
23018      * @param {Object} data An object containing arbitrary data supplied by the drag source
23019      */
23020     onNodeOut : function(n, dd, e, data){
23021         
23022     },
23023
23024     /**
23025      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
23026      * the drop node.  The default implementation returns false, so it should be overridden to provide the
23027      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
23028      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
23029      * {@link #getTargetFromEvent} for this node)
23030      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23031      * @param {Event} e The event
23032      * @param {Object} data An object containing arbitrary data supplied by the drag source
23033      * @return {Boolean} True if the drop was valid, else false
23034      */
23035     onNodeDrop : function(n, dd, e, data){
23036         return false;
23037     },
23038
23039     /**
23040      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
23041      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
23042      * it should be overridden to provide the proper feedback if necessary.
23043      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23044      * @param {Event} e The event
23045      * @param {Object} data An object containing arbitrary data supplied by the drag source
23046      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23047      * underlying {@link Roo.dd.StatusProxy} can be updated
23048      */
23049     onContainerOver : function(dd, e, data){
23050         return this.dropNotAllowed;
23051     },
23052
23053     /**
23054      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
23055      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
23056      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
23057      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
23058      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23059      * @param {Event} e The event
23060      * @param {Object} data An object containing arbitrary data supplied by the drag source
23061      * @return {Boolean} True if the drop was valid, else false
23062      */
23063     onContainerDrop : function(dd, e, data){
23064         return false;
23065     },
23066
23067     /**
23068      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
23069      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
23070      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
23071      * you should override this method and provide a custom implementation.
23072      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23073      * @param {Event} e The event
23074      * @param {Object} data An object containing arbitrary data supplied by the drag source
23075      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23076      * underlying {@link Roo.dd.StatusProxy} can be updated
23077      */
23078     notifyEnter : function(dd, e, data){
23079         return this.dropNotAllowed;
23080     },
23081
23082     /**
23083      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
23084      * This method will be called on every mouse movement while the drag source is over the drop zone.
23085      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
23086      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
23087      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
23088      * registered node, it will call {@link #onContainerOver}.
23089      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23090      * @param {Event} e The event
23091      * @param {Object} data An object containing arbitrary data supplied by the drag source
23092      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23093      * underlying {@link Roo.dd.StatusProxy} can be updated
23094      */
23095     notifyOver : function(dd, e, data){
23096         var n = this.getTargetFromEvent(e);
23097         if(!n){ // not over valid drop target
23098             if(this.lastOverNode){
23099                 this.onNodeOut(this.lastOverNode, dd, e, data);
23100                 this.lastOverNode = null;
23101             }
23102             return this.onContainerOver(dd, e, data);
23103         }
23104         if(this.lastOverNode != n){
23105             if(this.lastOverNode){
23106                 this.onNodeOut(this.lastOverNode, dd, e, data);
23107             }
23108             this.onNodeEnter(n, dd, e, data);
23109             this.lastOverNode = n;
23110         }
23111         return this.onNodeOver(n, dd, e, data);
23112     },
23113
23114     /**
23115      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
23116      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
23117      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
23118      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
23119      * @param {Event} e The event
23120      * @param {Object} data An object containing arbitrary data supplied by the drag zone
23121      */
23122     notifyOut : function(dd, e, data){
23123         if(this.lastOverNode){
23124             this.onNodeOut(this.lastOverNode, dd, e, data);
23125             this.lastOverNode = null;
23126         }
23127     },
23128
23129     /**
23130      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
23131      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
23132      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
23133      * otherwise it will call {@link #onContainerDrop}.
23134      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23135      * @param {Event} e The event
23136      * @param {Object} data An object containing arbitrary data supplied by the drag source
23137      * @return {Boolean} True if the drop was valid, else false
23138      */
23139     notifyDrop : function(dd, e, data){
23140         if(this.lastOverNode){
23141             this.onNodeOut(this.lastOverNode, dd, e, data);
23142             this.lastOverNode = null;
23143         }
23144         var n = this.getTargetFromEvent(e);
23145         return n ?
23146             this.onNodeDrop(n, dd, e, data) :
23147             this.onContainerDrop(dd, e, data);
23148     },
23149
23150     // private
23151     triggerCacheRefresh : function(){
23152         Roo.dd.DDM.refreshCache(this.groups);
23153     }  
23154 });