cant refer to local with 'this'
[roojs1] / roojs-core-debug.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13
14
15
16 // for old browsers
17 window["undefined"] = window["undefined"];
18
19 /**
20  * @class Roo
21  * Roo core utilities and functions.
22  * @singleton
23  */
24 var Roo = {}; 
25 /**
26  * Copies all the properties of config to obj.
27  * @param {Object} obj The receiver of the properties
28  * @param {Object} config The source of the properties
29  * @param {Object} defaults A different object that will also be applied for default values
30  * @return {Object} returns obj
31  * @member Roo apply
32  */
33
34  
35 Roo.apply = function(o, c, defaults){
36     if(defaults){
37         // no "this" reference for friendly out of scope calls
38         Roo.apply(o, defaults);
39     }
40     if(o && c && typeof c == 'object'){
41         for(var p in c){
42             o[p] = c[p];
43         }
44     }
45     return o;
46 };
47
48
49 (function(){
50     var idSeed = 0;
51     var ua = navigator.userAgent.toLowerCase();
52
53     var isStrict = document.compatMode == "CSS1Compat",
54         isOpera = ua.indexOf("opera") > -1,
55         isSafari = (/webkit|khtml/).test(ua),
56         isFirefox = ua.indexOf("firefox") > -1,
57         isIE = ua.indexOf("msie") > -1,
58         isIE7 = ua.indexOf("msie 7") > -1,
59         isIE11 = /trident.*rv\:11\./.test(ua),
60         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     });
674
675
676 })();
677
678 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
679                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
680                 "Roo.app", "Roo.ux",
681                 "Roo.bootstrap",
682                 "Roo.bootstrap.dash");
683 /*
684  * Based on:
685  * Ext JS Library 1.1.1
686  * Copyright(c) 2006-2007, Ext JS, LLC.
687  *
688  * Originally Released Under LGPL - original licence link has changed is not relivant.
689  *
690  * Fork - LGPL
691  * <script type="text/javascript">
692  */
693
694 (function() {    
695     // wrappedn so fnCleanup is not in global scope...
696     if(Roo.isIE) {
697         function fnCleanUp() {
698             var p = Function.prototype;
699             delete p.createSequence;
700             delete p.defer;
701             delete p.createDelegate;
702             delete p.createCallback;
703             delete p.createInterceptor;
704
705             window.detachEvent("onunload", fnCleanUp);
706         }
707         window.attachEvent("onunload", fnCleanUp);
708     }
709 })();
710
711
712 /**
713  * @class Function
714  * These functions are available on every Function object (any JavaScript function).
715  */
716 Roo.apply(Function.prototype, {
717      /**
718      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
719      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
720      * Will create a function that is bound to those 2 args.
721      * @return {Function} The new function
722     */
723     createCallback : function(/*args...*/){
724         // make args available, in function below
725         var args = arguments;
726         var method = this;
727         return function() {
728             return method.apply(window, args);
729         };
730     },
731
732     /**
733      * Creates a delegate (callback) that sets the scope to obj.
734      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
735      * Will create a function that is automatically scoped to this.
736      * @param {Object} obj (optional) The object for which the scope is set
737      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
738      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
739      *                                             if a number the args are inserted at the specified position
740      * @return {Function} The new function
741      */
742     createDelegate : function(obj, args, appendArgs){
743         var method = this;
744         return function() {
745             var callArgs = args || arguments;
746             if(appendArgs === true){
747                 callArgs = Array.prototype.slice.call(arguments, 0);
748                 callArgs = callArgs.concat(args);
749             }else if(typeof appendArgs == "number"){
750                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
751                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
752                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
753             }
754             return method.apply(obj || window, callArgs);
755         };
756     },
757
758     /**
759      * Calls this function after the number of millseconds specified.
760      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
761      * @param {Object} obj (optional) The object for which the scope is set
762      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
763      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
764      *                                             if a number the args are inserted at the specified position
765      * @return {Number} The timeout id that can be used with clearTimeout
766      */
767     defer : function(millis, obj, args, appendArgs){
768         var fn = this.createDelegate(obj, args, appendArgs);
769         if(millis){
770             return setTimeout(fn, millis);
771         }
772         fn();
773         return 0;
774     },
775     /**
776      * Create a combined function call sequence of the original function + the passed function.
777      * The resulting function returns the results of the original function.
778      * The passed fcn is called with the parameters of the original function
779      * @param {Function} fcn The function to sequence
780      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
781      * @return {Function} The new function
782      */
783     createSequence : function(fcn, scope){
784         if(typeof fcn != "function"){
785             return this;
786         }
787         var method = this;
788         return function() {
789             var retval = method.apply(this || window, arguments);
790             fcn.apply(scope || this || window, arguments);
791             return retval;
792         };
793     },
794
795     /**
796      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
797      * The resulting function returns the results of the original function.
798      * The passed fcn is called with the parameters of the original function.
799      * @addon
800      * @param {Function} fcn The function to call before the original
801      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
802      * @return {Function} The new function
803      */
804     createInterceptor : function(fcn, scope){
805         if(typeof fcn != "function"){
806             return this;
807         }
808         var method = this;
809         return function() {
810             fcn.target = this;
811             fcn.method = method;
812             if(fcn.apply(scope || this || window, arguments) === false){
813                 return;
814             }
815             return method.apply(this || window, arguments);
816         };
817     }
818 });
819 /*
820  * Based on:
821  * Ext JS Library 1.1.1
822  * Copyright(c) 2006-2007, Ext JS, LLC.
823  *
824  * Originally Released Under LGPL - original licence link has changed is not relivant.
825  *
826  * Fork - LGPL
827  * <script type="text/javascript">
828  */
829
830 Roo.applyIf(String, {
831     
832     /** @scope String */
833     
834     /**
835      * Escapes the passed string for ' and \
836      * @param {String} string The string to escape
837      * @return {String} The escaped string
838      * @static
839      */
840     escape : function(string) {
841         return string.replace(/('|\\)/g, "\\$1");
842     },
843
844     /**
845      * Pads the left side of a string with a specified character.  This is especially useful
846      * for normalizing number and date strings.  Example usage:
847      * <pre><code>
848 var s = String.leftPad('123', 5, '0');
849 // s now contains the string: '00123'
850 </code></pre>
851      * @param {String} string The original string
852      * @param {Number} size The total length of the output string
853      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
854      * @return {String} The padded string
855      * @static
856      */
857     leftPad : function (val, size, ch) {
858         var result = new String(val);
859         if(ch === null || ch === undefined || ch === '') {
860             ch = " ";
861         }
862         while (result.length < size) {
863             result = ch + result;
864         }
865         return result;
866     },
867
868     /**
869      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
870      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
871      * <pre><code>
872 var cls = 'my-class', text = 'Some text';
873 var s = String.format('<div class="{0}">{1}</div>', cls, text);
874 // s now contains the string: '<div class="my-class">Some text</div>'
875 </code></pre>
876      * @param {String} string The tokenized string to be formatted
877      * @param {String} value1 The value to replace token {0}
878      * @param {String} value2 Etc...
879      * @return {String} The formatted string
880      * @static
881      */
882     format : function(format){
883         var args = Array.prototype.slice.call(arguments, 1);
884         return format.replace(/\{(\d+)\}/g, function(m, i){
885             return Roo.util.Format.htmlEncode(args[i]);
886         });
887     }
888   
889     
890 });
891
892 /**
893  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
894  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
895  * they are already different, the first value passed in is returned.  Note that this method returns the new value
896  * but does not change the current string.
897  * <pre><code>
898 // alternate sort directions
899 sort = sort.toggle('ASC', 'DESC');
900
901 // instead of conditional logic:
902 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
903 </code></pre>
904  * @param {String} value The value to compare to the current string
905  * @param {String} other The new value to use if the string already equals the first value passed in
906  * @return {String} The new value
907  */
908  
909 String.prototype.toggle = function(value, other){
910     return this == value ? other : value;
911 };
912
913
914 /**
915   * Remove invalid unicode characters from a string 
916   *
917   * @return {String} The clean string
918   */
919 String.prototype.unicodeClean = function () {
920     return this.replace(/[\s\S]/g,
921         function(character) {
922             if (character.charCodeAt()< 256) {
923               return character;
924            }
925            try {
926                 encodeURIComponent(character);
927            } catch(e) { 
928               return '';
929            }
930            return character;
931         }
932     );
933 };
934   
935 /*
936  * Based on:
937  * Ext JS Library 1.1.1
938  * Copyright(c) 2006-2007, Ext JS, LLC.
939  *
940  * Originally Released Under LGPL - original licence link has changed is not relivant.
941  *
942  * Fork - LGPL
943  * <script type="text/javascript">
944  */
945
946  /**
947  * @class Number
948  */
949 Roo.applyIf(Number.prototype, {
950     /**
951      * Checks whether or not the current number is within a desired range.  If the number is already within the
952      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
953      * exceeded.  Note that this method returns the constrained value but does not change the current number.
954      * @param {Number} min The minimum number in the range
955      * @param {Number} max The maximum number in the range
956      * @return {Number} The constrained value if outside the range, otherwise the current value
957      */
958     constrain : function(min, max){
959         return Math.min(Math.max(this, min), max);
960     }
961 });/*
962  * Based on:
963  * Ext JS Library 1.1.1
964  * Copyright(c) 2006-2007, Ext JS, LLC.
965  *
966  * Originally Released Under LGPL - original licence link has changed is not relivant.
967  *
968  * Fork - LGPL
969  * <script type="text/javascript">
970  */
971  /**
972  * @class Array
973  */
974 Roo.applyIf(Array.prototype, {
975     /**
976      * 
977      * Checks whether or not the specified object exists in the array.
978      * @param {Object} o The object to check for
979      * @return {Number} The index of o in the array (or -1 if it is not found)
980      */
981     indexOf : function(o){
982        for (var i = 0, len = this.length; i < len; i++){
983               if(this[i] == o) { return i; }
984        }
985            return -1;
986     },
987
988     /**
989      * Removes the specified object from the array.  If the object is not found nothing happens.
990      * @param {Object} o The object to remove
991      */
992     remove : function(o){
993        var index = this.indexOf(o);
994        if(index != -1){
995            this.splice(index, 1);
996        }
997     },
998     /**
999      * Map (JS 1.6 compatibility)
1000      * @param {Function} function  to call
1001      */
1002     map : function(fun )
1003     {
1004         var len = this.length >>> 0;
1005         if (typeof fun != "function") {
1006             throw new TypeError();
1007         }
1008         var res = new Array(len);
1009         var thisp = arguments[1];
1010         for (var i = 0; i < len; i++)
1011         {
1012             if (i in this) {
1013                 res[i] = fun.call(thisp, this[i], i, this);
1014             }
1015         }
1016
1017         return res;
1018     },
1019     /**
1020      * equals
1021      * @param {Array} o The array to compare to
1022      * @returns {Boolean} true if the same
1023      */
1024     equals : function(b)
1025     {
1026         // https://stackoverflow.com/questions/3115982/how-to-check-if-two-arrays-are-equal-with-javascript
1027         if (this === b) {
1028             return true;
1029          }
1030         if (b == null) {
1031             return false;
1032         }
1033         if (this.length !== b.length) {
1034             return false;
1035         }
1036       
1037         // sort?? a.sort().equals(b.sort());
1038       
1039         for (var i = 0; i < this.length; ++i) {
1040             if (this[i] !== b[i]) {
1041                 return false;
1042             }
1043         }
1044         return true;
1045     }
1046 });
1047
1048
1049  
1050 /*
1051  * Based on:
1052  * Ext JS Library 1.1.1
1053  * Copyright(c) 2006-2007, Ext JS, LLC.
1054  *
1055  * Originally Released Under LGPL - original licence link has changed is not relivant.
1056  *
1057  * Fork - LGPL
1058  * <script type="text/javascript">
1059  */
1060
1061 /**
1062  * @class Date
1063  *
1064  * The date parsing and format syntax is a subset of
1065  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1066  * supported will provide results equivalent to their PHP versions.
1067  *
1068  * Following is the list of all currently supported formats:
1069  *<pre>
1070 Sample date:
1071 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1072
1073 Format  Output      Description
1074 ------  ----------  --------------------------------------------------------------
1075   d      10         Day of the month, 2 digits with leading zeros
1076   D      Wed        A textual representation of a day, three letters
1077   j      10         Day of the month without leading zeros
1078   l      Wednesday  A full textual representation of the day of the week
1079   S      th         English ordinal day of month suffix, 2 chars (use with j)
1080   w      3          Numeric representation of the day of the week
1081   z      9          The julian date, or day of the year (0-365)
1082   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1083   F      January    A full textual representation of the month
1084   m      01         Numeric representation of a month, with leading zeros
1085   M      Jan        Month name abbreviation, three letters
1086   n      1          Numeric representation of a month, without leading zeros
1087   t      31         Number of days in the given month
1088   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1089   Y      2007       A full numeric representation of a year, 4 digits
1090   y      07         A two digit representation of a year
1091   a      pm         Lowercase Ante meridiem and Post meridiem
1092   A      PM         Uppercase Ante meridiem and Post meridiem
1093   g      3          12-hour format of an hour without leading zeros
1094   G      15         24-hour format of an hour without leading zeros
1095   h      03         12-hour format of an hour with leading zeros
1096   H      15         24-hour format of an hour with leading zeros
1097   i      05         Minutes with leading zeros
1098   s      01         Seconds, with leading zeros
1099   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1100   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1101   T      CST        Timezone setting of the machine running the code
1102   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1103 </pre>
1104  *
1105  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1106  * <pre><code>
1107 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1108 document.write(dt.format('Y-m-d'));                         //2007-01-10
1109 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1110 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
1111  </code></pre>
1112  *
1113  * Here are some standard date/time patterns that you might find helpful.  They
1114  * are not part of the source of Date.js, but to use them you can simply copy this
1115  * block of code into any script that is included after Date.js and they will also become
1116  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1117  * <pre><code>
1118 Date.patterns = {
1119     ISO8601Long:"Y-m-d H:i:s",
1120     ISO8601Short:"Y-m-d",
1121     ShortDate: "n/j/Y",
1122     LongDate: "l, F d, Y",
1123     FullDateTime: "l, F d, Y g:i:s A",
1124     MonthDay: "F d",
1125     ShortTime: "g:i A",
1126     LongTime: "g:i:s A",
1127     SortableDateTime: "Y-m-d\\TH:i:s",
1128     UniversalSortableDateTime: "Y-m-d H:i:sO",
1129     YearMonth: "F, Y"
1130 };
1131 </code></pre>
1132  *
1133  * Example usage:
1134  * <pre><code>
1135 var dt = new Date();
1136 document.write(dt.format(Date.patterns.ShortDate));
1137  </code></pre>
1138  */
1139
1140 /*
1141  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1142  * They generate precompiled functions from date formats instead of parsing and
1143  * processing the pattern every time you format a date.  These functions are available
1144  * on every Date object (any javascript function).
1145  *
1146  * The original article and download are here:
1147  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1148  *
1149  */
1150  
1151  
1152  // was in core
1153 /**
1154  Returns the number of milliseconds between this date and date
1155  @param {Date} date (optional) Defaults to now
1156  @return {Number} The diff in milliseconds
1157  @member Date getElapsed
1158  */
1159 Date.prototype.getElapsed = function(date) {
1160         return Math.abs((date || new Date()).getTime()-this.getTime());
1161 };
1162 // was in date file..
1163
1164
1165 // private
1166 Date.parseFunctions = {count:0};
1167 // private
1168 Date.parseRegexes = [];
1169 // private
1170 Date.formatFunctions = {count:0};
1171
1172 // private
1173 Date.prototype.dateFormat = function(format) {
1174     if (Date.formatFunctions[format] == null) {
1175         Date.createNewFormat(format);
1176     }
1177     var func = Date.formatFunctions[format];
1178     return this[func]();
1179 };
1180
1181
1182 /**
1183  * Formats a date given the supplied format string
1184  * @param {String} format The format string
1185  * @return {String} The formatted date
1186  * @method
1187  */
1188 Date.prototype.format = Date.prototype.dateFormat;
1189
1190 // private
1191 Date.createNewFormat = function(format) {
1192     var funcName = "format" + Date.formatFunctions.count++;
1193     Date.formatFunctions[format] = funcName;
1194     var code = "Date.prototype." + funcName + " = function(){return ";
1195     var special = false;
1196     var ch = '';
1197     for (var i = 0; i < format.length; ++i) {
1198         ch = format.charAt(i);
1199         if (!special && ch == "\\") {
1200             special = true;
1201         }
1202         else if (special) {
1203             special = false;
1204             code += "'" + String.escape(ch) + "' + ";
1205         }
1206         else {
1207             code += Date.getFormatCode(ch);
1208         }
1209     }
1210     /** eval:var:zzzzzzzzzzzzz */
1211     eval(code.substring(0, code.length - 3) + ";}");
1212 };
1213
1214 // private
1215 Date.getFormatCode = function(character) {
1216     switch (character) {
1217     case "d":
1218         return "String.leftPad(this.getDate(), 2, '0') + ";
1219     case "D":
1220         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1221     case "j":
1222         return "this.getDate() + ";
1223     case "l":
1224         return "Date.dayNames[this.getDay()] + ";
1225     case "S":
1226         return "this.getSuffix() + ";
1227     case "w":
1228         return "this.getDay() + ";
1229     case "z":
1230         return "this.getDayOfYear() + ";
1231     case "W":
1232         return "this.getWeekOfYear() + ";
1233     case "F":
1234         return "Date.monthNames[this.getMonth()] + ";
1235     case "m":
1236         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1237     case "M":
1238         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1239     case "n":
1240         return "(this.getMonth() + 1) + ";
1241     case "t":
1242         return "this.getDaysInMonth() + ";
1243     case "L":
1244         return "(this.isLeapYear() ? 1 : 0) + ";
1245     case "Y":
1246         return "this.getFullYear() + ";
1247     case "y":
1248         return "('' + this.getFullYear()).substring(2, 4) + ";
1249     case "a":
1250         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1251     case "A":
1252         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1253     case "g":
1254         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1255     case "G":
1256         return "this.getHours() + ";
1257     case "h":
1258         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1259     case "H":
1260         return "String.leftPad(this.getHours(), 2, '0') + ";
1261     case "i":
1262         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1263     case "s":
1264         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1265     case "O":
1266         return "this.getGMTOffset() + ";
1267     case "P":
1268         return "this.getGMTColonOffset() + ";
1269     case "T":
1270         return "this.getTimezone() + ";
1271     case "Z":
1272         return "(this.getTimezoneOffset() * -60) + ";
1273     default:
1274         return "'" + String.escape(character) + "' + ";
1275     }
1276 };
1277
1278 /**
1279  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1280  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1281  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1282  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1283  * string or the parse operation will fail.
1284  * Example Usage:
1285 <pre><code>
1286 //dt = Fri May 25 2007 (current date)
1287 var dt = new Date();
1288
1289 //dt = Thu May 25 2006 (today's month/day in 2006)
1290 dt = Date.parseDate("2006", "Y");
1291
1292 //dt = Sun Jan 15 2006 (all date parts specified)
1293 dt = Date.parseDate("2006-1-15", "Y-m-d");
1294
1295 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1296 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1297 </code></pre>
1298  * @param {String} input The unparsed date as a string
1299  * @param {String} format The format the date is in
1300  * @return {Date} The parsed date
1301  * @static
1302  */
1303 Date.parseDate = function(input, format) {
1304     if (Date.parseFunctions[format] == null) {
1305         Date.createParser(format);
1306     }
1307     var func = Date.parseFunctions[format];
1308     return Date[func](input);
1309 };
1310 /**
1311  * @private
1312  */
1313
1314 Date.createParser = function(format) {
1315     var funcName = "parse" + Date.parseFunctions.count++;
1316     var regexNum = Date.parseRegexes.length;
1317     var currentGroup = 1;
1318     Date.parseFunctions[format] = funcName;
1319
1320     var code = "Date." + funcName + " = function(input){\n"
1321         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1322         + "var d = new Date();\n"
1323         + "y = d.getFullYear();\n"
1324         + "m = d.getMonth();\n"
1325         + "d = d.getDate();\n"
1326         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1327         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1328         + "if (results && results.length > 0) {";
1329     var regex = "";
1330
1331     var special = false;
1332     var ch = '';
1333     for (var i = 0; i < format.length; ++i) {
1334         ch = format.charAt(i);
1335         if (!special && ch == "\\") {
1336             special = true;
1337         }
1338         else if (special) {
1339             special = false;
1340             regex += String.escape(ch);
1341         }
1342         else {
1343             var obj = Date.formatCodeToRegex(ch, currentGroup);
1344             currentGroup += obj.g;
1345             regex += obj.s;
1346             if (obj.g && obj.c) {
1347                 code += obj.c;
1348             }
1349         }
1350     }
1351
1352     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1353         + "{v = new Date(y, m, d, h, i, s);}\n"
1354         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1355         + "{v = new Date(y, m, d, h, i);}\n"
1356         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1357         + "{v = new Date(y, m, d, h);}\n"
1358         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1359         + "{v = new Date(y, m, d);}\n"
1360         + "else if (y >= 0 && m >= 0)\n"
1361         + "{v = new Date(y, m);}\n"
1362         + "else if (y >= 0)\n"
1363         + "{v = new Date(y);}\n"
1364         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1365         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1366         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1367         + ";}";
1368
1369     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1370     /** eval:var:zzzzzzzzzzzzz */
1371     eval(code);
1372 };
1373
1374 // private
1375 Date.formatCodeToRegex = function(character, currentGroup) {
1376     switch (character) {
1377     case "D":
1378         return {g:0,
1379         c:null,
1380         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1381     case "j":
1382         return {g:1,
1383             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1384             s:"(\\d{1,2})"}; // day of month without leading zeroes
1385     case "d":
1386         return {g:1,
1387             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1388             s:"(\\d{2})"}; // day of month with leading zeroes
1389     case "l":
1390         return {g:0,
1391             c:null,
1392             s:"(?:" + Date.dayNames.join("|") + ")"};
1393     case "S":
1394         return {g:0,
1395             c:null,
1396             s:"(?:st|nd|rd|th)"};
1397     case "w":
1398         return {g:0,
1399             c:null,
1400             s:"\\d"};
1401     case "z":
1402         return {g:0,
1403             c:null,
1404             s:"(?:\\d{1,3})"};
1405     case "W":
1406         return {g:0,
1407             c:null,
1408             s:"(?:\\d{2})"};
1409     case "F":
1410         return {g:1,
1411             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1412             s:"(" + Date.monthNames.join("|") + ")"};
1413     case "M":
1414         return {g:1,
1415             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1416             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1417     case "n":
1418         return {g:1,
1419             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1420             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1421     case "m":
1422         return {g:1,
1423             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1424             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1425     case "t":
1426         return {g:0,
1427             c:null,
1428             s:"\\d{1,2}"};
1429     case "L":
1430         return {g:0,
1431             c:null,
1432             s:"(?:1|0)"};
1433     case "Y":
1434         return {g:1,
1435             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1436             s:"(\\d{4})"};
1437     case "y":
1438         return {g:1,
1439             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1440                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1441             s:"(\\d{1,2})"};
1442     case "a":
1443         return {g:1,
1444             c:"if (results[" + currentGroup + "] == 'am') {\n"
1445                 + "if (h == 12) { h = 0; }\n"
1446                 + "} else { if (h < 12) { h += 12; }}",
1447             s:"(am|pm)"};
1448     case "A":
1449         return {g:1,
1450             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1451                 + "if (h == 12) { h = 0; }\n"
1452                 + "} else { if (h < 12) { h += 12; }}",
1453             s:"(AM|PM)"};
1454     case "g":
1455     case "G":
1456         return {g:1,
1457             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1458             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1459     case "h":
1460     case "H":
1461         return {g:1,
1462             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1463             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1464     case "i":
1465         return {g:1,
1466             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1467             s:"(\\d{2})"};
1468     case "s":
1469         return {g:1,
1470             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1471             s:"(\\d{2})"};
1472     case "O":
1473         return {g:1,
1474             c:[
1475                 "o = results[", currentGroup, "];\n",
1476                 "var sn = o.substring(0,1);\n", // get + / - sign
1477                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1478                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1479                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1480                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1481             ].join(""),
1482             s:"([+\-]\\d{2,4})"};
1483     
1484     
1485     case "P":
1486         return {g:1,
1487                 c:[
1488                    "o = results[", currentGroup, "];\n",
1489                    "var sn = o.substring(0,1);\n",
1490                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1491                    "var mn = o.substring(4,6) % 60;\n",
1492                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1493                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1494             ].join(""),
1495             s:"([+\-]\\d{4})"};
1496     case "T":
1497         return {g:0,
1498             c:null,
1499             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1500     case "Z":
1501         return {g:1,
1502             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1503                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1504             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1505     default:
1506         return {g:0,
1507             c:null,
1508             s:String.escape(character)};
1509     }
1510 };
1511
1512 /**
1513  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1514  * @return {String} The abbreviated timezone name (e.g. 'CST')
1515  */
1516 Date.prototype.getTimezone = function() {
1517     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1518 };
1519
1520 /**
1521  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1522  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1523  */
1524 Date.prototype.getGMTOffset = function() {
1525     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1526         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1527         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1528 };
1529
1530 /**
1531  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1532  * @return {String} 2-characters representing hours and 2-characters representing minutes
1533  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1534  */
1535 Date.prototype.getGMTColonOffset = function() {
1536         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1537                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1538                 + ":"
1539                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1540 }
1541
1542 /**
1543  * Get the numeric day number of the year, adjusted for leap year.
1544  * @return {Number} 0 through 364 (365 in leap years)
1545  */
1546 Date.prototype.getDayOfYear = function() {
1547     var num = 0;
1548     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1549     for (var i = 0; i < this.getMonth(); ++i) {
1550         num += Date.daysInMonth[i];
1551     }
1552     return num + this.getDate() - 1;
1553 };
1554
1555 /**
1556  * Get the string representation of the numeric week number of the year
1557  * (equivalent to the format specifier 'W').
1558  * @return {String} '00' through '52'
1559  */
1560 Date.prototype.getWeekOfYear = function() {
1561     // Skip to Thursday of this week
1562     var now = this.getDayOfYear() + (4 - this.getDay());
1563     // Find the first Thursday of the year
1564     var jan1 = new Date(this.getFullYear(), 0, 1);
1565     var then = (7 - jan1.getDay() + 4);
1566     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1567 };
1568
1569 /**
1570  * Whether or not the current date is in a leap year.
1571  * @return {Boolean} True if the current date is in a leap year, else false
1572  */
1573 Date.prototype.isLeapYear = function() {
1574     var year = this.getFullYear();
1575     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1576 };
1577
1578 /**
1579  * Get the first day of the current month, adjusted for leap year.  The returned value
1580  * is the numeric day index within the week (0-6) which can be used in conjunction with
1581  * the {@link #monthNames} array to retrieve the textual day name.
1582  * Example:
1583  *<pre><code>
1584 var dt = new Date('1/10/2007');
1585 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1586 </code></pre>
1587  * @return {Number} The day number (0-6)
1588  */
1589 Date.prototype.getFirstDayOfMonth = function() {
1590     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1591     return (day < 0) ? (day + 7) : day;
1592 };
1593
1594 /**
1595  * Get the last day of the current month, adjusted for leap year.  The returned value
1596  * is the numeric day index within the week (0-6) which can be used in conjunction with
1597  * the {@link #monthNames} array to retrieve the textual day name.
1598  * Example:
1599  *<pre><code>
1600 var dt = new Date('1/10/2007');
1601 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1602 </code></pre>
1603  * @return {Number} The day number (0-6)
1604  */
1605 Date.prototype.getLastDayOfMonth = function() {
1606     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1607     return (day < 0) ? (day + 7) : day;
1608 };
1609
1610
1611 /**
1612  * Get the first date of this date's month
1613  * @return {Date}
1614  */
1615 Date.prototype.getFirstDateOfMonth = function() {
1616     return new Date(this.getFullYear(), this.getMonth(), 1);
1617 };
1618
1619 /**
1620  * Get the last date of this date's month
1621  * @return {Date}
1622  */
1623 Date.prototype.getLastDateOfMonth = function() {
1624     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1625 };
1626 /**
1627  * Get the number of days in the current month, adjusted for leap year.
1628  * @return {Number} The number of days in the month
1629  */
1630 Date.prototype.getDaysInMonth = function() {
1631     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1632     return Date.daysInMonth[this.getMonth()];
1633 };
1634
1635 /**
1636  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1637  * @return {String} 'st, 'nd', 'rd' or 'th'
1638  */
1639 Date.prototype.getSuffix = function() {
1640     switch (this.getDate()) {
1641         case 1:
1642         case 21:
1643         case 31:
1644             return "st";
1645         case 2:
1646         case 22:
1647             return "nd";
1648         case 3:
1649         case 23:
1650             return "rd";
1651         default:
1652             return "th";
1653     }
1654 };
1655
1656 // private
1657 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1658
1659 /**
1660  * An array of textual month names.
1661  * Override these values for international dates, for example...
1662  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1663  * @type Array
1664  * @static
1665  */
1666 Date.monthNames =
1667    ["January",
1668     "February",
1669     "March",
1670     "April",
1671     "May",
1672     "June",
1673     "July",
1674     "August",
1675     "September",
1676     "October",
1677     "November",
1678     "December"];
1679
1680 /**
1681  * An array of textual day names.
1682  * Override these values for international dates, for example...
1683  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1684  * @type Array
1685  * @static
1686  */
1687 Date.dayNames =
1688    ["Sunday",
1689     "Monday",
1690     "Tuesday",
1691     "Wednesday",
1692     "Thursday",
1693     "Friday",
1694     "Saturday"];
1695
1696 // private
1697 Date.y2kYear = 50;
1698 // private
1699 Date.monthNumbers = {
1700     Jan:0,
1701     Feb:1,
1702     Mar:2,
1703     Apr:3,
1704     May:4,
1705     Jun:5,
1706     Jul:6,
1707     Aug:7,
1708     Sep:8,
1709     Oct:9,
1710     Nov:10,
1711     Dec:11};
1712
1713 /**
1714  * Creates and returns a new Date instance with the exact same date value as the called instance.
1715  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1716  * variable will also be changed.  When the intention is to create a new variable that will not
1717  * modify the original instance, you should create a clone.
1718  *
1719  * Example of correctly cloning a date:
1720  * <pre><code>
1721 //wrong way:
1722 var orig = new Date('10/1/2006');
1723 var copy = orig;
1724 copy.setDate(5);
1725 document.write(orig);  //returns 'Thu Oct 05 2006'!
1726
1727 //correct way:
1728 var orig = new Date('10/1/2006');
1729 var copy = orig.clone();
1730 copy.setDate(5);
1731 document.write(orig);  //returns 'Thu Oct 01 2006'
1732 </code></pre>
1733  * @return {Date} The new Date instance
1734  */
1735 Date.prototype.clone = function() {
1736         return new Date(this.getTime());
1737 };
1738
1739 /**
1740  * Clears any time information from this date
1741  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1742  @return {Date} this or the clone
1743  */
1744 Date.prototype.clearTime = function(clone){
1745     if(clone){
1746         return this.clone().clearTime();
1747     }
1748     this.setHours(0);
1749     this.setMinutes(0);
1750     this.setSeconds(0);
1751     this.setMilliseconds(0);
1752     return this;
1753 };
1754
1755 // private
1756 // safari setMonth is broken -- check that this is only donw once...
1757 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1758     Date.brokenSetMonth = Date.prototype.setMonth;
1759         Date.prototype.setMonth = function(num){
1760                 if(num <= -1){
1761                         var n = Math.ceil(-num);
1762                         var back_year = Math.ceil(n/12);
1763                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1764                         this.setFullYear(this.getFullYear() - back_year);
1765                         return Date.brokenSetMonth.call(this, month);
1766                 } else {
1767                         return Date.brokenSetMonth.apply(this, arguments);
1768                 }
1769         };
1770 }
1771
1772 /** Date interval constant 
1773 * @static 
1774 * @type String */
1775 Date.MILLI = "ms";
1776 /** Date interval constant 
1777 * @static 
1778 * @type String */
1779 Date.SECOND = "s";
1780 /** Date interval constant 
1781 * @static 
1782 * @type String */
1783 Date.MINUTE = "mi";
1784 /** Date interval constant 
1785 * @static 
1786 * @type String */
1787 Date.HOUR = "h";
1788 /** Date interval constant 
1789 * @static 
1790 * @type String */
1791 Date.DAY = "d";
1792 /** Date interval constant 
1793 * @static 
1794 * @type String */
1795 Date.MONTH = "mo";
1796 /** Date interval constant 
1797 * @static 
1798 * @type String */
1799 Date.YEAR = "y";
1800
1801 /**
1802  * Provides a convenient method of performing basic date arithmetic.  This method
1803  * does not modify the Date instance being called - it creates and returns
1804  * a new Date instance containing the resulting date value.
1805  *
1806  * Examples:
1807  * <pre><code>
1808 //Basic usage:
1809 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1810 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1811
1812 //Negative values will subtract correctly:
1813 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1814 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1815
1816 //You can even chain several calls together in one line!
1817 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1818 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1819  </code></pre>
1820  *
1821  * @param {String} interval   A valid date interval enum value
1822  * @param {Number} value      The amount to add to the current date
1823  * @return {Date} The new Date instance
1824  */
1825 Date.prototype.add = function(interval, value){
1826   var d = this.clone();
1827   if (!interval || value === 0) { return d; }
1828   switch(interval.toLowerCase()){
1829     case Date.MILLI:
1830       d.setMilliseconds(this.getMilliseconds() + value);
1831       break;
1832     case Date.SECOND:
1833       d.setSeconds(this.getSeconds() + value);
1834       break;
1835     case Date.MINUTE:
1836       d.setMinutes(this.getMinutes() + value);
1837       break;
1838     case Date.HOUR:
1839       d.setHours(this.getHours() + value);
1840       break;
1841     case Date.DAY:
1842       d.setDate(this.getDate() + value);
1843       break;
1844     case Date.MONTH:
1845       var day = this.getDate();
1846       if(day > 28){
1847           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1848       }
1849       d.setDate(day);
1850       d.setMonth(this.getMonth() + value);
1851       break;
1852     case Date.YEAR:
1853       d.setFullYear(this.getFullYear() + value);
1854       break;
1855   }
1856   return d;
1857 };
1858 /*
1859  * Based on:
1860  * Ext JS Library 1.1.1
1861  * Copyright(c) 2006-2007, Ext JS, LLC.
1862  *
1863  * Originally Released Under LGPL - original licence link has changed is not relivant.
1864  *
1865  * Fork - LGPL
1866  * <script type="text/javascript">
1867  */
1868
1869 /**
1870  * @class Roo.lib.Dom
1871  * @static
1872  * 
1873  * Dom utils (from YIU afaik)
1874  * 
1875  **/
1876 Roo.lib.Dom = {
1877     /**
1878      * Get the view width
1879      * @param {Boolean} full True will get the full document, otherwise it's the view width
1880      * @return {Number} The width
1881      */
1882      
1883     getViewWidth : function(full) {
1884         return full ? this.getDocumentWidth() : this.getViewportWidth();
1885     },
1886     /**
1887      * Get the view height
1888      * @param {Boolean} full True will get the full document, otherwise it's the view height
1889      * @return {Number} The height
1890      */
1891     getViewHeight : function(full) {
1892         return full ? this.getDocumentHeight() : this.getViewportHeight();
1893     },
1894
1895     getDocumentHeight: function() {
1896         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1897         return Math.max(scrollHeight, this.getViewportHeight());
1898     },
1899
1900     getDocumentWidth: function() {
1901         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1902         return Math.max(scrollWidth, this.getViewportWidth());
1903     },
1904
1905     getViewportHeight: function() {
1906         var height = self.innerHeight;
1907         var mode = document.compatMode;
1908
1909         if ((mode || Roo.isIE) && !Roo.isOpera) {
1910             height = (mode == "CSS1Compat") ?
1911                      document.documentElement.clientHeight :
1912                      document.body.clientHeight;
1913         }
1914
1915         return height;
1916     },
1917
1918     getViewportWidth: function() {
1919         var width = self.innerWidth;
1920         var mode = document.compatMode;
1921
1922         if (mode || Roo.isIE) {
1923             width = (mode == "CSS1Compat") ?
1924                     document.documentElement.clientWidth :
1925                     document.body.clientWidth;
1926         }
1927         return width;
1928     },
1929
1930     isAncestor : function(p, c) {
1931         p = Roo.getDom(p);
1932         c = Roo.getDom(c);
1933         if (!p || !c) {
1934             return false;
1935         }
1936
1937         if (p.contains && !Roo.isSafari) {
1938             return p.contains(c);
1939         } else if (p.compareDocumentPosition) {
1940             return !!(p.compareDocumentPosition(c) & 16);
1941         } else {
1942             var parent = c.parentNode;
1943             while (parent) {
1944                 if (parent == p) {
1945                     return true;
1946                 }
1947                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
1948                     return false;
1949                 }
1950                 parent = parent.parentNode;
1951             }
1952             return false;
1953         }
1954     },
1955
1956     getRegion : function(el) {
1957         return Roo.lib.Region.getRegion(el);
1958     },
1959
1960     getY : function(el) {
1961         return this.getXY(el)[1];
1962     },
1963
1964     getX : function(el) {
1965         return this.getXY(el)[0];
1966     },
1967
1968     getXY : function(el) {
1969         var p, pe, b, scroll, bd = document.body;
1970         el = Roo.getDom(el);
1971         var fly = Roo.lib.AnimBase.fly;
1972         if (el.getBoundingClientRect) {
1973             b = el.getBoundingClientRect();
1974             scroll = fly(document).getScroll();
1975             return [b.left + scroll.left, b.top + scroll.top];
1976         }
1977         var x = 0, y = 0;
1978
1979         p = el;
1980
1981         var hasAbsolute = fly(el).getStyle("position") == "absolute";
1982
1983         while (p) {
1984
1985             x += p.offsetLeft;
1986             y += p.offsetTop;
1987
1988             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
1989                 hasAbsolute = true;
1990             }
1991
1992             if (Roo.isGecko) {
1993                 pe = fly(p);
1994
1995                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
1996                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
1997
1998
1999                 x += bl;
2000                 y += bt;
2001
2002
2003                 if (p != el && pe.getStyle('overflow') != 'visible') {
2004                     x += bl;
2005                     y += bt;
2006                 }
2007             }
2008             p = p.offsetParent;
2009         }
2010
2011         if (Roo.isSafari && hasAbsolute) {
2012             x -= bd.offsetLeft;
2013             y -= bd.offsetTop;
2014         }
2015
2016         if (Roo.isGecko && !hasAbsolute) {
2017             var dbd = fly(bd);
2018             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
2019             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
2020         }
2021
2022         p = el.parentNode;
2023         while (p && p != bd) {
2024             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
2025                 x -= p.scrollLeft;
2026                 y -= p.scrollTop;
2027             }
2028             p = p.parentNode;
2029         }
2030         return [x, y];
2031     },
2032  
2033   
2034
2035
2036     setXY : function(el, xy) {
2037         el = Roo.fly(el, '_setXY');
2038         el.position();
2039         var pts = el.translatePoints(xy);
2040         if (xy[0] !== false) {
2041             el.dom.style.left = pts.left + "px";
2042         }
2043         if (xy[1] !== false) {
2044             el.dom.style.top = pts.top + "px";
2045         }
2046     },
2047
2048     setX : function(el, x) {
2049         this.setXY(el, [x, false]);
2050     },
2051
2052     setY : function(el, y) {
2053         this.setXY(el, [false, y]);
2054     }
2055 };
2056 /*
2057  * Portions of this file are based on pieces of Yahoo User Interface Library
2058  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2059  * YUI licensed under the BSD License:
2060  * http://developer.yahoo.net/yui/license.txt
2061  * <script type="text/javascript">
2062  *
2063  */
2064
2065 Roo.lib.Event = function() {
2066     var loadComplete = false;
2067     var listeners = [];
2068     var unloadListeners = [];
2069     var retryCount = 0;
2070     var onAvailStack = [];
2071     var counter = 0;
2072     var lastError = null;
2073
2074     return {
2075         POLL_RETRYS: 200,
2076         POLL_INTERVAL: 20,
2077         EL: 0,
2078         TYPE: 1,
2079         FN: 2,
2080         WFN: 3,
2081         OBJ: 3,
2082         ADJ_SCOPE: 4,
2083         _interval: null,
2084
2085         startInterval: function() {
2086             if (!this._interval) {
2087                 var self = this;
2088                 var callback = function() {
2089                     self._tryPreloadAttach();
2090                 };
2091                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2092
2093             }
2094         },
2095
2096         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2097             onAvailStack.push({ id:         p_id,
2098                 fn:         p_fn,
2099                 obj:        p_obj,
2100                 override:   p_override,
2101                 checkReady: false    });
2102
2103             retryCount = this.POLL_RETRYS;
2104             this.startInterval();
2105         },
2106
2107
2108         addListener: function(el, eventName, fn) {
2109             el = Roo.getDom(el);
2110             if (!el || !fn) {
2111                 return false;
2112             }
2113
2114             if ("unload" == eventName) {
2115                 unloadListeners[unloadListeners.length] =
2116                 [el, eventName, fn];
2117                 return true;
2118             }
2119
2120             var wrappedFn = function(e) {
2121                 return fn(Roo.lib.Event.getEvent(e));
2122             };
2123
2124             var li = [el, eventName, fn, wrappedFn];
2125
2126             var index = listeners.length;
2127             listeners[index] = li;
2128
2129             this.doAdd(el, eventName, wrappedFn, false);
2130             return true;
2131
2132         },
2133
2134
2135         removeListener: function(el, eventName, fn) {
2136             var i, len;
2137
2138             el = Roo.getDom(el);
2139
2140             if(!fn) {
2141                 return this.purgeElement(el, false, eventName);
2142             }
2143
2144
2145             if ("unload" == eventName) {
2146
2147                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2148                     var li = unloadListeners[i];
2149                     if (li &&
2150                         li[0] == el &&
2151                         li[1] == eventName &&
2152                         li[2] == fn) {
2153                         unloadListeners.splice(i, 1);
2154                         return true;
2155                     }
2156                 }
2157
2158                 return false;
2159             }
2160
2161             var cacheItem = null;
2162
2163
2164             var index = arguments[3];
2165
2166             if ("undefined" == typeof index) {
2167                 index = this._getCacheIndex(el, eventName, fn);
2168             }
2169
2170             if (index >= 0) {
2171                 cacheItem = listeners[index];
2172             }
2173
2174             if (!el || !cacheItem) {
2175                 return false;
2176             }
2177
2178             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2179
2180             delete listeners[index][this.WFN];
2181             delete listeners[index][this.FN];
2182             listeners.splice(index, 1);
2183
2184             return true;
2185
2186         },
2187
2188
2189         getTarget: function(ev, resolveTextNode) {
2190             ev = ev.browserEvent || ev;
2191             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2192             var t = ev.target || ev.srcElement;
2193             return this.resolveTextNode(t);
2194         },
2195
2196
2197         resolveTextNode: function(node) {
2198             if (Roo.isSafari && node && 3 == node.nodeType) {
2199                 return node.parentNode;
2200             } else {
2201                 return node;
2202             }
2203         },
2204
2205
2206         getPageX: function(ev) {
2207             ev = ev.browserEvent || ev;
2208             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2209             var x = ev.pageX;
2210             if (!x && 0 !== x) {
2211                 x = ev.clientX || 0;
2212
2213                 if (Roo.isIE) {
2214                     x += this.getScroll()[1];
2215                 }
2216             }
2217
2218             return x;
2219         },
2220
2221
2222         getPageY: function(ev) {
2223             ev = ev.browserEvent || ev;
2224             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2225             var y = ev.pageY;
2226             if (!y && 0 !== y) {
2227                 y = ev.clientY || 0;
2228
2229                 if (Roo.isIE) {
2230                     y += this.getScroll()[0];
2231                 }
2232             }
2233
2234
2235             return y;
2236         },
2237
2238
2239         getXY: function(ev) {
2240             ev = ev.browserEvent || ev;
2241             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2242             return [this.getPageX(ev), this.getPageY(ev)];
2243         },
2244
2245
2246         getRelatedTarget: function(ev) {
2247             ev = ev.browserEvent || ev;
2248             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2249             var t = ev.relatedTarget;
2250             if (!t) {
2251                 if (ev.type == "mouseout") {
2252                     t = ev.toElement;
2253                 } else if (ev.type == "mouseover") {
2254                     t = ev.fromElement;
2255                 }
2256             }
2257
2258             return this.resolveTextNode(t);
2259         },
2260
2261
2262         getTime: function(ev) {
2263             ev = ev.browserEvent || ev;
2264             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2265             if (!ev.time) {
2266                 var t = new Date().getTime();
2267                 try {
2268                     ev.time = t;
2269                 } catch(ex) {
2270                     this.lastError = ex;
2271                     return t;
2272                 }
2273             }
2274
2275             return ev.time;
2276         },
2277
2278
2279         stopEvent: function(ev) {
2280             this.stopPropagation(ev);
2281             this.preventDefault(ev);
2282         },
2283
2284
2285         stopPropagation: function(ev) {
2286             ev = ev.browserEvent || ev;
2287             if (ev.stopPropagation) {
2288                 ev.stopPropagation();
2289             } else {
2290                 ev.cancelBubble = true;
2291             }
2292         },
2293
2294
2295         preventDefault: function(ev) {
2296             ev = ev.browserEvent || ev;
2297             if(ev.preventDefault) {
2298                 ev.preventDefault();
2299             } else {
2300                 ev.returnValue = false;
2301             }
2302         },
2303
2304
2305         getEvent: function(e) {
2306             var ev = e || window.event;
2307             if (!ev) {
2308                 var c = this.getEvent.caller;
2309                 while (c) {
2310                     ev = c.arguments[0];
2311                     if (ev && Event == ev.constructor) {
2312                         break;
2313                     }
2314                     c = c.caller;
2315                 }
2316             }
2317             return ev;
2318         },
2319
2320
2321         getCharCode: function(ev) {
2322             ev = ev.browserEvent || ev;
2323             return ev.charCode || ev.keyCode || 0;
2324         },
2325
2326
2327         _getCacheIndex: function(el, eventName, fn) {
2328             for (var i = 0,len = listeners.length; i < len; ++i) {
2329                 var li = listeners[i];
2330                 if (li &&
2331                     li[this.FN] == fn &&
2332                     li[this.EL] == el &&
2333                     li[this.TYPE] == eventName) {
2334                     return i;
2335                 }
2336             }
2337
2338             return -1;
2339         },
2340
2341
2342         elCache: {},
2343
2344
2345         getEl: function(id) {
2346             return document.getElementById(id);
2347         },
2348
2349
2350         clearCache: function() {
2351         },
2352
2353
2354         _load: function(e) {
2355             loadComplete = true;
2356             var EU = Roo.lib.Event;
2357
2358
2359             if (Roo.isIE) {
2360                 EU.doRemove(window, "load", EU._load);
2361             }
2362         },
2363
2364
2365         _tryPreloadAttach: function() {
2366
2367             if (this.locked) {
2368                 return false;
2369             }
2370
2371             this.locked = true;
2372
2373
2374             var tryAgain = !loadComplete;
2375             if (!tryAgain) {
2376                 tryAgain = (retryCount > 0);
2377             }
2378
2379
2380             var notAvail = [];
2381             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2382                 var item = onAvailStack[i];
2383                 if (item) {
2384                     var el = this.getEl(item.id);
2385
2386                     if (el) {
2387                         if (!item.checkReady ||
2388                             loadComplete ||
2389                             el.nextSibling ||
2390                             (document && document.body)) {
2391
2392                             var scope = el;
2393                             if (item.override) {
2394                                 if (item.override === true) {
2395                                     scope = item.obj;
2396                                 } else {
2397                                     scope = item.override;
2398                                 }
2399                             }
2400                             item.fn.call(scope, item.obj);
2401                             onAvailStack[i] = null;
2402                         }
2403                     } else {
2404                         notAvail.push(item);
2405                     }
2406                 }
2407             }
2408
2409             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2410
2411             if (tryAgain) {
2412
2413                 this.startInterval();
2414             } else {
2415                 clearInterval(this._interval);
2416                 this._interval = null;
2417             }
2418
2419             this.locked = false;
2420
2421             return true;
2422
2423         },
2424
2425
2426         purgeElement: function(el, recurse, eventName) {
2427             var elListeners = this.getListeners(el, eventName);
2428             if (elListeners) {
2429                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2430                     var l = elListeners[i];
2431                     this.removeListener(el, l.type, l.fn);
2432                 }
2433             }
2434
2435             if (recurse && el && el.childNodes) {
2436                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2437                     this.purgeElement(el.childNodes[i], recurse, eventName);
2438                 }
2439             }
2440         },
2441
2442
2443         getListeners: function(el, eventName) {
2444             var results = [], searchLists;
2445             if (!eventName) {
2446                 searchLists = [listeners, unloadListeners];
2447             } else if (eventName == "unload") {
2448                 searchLists = [unloadListeners];
2449             } else {
2450                 searchLists = [listeners];
2451             }
2452
2453             for (var j = 0; j < searchLists.length; ++j) {
2454                 var searchList = searchLists[j];
2455                 if (searchList && searchList.length > 0) {
2456                     for (var i = 0,len = searchList.length; i < len; ++i) {
2457                         var l = searchList[i];
2458                         if (l && l[this.EL] === el &&
2459                             (!eventName || eventName === l[this.TYPE])) {
2460                             results.push({
2461                                 type:   l[this.TYPE],
2462                                 fn:     l[this.FN],
2463                                 obj:    l[this.OBJ],
2464                                 adjust: l[this.ADJ_SCOPE],
2465                                 index:  i
2466                             });
2467                         }
2468                     }
2469                 }
2470             }
2471
2472             return (results.length) ? results : null;
2473         },
2474
2475
2476         _unload: function(e) {
2477
2478             var EU = Roo.lib.Event, i, j, l, len, index;
2479
2480             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2481                 l = unloadListeners[i];
2482                 if (l) {
2483                     var scope = window;
2484                     if (l[EU.ADJ_SCOPE]) {
2485                         if (l[EU.ADJ_SCOPE] === true) {
2486                             scope = l[EU.OBJ];
2487                         } else {
2488                             scope = l[EU.ADJ_SCOPE];
2489                         }
2490                     }
2491                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2492                     unloadListeners[i] = null;
2493                     l = null;
2494                     scope = null;
2495                 }
2496             }
2497
2498             unloadListeners = null;
2499
2500             if (listeners && listeners.length > 0) {
2501                 j = listeners.length;
2502                 while (j) {
2503                     index = j - 1;
2504                     l = listeners[index];
2505                     if (l) {
2506                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2507                                 l[EU.FN], index);
2508                     }
2509                     j = j - 1;
2510                 }
2511                 l = null;
2512
2513                 EU.clearCache();
2514             }
2515
2516             EU.doRemove(window, "unload", EU._unload);
2517
2518         },
2519
2520
2521         getScroll: function() {
2522             var dd = document.documentElement, db = document.body;
2523             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2524                 return [dd.scrollTop, dd.scrollLeft];
2525             } else if (db) {
2526                 return [db.scrollTop, db.scrollLeft];
2527             } else {
2528                 return [0, 0];
2529             }
2530         },
2531
2532
2533         doAdd: function () {
2534             if (window.addEventListener) {
2535                 return function(el, eventName, fn, capture) {
2536                     el.addEventListener(eventName, fn, (capture));
2537                 };
2538             } else if (window.attachEvent) {
2539                 return function(el, eventName, fn, capture) {
2540                     el.attachEvent("on" + eventName, fn);
2541                 };
2542             } else {
2543                 return function() {
2544                 };
2545             }
2546         }(),
2547
2548
2549         doRemove: function() {
2550             if (window.removeEventListener) {
2551                 return function (el, eventName, fn, capture) {
2552                     el.removeEventListener(eventName, fn, (capture));
2553                 };
2554             } else if (window.detachEvent) {
2555                 return function (el, eventName, fn) {
2556                     el.detachEvent("on" + eventName, fn);
2557                 };
2558             } else {
2559                 return function() {
2560                 };
2561             }
2562         }()
2563     };
2564     
2565 }();
2566 (function() {     
2567    
2568     var E = Roo.lib.Event;
2569     E.on = E.addListener;
2570     E.un = E.removeListener;
2571
2572     if (document && document.body) {
2573         E._load();
2574     } else {
2575         E.doAdd(window, "load", E._load);
2576     }
2577     E.doAdd(window, "unload", E._unload);
2578     E._tryPreloadAttach();
2579 })();
2580
2581 /*
2582  * Portions of this file are based on pieces of Yahoo User Interface Library
2583  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2584  * YUI licensed under the BSD License:
2585  * http://developer.yahoo.net/yui/license.txt
2586  * <script type="text/javascript">
2587  *
2588  */
2589
2590 (function() {
2591     /**
2592      * @class Roo.lib.Ajax
2593      *
2594      */
2595     Roo.lib.Ajax = {
2596         /**
2597          * @static 
2598          */
2599         request : function(method, uri, cb, data, options) {
2600             if(options){
2601                 var hs = options.headers;
2602                 if(hs){
2603                     for(var h in hs){
2604                         if(hs.hasOwnProperty(h)){
2605                             this.initHeader(h, hs[h], false);
2606                         }
2607                     }
2608                 }
2609                 if(options.xmlData){
2610                     this.initHeader('Content-Type', 'text/xml', false);
2611                     method = 'POST';
2612                     data = options.xmlData;
2613                 }
2614             }
2615
2616             return this.asyncRequest(method, uri, cb, data);
2617         },
2618
2619         serializeForm : function(form) {
2620             if(typeof form == 'string') {
2621                 form = (document.getElementById(form) || document.forms[form]);
2622             }
2623
2624             var el, name, val, disabled, data = '', hasSubmit = false;
2625             for (var i = 0; i < form.elements.length; i++) {
2626                 el = form.elements[i];
2627                 disabled = form.elements[i].disabled;
2628                 name = form.elements[i].name;
2629                 val = form.elements[i].value;
2630
2631                 if (!disabled && name){
2632                     switch (el.type)
2633                             {
2634                         case 'select-one':
2635                         case 'select-multiple':
2636                             for (var j = 0; j < el.options.length; j++) {
2637                                 if (el.options[j].selected) {
2638                                     if (Roo.isIE) {
2639                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2640                                     }
2641                                     else {
2642                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2643                                     }
2644                                 }
2645                             }
2646                             break;
2647                         case 'radio':
2648                         case 'checkbox':
2649                             if (el.checked) {
2650                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2651                             }
2652                             break;
2653                         case 'file':
2654
2655                         case undefined:
2656
2657                         case 'reset':
2658
2659                         case 'button':
2660
2661                             break;
2662                         case 'submit':
2663                             if(hasSubmit == false) {
2664                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2665                                 hasSubmit = true;
2666                             }
2667                             break;
2668                         default:
2669                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2670                             break;
2671                     }
2672                 }
2673             }
2674             data = data.substr(0, data.length - 1);
2675             return data;
2676         },
2677
2678         headers:{},
2679
2680         hasHeaders:false,
2681
2682         useDefaultHeader:true,
2683
2684         defaultPostHeader:'application/x-www-form-urlencoded',
2685
2686         useDefaultXhrHeader:true,
2687
2688         defaultXhrHeader:'XMLHttpRequest',
2689
2690         hasDefaultHeaders:true,
2691
2692         defaultHeaders:{},
2693
2694         poll:{},
2695
2696         timeout:{},
2697
2698         pollInterval:50,
2699
2700         transactionId:0,
2701
2702         setProgId:function(id)
2703         {
2704             this.activeX.unshift(id);
2705         },
2706
2707         setDefaultPostHeader:function(b)
2708         {
2709             this.useDefaultHeader = b;
2710         },
2711
2712         setDefaultXhrHeader:function(b)
2713         {
2714             this.useDefaultXhrHeader = b;
2715         },
2716
2717         setPollingInterval:function(i)
2718         {
2719             if (typeof i == 'number' && isFinite(i)) {
2720                 this.pollInterval = i;
2721             }
2722         },
2723
2724         createXhrObject:function(transactionId)
2725         {
2726             var obj,http;
2727             try
2728             {
2729
2730                 http = new XMLHttpRequest();
2731
2732                 obj = { conn:http, tId:transactionId };
2733             }
2734             catch(e)
2735             {
2736                 for (var i = 0; i < this.activeX.length; ++i) {
2737                     try
2738                     {
2739
2740                         http = new ActiveXObject(this.activeX[i]);
2741
2742                         obj = { conn:http, tId:transactionId };
2743                         break;
2744                     }
2745                     catch(e) {
2746                     }
2747                 }
2748             }
2749             finally
2750             {
2751                 return obj;
2752             }
2753         },
2754
2755         getConnectionObject:function()
2756         {
2757             var o;
2758             var tId = this.transactionId;
2759
2760             try
2761             {
2762                 o = this.createXhrObject(tId);
2763                 if (o) {
2764                     this.transactionId++;
2765                 }
2766             }
2767             catch(e) {
2768             }
2769             finally
2770             {
2771                 return o;
2772             }
2773         },
2774
2775         asyncRequest:function(method, uri, callback, postData)
2776         {
2777             var o = this.getConnectionObject();
2778
2779             if (!o) {
2780                 return null;
2781             }
2782             else {
2783                 o.conn.open(method, uri, true);
2784
2785                 if (this.useDefaultXhrHeader) {
2786                     if (!this.defaultHeaders['X-Requested-With']) {
2787                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2788                     }
2789                 }
2790
2791                 if(postData && this.useDefaultHeader){
2792                     this.initHeader('Content-Type', this.defaultPostHeader);
2793                 }
2794
2795                  if (this.hasDefaultHeaders || this.hasHeaders) {
2796                     this.setHeader(o);
2797                 }
2798
2799                 this.handleReadyState(o, callback);
2800                 o.conn.send(postData || null);
2801
2802                 return o;
2803             }
2804         },
2805
2806         handleReadyState:function(o, callback)
2807         {
2808             var oConn = this;
2809
2810             if (callback && callback.timeout) {
2811                 
2812                 this.timeout[o.tId] = window.setTimeout(function() {
2813                     oConn.abort(o, callback, true);
2814                 }, callback.timeout);
2815             }
2816
2817             this.poll[o.tId] = window.setInterval(
2818                     function() {
2819                         if (o.conn && o.conn.readyState == 4) {
2820                             window.clearInterval(oConn.poll[o.tId]);
2821                             delete oConn.poll[o.tId];
2822
2823                             if(callback && callback.timeout) {
2824                                 window.clearTimeout(oConn.timeout[o.tId]);
2825                                 delete oConn.timeout[o.tId];
2826                             }
2827
2828                             oConn.handleTransactionResponse(o, callback);
2829                         }
2830                     }
2831                     , this.pollInterval);
2832         },
2833
2834         handleTransactionResponse:function(o, callback, isAbort)
2835         {
2836
2837             if (!callback) {
2838                 this.releaseObject(o);
2839                 return;
2840             }
2841
2842             var httpStatus, responseObject;
2843
2844             try
2845             {
2846                 if (o.conn.status !== undefined && o.conn.status != 0) {
2847                     httpStatus = o.conn.status;
2848                 }
2849                 else {
2850                     httpStatus = 13030;
2851                 }
2852             }
2853             catch(e) {
2854
2855
2856                 httpStatus = 13030;
2857             }
2858
2859             if (httpStatus >= 200 && httpStatus < 300) {
2860                 responseObject = this.createResponseObject(o, callback.argument);
2861                 if (callback.success) {
2862                     if (!callback.scope) {
2863                         callback.success(responseObject);
2864                     }
2865                     else {
2866
2867
2868                         callback.success.apply(callback.scope, [responseObject]);
2869                     }
2870                 }
2871             }
2872             else {
2873                 switch (httpStatus) {
2874
2875                     case 12002:
2876                     case 12029:
2877                     case 12030:
2878                     case 12031:
2879                     case 12152:
2880                     case 13030:
2881                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2882                         if (callback.failure) {
2883                             if (!callback.scope) {
2884                                 callback.failure(responseObject);
2885                             }
2886                             else {
2887                                 callback.failure.apply(callback.scope, [responseObject]);
2888                             }
2889                         }
2890                         break;
2891                     default:
2892                         responseObject = this.createResponseObject(o, callback.argument);
2893                         if (callback.failure) {
2894                             if (!callback.scope) {
2895                                 callback.failure(responseObject);
2896                             }
2897                             else {
2898                                 callback.failure.apply(callback.scope, [responseObject]);
2899                             }
2900                         }
2901                 }
2902             }
2903
2904             this.releaseObject(o);
2905             responseObject = null;
2906         },
2907
2908         createResponseObject:function(o, callbackArg)
2909         {
2910             var obj = {};
2911             var headerObj = {};
2912
2913             try
2914             {
2915                 var headerStr = o.conn.getAllResponseHeaders();
2916                 var header = headerStr.split('\n');
2917                 for (var i = 0; i < header.length; i++) {
2918                     var delimitPos = header[i].indexOf(':');
2919                     if (delimitPos != -1) {
2920                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
2921                     }
2922                 }
2923             }
2924             catch(e) {
2925             }
2926
2927             obj.tId = o.tId;
2928             obj.status = o.conn.status;
2929             obj.statusText = o.conn.statusText;
2930             obj.getResponseHeader = headerObj;
2931             obj.getAllResponseHeaders = headerStr;
2932             obj.responseText = o.conn.responseText;
2933             obj.responseXML = o.conn.responseXML;
2934
2935             if (typeof callbackArg !== undefined) {
2936                 obj.argument = callbackArg;
2937             }
2938
2939             return obj;
2940         },
2941
2942         createExceptionObject:function(tId, callbackArg, isAbort)
2943         {
2944             var COMM_CODE = 0;
2945             var COMM_ERROR = 'communication failure';
2946             var ABORT_CODE = -1;
2947             var ABORT_ERROR = 'transaction aborted';
2948
2949             var obj = {};
2950
2951             obj.tId = tId;
2952             if (isAbort) {
2953                 obj.status = ABORT_CODE;
2954                 obj.statusText = ABORT_ERROR;
2955             }
2956             else {
2957                 obj.status = COMM_CODE;
2958                 obj.statusText = COMM_ERROR;
2959             }
2960
2961             if (callbackArg) {
2962                 obj.argument = callbackArg;
2963             }
2964
2965             return obj;
2966         },
2967
2968         initHeader:function(label, value, isDefault)
2969         {
2970             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
2971
2972             if (headerObj[label] === undefined) {
2973                 headerObj[label] = value;
2974             }
2975             else {
2976
2977
2978                 headerObj[label] = value + "," + headerObj[label];
2979             }
2980
2981             if (isDefault) {
2982                 this.hasDefaultHeaders = true;
2983             }
2984             else {
2985                 this.hasHeaders = true;
2986             }
2987         },
2988
2989
2990         setHeader:function(o)
2991         {
2992             if (this.hasDefaultHeaders) {
2993                 for (var prop in this.defaultHeaders) {
2994                     if (this.defaultHeaders.hasOwnProperty(prop)) {
2995                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
2996                     }
2997                 }
2998             }
2999
3000             if (this.hasHeaders) {
3001                 for (var prop in this.headers) {
3002                     if (this.headers.hasOwnProperty(prop)) {
3003                         o.conn.setRequestHeader(prop, this.headers[prop]);
3004                     }
3005                 }
3006                 this.headers = {};
3007                 this.hasHeaders = false;
3008             }
3009         },
3010
3011         resetDefaultHeaders:function() {
3012             delete this.defaultHeaders;
3013             this.defaultHeaders = {};
3014             this.hasDefaultHeaders = false;
3015         },
3016
3017         abort:function(o, callback, isTimeout)
3018         {
3019             if(this.isCallInProgress(o)) {
3020                 o.conn.abort();
3021                 window.clearInterval(this.poll[o.tId]);
3022                 delete this.poll[o.tId];
3023                 if (isTimeout) {
3024                     delete this.timeout[o.tId];
3025                 }
3026
3027                 this.handleTransactionResponse(o, callback, true);
3028
3029                 return true;
3030             }
3031             else {
3032                 return false;
3033             }
3034         },
3035
3036
3037         isCallInProgress:function(o)
3038         {
3039             if (o && o.conn) {
3040                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3041             }
3042             else {
3043
3044                 return false;
3045             }
3046         },
3047
3048
3049         releaseObject:function(o)
3050         {
3051
3052             o.conn = null;
3053
3054             o = null;
3055         },
3056
3057         activeX:[
3058         'MSXML2.XMLHTTP.3.0',
3059         'MSXML2.XMLHTTP',
3060         'Microsoft.XMLHTTP'
3061         ]
3062
3063
3064     };
3065 })();/*
3066  * Portions of this file are based on pieces of Yahoo User Interface Library
3067  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3068  * YUI licensed under the BSD License:
3069  * http://developer.yahoo.net/yui/license.txt
3070  * <script type="text/javascript">
3071  *
3072  */
3073
3074 Roo.lib.Region = function(t, r, b, l) {
3075     this.top = t;
3076     this[1] = t;
3077     this.right = r;
3078     this.bottom = b;
3079     this.left = l;
3080     this[0] = l;
3081 };
3082
3083
3084 Roo.lib.Region.prototype = {
3085     contains : function(region) {
3086         return ( region.left >= this.left &&
3087                  region.right <= this.right &&
3088                  region.top >= this.top &&
3089                  region.bottom <= this.bottom    );
3090
3091     },
3092
3093     getArea : function() {
3094         return ( (this.bottom - this.top) * (this.right - this.left) );
3095     },
3096
3097     intersect : function(region) {
3098         var t = Math.max(this.top, region.top);
3099         var r = Math.min(this.right, region.right);
3100         var b = Math.min(this.bottom, region.bottom);
3101         var l = Math.max(this.left, region.left);
3102
3103         if (b >= t && r >= l) {
3104             return new Roo.lib.Region(t, r, b, l);
3105         } else {
3106             return null;
3107         }
3108     },
3109     union : function(region) {
3110         var t = Math.min(this.top, region.top);
3111         var r = Math.max(this.right, region.right);
3112         var b = Math.max(this.bottom, region.bottom);
3113         var l = Math.min(this.left, region.left);
3114
3115         return new Roo.lib.Region(t, r, b, l);
3116     },
3117
3118     adjust : function(t, l, b, r) {
3119         this.top += t;
3120         this.left += l;
3121         this.right += r;
3122         this.bottom += b;
3123         return this;
3124     }
3125 };
3126
3127 Roo.lib.Region.getRegion = function(el) {
3128     var p = Roo.lib.Dom.getXY(el);
3129
3130     var t = p[1];
3131     var r = p[0] + el.offsetWidth;
3132     var b = p[1] + el.offsetHeight;
3133     var l = p[0];
3134
3135     return new Roo.lib.Region(t, r, b, l);
3136 };
3137 /*
3138  * Portions of this file are based on pieces of Yahoo User Interface Library
3139  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3140  * YUI licensed under the BSD License:
3141  * http://developer.yahoo.net/yui/license.txt
3142  * <script type="text/javascript">
3143  *
3144  */
3145 //@@dep Roo.lib.Region
3146
3147
3148 Roo.lib.Point = function(x, y) {
3149     if (x instanceof Array) {
3150         y = x[1];
3151         x = x[0];
3152     }
3153     this.x = this.right = this.left = this[0] = x;
3154     this.y = this.top = this.bottom = this[1] = y;
3155 };
3156
3157 Roo.lib.Point.prototype = new Roo.lib.Region();
3158 /*
3159  * Portions of this file are based on pieces of Yahoo User Interface Library
3160  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3161  * YUI licensed under the BSD License:
3162  * http://developer.yahoo.net/yui/license.txt
3163  * <script type="text/javascript">
3164  *
3165  */
3166  
3167 (function() {   
3168
3169     Roo.lib.Anim = {
3170         scroll : function(el, args, duration, easing, cb, scope) {
3171             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3172         },
3173
3174         motion : function(el, args, duration, easing, cb, scope) {
3175             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3176         },
3177
3178         color : function(el, args, duration, easing, cb, scope) {
3179             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3180         },
3181
3182         run : function(el, args, duration, easing, cb, scope, type) {
3183             type = type || Roo.lib.AnimBase;
3184             if (typeof easing == "string") {
3185                 easing = Roo.lib.Easing[easing];
3186             }
3187             var anim = new type(el, args, duration, easing);
3188             anim.animateX(function() {
3189                 Roo.callback(cb, scope);
3190             });
3191             return anim;
3192         }
3193     };
3194 })();/*
3195  * Portions of this file are based on pieces of Yahoo User Interface Library
3196  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3197  * YUI licensed under the BSD License:
3198  * http://developer.yahoo.net/yui/license.txt
3199  * <script type="text/javascript">
3200  *
3201  */
3202
3203 (function() {    
3204     var libFlyweight;
3205     
3206     function fly(el) {
3207         if (!libFlyweight) {
3208             libFlyweight = new Roo.Element.Flyweight();
3209         }
3210         libFlyweight.dom = el;
3211         return libFlyweight;
3212     }
3213
3214     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3215     
3216    
3217     
3218     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3219         if (el) {
3220             this.init(el, attributes, duration, method);
3221         }
3222     };
3223
3224     Roo.lib.AnimBase.fly = fly;
3225     
3226     
3227     
3228     Roo.lib.AnimBase.prototype = {
3229
3230         toString: function() {
3231             var el = this.getEl();
3232             var id = el.id || el.tagName;
3233             return ("Anim " + id);
3234         },
3235
3236         patterns: {
3237             noNegatives:        /width|height|opacity|padding/i,
3238             offsetAttribute:  /^((width|height)|(top|left))$/,
3239             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3240             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3241         },
3242
3243
3244         doMethod: function(attr, start, end) {
3245             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3246         },
3247
3248
3249         setAttribute: function(attr, val, unit) {
3250             if (this.patterns.noNegatives.test(attr)) {
3251                 val = (val > 0) ? val : 0;
3252             }
3253
3254             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3255         },
3256
3257
3258         getAttribute: function(attr) {
3259             var el = this.getEl();
3260             var val = fly(el).getStyle(attr);
3261
3262             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3263                 return parseFloat(val);
3264             }
3265
3266             var a = this.patterns.offsetAttribute.exec(attr) || [];
3267             var pos = !!( a[3] );
3268             var box = !!( a[2] );
3269
3270
3271             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3272                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3273             } else {
3274                 val = 0;
3275             }
3276
3277             return val;
3278         },
3279
3280
3281         getDefaultUnit: function(attr) {
3282             if (this.patterns.defaultUnit.test(attr)) {
3283                 return 'px';
3284             }
3285
3286             return '';
3287         },
3288
3289         animateX : function(callback, scope) {
3290             var f = function() {
3291                 this.onComplete.removeListener(f);
3292                 if (typeof callback == "function") {
3293                     callback.call(scope || this, this);
3294                 }
3295             };
3296             this.onComplete.addListener(f, this);
3297             this.animate();
3298         },
3299
3300
3301         setRuntimeAttribute: function(attr) {
3302             var start;
3303             var end;
3304             var attributes = this.attributes;
3305
3306             this.runtimeAttributes[attr] = {};
3307
3308             var isset = function(prop) {
3309                 return (typeof prop !== 'undefined');
3310             };
3311
3312             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3313                 return false;
3314             }
3315
3316             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3317
3318
3319             if (isset(attributes[attr]['to'])) {
3320                 end = attributes[attr]['to'];
3321             } else if (isset(attributes[attr]['by'])) {
3322                 if (start.constructor == Array) {
3323                     end = [];
3324                     for (var i = 0, len = start.length; i < len; ++i) {
3325                         end[i] = start[i] + attributes[attr]['by'][i];
3326                     }
3327                 } else {
3328                     end = start + attributes[attr]['by'];
3329                 }
3330             }
3331
3332             this.runtimeAttributes[attr].start = start;
3333             this.runtimeAttributes[attr].end = end;
3334
3335
3336             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3337         },
3338
3339
3340         init: function(el, attributes, duration, method) {
3341
3342             var isAnimated = false;
3343
3344
3345             var startTime = null;
3346
3347
3348             var actualFrames = 0;
3349
3350
3351             el = Roo.getDom(el);
3352
3353
3354             this.attributes = attributes || {};
3355
3356
3357             this.duration = duration || 1;
3358
3359
3360             this.method = method || Roo.lib.Easing.easeNone;
3361
3362
3363             this.useSeconds = true;
3364
3365
3366             this.currentFrame = 0;
3367
3368
3369             this.totalFrames = Roo.lib.AnimMgr.fps;
3370
3371
3372             this.getEl = function() {
3373                 return el;
3374             };
3375
3376
3377             this.isAnimated = function() {
3378                 return isAnimated;
3379             };
3380
3381
3382             this.getStartTime = function() {
3383                 return startTime;
3384             };
3385
3386             this.runtimeAttributes = {};
3387
3388
3389             this.animate = function() {
3390                 if (this.isAnimated()) {
3391                     return false;
3392                 }
3393
3394                 this.currentFrame = 0;
3395
3396                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3397
3398                 Roo.lib.AnimMgr.registerElement(this);
3399             };
3400
3401
3402             this.stop = function(finish) {
3403                 if (finish) {
3404                     this.currentFrame = this.totalFrames;
3405                     this._onTween.fire();
3406                 }
3407                 Roo.lib.AnimMgr.stop(this);
3408             };
3409
3410             var onStart = function() {
3411                 this.onStart.fire();
3412
3413                 this.runtimeAttributes = {};
3414                 for (var attr in this.attributes) {
3415                     this.setRuntimeAttribute(attr);
3416                 }
3417
3418                 isAnimated = true;
3419                 actualFrames = 0;
3420                 startTime = new Date();
3421             };
3422
3423
3424             var onTween = function() {
3425                 var data = {
3426                     duration: new Date() - this.getStartTime(),
3427                     currentFrame: this.currentFrame
3428                 };
3429
3430                 data.toString = function() {
3431                     return (
3432                             'duration: ' + data.duration +
3433                             ', currentFrame: ' + data.currentFrame
3434                             );
3435                 };
3436
3437                 this.onTween.fire(data);
3438
3439                 var runtimeAttributes = this.runtimeAttributes;
3440
3441                 for (var attr in runtimeAttributes) {
3442                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3443                 }
3444
3445                 actualFrames += 1;
3446             };
3447
3448             var onComplete = function() {
3449                 var actual_duration = (new Date() - startTime) / 1000 ;
3450
3451                 var data = {
3452                     duration: actual_duration,
3453                     frames: actualFrames,
3454                     fps: actualFrames / actual_duration
3455                 };
3456
3457                 data.toString = function() {
3458                     return (
3459                             'duration: ' + data.duration +
3460                             ', frames: ' + data.frames +
3461                             ', fps: ' + data.fps
3462                             );
3463                 };
3464
3465                 isAnimated = false;
3466                 actualFrames = 0;
3467                 this.onComplete.fire(data);
3468             };
3469
3470
3471             this._onStart = new Roo.util.Event(this);
3472             this.onStart = new Roo.util.Event(this);
3473             this.onTween = new Roo.util.Event(this);
3474             this._onTween = new Roo.util.Event(this);
3475             this.onComplete = new Roo.util.Event(this);
3476             this._onComplete = new Roo.util.Event(this);
3477             this._onStart.addListener(onStart);
3478             this._onTween.addListener(onTween);
3479             this._onComplete.addListener(onComplete);
3480         }
3481     };
3482 })();
3483 /*
3484  * Portions of this file are based on pieces of Yahoo User Interface Library
3485  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3486  * YUI licensed under the BSD License:
3487  * http://developer.yahoo.net/yui/license.txt
3488  * <script type="text/javascript">
3489  *
3490  */
3491
3492 Roo.lib.AnimMgr = new function() {
3493
3494     var thread = null;
3495
3496
3497     var queue = [];
3498
3499
3500     var tweenCount = 0;
3501
3502
3503     this.fps = 1000;
3504
3505
3506     this.delay = 1;
3507
3508
3509     this.registerElement = function(tween) {
3510         queue[queue.length] = tween;
3511         tweenCount += 1;
3512         tween._onStart.fire();
3513         this.start();
3514     };
3515
3516
3517     this.unRegister = function(tween, index) {
3518         tween._onComplete.fire();
3519         index = index || getIndex(tween);
3520         if (index != -1) {
3521             queue.splice(index, 1);
3522         }
3523
3524         tweenCount -= 1;
3525         if (tweenCount <= 0) {
3526             this.stop();
3527         }
3528     };
3529
3530
3531     this.start = function() {
3532         if (thread === null) {
3533             thread = setInterval(this.run, this.delay);
3534         }
3535     };
3536
3537
3538     this.stop = function(tween) {
3539         if (!tween) {
3540             clearInterval(thread);
3541
3542             for (var i = 0, len = queue.length; i < len; ++i) {
3543                 if (queue[0].isAnimated()) {
3544                     this.unRegister(queue[0], 0);
3545                 }
3546             }
3547
3548             queue = [];
3549             thread = null;
3550             tweenCount = 0;
3551         }
3552         else {
3553             this.unRegister(tween);
3554         }
3555     };
3556
3557
3558     this.run = function() {
3559         for (var i = 0, len = queue.length; i < len; ++i) {
3560             var tween = queue[i];
3561             if (!tween || !tween.isAnimated()) {
3562                 continue;
3563             }
3564
3565             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3566             {
3567                 tween.currentFrame += 1;
3568
3569                 if (tween.useSeconds) {
3570                     correctFrame(tween);
3571                 }
3572                 tween._onTween.fire();
3573             }
3574             else {
3575                 Roo.lib.AnimMgr.stop(tween, i);
3576             }
3577         }
3578     };
3579
3580     var getIndex = function(anim) {
3581         for (var i = 0, len = queue.length; i < len; ++i) {
3582             if (queue[i] == anim) {
3583                 return i;
3584             }
3585         }
3586         return -1;
3587     };
3588
3589
3590     var correctFrame = function(tween) {
3591         var frames = tween.totalFrames;
3592         var frame = tween.currentFrame;
3593         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3594         var elapsed = (new Date() - tween.getStartTime());
3595         var tweak = 0;
3596
3597         if (elapsed < tween.duration * 1000) {
3598             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3599         } else {
3600             tweak = frames - (frame + 1);
3601         }
3602         if (tweak > 0 && isFinite(tweak)) {
3603             if (tween.currentFrame + tweak >= frames) {
3604                 tweak = frames - (frame + 1);
3605             }
3606
3607             tween.currentFrame += tweak;
3608         }
3609     };
3610 };
3611
3612     /*
3613  * Portions of this file are based on pieces of Yahoo User Interface Library
3614  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3615  * YUI licensed under the BSD License:
3616  * http://developer.yahoo.net/yui/license.txt
3617  * <script type="text/javascript">
3618  *
3619  */
3620 Roo.lib.Bezier = new function() {
3621
3622         this.getPosition = function(points, t) {
3623             var n = points.length;
3624             var tmp = [];
3625
3626             for (var i = 0; i < n; ++i) {
3627                 tmp[i] = [points[i][0], points[i][1]];
3628             }
3629
3630             for (var j = 1; j < n; ++j) {
3631                 for (i = 0; i < n - j; ++i) {
3632                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3633                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3634                 }
3635             }
3636
3637             return [ tmp[0][0], tmp[0][1] ];
3638
3639         };
3640     };/*
3641  * Portions of this file are based on pieces of Yahoo User Interface Library
3642  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3643  * YUI licensed under the BSD License:
3644  * http://developer.yahoo.net/yui/license.txt
3645  * <script type="text/javascript">
3646  *
3647  */
3648 (function() {
3649
3650     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
3651         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
3652     };
3653
3654     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
3655
3656     var fly = Roo.lib.AnimBase.fly;
3657     var Y = Roo.lib;
3658     var superclass = Y.ColorAnim.superclass;
3659     var proto = Y.ColorAnim.prototype;
3660
3661     proto.toString = function() {
3662         var el = this.getEl();
3663         var id = el.id || el.tagName;
3664         return ("ColorAnim " + id);
3665     };
3666
3667     proto.patterns.color = /color$/i;
3668     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
3669     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
3670     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
3671     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
3672
3673
3674     proto.parseColor = function(s) {
3675         if (s.length == 3) {
3676             return s;
3677         }
3678
3679         var c = this.patterns.hex.exec(s);
3680         if (c && c.length == 4) {
3681             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
3682         }
3683
3684         c = this.patterns.rgb.exec(s);
3685         if (c && c.length == 4) {
3686             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
3687         }
3688
3689         c = this.patterns.hex3.exec(s);
3690         if (c && c.length == 4) {
3691             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
3692         }
3693
3694         return null;
3695     };
3696     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
3697     proto.getAttribute = function(attr) {
3698         var el = this.getEl();
3699         if (this.patterns.color.test(attr)) {
3700             var val = fly(el).getStyle(attr);
3701
3702             if (this.patterns.transparent.test(val)) {
3703                 var parent = el.parentNode;
3704                 val = fly(parent).getStyle(attr);
3705
3706                 while (parent && this.patterns.transparent.test(val)) {
3707                     parent = parent.parentNode;
3708                     val = fly(parent).getStyle(attr);
3709                     if (parent.tagName.toUpperCase() == 'HTML') {
3710                         val = '#fff';
3711                     }
3712                 }
3713             }
3714         } else {
3715             val = superclass.getAttribute.call(this, attr);
3716         }
3717
3718         return val;
3719     };
3720     proto.getAttribute = function(attr) {
3721         var el = this.getEl();
3722         if (this.patterns.color.test(attr)) {
3723             var val = fly(el).getStyle(attr);
3724
3725             if (this.patterns.transparent.test(val)) {
3726                 var parent = el.parentNode;
3727                 val = fly(parent).getStyle(attr);
3728
3729                 while (parent && this.patterns.transparent.test(val)) {
3730                     parent = parent.parentNode;
3731                     val = fly(parent).getStyle(attr);
3732                     if (parent.tagName.toUpperCase() == 'HTML') {
3733                         val = '#fff';
3734                     }
3735                 }
3736             }
3737         } else {
3738             val = superclass.getAttribute.call(this, attr);
3739         }
3740
3741         return val;
3742     };
3743
3744     proto.doMethod = function(attr, start, end) {
3745         var val;
3746
3747         if (this.patterns.color.test(attr)) {
3748             val = [];
3749             for (var i = 0, len = start.length; i < len; ++i) {
3750                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
3751             }
3752
3753             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
3754         }
3755         else {
3756             val = superclass.doMethod.call(this, attr, start, end);
3757         }
3758
3759         return val;
3760     };
3761
3762     proto.setRuntimeAttribute = function(attr) {
3763         superclass.setRuntimeAttribute.call(this, attr);
3764
3765         if (this.patterns.color.test(attr)) {
3766             var attributes = this.attributes;
3767             var start = this.parseColor(this.runtimeAttributes[attr].start);
3768             var end = this.parseColor(this.runtimeAttributes[attr].end);
3769
3770             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
3771                 end = this.parseColor(attributes[attr].by);
3772
3773                 for (var i = 0, len = start.length; i < len; ++i) {
3774                     end[i] = start[i] + end[i];
3775                 }
3776             }
3777
3778             this.runtimeAttributes[attr].start = start;
3779             this.runtimeAttributes[attr].end = end;
3780         }
3781     };
3782 })();
3783
3784 /*
3785  * Portions of this file are based on pieces of Yahoo User Interface Library
3786  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3787  * YUI licensed under the BSD License:
3788  * http://developer.yahoo.net/yui/license.txt
3789  * <script type="text/javascript">
3790  *
3791  */
3792 Roo.lib.Easing = {
3793
3794
3795     easeNone: function (t, b, c, d) {
3796         return c * t / d + b;
3797     },
3798
3799
3800     easeIn: function (t, b, c, d) {
3801         return c * (t /= d) * t + b;
3802     },
3803
3804
3805     easeOut: function (t, b, c, d) {
3806         return -c * (t /= d) * (t - 2) + b;
3807     },
3808
3809
3810     easeBoth: function (t, b, c, d) {
3811         if ((t /= d / 2) < 1) {
3812             return c / 2 * t * t + b;
3813         }
3814
3815         return -c / 2 * ((--t) * (t - 2) - 1) + b;
3816     },
3817
3818
3819     easeInStrong: function (t, b, c, d) {
3820         return c * (t /= d) * t * t * t + b;
3821     },
3822
3823
3824     easeOutStrong: function (t, b, c, d) {
3825         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
3826     },
3827
3828
3829     easeBothStrong: function (t, b, c, d) {
3830         if ((t /= d / 2) < 1) {
3831             return c / 2 * t * t * t * t + b;
3832         }
3833
3834         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
3835     },
3836
3837
3838
3839     elasticIn: function (t, b, c, d, a, p) {
3840         if (t == 0) {
3841             return b;
3842         }
3843         if ((t /= d) == 1) {
3844             return b + c;
3845         }
3846         if (!p) {
3847             p = d * .3;
3848         }
3849
3850         if (!a || a < Math.abs(c)) {
3851             a = c;
3852             var s = p / 4;
3853         }
3854         else {
3855             var s = p / (2 * Math.PI) * Math.asin(c / a);
3856         }
3857
3858         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3859     },
3860
3861
3862     elasticOut: function (t, b, c, d, a, p) {
3863         if (t == 0) {
3864             return b;
3865         }
3866         if ((t /= d) == 1) {
3867             return b + c;
3868         }
3869         if (!p) {
3870             p = d * .3;
3871         }
3872
3873         if (!a || a < Math.abs(c)) {
3874             a = c;
3875             var s = p / 4;
3876         }
3877         else {
3878             var s = p / (2 * Math.PI) * Math.asin(c / a);
3879         }
3880
3881         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
3882     },
3883
3884
3885     elasticBoth: function (t, b, c, d, a, p) {
3886         if (t == 0) {
3887             return b;
3888         }
3889
3890         if ((t /= d / 2) == 2) {
3891             return b + c;
3892         }
3893
3894         if (!p) {
3895             p = d * (.3 * 1.5);
3896         }
3897
3898         if (!a || a < Math.abs(c)) {
3899             a = c;
3900             var s = p / 4;
3901         }
3902         else {
3903             var s = p / (2 * Math.PI) * Math.asin(c / a);
3904         }
3905
3906         if (t < 1) {
3907             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
3908                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
3909         }
3910         return a * Math.pow(2, -10 * (t -= 1)) *
3911                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
3912     },
3913
3914
3915
3916     backIn: function (t, b, c, d, s) {
3917         if (typeof s == 'undefined') {
3918             s = 1.70158;
3919         }
3920         return c * (t /= d) * t * ((s + 1) * t - s) + b;
3921     },
3922
3923
3924     backOut: function (t, b, c, d, s) {
3925         if (typeof s == 'undefined') {
3926             s = 1.70158;
3927         }
3928         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
3929     },
3930
3931
3932     backBoth: function (t, b, c, d, s) {
3933         if (typeof s == 'undefined') {
3934             s = 1.70158;
3935         }
3936
3937         if ((t /= d / 2 ) < 1) {
3938             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
3939         }
3940         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
3941     },
3942
3943
3944     bounceIn: function (t, b, c, d) {
3945         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
3946     },
3947
3948
3949     bounceOut: function (t, b, c, d) {
3950         if ((t /= d) < (1 / 2.75)) {
3951             return c * (7.5625 * t * t) + b;
3952         } else if (t < (2 / 2.75)) {
3953             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
3954         } else if (t < (2.5 / 2.75)) {
3955             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
3956         }
3957         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
3958     },
3959
3960
3961     bounceBoth: function (t, b, c, d) {
3962         if (t < d / 2) {
3963             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
3964         }
3965         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
3966     }
3967 };/*
3968  * Portions of this file are based on pieces of Yahoo User Interface Library
3969  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3970  * YUI licensed under the BSD License:
3971  * http://developer.yahoo.net/yui/license.txt
3972  * <script type="text/javascript">
3973  *
3974  */
3975     (function() {
3976         Roo.lib.Motion = function(el, attributes, duration, method) {
3977             if (el) {
3978                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
3979             }
3980         };
3981
3982         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
3983
3984
3985         var Y = Roo.lib;
3986         var superclass = Y.Motion.superclass;
3987         var proto = Y.Motion.prototype;
3988
3989         proto.toString = function() {
3990             var el = this.getEl();
3991             var id = el.id || el.tagName;
3992             return ("Motion " + id);
3993         };
3994
3995         proto.patterns.points = /^points$/i;
3996
3997         proto.setAttribute = function(attr, val, unit) {
3998             if (this.patterns.points.test(attr)) {
3999                 unit = unit || 'px';
4000                 superclass.setAttribute.call(this, 'left', val[0], unit);
4001                 superclass.setAttribute.call(this, 'top', val[1], unit);
4002             } else {
4003                 superclass.setAttribute.call(this, attr, val, unit);
4004             }
4005         };
4006
4007         proto.getAttribute = function(attr) {
4008             if (this.patterns.points.test(attr)) {
4009                 var val = [
4010                         superclass.getAttribute.call(this, 'left'),
4011                         superclass.getAttribute.call(this, 'top')
4012                         ];
4013             } else {
4014                 val = superclass.getAttribute.call(this, attr);
4015             }
4016
4017             return val;
4018         };
4019
4020         proto.doMethod = function(attr, start, end) {
4021             var val = null;
4022
4023             if (this.patterns.points.test(attr)) {
4024                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
4025                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4026             } else {
4027                 val = superclass.doMethod.call(this, attr, start, end);
4028             }
4029             return val;
4030         };
4031
4032         proto.setRuntimeAttribute = function(attr) {
4033             if (this.patterns.points.test(attr)) {
4034                 var el = this.getEl();
4035                 var attributes = this.attributes;
4036                 var start;
4037                 var control = attributes['points']['control'] || [];
4038                 var end;
4039                 var i, len;
4040
4041                 if (control.length > 0 && !(control[0] instanceof Array)) {
4042                     control = [control];
4043                 } else {
4044                     var tmp = [];
4045                     for (i = 0,len = control.length; i < len; ++i) {
4046                         tmp[i] = control[i];
4047                     }
4048                     control = tmp;
4049                 }
4050
4051                 Roo.fly(el).position();
4052
4053                 if (isset(attributes['points']['from'])) {
4054                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4055                 }
4056                 else {
4057                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4058                 }
4059
4060                 start = this.getAttribute('points');
4061
4062
4063                 if (isset(attributes['points']['to'])) {
4064                     end = translateValues.call(this, attributes['points']['to'], start);
4065
4066                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4067                     for (i = 0,len = control.length; i < len; ++i) {
4068                         control[i] = translateValues.call(this, control[i], start);
4069                     }
4070
4071
4072                 } else if (isset(attributes['points']['by'])) {
4073                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4074
4075                     for (i = 0,len = control.length; i < len; ++i) {
4076                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4077                     }
4078                 }
4079
4080                 this.runtimeAttributes[attr] = [start];
4081
4082                 if (control.length > 0) {
4083                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4084                 }
4085
4086                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4087             }
4088             else {
4089                 superclass.setRuntimeAttribute.call(this, attr);
4090             }
4091         };
4092
4093         var translateValues = function(val, start) {
4094             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4095             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4096
4097             return val;
4098         };
4099
4100         var isset = function(prop) {
4101             return (typeof prop !== 'undefined');
4102         };
4103     })();
4104 /*
4105  * Portions of this file are based on pieces of Yahoo User Interface Library
4106  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4107  * YUI licensed under the BSD License:
4108  * http://developer.yahoo.net/yui/license.txt
4109  * <script type="text/javascript">
4110  *
4111  */
4112     (function() {
4113         Roo.lib.Scroll = function(el, attributes, duration, method) {
4114             if (el) {
4115                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4116             }
4117         };
4118
4119         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4120
4121
4122         var Y = Roo.lib;
4123         var superclass = Y.Scroll.superclass;
4124         var proto = Y.Scroll.prototype;
4125
4126         proto.toString = function() {
4127             var el = this.getEl();
4128             var id = el.id || el.tagName;
4129             return ("Scroll " + id);
4130         };
4131
4132         proto.doMethod = function(attr, start, end) {
4133             var val = null;
4134
4135             if (attr == 'scroll') {
4136                 val = [
4137                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4138                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4139                         ];
4140
4141             } else {
4142                 val = superclass.doMethod.call(this, attr, start, end);
4143             }
4144             return val;
4145         };
4146
4147         proto.getAttribute = function(attr) {
4148             var val = null;
4149             var el = this.getEl();
4150
4151             if (attr == 'scroll') {
4152                 val = [ el.scrollLeft, el.scrollTop ];
4153             } else {
4154                 val = superclass.getAttribute.call(this, attr);
4155             }
4156
4157             return val;
4158         };
4159
4160         proto.setAttribute = function(attr, val, unit) {
4161             var el = this.getEl();
4162
4163             if (attr == 'scroll') {
4164                 el.scrollLeft = val[0];
4165                 el.scrollTop = val[1];
4166             } else {
4167                 superclass.setAttribute.call(this, attr, val, unit);
4168             }
4169         };
4170     })();
4171 /*
4172  * Based on:
4173  * Ext JS Library 1.1.1
4174  * Copyright(c) 2006-2007, Ext JS, LLC.
4175  *
4176  * Originally Released Under LGPL - original licence link has changed is not relivant.
4177  *
4178  * Fork - LGPL
4179  * <script type="text/javascript">
4180  */
4181
4182
4183 // nasty IE9 hack - what a pile of crap that is..
4184
4185  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
4186     Range.prototype.createContextualFragment = function (html) {
4187         var doc = window.document;
4188         var container = doc.createElement("div");
4189         container.innerHTML = html;
4190         var frag = doc.createDocumentFragment(), n;
4191         while ((n = container.firstChild)) {
4192             frag.appendChild(n);
4193         }
4194         return frag;
4195     };
4196 }
4197
4198 /**
4199  * @class Roo.DomHelper
4200  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
4201  * 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>.
4202  * @singleton
4203  */
4204 Roo.DomHelper = function(){
4205     var tempTableEl = null;
4206     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
4207     var tableRe = /^table|tbody|tr|td$/i;
4208     var xmlns = {};
4209     // build as innerHTML where available
4210     /** @ignore */
4211     var createHtml = function(o){
4212         if(typeof o == 'string'){
4213             return o;
4214         }
4215         var b = "";
4216         if(!o.tag){
4217             o.tag = "div";
4218         }
4219         b += "<" + o.tag;
4220         for(var attr in o){
4221             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
4222             if(attr == "style"){
4223                 var s = o["style"];
4224                 if(typeof s == "function"){
4225                     s = s.call();
4226                 }
4227                 if(typeof s == "string"){
4228                     b += ' style="' + s + '"';
4229                 }else if(typeof s == "object"){
4230                     b += ' style="';
4231                     for(var key in s){
4232                         if(typeof s[key] != "function"){
4233                             b += key + ":" + s[key] + ";";
4234                         }
4235                     }
4236                     b += '"';
4237                 }
4238             }else{
4239                 if(attr == "cls"){
4240                     b += ' class="' + o["cls"] + '"';
4241                 }else if(attr == "htmlFor"){
4242                     b += ' for="' + o["htmlFor"] + '"';
4243                 }else{
4244                     b += " " + attr + '="' + o[attr] + '"';
4245                 }
4246             }
4247         }
4248         if(emptyTags.test(o.tag)){
4249             b += "/>";
4250         }else{
4251             b += ">";
4252             var cn = o.children || o.cn;
4253             if(cn){
4254                 //http://bugs.kde.org/show_bug.cgi?id=71506
4255                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4256                     for(var i = 0, len = cn.length; i < len; i++) {
4257                         b += createHtml(cn[i], b);
4258                     }
4259                 }else{
4260                     b += createHtml(cn, b);
4261                 }
4262             }
4263             if(o.html){
4264                 b += o.html;
4265             }
4266             b += "</" + o.tag + ">";
4267         }
4268         return b;
4269     };
4270
4271     // build as dom
4272     /** @ignore */
4273     var createDom = function(o, parentNode){
4274          
4275         // defininition craeted..
4276         var ns = false;
4277         if (o.ns && o.ns != 'html') {
4278                
4279             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
4280                 xmlns[o.ns] = o.xmlns;
4281                 ns = o.xmlns;
4282             }
4283             if (typeof(xmlns[o.ns]) == 'undefined') {
4284                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
4285             }
4286             ns = xmlns[o.ns];
4287         }
4288         
4289         
4290         if (typeof(o) == 'string') {
4291             return parentNode.appendChild(document.createTextNode(o));
4292         }
4293         o.tag = o.tag || div;
4294         if (o.ns && Roo.isIE) {
4295             ns = false;
4296             o.tag = o.ns + ':' + o.tag;
4297             
4298         }
4299         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
4300         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
4301         for(var attr in o){
4302             
4303             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
4304                     attr == "style" || typeof o[attr] == "function") { continue; }
4305                     
4306             if(attr=="cls" && Roo.isIE){
4307                 el.className = o["cls"];
4308             }else{
4309                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
4310                 else { 
4311                     el[attr] = o[attr];
4312                 }
4313             }
4314         }
4315         Roo.DomHelper.applyStyles(el, o.style);
4316         var cn = o.children || o.cn;
4317         if(cn){
4318             //http://bugs.kde.org/show_bug.cgi?id=71506
4319              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
4320                 for(var i = 0, len = cn.length; i < len; i++) {
4321                     createDom(cn[i], el);
4322                 }
4323             }else{
4324                 createDom(cn, el);
4325             }
4326         }
4327         if(o.html){
4328             el.innerHTML = o.html;
4329         }
4330         if(parentNode){
4331            parentNode.appendChild(el);
4332         }
4333         return el;
4334     };
4335
4336     var ieTable = function(depth, s, h, e){
4337         tempTableEl.innerHTML = [s, h, e].join('');
4338         var i = -1, el = tempTableEl;
4339         while(++i < depth){
4340             el = el.firstChild;
4341         }
4342         return el;
4343     };
4344
4345     // kill repeat to save bytes
4346     var ts = '<table>',
4347         te = '</table>',
4348         tbs = ts+'<tbody>',
4349         tbe = '</tbody>'+te,
4350         trs = tbs + '<tr>',
4351         tre = '</tr>'+tbe;
4352
4353     /**
4354      * @ignore
4355      * Nasty code for IE's broken table implementation
4356      */
4357     var insertIntoTable = function(tag, where, el, html){
4358         if(!tempTableEl){
4359             tempTableEl = document.createElement('div');
4360         }
4361         var node;
4362         var before = null;
4363         if(tag == 'td'){
4364             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
4365                 return;
4366             }
4367             if(where == 'beforebegin'){
4368                 before = el;
4369                 el = el.parentNode;
4370             } else{
4371                 before = el.nextSibling;
4372                 el = el.parentNode;
4373             }
4374             node = ieTable(4, trs, html, tre);
4375         }
4376         else if(tag == 'tr'){
4377             if(where == 'beforebegin'){
4378                 before = el;
4379                 el = el.parentNode;
4380                 node = ieTable(3, tbs, html, tbe);
4381             } else if(where == 'afterend'){
4382                 before = el.nextSibling;
4383                 el = el.parentNode;
4384                 node = ieTable(3, tbs, html, tbe);
4385             } else{ // INTO a TR
4386                 if(where == 'afterbegin'){
4387                     before = el.firstChild;
4388                 }
4389                 node = ieTable(4, trs, html, tre);
4390             }
4391         } else if(tag == 'tbody'){
4392             if(where == 'beforebegin'){
4393                 before = el;
4394                 el = el.parentNode;
4395                 node = ieTable(2, ts, html, te);
4396             } else if(where == 'afterend'){
4397                 before = el.nextSibling;
4398                 el = el.parentNode;
4399                 node = ieTable(2, ts, html, te);
4400             } else{
4401                 if(where == 'afterbegin'){
4402                     before = el.firstChild;
4403                 }
4404                 node = ieTable(3, tbs, html, tbe);
4405             }
4406         } else{ // TABLE
4407             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
4408                 return;
4409             }
4410             if(where == 'afterbegin'){
4411                 before = el.firstChild;
4412             }
4413             node = ieTable(2, ts, html, te);
4414         }
4415         el.insertBefore(node, before);
4416         return node;
4417     };
4418
4419     return {
4420     /** True to force the use of DOM instead of html fragments @type Boolean */
4421     useDom : false,
4422
4423     /**
4424      * Returns the markup for the passed Element(s) config
4425      * @param {Object} o The Dom object spec (and children)
4426      * @return {String}
4427      */
4428     markup : function(o){
4429         return createHtml(o);
4430     },
4431
4432     /**
4433      * Applies a style specification to an element
4434      * @param {String/HTMLElement} el The element to apply styles to
4435      * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
4436      * a function which returns such a specification.
4437      */
4438     applyStyles : function(el, styles){
4439         if(styles){
4440            el = Roo.fly(el);
4441            if(typeof styles == "string"){
4442                var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
4443                var matches;
4444                while ((matches = re.exec(styles)) != null){
4445                    el.setStyle(matches[1], matches[2]);
4446                }
4447            }else if (typeof styles == "object"){
4448                for (var style in styles){
4449                   el.setStyle(style, styles[style]);
4450                }
4451            }else if (typeof styles == "function"){
4452                 Roo.DomHelper.applyStyles(el, styles.call());
4453            }
4454         }
4455     },
4456
4457     /**
4458      * Inserts an HTML fragment into the Dom
4459      * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
4460      * @param {HTMLElement} el The context element
4461      * @param {String} html The HTML fragmenet
4462      * @return {HTMLElement} The new node
4463      */
4464     insertHtml : function(where, el, html){
4465         where = where.toLowerCase();
4466         if(el.insertAdjacentHTML){
4467             if(tableRe.test(el.tagName)){
4468                 var rs;
4469                 if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
4470                     return rs;
4471                 }
4472             }
4473             switch(where){
4474                 case "beforebegin":
4475                     el.insertAdjacentHTML('BeforeBegin', html);
4476                     return el.previousSibling;
4477                 case "afterbegin":
4478                     el.insertAdjacentHTML('AfterBegin', html);
4479                     return el.firstChild;
4480                 case "beforeend":
4481                     el.insertAdjacentHTML('BeforeEnd', html);
4482                     return el.lastChild;
4483                 case "afterend":
4484                     el.insertAdjacentHTML('AfterEnd', html);
4485                     return el.nextSibling;
4486             }
4487             throw 'Illegal insertion point -> "' + where + '"';
4488         }
4489         var range = el.ownerDocument.createRange();
4490         var frag;
4491         switch(where){
4492              case "beforebegin":
4493                 range.setStartBefore(el);
4494                 frag = range.createContextualFragment(html);
4495                 el.parentNode.insertBefore(frag, el);
4496                 return el.previousSibling;
4497              case "afterbegin":
4498                 if(el.firstChild){
4499                     range.setStartBefore(el.firstChild);
4500                     frag = range.createContextualFragment(html);
4501                     el.insertBefore(frag, el.firstChild);
4502                     return el.firstChild;
4503                 }else{
4504                     el.innerHTML = html;
4505                     return el.firstChild;
4506                 }
4507             case "beforeend":
4508                 if(el.lastChild){
4509                     range.setStartAfter(el.lastChild);
4510                     frag = range.createContextualFragment(html);
4511                     el.appendChild(frag);
4512                     return el.lastChild;
4513                 }else{
4514                     el.innerHTML = html;
4515                     return el.lastChild;
4516                 }
4517             case "afterend":
4518                 range.setStartAfter(el);
4519                 frag = range.createContextualFragment(html);
4520                 el.parentNode.insertBefore(frag, el.nextSibling);
4521                 return el.nextSibling;
4522             }
4523             throw 'Illegal insertion point -> "' + where + '"';
4524     },
4525
4526     /**
4527      * Creates new Dom element(s) and inserts them before el
4528      * @param {String/HTMLElement/Element} el The context element
4529      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4530      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4531      * @return {HTMLElement/Roo.Element} The new node
4532      */
4533     insertBefore : function(el, o, returnElement){
4534         return this.doInsert(el, o, returnElement, "beforeBegin");
4535     },
4536
4537     /**
4538      * Creates new Dom element(s) and inserts them after el
4539      * @param {String/HTMLElement/Element} el The context element
4540      * @param {Object} o The Dom object spec (and children)
4541      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4542      * @return {HTMLElement/Roo.Element} The new node
4543      */
4544     insertAfter : function(el, o, returnElement){
4545         return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
4546     },
4547
4548     /**
4549      * Creates new Dom element(s) and inserts them as the first child of el
4550      * @param {String/HTMLElement/Element} el The context element
4551      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4552      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4553      * @return {HTMLElement/Roo.Element} The new node
4554      */
4555     insertFirst : function(el, o, returnElement){
4556         return this.doInsert(el, o, returnElement, "afterBegin");
4557     },
4558
4559     // private
4560     doInsert : function(el, o, returnElement, pos, sibling){
4561         el = Roo.getDom(el);
4562         var newNode;
4563         if(this.useDom || o.ns){
4564             newNode = createDom(o, null);
4565             el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
4566         }else{
4567             var html = createHtml(o);
4568             newNode = this.insertHtml(pos, el, html);
4569         }
4570         return returnElement ? Roo.get(newNode, true) : newNode;
4571     },
4572
4573     /**
4574      * Creates new Dom element(s) and appends them to el
4575      * @param {String/HTMLElement/Element} el The context element
4576      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4577      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4578      * @return {HTMLElement/Roo.Element} The new node
4579      */
4580     append : function(el, o, returnElement){
4581         el = Roo.getDom(el);
4582         var newNode;
4583         if(this.useDom || o.ns){
4584             newNode = createDom(o, null);
4585             el.appendChild(newNode);
4586         }else{
4587             var html = createHtml(o);
4588             newNode = this.insertHtml("beforeEnd", el, html);
4589         }
4590         return returnElement ? Roo.get(newNode, true) : newNode;
4591     },
4592
4593     /**
4594      * Creates new Dom element(s) and overwrites the contents of el with them
4595      * @param {String/HTMLElement/Element} el The context element
4596      * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
4597      * @param {Boolean} returnElement (optional) true to return a Roo.Element
4598      * @return {HTMLElement/Roo.Element} The new node
4599      */
4600     overwrite : function(el, o, returnElement){
4601         el = Roo.getDom(el);
4602         if (o.ns) {
4603           
4604             while (el.childNodes.length) {
4605                 el.removeChild(el.firstChild);
4606             }
4607             createDom(o, el);
4608         } else {
4609             el.innerHTML = createHtml(o);   
4610         }
4611         
4612         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4613     },
4614
4615     /**
4616      * Creates a new Roo.DomHelper.Template from the Dom object spec
4617      * @param {Object} o The Dom object spec (and children)
4618      * @return {Roo.DomHelper.Template} The new template
4619      */
4620     createTemplate : function(o){
4621         var html = createHtml(o);
4622         return new Roo.Template(html);
4623     }
4624     };
4625 }();
4626 /*
4627  * Based on:
4628  * Ext JS Library 1.1.1
4629  * Copyright(c) 2006-2007, Ext JS, LLC.
4630  *
4631  * Originally Released Under LGPL - original licence link has changed is not relivant.
4632  *
4633  * Fork - LGPL
4634  * <script type="text/javascript">
4635  */
4636  
4637 /**
4638 * @class Roo.Template
4639 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
4640 * For a list of available format functions, see {@link Roo.util.Format}.<br />
4641 * Usage:
4642 <pre><code>
4643 var t = new Roo.Template({
4644     html :  '&lt;div name="{id}"&gt;' + 
4645         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
4646         '&lt;/div&gt;',
4647     myformat: function (value, allValues) {
4648         return 'XX' + value;
4649     }
4650 });
4651 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
4652 </code></pre>
4653 * For more information see this blog post with examples:
4654 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4655      - Create Elements using DOM, HTML fragments and Templates</a>. 
4656 * @constructor
4657 * @param {Object} cfg - Configuration object.
4658 */
4659 Roo.Template = function(cfg){
4660     // BC!
4661     if(cfg instanceof Array){
4662         cfg = cfg.join("");
4663     }else if(arguments.length > 1){
4664         cfg = Array.prototype.join.call(arguments, "");
4665     }
4666     
4667     
4668     if (typeof(cfg) == 'object') {
4669         Roo.apply(this,cfg)
4670     } else {
4671         // bc
4672         this.html = cfg;
4673     }
4674     if (this.url) {
4675         this.load();
4676     }
4677     
4678 };
4679 Roo.Template.prototype = {
4680     
4681     /**
4682      * @cfg {Function} onLoad Called after the template has been loaded and complied (usually from a remove source)
4683      */
4684     onLoad : false,
4685     
4686     
4687     /**
4688      * @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..
4689      *                    it should be fixed so that template is observable...
4690      */
4691     url : false,
4692     /**
4693      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
4694      */
4695     html : '',
4696     
4697     
4698     compiled : false,
4699     loaded : false,
4700     /**
4701      * Returns an HTML fragment of this template with the specified values applied.
4702      * @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'})
4703      * @return {String} The HTML fragment
4704      */
4705     
4706    
4707     
4708     applyTemplate : function(values){
4709         //Roo.log(["applyTemplate", values]);
4710         try {
4711            
4712             if(this.compiled){
4713                 return this.compiled(values);
4714             }
4715             var useF = this.disableFormats !== true;
4716             var fm = Roo.util.Format, tpl = this;
4717             var fn = function(m, name, format, args){
4718                 if(format && useF){
4719                     if(format.substr(0, 5) == "this."){
4720                         return tpl.call(format.substr(5), values[name], values);
4721                     }else{
4722                         if(args){
4723                             // quoted values are required for strings in compiled templates, 
4724                             // but for non compiled we need to strip them
4725                             // quoted reversed for jsmin
4726                             var re = /^\s*['"](.*)["']\s*$/;
4727                             args = args.split(',');
4728                             for(var i = 0, len = args.length; i < len; i++){
4729                                 args[i] = args[i].replace(re, "$1");
4730                             }
4731                             args = [values[name]].concat(args);
4732                         }else{
4733                             args = [values[name]];
4734                         }
4735                         return fm[format].apply(fm, args);
4736                     }
4737                 }else{
4738                     return values[name] !== undefined ? values[name] : "";
4739                 }
4740             };
4741             return this.html.replace(this.re, fn);
4742         } catch (e) {
4743             Roo.log(e);
4744             throw e;
4745         }
4746          
4747     },
4748     
4749     loading : false,
4750       
4751     load : function ()
4752     {
4753          
4754         if (this.loading) {
4755             return;
4756         }
4757         var _t = this;
4758         
4759         this.loading = true;
4760         this.compiled = false;
4761         
4762         var cx = new Roo.data.Connection();
4763         cx.request({
4764             url : this.url,
4765             method : 'GET',
4766             success : function (response) {
4767                 _t.loading = false;
4768                 _t.url = false;
4769                 
4770                 _t.set(response.responseText,true);
4771                 _t.loaded = true;
4772                 if (_t.onLoad) {
4773                     _t.onLoad();
4774                 }
4775              },
4776             failure : function(response) {
4777                 Roo.log("Template failed to load from " + _t.url);
4778                 _t.loading = false;
4779             }
4780         });
4781     },
4782
4783     /**
4784      * Sets the HTML used as the template and optionally compiles it.
4785      * @param {String} html
4786      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
4787      * @return {Roo.Template} this
4788      */
4789     set : function(html, compile){
4790         this.html = html;
4791         this.compiled = false;
4792         if(compile){
4793             this.compile();
4794         }
4795         return this;
4796     },
4797     
4798     /**
4799      * True to disable format functions (defaults to false)
4800      * @type Boolean
4801      */
4802     disableFormats : false,
4803     
4804     /**
4805     * The regular expression used to match template variables 
4806     * @type RegExp
4807     * @property 
4808     */
4809     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
4810     
4811     /**
4812      * Compiles the template into an internal function, eliminating the RegEx overhead.
4813      * @return {Roo.Template} this
4814      */
4815     compile : function(){
4816         var fm = Roo.util.Format;
4817         var useF = this.disableFormats !== true;
4818         var sep = Roo.isGecko ? "+" : ",";
4819         var fn = function(m, name, format, args){
4820             if(format && useF){
4821                 args = args ? ',' + args : "";
4822                 if(format.substr(0, 5) != "this."){
4823                     format = "fm." + format + '(';
4824                 }else{
4825                     format = 'this.call("'+ format.substr(5) + '", ';
4826                     args = ", values";
4827                 }
4828             }else{
4829                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
4830             }
4831             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
4832         };
4833         var body;
4834         // branched to use + in gecko and [].join() in others
4835         if(Roo.isGecko){
4836             body = "this.compiled = function(values){ return '" +
4837                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
4838                     "';};";
4839         }else{
4840             body = ["this.compiled = function(values){ return ['"];
4841             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
4842             body.push("'].join('');};");
4843             body = body.join('');
4844         }
4845         /**
4846          * eval:var:values
4847          * eval:var:fm
4848          */
4849         eval(body);
4850         return this;
4851     },
4852     
4853     // private function used to call members
4854     call : function(fnName, value, allValues){
4855         return this[fnName](value, allValues);
4856     },
4857     
4858     /**
4859      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
4860      * @param {String/HTMLElement/Roo.Element} el The context element
4861      * @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'})
4862      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4863      * @return {HTMLElement/Roo.Element} The new node or Element
4864      */
4865     insertFirst: function(el, values, returnElement){
4866         return this.doInsert('afterBegin', el, values, returnElement);
4867     },
4868
4869     /**
4870      * Applies the supplied values to the template and inserts the new node(s) before el.
4871      * @param {String/HTMLElement/Roo.Element} el The context element
4872      * @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'})
4873      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4874      * @return {HTMLElement/Roo.Element} The new node or Element
4875      */
4876     insertBefore: function(el, values, returnElement){
4877         return this.doInsert('beforeBegin', el, values, returnElement);
4878     },
4879
4880     /**
4881      * Applies the supplied values to the template and inserts the new node(s) after el.
4882      * @param {String/HTMLElement/Roo.Element} el The context element
4883      * @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'})
4884      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4885      * @return {HTMLElement/Roo.Element} The new node or Element
4886      */
4887     insertAfter : function(el, values, returnElement){
4888         return this.doInsert('afterEnd', el, values, returnElement);
4889     },
4890     
4891     /**
4892      * Applies the supplied values to the template and appends the new node(s) to el.
4893      * @param {String/HTMLElement/Roo.Element} el The context element
4894      * @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'})
4895      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4896      * @return {HTMLElement/Roo.Element} The new node or Element
4897      */
4898     append : function(el, values, returnElement){
4899         return this.doInsert('beforeEnd', el, values, returnElement);
4900     },
4901
4902     doInsert : function(where, el, values, returnEl){
4903         el = Roo.getDom(el);
4904         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
4905         return returnEl ? Roo.get(newNode, true) : newNode;
4906     },
4907
4908     /**
4909      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
4910      * @param {String/HTMLElement/Roo.Element} el The context element
4911      * @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'})
4912      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
4913      * @return {HTMLElement/Roo.Element} The new node or Element
4914      */
4915     overwrite : function(el, values, returnElement){
4916         el = Roo.getDom(el);
4917         el.innerHTML = this.applyTemplate(values);
4918         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
4919     }
4920 };
4921 /**
4922  * Alias for {@link #applyTemplate}
4923  * @method
4924  */
4925 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
4926
4927 // backwards compat
4928 Roo.DomHelper.Template = Roo.Template;
4929
4930 /**
4931  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
4932  * @param {String/HTMLElement} el A DOM element or its id
4933  * @returns {Roo.Template} The created template
4934  * @static
4935  */
4936 Roo.Template.from = function(el){
4937     el = Roo.getDom(el);
4938     return new Roo.Template(el.value || el.innerHTML);
4939 };/*
4940  * Based on:
4941  * Ext JS Library 1.1.1
4942  * Copyright(c) 2006-2007, Ext JS, LLC.
4943  *
4944  * Originally Released Under LGPL - original licence link has changed is not relivant.
4945  *
4946  * Fork - LGPL
4947  * <script type="text/javascript">
4948  */
4949  
4950
4951 /*
4952  * This is code is also distributed under MIT license for use
4953  * with jQuery and prototype JavaScript libraries.
4954  */
4955 /**
4956  * @class Roo.DomQuery
4957 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).
4958 <p>
4959 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>
4960
4961 <p>
4962 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.
4963 </p>
4964 <h4>Element Selectors:</h4>
4965 <ul class="list">
4966     <li> <b>*</b> any element</li>
4967     <li> <b>E</b> an element with the tag E</li>
4968     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
4969     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
4970     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
4971     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
4972 </ul>
4973 <h4>Attribute Selectors:</h4>
4974 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
4975 <ul class="list">
4976     <li> <b>E[foo]</b> has an attribute "foo"</li>
4977     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
4978     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
4979     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
4980     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
4981     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
4982     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
4983 </ul>
4984 <h4>Pseudo Classes:</h4>
4985 <ul class="list">
4986     <li> <b>E:first-child</b> E is the first child of its parent</li>
4987     <li> <b>E:last-child</b> E is the last child of its parent</li>
4988     <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>
4989     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
4990     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
4991     <li> <b>E:only-child</b> E is the only child of its parent</li>
4992     <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>
4993     <li> <b>E:first</b> the first E in the resultset</li>
4994     <li> <b>E:last</b> the last E in the resultset</li>
4995     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
4996     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
4997     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
4998     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
4999     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
5000     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
5001     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
5002     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
5003     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
5004 </ul>
5005 <h4>CSS Value Selectors:</h4>
5006 <ul class="list">
5007     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
5008     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
5009     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
5010     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
5011     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
5012     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
5013 </ul>
5014  * @singleton
5015  */
5016 Roo.DomQuery = function(){
5017     var cache = {}, simpleCache = {}, valueCache = {};
5018     var nonSpace = /\S/;
5019     var trimRe = /^\s+|\s+$/g;
5020     var tplRe = /\{(\d+)\}/g;
5021     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
5022     var tagTokenRe = /^(#)?([\w-\*]+)/;
5023     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
5024
5025     function child(p, index){
5026         var i = 0;
5027         var n = p.firstChild;
5028         while(n){
5029             if(n.nodeType == 1){
5030                if(++i == index){
5031                    return n;
5032                }
5033             }
5034             n = n.nextSibling;
5035         }
5036         return null;
5037     };
5038
5039     function next(n){
5040         while((n = n.nextSibling) && n.nodeType != 1);
5041         return n;
5042     };
5043
5044     function prev(n){
5045         while((n = n.previousSibling) && n.nodeType != 1);
5046         return n;
5047     };
5048
5049     function children(d){
5050         var n = d.firstChild, ni = -1;
5051             while(n){
5052                 var nx = n.nextSibling;
5053                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
5054                     d.removeChild(n);
5055                 }else{
5056                     n.nodeIndex = ++ni;
5057                 }
5058                 n = nx;
5059             }
5060             return this;
5061         };
5062
5063     function byClassName(c, a, v){
5064         if(!v){
5065             return c;
5066         }
5067         var r = [], ri = -1, cn;
5068         for(var i = 0, ci; ci = c[i]; i++){
5069             if((' '+ci.className+' ').indexOf(v) != -1){
5070                 r[++ri] = ci;
5071             }
5072         }
5073         return r;
5074     };
5075
5076     function attrValue(n, attr){
5077         if(!n.tagName && typeof n.length != "undefined"){
5078             n = n[0];
5079         }
5080         if(!n){
5081             return null;
5082         }
5083         if(attr == "for"){
5084             return n.htmlFor;
5085         }
5086         if(attr == "class" || attr == "className"){
5087             return n.className;
5088         }
5089         return n.getAttribute(attr) || n[attr];
5090
5091     };
5092
5093     function getNodes(ns, mode, tagName){
5094         var result = [], ri = -1, cs;
5095         if(!ns){
5096             return result;
5097         }
5098         tagName = tagName || "*";
5099         if(typeof ns.getElementsByTagName != "undefined"){
5100             ns = [ns];
5101         }
5102         if(!mode){
5103             for(var i = 0, ni; ni = ns[i]; i++){
5104                 cs = ni.getElementsByTagName(tagName);
5105                 for(var j = 0, ci; ci = cs[j]; j++){
5106                     result[++ri] = ci;
5107                 }
5108             }
5109         }else if(mode == "/" || mode == ">"){
5110             var utag = tagName.toUpperCase();
5111             for(var i = 0, ni, cn; ni = ns[i]; i++){
5112                 cn = ni.children || ni.childNodes;
5113                 for(var j = 0, cj; cj = cn[j]; j++){
5114                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
5115                         result[++ri] = cj;
5116                     }
5117                 }
5118             }
5119         }else if(mode == "+"){
5120             var utag = tagName.toUpperCase();
5121             for(var i = 0, n; n = ns[i]; i++){
5122                 while((n = n.nextSibling) && n.nodeType != 1);
5123                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
5124                     result[++ri] = n;
5125                 }
5126             }
5127         }else if(mode == "~"){
5128             for(var i = 0, n; n = ns[i]; i++){
5129                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
5130                 if(n){
5131                     result[++ri] = n;
5132                 }
5133             }
5134         }
5135         return result;
5136     };
5137
5138     function concat(a, b){
5139         if(b.slice){
5140             return a.concat(b);
5141         }
5142         for(var i = 0, l = b.length; i < l; i++){
5143             a[a.length] = b[i];
5144         }
5145         return a;
5146     }
5147
5148     function byTag(cs, tagName){
5149         if(cs.tagName || cs == document){
5150             cs = [cs];
5151         }
5152         if(!tagName){
5153             return cs;
5154         }
5155         var r = [], ri = -1;
5156         tagName = tagName.toLowerCase();
5157         for(var i = 0, ci; ci = cs[i]; i++){
5158             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
5159                 r[++ri] = ci;
5160             }
5161         }
5162         return r;
5163     };
5164
5165     function byId(cs, attr, id){
5166         if(cs.tagName || cs == document){
5167             cs = [cs];
5168         }
5169         if(!id){
5170             return cs;
5171         }
5172         var r = [], ri = -1;
5173         for(var i = 0,ci; ci = cs[i]; i++){
5174             if(ci && ci.id == id){
5175                 r[++ri] = ci;
5176                 return r;
5177             }
5178         }
5179         return r;
5180     };
5181
5182     function byAttribute(cs, attr, value, op, custom){
5183         var r = [], ri = -1, st = custom=="{";
5184         var f = Roo.DomQuery.operators[op];
5185         for(var i = 0, ci; ci = cs[i]; i++){
5186             var a;
5187             if(st){
5188                 a = Roo.DomQuery.getStyle(ci, attr);
5189             }
5190             else if(attr == "class" || attr == "className"){
5191                 a = ci.className;
5192             }else if(attr == "for"){
5193                 a = ci.htmlFor;
5194             }else if(attr == "href"){
5195                 a = ci.getAttribute("href", 2);
5196             }else{
5197                 a = ci.getAttribute(attr);
5198             }
5199             if((f && f(a, value)) || (!f && a)){
5200                 r[++ri] = ci;
5201             }
5202         }
5203         return r;
5204     };
5205
5206     function byPseudo(cs, name, value){
5207         return Roo.DomQuery.pseudos[name](cs, value);
5208     };
5209
5210     // This is for IE MSXML which does not support expandos.
5211     // IE runs the same speed using setAttribute, however FF slows way down
5212     // and Safari completely fails so they need to continue to use expandos.
5213     var isIE = window.ActiveXObject ? true : false;
5214
5215     // this eval is stop the compressor from
5216     // renaming the variable to something shorter
5217     
5218     /** eval:var:batch */
5219     var batch = 30803; 
5220
5221     var key = 30803;
5222
5223     function nodupIEXml(cs){
5224         var d = ++key;
5225         cs[0].setAttribute("_nodup", d);
5226         var r = [cs[0]];
5227         for(var i = 1, len = cs.length; i < len; i++){
5228             var c = cs[i];
5229             if(!c.getAttribute("_nodup") != d){
5230                 c.setAttribute("_nodup", d);
5231                 r[r.length] = c;
5232             }
5233         }
5234         for(var i = 0, len = cs.length; i < len; i++){
5235             cs[i].removeAttribute("_nodup");
5236         }
5237         return r;
5238     }
5239
5240     function nodup(cs){
5241         if(!cs){
5242             return [];
5243         }
5244         var len = cs.length, c, i, r = cs, cj, ri = -1;
5245         if(!len || typeof cs.nodeType != "undefined" || len == 1){
5246             return cs;
5247         }
5248         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
5249             return nodupIEXml(cs);
5250         }
5251         var d = ++key;
5252         cs[0]._nodup = d;
5253         for(i = 1; c = cs[i]; i++){
5254             if(c._nodup != d){
5255                 c._nodup = d;
5256             }else{
5257                 r = [];
5258                 for(var j = 0; j < i; j++){
5259                     r[++ri] = cs[j];
5260                 }
5261                 for(j = i+1; cj = cs[j]; j++){
5262                     if(cj._nodup != d){
5263                         cj._nodup = d;
5264                         r[++ri] = cj;
5265                     }
5266                 }
5267                 return r;
5268             }
5269         }
5270         return r;
5271     }
5272
5273     function quickDiffIEXml(c1, c2){
5274         var d = ++key;
5275         for(var i = 0, len = c1.length; i < len; i++){
5276             c1[i].setAttribute("_qdiff", d);
5277         }
5278         var r = [];
5279         for(var i = 0, len = c2.length; i < len; i++){
5280             if(c2[i].getAttribute("_qdiff") != d){
5281                 r[r.length] = c2[i];
5282             }
5283         }
5284         for(var i = 0, len = c1.length; i < len; i++){
5285            c1[i].removeAttribute("_qdiff");
5286         }
5287         return r;
5288     }
5289
5290     function quickDiff(c1, c2){
5291         var len1 = c1.length;
5292         if(!len1){
5293             return c2;
5294         }
5295         if(isIE && c1[0].selectSingleNode){
5296             return quickDiffIEXml(c1, c2);
5297         }
5298         var d = ++key;
5299         for(var i = 0; i < len1; i++){
5300             c1[i]._qdiff = d;
5301         }
5302         var r = [];
5303         for(var i = 0, len = c2.length; i < len; i++){
5304             if(c2[i]._qdiff != d){
5305                 r[r.length] = c2[i];
5306             }
5307         }
5308         return r;
5309     }
5310
5311     function quickId(ns, mode, root, id){
5312         if(ns == root){
5313            var d = root.ownerDocument || root;
5314            return d.getElementById(id);
5315         }
5316         ns = getNodes(ns, mode, "*");
5317         return byId(ns, null, id);
5318     }
5319
5320     return {
5321         getStyle : function(el, name){
5322             return Roo.fly(el).getStyle(name);
5323         },
5324         /**
5325          * Compiles a selector/xpath query into a reusable function. The returned function
5326          * takes one parameter "root" (optional), which is the context node from where the query should start.
5327          * @param {String} selector The selector/xpath query
5328          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
5329          * @return {Function}
5330          */
5331         compile : function(path, type){
5332             type = type || "select";
5333             
5334             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
5335             var q = path, mode, lq;
5336             var tk = Roo.DomQuery.matchers;
5337             var tklen = tk.length;
5338             var mm;
5339
5340             // accept leading mode switch
5341             var lmode = q.match(modeRe);
5342             if(lmode && lmode[1]){
5343                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
5344                 q = q.replace(lmode[1], "");
5345             }
5346             // strip leading slashes
5347             while(path.substr(0, 1)=="/"){
5348                 path = path.substr(1);
5349             }
5350
5351             while(q && lq != q){
5352                 lq = q;
5353                 var tm = q.match(tagTokenRe);
5354                 if(type == "select"){
5355                     if(tm){
5356                         if(tm[1] == "#"){
5357                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
5358                         }else{
5359                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
5360                         }
5361                         q = q.replace(tm[0], "");
5362                     }else if(q.substr(0, 1) != '@'){
5363                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
5364                     }
5365                 }else{
5366                     if(tm){
5367                         if(tm[1] == "#"){
5368                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
5369                         }else{
5370                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
5371                         }
5372                         q = q.replace(tm[0], "");
5373                     }
5374                 }
5375                 while(!(mm = q.match(modeRe))){
5376                     var matched = false;
5377                     for(var j = 0; j < tklen; j++){
5378                         var t = tk[j];
5379                         var m = q.match(t.re);
5380                         if(m){
5381                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
5382                                                     return m[i];
5383                                                 });
5384                             q = q.replace(m[0], "");
5385                             matched = true;
5386                             break;
5387                         }
5388                     }
5389                     // prevent infinite loop on bad selector
5390                     if(!matched){
5391                         throw 'Error parsing selector, parsing failed at "' + q + '"';
5392                     }
5393                 }
5394                 if(mm[1]){
5395                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
5396                     q = q.replace(mm[1], "");
5397                 }
5398             }
5399             fn[fn.length] = "return nodup(n);\n}";
5400             
5401              /** 
5402               * list of variables that need from compression as they are used by eval.
5403              *  eval:var:batch 
5404              *  eval:var:nodup
5405              *  eval:var:byTag
5406              *  eval:var:ById
5407              *  eval:var:getNodes
5408              *  eval:var:quickId
5409              *  eval:var:mode
5410              *  eval:var:root
5411              *  eval:var:n
5412              *  eval:var:byClassName
5413              *  eval:var:byPseudo
5414              *  eval:var:byAttribute
5415              *  eval:var:attrValue
5416              * 
5417              **/ 
5418             eval(fn.join(""));
5419             return f;
5420         },
5421
5422         /**
5423          * Selects a group of elements.
5424          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
5425          * @param {Node} root (optional) The start of the query (defaults to document).
5426          * @return {Array}
5427          */
5428         select : function(path, root, type){
5429             if(!root || root == document){
5430                 root = document;
5431             }
5432             if(typeof root == "string"){
5433                 root = document.getElementById(root);
5434             }
5435             var paths = path.split(",");
5436             var results = [];
5437             for(var i = 0, len = paths.length; i < len; i++){
5438                 var p = paths[i].replace(trimRe, "");
5439                 if(!cache[p]){
5440                     cache[p] = Roo.DomQuery.compile(p);
5441                     if(!cache[p]){
5442                         throw p + " is not a valid selector";
5443                     }
5444                 }
5445                 var result = cache[p](root);
5446                 if(result && result != document){
5447                     results = results.concat(result);
5448                 }
5449             }
5450             if(paths.length > 1){
5451                 return nodup(results);
5452             }
5453             return results;
5454         },
5455
5456         /**
5457          * Selects a single element.
5458          * @param {String} selector The selector/xpath query
5459          * @param {Node} root (optional) The start of the query (defaults to document).
5460          * @return {Element}
5461          */
5462         selectNode : function(path, root){
5463             return Roo.DomQuery.select(path, root)[0];
5464         },
5465
5466         /**
5467          * Selects the value of a node, optionally replacing null with the defaultValue.
5468          * @param {String} selector The selector/xpath query
5469          * @param {Node} root (optional) The start of the query (defaults to document).
5470          * @param {String} defaultValue
5471          */
5472         selectValue : function(path, root, defaultValue){
5473             path = path.replace(trimRe, "");
5474             if(!valueCache[path]){
5475                 valueCache[path] = Roo.DomQuery.compile(path, "select");
5476             }
5477             var n = valueCache[path](root);
5478             n = n[0] ? n[0] : n;
5479             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
5480             return ((v === null||v === undefined||v==='') ? defaultValue : v);
5481         },
5482
5483         /**
5484          * Selects the value of a node, parsing integers and floats.
5485          * @param {String} selector The selector/xpath query
5486          * @param {Node} root (optional) The start of the query (defaults to document).
5487          * @param {Number} defaultValue
5488          * @return {Number}
5489          */
5490         selectNumber : function(path, root, defaultValue){
5491             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
5492             return parseFloat(v);
5493         },
5494
5495         /**
5496          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
5497          * @param {String/HTMLElement/Array} el An element id, element or array of elements
5498          * @param {String} selector The simple selector to test
5499          * @return {Boolean}
5500          */
5501         is : function(el, ss){
5502             if(typeof el == "string"){
5503                 el = document.getElementById(el);
5504             }
5505             var isArray = (el instanceof Array);
5506             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
5507             return isArray ? (result.length == el.length) : (result.length > 0);
5508         },
5509
5510         /**
5511          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
5512          * @param {Array} el An array of elements to filter
5513          * @param {String} selector The simple selector to test
5514          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
5515          * the selector instead of the ones that match
5516          * @return {Array}
5517          */
5518         filter : function(els, ss, nonMatches){
5519             ss = ss.replace(trimRe, "");
5520             if(!simpleCache[ss]){
5521                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
5522             }
5523             var result = simpleCache[ss](els);
5524             return nonMatches ? quickDiff(result, els) : result;
5525         },
5526
5527         /**
5528          * Collection of matching regular expressions and code snippets.
5529          */
5530         matchers : [{
5531                 re: /^\.([\w-]+)/,
5532                 select: 'n = byClassName(n, null, " {1} ");'
5533             }, {
5534                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
5535                 select: 'n = byPseudo(n, "{1}", "{2}");'
5536             },{
5537                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
5538                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
5539             }, {
5540                 re: /^#([\w-]+)/,
5541                 select: 'n = byId(n, null, "{1}");'
5542             },{
5543                 re: /^@([\w-]+)/,
5544                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
5545             }
5546         ],
5547
5548         /**
5549          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
5550          * 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;.
5551          */
5552         operators : {
5553             "=" : function(a, v){
5554                 return a == v;
5555             },
5556             "!=" : function(a, v){
5557                 return a != v;
5558             },
5559             "^=" : function(a, v){
5560                 return a && a.substr(0, v.length) == v;
5561             },
5562             "$=" : function(a, v){
5563                 return a && a.substr(a.length-v.length) == v;
5564             },
5565             "*=" : function(a, v){
5566                 return a && a.indexOf(v) !== -1;
5567             },
5568             "%=" : function(a, v){
5569                 return (a % v) == 0;
5570             },
5571             "|=" : function(a, v){
5572                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
5573             },
5574             "~=" : function(a, v){
5575                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
5576             }
5577         },
5578
5579         /**
5580          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
5581          * and the argument (if any) supplied in the selector.
5582          */
5583         pseudos : {
5584             "first-child" : function(c){
5585                 var r = [], ri = -1, n;
5586                 for(var i = 0, ci; ci = n = c[i]; i++){
5587                     while((n = n.previousSibling) && n.nodeType != 1);
5588                     if(!n){
5589                         r[++ri] = ci;
5590                     }
5591                 }
5592                 return r;
5593             },
5594
5595             "last-child" : function(c){
5596                 var r = [], ri = -1, n;
5597                 for(var i = 0, ci; ci = n = c[i]; i++){
5598                     while((n = n.nextSibling) && n.nodeType != 1);
5599                     if(!n){
5600                         r[++ri] = ci;
5601                     }
5602                 }
5603                 return r;
5604             },
5605
5606             "nth-child" : function(c, a) {
5607                 var r = [], ri = -1;
5608                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
5609                 var f = (m[1] || 1) - 0, l = m[2] - 0;
5610                 for(var i = 0, n; n = c[i]; i++){
5611                     var pn = n.parentNode;
5612                     if (batch != pn._batch) {
5613                         var j = 0;
5614                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
5615                             if(cn.nodeType == 1){
5616                                cn.nodeIndex = ++j;
5617                             }
5618                         }
5619                         pn._batch = batch;
5620                     }
5621                     if (f == 1) {
5622                         if (l == 0 || n.nodeIndex == l){
5623                             r[++ri] = n;
5624                         }
5625                     } else if ((n.nodeIndex + l) % f == 0){
5626                         r[++ri] = n;
5627                     }
5628                 }
5629
5630                 return r;
5631             },
5632
5633             "only-child" : function(c){
5634                 var r = [], ri = -1;;
5635                 for(var i = 0, ci; ci = c[i]; i++){
5636                     if(!prev(ci) && !next(ci)){
5637                         r[++ri] = ci;
5638                     }
5639                 }
5640                 return r;
5641             },
5642
5643             "empty" : function(c){
5644                 var r = [], ri = -1;
5645                 for(var i = 0, ci; ci = c[i]; i++){
5646                     var cns = ci.childNodes, j = 0, cn, empty = true;
5647                     while(cn = cns[j]){
5648                         ++j;
5649                         if(cn.nodeType == 1 || cn.nodeType == 3){
5650                             empty = false;
5651                             break;
5652                         }
5653                     }
5654                     if(empty){
5655                         r[++ri] = ci;
5656                     }
5657                 }
5658                 return r;
5659             },
5660
5661             "contains" : function(c, v){
5662                 var r = [], ri = -1;
5663                 for(var i = 0, ci; ci = c[i]; i++){
5664                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
5665                         r[++ri] = ci;
5666                     }
5667                 }
5668                 return r;
5669             },
5670
5671             "nodeValue" : function(c, v){
5672                 var r = [], ri = -1;
5673                 for(var i = 0, ci; ci = c[i]; i++){
5674                     if(ci.firstChild && ci.firstChild.nodeValue == v){
5675                         r[++ri] = ci;
5676                     }
5677                 }
5678                 return r;
5679             },
5680
5681             "checked" : function(c){
5682                 var r = [], ri = -1;
5683                 for(var i = 0, ci; ci = c[i]; i++){
5684                     if(ci.checked == true){
5685                         r[++ri] = ci;
5686                     }
5687                 }
5688                 return r;
5689             },
5690
5691             "not" : function(c, ss){
5692                 return Roo.DomQuery.filter(c, ss, true);
5693             },
5694
5695             "odd" : function(c){
5696                 return this["nth-child"](c, "odd");
5697             },
5698
5699             "even" : function(c){
5700                 return this["nth-child"](c, "even");
5701             },
5702
5703             "nth" : function(c, a){
5704                 return c[a-1] || [];
5705             },
5706
5707             "first" : function(c){
5708                 return c[0] || [];
5709             },
5710
5711             "last" : function(c){
5712                 return c[c.length-1] || [];
5713             },
5714
5715             "has" : function(c, ss){
5716                 var s = Roo.DomQuery.select;
5717                 var r = [], ri = -1;
5718                 for(var i = 0, ci; ci = c[i]; i++){
5719                     if(s(ss, ci).length > 0){
5720                         r[++ri] = ci;
5721                     }
5722                 }
5723                 return r;
5724             },
5725
5726             "next" : function(c, ss){
5727                 var is = Roo.DomQuery.is;
5728                 var r = [], ri = -1;
5729                 for(var i = 0, ci; ci = c[i]; i++){
5730                     var n = next(ci);
5731                     if(n && is(n, ss)){
5732                         r[++ri] = ci;
5733                     }
5734                 }
5735                 return r;
5736             },
5737
5738             "prev" : function(c, ss){
5739                 var is = Roo.DomQuery.is;
5740                 var r = [], ri = -1;
5741                 for(var i = 0, ci; ci = c[i]; i++){
5742                     var n = prev(ci);
5743                     if(n && is(n, ss)){
5744                         r[++ri] = ci;
5745                     }
5746                 }
5747                 return r;
5748             }
5749         }
5750     };
5751 }();
5752
5753 /**
5754  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
5755  * @param {String} path The selector/xpath query
5756  * @param {Node} root (optional) The start of the query (defaults to document).
5757  * @return {Array}
5758  * @member Roo
5759  * @method query
5760  */
5761 Roo.query = Roo.DomQuery.select;
5762 /*
5763  * Based on:
5764  * Ext JS Library 1.1.1
5765  * Copyright(c) 2006-2007, Ext JS, LLC.
5766  *
5767  * Originally Released Under LGPL - original licence link has changed is not relivant.
5768  *
5769  * Fork - LGPL
5770  * <script type="text/javascript">
5771  */
5772
5773 /**
5774  * @class Roo.util.Observable
5775  * Base class that provides a common interface for publishing events. Subclasses are expected to
5776  * to have a property "events" with all the events defined.<br>
5777  * For example:
5778  * <pre><code>
5779  Employee = function(name){
5780     this.name = name;
5781     this.addEvents({
5782         "fired" : true,
5783         "quit" : true
5784     });
5785  }
5786  Roo.extend(Employee, Roo.util.Observable);
5787 </code></pre>
5788  * @param {Object} config properties to use (incuding events / listeners)
5789  */
5790
5791 Roo.util.Observable = function(cfg){
5792     
5793     cfg = cfg|| {};
5794     this.addEvents(cfg.events || {});
5795     if (cfg.events) {
5796         delete cfg.events; // make sure
5797     }
5798      
5799     Roo.apply(this, cfg);
5800     
5801     if(this.listeners){
5802         this.on(this.listeners);
5803         delete this.listeners;
5804     }
5805 };
5806 Roo.util.Observable.prototype = {
5807     /** 
5808  * @cfg {Object} listeners  list of events and functions to call for this object, 
5809  * For example :
5810  * <pre><code>
5811     listeners :  { 
5812        'click' : function(e) {
5813            ..... 
5814         } ,
5815         .... 
5816     } 
5817   </code></pre>
5818  */
5819     
5820     
5821     /**
5822      * Fires the specified event with the passed parameters (minus the event name).
5823      * @param {String} eventName
5824      * @param {Object...} args Variable number of parameters are passed to handlers
5825      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
5826      */
5827     fireEvent : function(){
5828         var ce = this.events[arguments[0].toLowerCase()];
5829         if(typeof ce == "object"){
5830             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
5831         }else{
5832             return true;
5833         }
5834     },
5835
5836     // private
5837     filterOptRe : /^(?:scope|delay|buffer|single)$/,
5838
5839     /**
5840      * Appends an event handler to this component
5841      * @param {String}   eventName The type of event to listen for
5842      * @param {Function} handler The method the event invokes
5843      * @param {Object}   scope (optional) The scope in which to execute the handler
5844      * function. The handler function's "this" context.
5845      * @param {Object}   options (optional) An object containing handler configuration
5846      * properties. This may contain any of the following properties:<ul>
5847      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
5848      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
5849      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
5850      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
5851      * by the specified number of milliseconds. If the event fires again within that time, the original
5852      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
5853      * </ul><br>
5854      * <p>
5855      * <b>Combining Options</b><br>
5856      * Using the options argument, it is possible to combine different types of listeners:<br>
5857      * <br>
5858      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
5859                 <pre><code>
5860                 el.on('click', this.onClick, this, {
5861                         single: true,
5862                 delay: 100,
5863                 forumId: 4
5864                 });
5865                 </code></pre>
5866      * <p>
5867      * <b>Attaching multiple handlers in 1 call</b><br>
5868      * The method also allows for a single argument to be passed which is a config object containing properties
5869      * which specify multiple handlers.
5870      * <pre><code>
5871                 el.on({
5872                         'click': {
5873                         fn: this.onClick,
5874                         scope: this,
5875                         delay: 100
5876                 }, 
5877                 'mouseover': {
5878                         fn: this.onMouseOver,
5879                         scope: this
5880                 },
5881                 'mouseout': {
5882                         fn: this.onMouseOut,
5883                         scope: this
5884                 }
5885                 });
5886                 </code></pre>
5887      * <p>
5888      * Or a shorthand syntax which passes the same scope object to all handlers:
5889         <pre><code>
5890                 el.on({
5891                         'click': this.onClick,
5892                 'mouseover': this.onMouseOver,
5893                 'mouseout': this.onMouseOut,
5894                 scope: this
5895                 });
5896                 </code></pre>
5897      */
5898     addListener : function(eventName, fn, scope, o){
5899         if(typeof eventName == "object"){
5900             o = eventName;
5901             for(var e in o){
5902                 if(this.filterOptRe.test(e)){
5903                     continue;
5904                 }
5905                 if(typeof o[e] == "function"){
5906                     // shared options
5907                     this.addListener(e, o[e], o.scope,  o);
5908                 }else{
5909                     // individual options
5910                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
5911                 }
5912             }
5913             return;
5914         }
5915         o = (!o || typeof o == "boolean") ? {} : o;
5916         eventName = eventName.toLowerCase();
5917         var ce = this.events[eventName] || true;
5918         if(typeof ce == "boolean"){
5919             ce = new Roo.util.Event(this, eventName);
5920             this.events[eventName] = ce;
5921         }
5922         ce.addListener(fn, scope, o);
5923     },
5924
5925     /**
5926      * Removes a listener
5927      * @param {String}   eventName     The type of event to listen for
5928      * @param {Function} handler        The handler to remove
5929      * @param {Object}   scope  (optional) The scope (this object) for the handler
5930      */
5931     removeListener : function(eventName, fn, scope){
5932         var ce = this.events[eventName.toLowerCase()];
5933         if(typeof ce == "object"){
5934             ce.removeListener(fn, scope);
5935         }
5936     },
5937
5938     /**
5939      * Removes all listeners for this object
5940      */
5941     purgeListeners : function(){
5942         for(var evt in this.events){
5943             if(typeof this.events[evt] == "object"){
5944                  this.events[evt].clearListeners();
5945             }
5946         }
5947     },
5948
5949     relayEvents : function(o, events){
5950         var createHandler = function(ename){
5951             return function(){
5952                  
5953                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
5954             };
5955         };
5956         for(var i = 0, len = events.length; i < len; i++){
5957             var ename = events[i];
5958             if(!this.events[ename]){
5959                 this.events[ename] = true;
5960             };
5961             o.on(ename, createHandler(ename), this);
5962         }
5963     },
5964
5965     /**
5966      * Used to define events on this Observable
5967      * @param {Object} object The object with the events defined
5968      */
5969     addEvents : function(o){
5970         if(!this.events){
5971             this.events = {};
5972         }
5973         Roo.applyIf(this.events, o);
5974     },
5975
5976     /**
5977      * Checks to see if this object has any listeners for a specified event
5978      * @param {String} eventName The name of the event to check for
5979      * @return {Boolean} True if the event is being listened for, else false
5980      */
5981     hasListener : function(eventName){
5982         var e = this.events[eventName];
5983         return typeof e == "object" && e.listeners.length > 0;
5984     }
5985 };
5986 /**
5987  * Appends an event handler to this element (shorthand for addListener)
5988  * @param {String}   eventName     The type of event to listen for
5989  * @param {Function} handler        The method the event invokes
5990  * @param {Object}   scope (optional) The scope in which to execute the handler
5991  * function. The handler function's "this" context.
5992  * @param {Object}   options  (optional)
5993  * @method
5994  */
5995 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
5996 /**
5997  * Removes a listener (shorthand for removeListener)
5998  * @param {String}   eventName     The type of event to listen for
5999  * @param {Function} handler        The handler to remove
6000  * @param {Object}   scope  (optional) The scope (this object) for the handler
6001  * @method
6002  */
6003 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
6004
6005 /**
6006  * Starts capture on the specified Observable. All events will be passed
6007  * to the supplied function with the event name + standard signature of the event
6008  * <b>before</b> the event is fired. If the supplied function returns false,
6009  * the event will not fire.
6010  * @param {Observable} o The Observable to capture
6011  * @param {Function} fn The function to call
6012  * @param {Object} scope (optional) The scope (this object) for the fn
6013  * @static
6014  */
6015 Roo.util.Observable.capture = function(o, fn, scope){
6016     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
6017 };
6018
6019 /**
6020  * Removes <b>all</b> added captures from the Observable.
6021  * @param {Observable} o The Observable to release
6022  * @static
6023  */
6024 Roo.util.Observable.releaseCapture = function(o){
6025     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
6026 };
6027
6028 (function(){
6029
6030     var createBuffered = function(h, o, scope){
6031         var task = new Roo.util.DelayedTask();
6032         return function(){
6033             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
6034         };
6035     };
6036
6037     var createSingle = function(h, e, fn, scope){
6038         return function(){
6039             e.removeListener(fn, scope);
6040             return h.apply(scope, arguments);
6041         };
6042     };
6043
6044     var createDelayed = function(h, o, scope){
6045         return function(){
6046             var args = Array.prototype.slice.call(arguments, 0);
6047             setTimeout(function(){
6048                 h.apply(scope, args);
6049             }, o.delay || 10);
6050         };
6051     };
6052
6053     Roo.util.Event = function(obj, name){
6054         this.name = name;
6055         this.obj = obj;
6056         this.listeners = [];
6057     };
6058
6059     Roo.util.Event.prototype = {
6060         addListener : function(fn, scope, options){
6061             var o = options || {};
6062             scope = scope || this.obj;
6063             if(!this.isListening(fn, scope)){
6064                 var l = {fn: fn, scope: scope, options: o};
6065                 var h = fn;
6066                 if(o.delay){
6067                     h = createDelayed(h, o, scope);
6068                 }
6069                 if(o.single){
6070                     h = createSingle(h, this, fn, scope);
6071                 }
6072                 if(o.buffer){
6073                     h = createBuffered(h, o, scope);
6074                 }
6075                 l.fireFn = h;
6076                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
6077                     this.listeners.push(l);
6078                 }else{
6079                     this.listeners = this.listeners.slice(0);
6080                     this.listeners.push(l);
6081                 }
6082             }
6083         },
6084
6085         findListener : function(fn, scope){
6086             scope = scope || this.obj;
6087             var ls = this.listeners;
6088             for(var i = 0, len = ls.length; i < len; i++){
6089                 var l = ls[i];
6090                 if(l.fn == fn && l.scope == scope){
6091                     return i;
6092                 }
6093             }
6094             return -1;
6095         },
6096
6097         isListening : function(fn, scope){
6098             return this.findListener(fn, scope) != -1;
6099         },
6100
6101         removeListener : function(fn, scope){
6102             var index;
6103             if((index = this.findListener(fn, scope)) != -1){
6104                 if(!this.firing){
6105                     this.listeners.splice(index, 1);
6106                 }else{
6107                     this.listeners = this.listeners.slice(0);
6108                     this.listeners.splice(index, 1);
6109                 }
6110                 return true;
6111             }
6112             return false;
6113         },
6114
6115         clearListeners : function(){
6116             this.listeners = [];
6117         },
6118
6119         fire : function(){
6120             var ls = this.listeners, scope, len = ls.length;
6121             if(len > 0){
6122                 this.firing = true;
6123                 var args = Array.prototype.slice.call(arguments, 0);                
6124                 for(var i = 0; i < len; i++){
6125                     var l = ls[i];
6126                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
6127                         this.firing = false;
6128                         return false;
6129                     }
6130                 }
6131                 this.firing = false;
6132             }
6133             return true;
6134         }
6135     };
6136 })();/*
6137  * RooJS Library 
6138  * Copyright(c) 2007-2017, Roo J Solutions Ltd
6139  *
6140  * Licence LGPL 
6141  *
6142  */
6143  
6144 /**
6145  * @class Roo.Document
6146  * @extends Roo.util.Observable
6147  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
6148  * 
6149  * @param {Object} config the methods and properties of the 'base' class for the application.
6150  * 
6151  *  Generic Page handler - implement this to start your app..
6152  * 
6153  * eg.
6154  *  MyProject = new Roo.Document({
6155         events : {
6156             'load' : true // your events..
6157         },
6158         listeners : {
6159             'ready' : function() {
6160                 // fired on Roo.onReady()
6161             }
6162         }
6163  * 
6164  */
6165 Roo.Document = function(cfg) {
6166      
6167     this.addEvents({ 
6168         'ready' : true
6169     });
6170     Roo.util.Observable.call(this,cfg);
6171     
6172     var _this = this;
6173     
6174     Roo.onReady(function() {
6175         _this.fireEvent('ready');
6176     },null,false);
6177     
6178     
6179 }
6180
6181 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
6182  * Based on:
6183  * Ext JS Library 1.1.1
6184  * Copyright(c) 2006-2007, Ext JS, LLC.
6185  *
6186  * Originally Released Under LGPL - original licence link has changed is not relivant.
6187  *
6188  * Fork - LGPL
6189  * <script type="text/javascript">
6190  */
6191
6192 /**
6193  * @class Roo.EventManager
6194  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
6195  * several useful events directly.
6196  * See {@link Roo.EventObject} for more details on normalized event objects.
6197  * @singleton
6198  */
6199 Roo.EventManager = function(){
6200     var docReadyEvent, docReadyProcId, docReadyState = false;
6201     var resizeEvent, resizeTask, textEvent, textSize;
6202     var E = Roo.lib.Event;
6203     var D = Roo.lib.Dom;
6204
6205     
6206     
6207
6208     var fireDocReady = function(){
6209         if(!docReadyState){
6210             docReadyState = true;
6211             Roo.isReady = true;
6212             if(docReadyProcId){
6213                 clearInterval(docReadyProcId);
6214             }
6215             if(Roo.isGecko || Roo.isOpera) {
6216                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
6217             }
6218             if(Roo.isIE){
6219                 var defer = document.getElementById("ie-deferred-loader");
6220                 if(defer){
6221                     defer.onreadystatechange = null;
6222                     defer.parentNode.removeChild(defer);
6223                 }
6224             }
6225             if(docReadyEvent){
6226                 docReadyEvent.fire();
6227                 docReadyEvent.clearListeners();
6228             }
6229         }
6230     };
6231     
6232     var initDocReady = function(){
6233         docReadyEvent = new Roo.util.Event();
6234         if(Roo.isGecko || Roo.isOpera) {
6235             document.addEventListener("DOMContentLoaded", fireDocReady, false);
6236         }else if(Roo.isIE){
6237             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
6238             var defer = document.getElementById("ie-deferred-loader");
6239             defer.onreadystatechange = function(){
6240                 if(this.readyState == "complete"){
6241                     fireDocReady();
6242                 }
6243             };
6244         }else if(Roo.isSafari){ 
6245             docReadyProcId = setInterval(function(){
6246                 var rs = document.readyState;
6247                 if(rs == "complete") {
6248                     fireDocReady();     
6249                  }
6250             }, 10);
6251         }
6252         // no matter what, make sure it fires on load
6253         E.on(window, "load", fireDocReady);
6254     };
6255
6256     var createBuffered = function(h, o){
6257         var task = new Roo.util.DelayedTask(h);
6258         return function(e){
6259             // create new event object impl so new events don't wipe out properties
6260             e = new Roo.EventObjectImpl(e);
6261             task.delay(o.buffer, h, null, [e]);
6262         };
6263     };
6264
6265     var createSingle = function(h, el, ename, fn){
6266         return function(e){
6267             Roo.EventManager.removeListener(el, ename, fn);
6268             h(e);
6269         };
6270     };
6271
6272     var createDelayed = function(h, o){
6273         return function(e){
6274             // create new event object impl so new events don't wipe out properties
6275             e = new Roo.EventObjectImpl(e);
6276             setTimeout(function(){
6277                 h(e);
6278             }, o.delay || 10);
6279         };
6280     };
6281     var transitionEndVal = false;
6282     
6283     var transitionEnd = function()
6284     {
6285         if (transitionEndVal) {
6286             return transitionEndVal;
6287         }
6288         var el = document.createElement('div');
6289
6290         var transEndEventNames = {
6291             WebkitTransition : 'webkitTransitionEnd',
6292             MozTransition    : 'transitionend',
6293             OTransition      : 'oTransitionEnd otransitionend',
6294             transition       : 'transitionend'
6295         };
6296     
6297         for (var name in transEndEventNames) {
6298             if (el.style[name] !== undefined) {
6299                 transitionEndVal = transEndEventNames[name];
6300                 return  transitionEndVal ;
6301             }
6302         }
6303     }
6304     
6305   
6306
6307     var listen = function(element, ename, opt, fn, scope){
6308         var o = (!opt || typeof opt == "boolean") ? {} : opt;
6309         fn = fn || o.fn; scope = scope || o.scope;
6310         var el = Roo.getDom(element);
6311         
6312         
6313         if(!el){
6314             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
6315         }
6316         
6317         if (ename == 'transitionend') {
6318             ename = transitionEnd();
6319         }
6320         var h = function(e){
6321             e = Roo.EventObject.setEvent(e);
6322             var t;
6323             if(o.delegate){
6324                 t = e.getTarget(o.delegate, el);
6325                 if(!t){
6326                     return;
6327                 }
6328             }else{
6329                 t = e.target;
6330             }
6331             if(o.stopEvent === true){
6332                 e.stopEvent();
6333             }
6334             if(o.preventDefault === true){
6335                e.preventDefault();
6336             }
6337             if(o.stopPropagation === true){
6338                 e.stopPropagation();
6339             }
6340
6341             if(o.normalized === false){
6342                 e = e.browserEvent;
6343             }
6344
6345             fn.call(scope || el, e, t, o);
6346         };
6347         if(o.delay){
6348             h = createDelayed(h, o);
6349         }
6350         if(o.single){
6351             h = createSingle(h, el, ename, fn);
6352         }
6353         if(o.buffer){
6354             h = createBuffered(h, o);
6355         }
6356         
6357         fn._handlers = fn._handlers || [];
6358         
6359         
6360         fn._handlers.push([Roo.id(el), ename, h]);
6361         
6362         
6363          
6364         E.on(el, ename, h);
6365         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
6366             el.addEventListener("DOMMouseScroll", h, false);
6367             E.on(window, 'unload', function(){
6368                 el.removeEventListener("DOMMouseScroll", h, false);
6369             });
6370         }
6371         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6372             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
6373         }
6374         return h;
6375     };
6376
6377     var stopListening = function(el, ename, fn){
6378         var id = Roo.id(el), hds = fn._handlers, hd = fn;
6379         if(hds){
6380             for(var i = 0, len = hds.length; i < len; i++){
6381                 var h = hds[i];
6382                 if(h[0] == id && h[1] == ename){
6383                     hd = h[2];
6384                     hds.splice(i, 1);
6385                     break;
6386                 }
6387             }
6388         }
6389         E.un(el, ename, hd);
6390         el = Roo.getDom(el);
6391         if(ename == "mousewheel" && el.addEventListener){
6392             el.removeEventListener("DOMMouseScroll", hd, false);
6393         }
6394         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
6395             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
6396         }
6397     };
6398
6399     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
6400     
6401     var pub = {
6402         
6403         
6404         /** 
6405          * Fix for doc tools
6406          * @scope Roo.EventManager
6407          */
6408         
6409         
6410         /** 
6411          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
6412          * object with a Roo.EventObject
6413          * @param {Function} fn        The method the event invokes
6414          * @param {Object}   scope    An object that becomes the scope of the handler
6415          * @param {boolean}  override If true, the obj passed in becomes
6416          *                             the execution scope of the listener
6417          * @return {Function} The wrapped function
6418          * @deprecated
6419          */
6420         wrap : function(fn, scope, override){
6421             return function(e){
6422                 Roo.EventObject.setEvent(e);
6423                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
6424             };
6425         },
6426         
6427         /**
6428      * Appends an event handler to an element (shorthand for addListener)
6429      * @param {String/HTMLElement}   element        The html element or id to assign the
6430      * @param {String}   eventName The type of event to listen for
6431      * @param {Function} handler The method the event invokes
6432      * @param {Object}   scope (optional) The scope in which to execute the handler
6433      * function. The handler function's "this" context.
6434      * @param {Object}   options (optional) An object containing handler configuration
6435      * properties. This may contain any of the following properties:<ul>
6436      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6437      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6438      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6439      * <li>preventDefault {Boolean} True to prevent the default action</li>
6440      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6441      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6442      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6443      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6444      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6445      * by the specified number of milliseconds. If the event fires again within that time, the original
6446      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6447      * </ul><br>
6448      * <p>
6449      * <b>Combining Options</b><br>
6450      * Using the options argument, it is possible to combine different types of listeners:<br>
6451      * <br>
6452      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6453      * Code:<pre><code>
6454 el.on('click', this.onClick, this, {
6455     single: true,
6456     delay: 100,
6457     stopEvent : true,
6458     forumId: 4
6459 });</code></pre>
6460      * <p>
6461      * <b>Attaching multiple handlers in 1 call</b><br>
6462       * The method also allows for a single argument to be passed which is a config object containing properties
6463      * which specify multiple handlers.
6464      * <p>
6465      * Code:<pre><code>
6466 el.on({
6467     'click' : {
6468         fn: this.onClick
6469         scope: this,
6470         delay: 100
6471     },
6472     'mouseover' : {
6473         fn: this.onMouseOver
6474         scope: this
6475     },
6476     'mouseout' : {
6477         fn: this.onMouseOut
6478         scope: this
6479     }
6480 });</code></pre>
6481      * <p>
6482      * Or a shorthand syntax:<br>
6483      * Code:<pre><code>
6484 el.on({
6485     'click' : this.onClick,
6486     'mouseover' : this.onMouseOver,
6487     'mouseout' : this.onMouseOut
6488     scope: this
6489 });</code></pre>
6490      */
6491         addListener : function(element, eventName, fn, scope, options){
6492             if(typeof eventName == "object"){
6493                 var o = eventName;
6494                 for(var e in o){
6495                     if(propRe.test(e)){
6496                         continue;
6497                     }
6498                     if(typeof o[e] == "function"){
6499                         // shared options
6500                         listen(element, e, o, o[e], o.scope);
6501                     }else{
6502                         // individual options
6503                         listen(element, e, o[e]);
6504                     }
6505                 }
6506                 return;
6507             }
6508             return listen(element, eventName, options, fn, scope);
6509         },
6510         
6511         /**
6512          * Removes an event handler
6513          *
6514          * @param {String/HTMLElement}   element        The id or html element to remove the 
6515          *                             event from
6516          * @param {String}   eventName     The type of event
6517          * @param {Function} fn
6518          * @return {Boolean} True if a listener was actually removed
6519          */
6520         removeListener : function(element, eventName, fn){
6521             return stopListening(element, eventName, fn);
6522         },
6523         
6524         /**
6525          * Fires when the document is ready (before onload and before images are loaded). Can be 
6526          * accessed shorthanded Roo.onReady().
6527          * @param {Function} fn        The method the event invokes
6528          * @param {Object}   scope    An  object that becomes the scope of the handler
6529          * @param {boolean}  options
6530          */
6531         onDocumentReady : function(fn, scope, options){
6532             if(docReadyState){ // if it already fired
6533                 docReadyEvent.addListener(fn, scope, options);
6534                 docReadyEvent.fire();
6535                 docReadyEvent.clearListeners();
6536                 return;
6537             }
6538             if(!docReadyEvent){
6539                 initDocReady();
6540             }
6541             docReadyEvent.addListener(fn, scope, options);
6542         },
6543         
6544         /**
6545          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
6546          * @param {Function} fn        The method the event invokes
6547          * @param {Object}   scope    An object that becomes the scope of the handler
6548          * @param {boolean}  options
6549          */
6550         onWindowResize : function(fn, scope, options){
6551             if(!resizeEvent){
6552                 resizeEvent = new Roo.util.Event();
6553                 resizeTask = new Roo.util.DelayedTask(function(){
6554                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6555                 });
6556                 E.on(window, "resize", function(){
6557                     if(Roo.isIE){
6558                         resizeTask.delay(50);
6559                     }else{
6560                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6561                     }
6562                 });
6563             }
6564             resizeEvent.addListener(fn, scope, options);
6565         },
6566
6567         /**
6568          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
6569          * @param {Function} fn        The method the event invokes
6570          * @param {Object}   scope    An object that becomes the scope of the handler
6571          * @param {boolean}  options
6572          */
6573         onTextResize : function(fn, scope, options){
6574             if(!textEvent){
6575                 textEvent = new Roo.util.Event();
6576                 var textEl = new Roo.Element(document.createElement('div'));
6577                 textEl.dom.className = 'x-text-resize';
6578                 textEl.dom.innerHTML = 'X';
6579                 textEl.appendTo(document.body);
6580                 textSize = textEl.dom.offsetHeight;
6581                 setInterval(function(){
6582                     if(textEl.dom.offsetHeight != textSize){
6583                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
6584                     }
6585                 }, this.textResizeInterval);
6586             }
6587             textEvent.addListener(fn, scope, options);
6588         },
6589
6590         /**
6591          * Removes the passed window resize listener.
6592          * @param {Function} fn        The method the event invokes
6593          * @param {Object}   scope    The scope of handler
6594          */
6595         removeResizeListener : function(fn, scope){
6596             if(resizeEvent){
6597                 resizeEvent.removeListener(fn, scope);
6598             }
6599         },
6600
6601         // private
6602         fireResize : function(){
6603             if(resizeEvent){
6604                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
6605             }   
6606         },
6607         /**
6608          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
6609          */
6610         ieDeferSrc : false,
6611         /**
6612          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
6613          */
6614         textResizeInterval : 50
6615     };
6616     
6617     /**
6618      * Fix for doc tools
6619      * @scopeAlias pub=Roo.EventManager
6620      */
6621     
6622      /**
6623      * Appends an event handler to an element (shorthand for addListener)
6624      * @param {String/HTMLElement}   element        The html element or id to assign the
6625      * @param {String}   eventName The type of event to listen for
6626      * @param {Function} handler The method the event invokes
6627      * @param {Object}   scope (optional) The scope in which to execute the handler
6628      * function. The handler function's "this" context.
6629      * @param {Object}   options (optional) An object containing handler configuration
6630      * properties. This may contain any of the following properties:<ul>
6631      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
6632      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
6633      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
6634      * <li>preventDefault {Boolean} True to prevent the default action</li>
6635      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
6636      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
6637      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
6638      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
6639      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
6640      * by the specified number of milliseconds. If the event fires again within that time, the original
6641      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
6642      * </ul><br>
6643      * <p>
6644      * <b>Combining Options</b><br>
6645      * Using the options argument, it is possible to combine different types of listeners:<br>
6646      * <br>
6647      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
6648      * Code:<pre><code>
6649 el.on('click', this.onClick, this, {
6650     single: true,
6651     delay: 100,
6652     stopEvent : true,
6653     forumId: 4
6654 });</code></pre>
6655      * <p>
6656      * <b>Attaching multiple handlers in 1 call</b><br>
6657       * The method also allows for a single argument to be passed which is a config object containing properties
6658      * which specify multiple handlers.
6659      * <p>
6660      * Code:<pre><code>
6661 el.on({
6662     'click' : {
6663         fn: this.onClick
6664         scope: this,
6665         delay: 100
6666     },
6667     'mouseover' : {
6668         fn: this.onMouseOver
6669         scope: this
6670     },
6671     'mouseout' : {
6672         fn: this.onMouseOut
6673         scope: this
6674     }
6675 });</code></pre>
6676      * <p>
6677      * Or a shorthand syntax:<br>
6678      * Code:<pre><code>
6679 el.on({
6680     'click' : this.onClick,
6681     'mouseover' : this.onMouseOver,
6682     'mouseout' : this.onMouseOut
6683     scope: this
6684 });</code></pre>
6685      */
6686     pub.on = pub.addListener;
6687     pub.un = pub.removeListener;
6688
6689     pub.stoppedMouseDownEvent = new Roo.util.Event();
6690     return pub;
6691 }();
6692 /**
6693   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
6694   * @param {Function} fn        The method the event invokes
6695   * @param {Object}   scope    An  object that becomes the scope of the handler
6696   * @param {boolean}  override If true, the obj passed in becomes
6697   *                             the execution scope of the listener
6698   * @member Roo
6699   * @method onReady
6700  */
6701 Roo.onReady = Roo.EventManager.onDocumentReady;
6702
6703 Roo.onReady(function(){
6704     var bd = Roo.get(document.body);
6705     if(!bd){ return; }
6706
6707     var cls = [
6708             Roo.isIE ? "roo-ie"
6709             : Roo.isIE11 ? "roo-ie11"
6710             : Roo.isEdge ? "roo-edge"
6711             : Roo.isGecko ? "roo-gecko"
6712             : Roo.isOpera ? "roo-opera"
6713             : Roo.isSafari ? "roo-safari" : ""];
6714
6715     if(Roo.isMac){
6716         cls.push("roo-mac");
6717     }
6718     if(Roo.isLinux){
6719         cls.push("roo-linux");
6720     }
6721     if(Roo.isIOS){
6722         cls.push("roo-ios");
6723     }
6724     if(Roo.isTouch){
6725         cls.push("roo-touch");
6726     }
6727     if(Roo.isBorderBox){
6728         cls.push('roo-border-box');
6729     }
6730     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
6731         var p = bd.dom.parentNode;
6732         if(p){
6733             p.className += ' roo-strict';
6734         }
6735     }
6736     bd.addClass(cls.join(' '));
6737 });
6738
6739 /**
6740  * @class Roo.EventObject
6741  * EventObject exposes the Yahoo! UI Event functionality directly on the object
6742  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
6743  * Example:
6744  * <pre><code>
6745  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
6746     e.preventDefault();
6747     var target = e.getTarget();
6748     ...
6749  }
6750  var myDiv = Roo.get("myDiv");
6751  myDiv.on("click", handleClick);
6752  //or
6753  Roo.EventManager.on("myDiv", 'click', handleClick);
6754  Roo.EventManager.addListener("myDiv", 'click', handleClick);
6755  </code></pre>
6756  * @singleton
6757  */
6758 Roo.EventObject = function(){
6759     
6760     var E = Roo.lib.Event;
6761     
6762     // safari keypress events for special keys return bad keycodes
6763     var safariKeys = {
6764         63234 : 37, // left
6765         63235 : 39, // right
6766         63232 : 38, // up
6767         63233 : 40, // down
6768         63276 : 33, // page up
6769         63277 : 34, // page down
6770         63272 : 46, // delete
6771         63273 : 36, // home
6772         63275 : 35  // end
6773     };
6774
6775     // normalize button clicks
6776     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
6777                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
6778
6779     Roo.EventObjectImpl = function(e){
6780         if(e){
6781             this.setEvent(e.browserEvent || e);
6782         }
6783     };
6784     Roo.EventObjectImpl.prototype = {
6785         /**
6786          * Used to fix doc tools.
6787          * @scope Roo.EventObject.prototype
6788          */
6789             
6790
6791         
6792         
6793         /** The normal browser event */
6794         browserEvent : null,
6795         /** The button pressed in a mouse event */
6796         button : -1,
6797         /** True if the shift key was down during the event */
6798         shiftKey : false,
6799         /** True if the control key was down during the event */
6800         ctrlKey : false,
6801         /** True if the alt key was down during the event */
6802         altKey : false,
6803
6804         /** Key constant 
6805         * @type Number */
6806         BACKSPACE : 8,
6807         /** Key constant 
6808         * @type Number */
6809         TAB : 9,
6810         /** Key constant 
6811         * @type Number */
6812         RETURN : 13,
6813         /** Key constant 
6814         * @type Number */
6815         ENTER : 13,
6816         /** Key constant 
6817         * @type Number */
6818         SHIFT : 16,
6819         /** Key constant 
6820         * @type Number */
6821         CONTROL : 17,
6822         /** Key constant 
6823         * @type Number */
6824         ESC : 27,
6825         /** Key constant 
6826         * @type Number */
6827         SPACE : 32,
6828         /** Key constant 
6829         * @type Number */
6830         PAGEUP : 33,
6831         /** Key constant 
6832         * @type Number */
6833         PAGEDOWN : 34,
6834         /** Key constant 
6835         * @type Number */
6836         END : 35,
6837         /** Key constant 
6838         * @type Number */
6839         HOME : 36,
6840         /** Key constant 
6841         * @type Number */
6842         LEFT : 37,
6843         /** Key constant 
6844         * @type Number */
6845         UP : 38,
6846         /** Key constant 
6847         * @type Number */
6848         RIGHT : 39,
6849         /** Key constant 
6850         * @type Number */
6851         DOWN : 40,
6852         /** Key constant 
6853         * @type Number */
6854         DELETE : 46,
6855         /** Key constant 
6856         * @type Number */
6857         F5 : 116,
6858
6859            /** @private */
6860         setEvent : function(e){
6861             if(e == this || (e && e.browserEvent)){ // already wrapped
6862                 return e;
6863             }
6864             this.browserEvent = e;
6865             if(e){
6866                 // normalize buttons
6867                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
6868                 if(e.type == 'click' && this.button == -1){
6869                     this.button = 0;
6870                 }
6871                 this.type = e.type;
6872                 this.shiftKey = e.shiftKey;
6873                 // mac metaKey behaves like ctrlKey
6874                 this.ctrlKey = e.ctrlKey || e.metaKey;
6875                 this.altKey = e.altKey;
6876                 // in getKey these will be normalized for the mac
6877                 this.keyCode = e.keyCode;
6878                 // keyup warnings on firefox.
6879                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
6880                 // cache the target for the delayed and or buffered events
6881                 this.target = E.getTarget(e);
6882                 // same for XY
6883                 this.xy = E.getXY(e);
6884             }else{
6885                 this.button = -1;
6886                 this.shiftKey = false;
6887                 this.ctrlKey = false;
6888                 this.altKey = false;
6889                 this.keyCode = 0;
6890                 this.charCode =0;
6891                 this.target = null;
6892                 this.xy = [0, 0];
6893             }
6894             return this;
6895         },
6896
6897         /**
6898          * Stop the event (preventDefault and stopPropagation)
6899          */
6900         stopEvent : function(){
6901             if(this.browserEvent){
6902                 if(this.browserEvent.type == 'mousedown'){
6903                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6904                 }
6905                 E.stopEvent(this.browserEvent);
6906             }
6907         },
6908
6909         /**
6910          * Prevents the browsers default handling of the event.
6911          */
6912         preventDefault : function(){
6913             if(this.browserEvent){
6914                 E.preventDefault(this.browserEvent);
6915             }
6916         },
6917
6918         /** @private */
6919         isNavKeyPress : function(){
6920             var k = this.keyCode;
6921             k = Roo.isSafari ? (safariKeys[k] || k) : k;
6922             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
6923         },
6924
6925         isSpecialKey : function(){
6926             var k = this.keyCode;
6927             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
6928             (k == 16) || (k == 17) ||
6929             (k >= 18 && k <= 20) ||
6930             (k >= 33 && k <= 35) ||
6931             (k >= 36 && k <= 39) ||
6932             (k >= 44 && k <= 45);
6933         },
6934         /**
6935          * Cancels bubbling of the event.
6936          */
6937         stopPropagation : function(){
6938             if(this.browserEvent){
6939                 if(this.type == 'mousedown'){
6940                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
6941                 }
6942                 E.stopPropagation(this.browserEvent);
6943             }
6944         },
6945
6946         /**
6947          * Gets the key code for the event.
6948          * @return {Number}
6949          */
6950         getCharCode : function(){
6951             return this.charCode || this.keyCode;
6952         },
6953
6954         /**
6955          * Returns a normalized keyCode for the event.
6956          * @return {Number} The key code
6957          */
6958         getKey : function(){
6959             var k = this.keyCode || this.charCode;
6960             return Roo.isSafari ? (safariKeys[k] || k) : k;
6961         },
6962
6963         /**
6964          * Gets the x coordinate of the event.
6965          * @return {Number}
6966          */
6967         getPageX : function(){
6968             return this.xy[0];
6969         },
6970
6971         /**
6972          * Gets the y coordinate of the event.
6973          * @return {Number}
6974          */
6975         getPageY : function(){
6976             return this.xy[1];
6977         },
6978
6979         /**
6980          * Gets the time of the event.
6981          * @return {Number}
6982          */
6983         getTime : function(){
6984             if(this.browserEvent){
6985                 return E.getTime(this.browserEvent);
6986             }
6987             return null;
6988         },
6989
6990         /**
6991          * Gets the page coordinates of the event.
6992          * @return {Array} The xy values like [x, y]
6993          */
6994         getXY : function(){
6995             return this.xy;
6996         },
6997
6998         /**
6999          * Gets the target for the event.
7000          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
7001          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7002                 search as a number or element (defaults to 10 || document.body)
7003          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7004          * @return {HTMLelement}
7005          */
7006         getTarget : function(selector, maxDepth, returnEl){
7007             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
7008         },
7009         /**
7010          * Gets the related target.
7011          * @return {HTMLElement}
7012          */
7013         getRelatedTarget : function(){
7014             if(this.browserEvent){
7015                 return E.getRelatedTarget(this.browserEvent);
7016             }
7017             return null;
7018         },
7019
7020         /**
7021          * Normalizes mouse wheel delta across browsers
7022          * @return {Number} The delta
7023          */
7024         getWheelDelta : function(){
7025             var e = this.browserEvent;
7026             var delta = 0;
7027             if(e.wheelDelta){ /* IE/Opera. */
7028                 delta = e.wheelDelta/120;
7029             }else if(e.detail){ /* Mozilla case. */
7030                 delta = -e.detail/3;
7031             }
7032             return delta;
7033         },
7034
7035         /**
7036          * Returns true if the control, meta, shift or alt key was pressed during this event.
7037          * @return {Boolean}
7038          */
7039         hasModifier : function(){
7040             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
7041         },
7042
7043         /**
7044          * Returns true if the target of this event equals el or is a child of el
7045          * @param {String/HTMLElement/Element} el
7046          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
7047          * @return {Boolean}
7048          */
7049         within : function(el, related){
7050             var t = this[related ? "getRelatedTarget" : "getTarget"]();
7051             return t && Roo.fly(el).contains(t);
7052         },
7053
7054         getPoint : function(){
7055             return new Roo.lib.Point(this.xy[0], this.xy[1]);
7056         }
7057     };
7058
7059     return new Roo.EventObjectImpl();
7060 }();
7061             
7062     /*
7063  * Based on:
7064  * Ext JS Library 1.1.1
7065  * Copyright(c) 2006-2007, Ext JS, LLC.
7066  *
7067  * Originally Released Under LGPL - original licence link has changed is not relivant.
7068  *
7069  * Fork - LGPL
7070  * <script type="text/javascript">
7071  */
7072
7073  
7074 // was in Composite Element!??!?!
7075  
7076 (function(){
7077     var D = Roo.lib.Dom;
7078     var E = Roo.lib.Event;
7079     var A = Roo.lib.Anim;
7080
7081     // local style camelizing for speed
7082     var propCache = {};
7083     var camelRe = /(-[a-z])/gi;
7084     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
7085     var view = document.defaultView;
7086
7087 /**
7088  * @class Roo.Element
7089  * Represents an Element in the DOM.<br><br>
7090  * Usage:<br>
7091 <pre><code>
7092 var el = Roo.get("my-div");
7093
7094 // or with getEl
7095 var el = getEl("my-div");
7096
7097 // or with a DOM element
7098 var el = Roo.get(myDivElement);
7099 </code></pre>
7100  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
7101  * each call instead of constructing a new one.<br><br>
7102  * <b>Animations</b><br />
7103  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
7104  * should either be a boolean (true) or an object literal with animation options. The animation options are:
7105 <pre>
7106 Option    Default   Description
7107 --------- --------  ---------------------------------------------
7108 duration  .35       The duration of the animation in seconds
7109 easing    easeOut   The YUI easing method
7110 callback  none      A function to execute when the anim completes
7111 scope     this      The scope (this) of the callback function
7112 </pre>
7113 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
7114 * manipulate the animation. Here's an example:
7115 <pre><code>
7116 var el = Roo.get("my-div");
7117
7118 // no animation
7119 el.setWidth(100);
7120
7121 // default animation
7122 el.setWidth(100, true);
7123
7124 // animation with some options set
7125 el.setWidth(100, {
7126     duration: 1,
7127     callback: this.foo,
7128     scope: this
7129 });
7130
7131 // using the "anim" property to get the Anim object
7132 var opt = {
7133     duration: 1,
7134     callback: this.foo,
7135     scope: this
7136 };
7137 el.setWidth(100, opt);
7138 ...
7139 if(opt.anim.isAnimated()){
7140     opt.anim.stop();
7141 }
7142 </code></pre>
7143 * <b> Composite (Collections of) Elements</b><br />
7144  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
7145  * @constructor Create a new Element directly.
7146  * @param {String/HTMLElement} element
7147  * @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).
7148  */
7149     Roo.Element = function(element, forceNew){
7150         var dom = typeof element == "string" ?
7151                 document.getElementById(element) : element;
7152         if(!dom){ // invalid id/element
7153             return null;
7154         }
7155         var id = dom.id;
7156         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
7157             return Roo.Element.cache[id];
7158         }
7159
7160         /**
7161          * The DOM element
7162          * @type HTMLElement
7163          */
7164         this.dom = dom;
7165
7166         /**
7167          * The DOM element ID
7168          * @type String
7169          */
7170         this.id = id || Roo.id(dom);
7171     };
7172
7173     var El = Roo.Element;
7174
7175     El.prototype = {
7176         /**
7177          * The element's default display mode  (defaults to "") 
7178          * @type String
7179          */
7180         originalDisplay : "",
7181
7182         
7183         // note this is overridden in BS version..
7184         visibilityMode : 1, 
7185         /**
7186          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
7187          * @type String
7188          */
7189         defaultUnit : "px",
7190         
7191         /**
7192          * Sets the element's visibility mode. When setVisible() is called it
7193          * will use this to determine whether to set the visibility or the display property.
7194          * @param visMode Element.VISIBILITY or Element.DISPLAY
7195          * @return {Roo.Element} this
7196          */
7197         setVisibilityMode : function(visMode){
7198             this.visibilityMode = visMode;
7199             return this;
7200         },
7201         /**
7202          * Convenience method for setVisibilityMode(Element.DISPLAY)
7203          * @param {String} display (optional) What to set display to when visible
7204          * @return {Roo.Element} this
7205          */
7206         enableDisplayMode : function(display){
7207             this.setVisibilityMode(El.DISPLAY);
7208             if(typeof display != "undefined") { this.originalDisplay = display; }
7209             return this;
7210         },
7211
7212         /**
7213          * 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)
7214          * @param {String} selector The simple selector to test
7215          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7216                 search as a number or element (defaults to 10 || document.body)
7217          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7218          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7219          */
7220         findParent : function(simpleSelector, maxDepth, returnEl){
7221             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
7222             maxDepth = maxDepth || 50;
7223             if(typeof maxDepth != "number"){
7224                 stopEl = Roo.getDom(maxDepth);
7225                 maxDepth = 10;
7226             }
7227             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
7228                 if(dq.is(p, simpleSelector)){
7229                     return returnEl ? Roo.get(p) : p;
7230                 }
7231                 depth++;
7232                 p = p.parentNode;
7233             }
7234             return null;
7235         },
7236
7237
7238         /**
7239          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
7240          * @param {String} selector The simple selector to test
7241          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7242                 search as a number or element (defaults to 10 || document.body)
7243          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
7244          * @return {HTMLElement} The matching DOM node (or null if no match was found)
7245          */
7246         findParentNode : function(simpleSelector, maxDepth, returnEl){
7247             var p = Roo.fly(this.dom.parentNode, '_internal');
7248             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
7249         },
7250         
7251         /**
7252          * Looks at  the scrollable parent element
7253          */
7254         findScrollableParent : function()
7255         {
7256             var overflowRegex = /(auto|scroll)/;
7257             
7258             if(this.getStyle('position') === 'fixed'){
7259                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7260             }
7261             
7262             var excludeStaticParent = this.getStyle('position') === "absolute";
7263             
7264             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
7265                 
7266                 if (excludeStaticParent && parent.getStyle('position') === "static") {
7267                     continue;
7268                 }
7269                 
7270                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
7271                     return parent;
7272                 }
7273                 
7274                 if(parent.dom.nodeName.toLowerCase() == 'body'){
7275                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7276                 }
7277             }
7278             
7279             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
7280         },
7281
7282         /**
7283          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
7284          * This is a shortcut for findParentNode() that always returns an Roo.Element.
7285          * @param {String} selector The simple selector to test
7286          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
7287                 search as a number or element (defaults to 10 || document.body)
7288          * @return {Roo.Element} The matching DOM node (or null if no match was found)
7289          */
7290         up : function(simpleSelector, maxDepth){
7291             return this.findParentNode(simpleSelector, maxDepth, true);
7292         },
7293
7294
7295
7296         /**
7297          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
7298          * @param {String} selector The simple selector to test
7299          * @return {Boolean} True if this element matches the selector, else false
7300          */
7301         is : function(simpleSelector){
7302             return Roo.DomQuery.is(this.dom, simpleSelector);
7303         },
7304
7305         /**
7306          * Perform animation on this element.
7307          * @param {Object} args The YUI animation control args
7308          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
7309          * @param {Function} onComplete (optional) Function to call when animation completes
7310          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
7311          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
7312          * @return {Roo.Element} this
7313          */
7314         animate : function(args, duration, onComplete, easing, animType){
7315             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
7316             return this;
7317         },
7318
7319         /*
7320          * @private Internal animation call
7321          */
7322         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
7323             animType = animType || 'run';
7324             opt = opt || {};
7325             var anim = Roo.lib.Anim[animType](
7326                 this.dom, args,
7327                 (opt.duration || defaultDur) || .35,
7328                 (opt.easing || defaultEase) || 'easeOut',
7329                 function(){
7330                     Roo.callback(cb, this);
7331                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
7332                 },
7333                 this
7334             );
7335             opt.anim = anim;
7336             return anim;
7337         },
7338
7339         // private legacy anim prep
7340         preanim : function(a, i){
7341             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
7342         },
7343
7344         /**
7345          * Removes worthless text nodes
7346          * @param {Boolean} forceReclean (optional) By default the element
7347          * keeps track if it has been cleaned already so
7348          * you can call this over and over. However, if you update the element and
7349          * need to force a reclean, you can pass true.
7350          */
7351         clean : function(forceReclean){
7352             if(this.isCleaned && forceReclean !== true){
7353                 return this;
7354             }
7355             var ns = /\S/;
7356             var d = this.dom, n = d.firstChild, ni = -1;
7357             while(n){
7358                 var nx = n.nextSibling;
7359                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
7360                     d.removeChild(n);
7361                 }else{
7362                     n.nodeIndex = ++ni;
7363                 }
7364                 n = nx;
7365             }
7366             this.isCleaned = true;
7367             return this;
7368         },
7369
7370         // private
7371         calcOffsetsTo : function(el){
7372             el = Roo.get(el);
7373             var d = el.dom;
7374             var restorePos = false;
7375             if(el.getStyle('position') == 'static'){
7376                 el.position('relative');
7377                 restorePos = true;
7378             }
7379             var x = 0, y =0;
7380             var op = this.dom;
7381             while(op && op != d && op.tagName != 'HTML'){
7382                 x+= op.offsetLeft;
7383                 y+= op.offsetTop;
7384                 op = op.offsetParent;
7385             }
7386             if(restorePos){
7387                 el.position('static');
7388             }
7389             return [x, y];
7390         },
7391
7392         /**
7393          * Scrolls this element into view within the passed container.
7394          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
7395          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
7396          * @return {Roo.Element} this
7397          */
7398         scrollIntoView : function(container, hscroll){
7399             var c = Roo.getDom(container) || document.body;
7400             var el = this.dom;
7401
7402             var o = this.calcOffsetsTo(c),
7403                 l = o[0],
7404                 t = o[1],
7405                 b = t+el.offsetHeight,
7406                 r = l+el.offsetWidth;
7407
7408             var ch = c.clientHeight;
7409             var ct = parseInt(c.scrollTop, 10);
7410             var cl = parseInt(c.scrollLeft, 10);
7411             var cb = ct + ch;
7412             var cr = cl + c.clientWidth;
7413
7414             if(t < ct){
7415                 c.scrollTop = t;
7416             }else if(b > cb){
7417                 c.scrollTop = b-ch;
7418             }
7419
7420             if(hscroll !== false){
7421                 if(l < cl){
7422                     c.scrollLeft = l;
7423                 }else if(r > cr){
7424                     c.scrollLeft = r-c.clientWidth;
7425                 }
7426             }
7427             return this;
7428         },
7429
7430         // private
7431         scrollChildIntoView : function(child, hscroll){
7432             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
7433         },
7434
7435         /**
7436          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
7437          * the new height may not be available immediately.
7438          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
7439          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
7440          * @param {Function} onComplete (optional) Function to call when animation completes
7441          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
7442          * @return {Roo.Element} this
7443          */
7444         autoHeight : function(animate, duration, onComplete, easing){
7445             var oldHeight = this.getHeight();
7446             this.clip();
7447             this.setHeight(1); // force clipping
7448             setTimeout(function(){
7449                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
7450                 if(!animate){
7451                     this.setHeight(height);
7452                     this.unclip();
7453                     if(typeof onComplete == "function"){
7454                         onComplete();
7455                     }
7456                 }else{
7457                     this.setHeight(oldHeight); // restore original height
7458                     this.setHeight(height, animate, duration, function(){
7459                         this.unclip();
7460                         if(typeof onComplete == "function") { onComplete(); }
7461                     }.createDelegate(this), easing);
7462                 }
7463             }.createDelegate(this), 0);
7464             return this;
7465         },
7466
7467         /**
7468          * Returns true if this element is an ancestor of the passed element
7469          * @param {HTMLElement/String} el The element to check
7470          * @return {Boolean} True if this element is an ancestor of el, else false
7471          */
7472         contains : function(el){
7473             if(!el){return false;}
7474             return D.isAncestor(this.dom, el.dom ? el.dom : el);
7475         },
7476
7477         /**
7478          * Checks whether the element is currently visible using both visibility and display properties.
7479          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
7480          * @return {Boolean} True if the element is currently visible, else false
7481          */
7482         isVisible : function(deep) {
7483             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
7484             if(deep !== true || !vis){
7485                 return vis;
7486             }
7487             var p = this.dom.parentNode;
7488             while(p && p.tagName.toLowerCase() != "body"){
7489                 if(!Roo.fly(p, '_isVisible').isVisible()){
7490                     return false;
7491                 }
7492                 p = p.parentNode;
7493             }
7494             return true;
7495         },
7496
7497         /**
7498          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
7499          * @param {String} selector The CSS selector
7500          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
7501          * @return {CompositeElement/CompositeElementLite} The composite element
7502          */
7503         select : function(selector, unique){
7504             return El.select(selector, unique, this.dom);
7505         },
7506
7507         /**
7508          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
7509          * @param {String} selector The CSS selector
7510          * @return {Array} An array of the matched nodes
7511          */
7512         query : function(selector, unique){
7513             return Roo.DomQuery.select(selector, this.dom);
7514         },
7515
7516         /**
7517          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
7518          * @param {String} selector The CSS selector
7519          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7520          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7521          */
7522         child : function(selector, returnDom){
7523             var n = Roo.DomQuery.selectNode(selector, this.dom);
7524             return returnDom ? n : Roo.get(n);
7525         },
7526
7527         /**
7528          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
7529          * @param {String} selector The CSS selector
7530          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
7531          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
7532          */
7533         down : function(selector, returnDom){
7534             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
7535             return returnDom ? n : Roo.get(n);
7536         },
7537
7538         /**
7539          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
7540          * @param {String} group The group the DD object is member of
7541          * @param {Object} config The DD config object
7542          * @param {Object} overrides An object containing methods to override/implement on the DD object
7543          * @return {Roo.dd.DD} The DD object
7544          */
7545         initDD : function(group, config, overrides){
7546             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
7547             return Roo.apply(dd, overrides);
7548         },
7549
7550         /**
7551          * Initializes a {@link Roo.dd.DDProxy} object for this element.
7552          * @param {String} group The group the DDProxy object is member of
7553          * @param {Object} config The DDProxy config object
7554          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
7555          * @return {Roo.dd.DDProxy} The DDProxy object
7556          */
7557         initDDProxy : function(group, config, overrides){
7558             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
7559             return Roo.apply(dd, overrides);
7560         },
7561
7562         /**
7563          * Initializes a {@link Roo.dd.DDTarget} object for this element.
7564          * @param {String} group The group the DDTarget object is member of
7565          * @param {Object} config The DDTarget config object
7566          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
7567          * @return {Roo.dd.DDTarget} The DDTarget object
7568          */
7569         initDDTarget : function(group, config, overrides){
7570             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
7571             return Roo.apply(dd, overrides);
7572         },
7573
7574         /**
7575          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
7576          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
7577          * @param {Boolean} visible Whether the element is visible
7578          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7579          * @return {Roo.Element} this
7580          */
7581          setVisible : function(visible, animate){
7582             if(!animate || !A){
7583                 if(this.visibilityMode == El.DISPLAY){
7584                     this.setDisplayed(visible);
7585                 }else{
7586                     this.fixDisplay();
7587                     this.dom.style.visibility = visible ? "visible" : "hidden";
7588                 }
7589             }else{
7590                 // closure for composites
7591                 var dom = this.dom;
7592                 var visMode = this.visibilityMode;
7593                 if(visible){
7594                     this.setOpacity(.01);
7595                     this.setVisible(true);
7596                 }
7597                 this.anim({opacity: { to: (visible?1:0) }},
7598                       this.preanim(arguments, 1),
7599                       null, .35, 'easeIn', function(){
7600                          if(!visible){
7601                              if(visMode == El.DISPLAY){
7602                                  dom.style.display = "none";
7603                              }else{
7604                                  dom.style.visibility = "hidden";
7605                              }
7606                              Roo.get(dom).setOpacity(1);
7607                          }
7608                      });
7609             }
7610             return this;
7611         },
7612
7613         /**
7614          * Returns true if display is not "none"
7615          * @return {Boolean}
7616          */
7617         isDisplayed : function() {
7618             return this.getStyle("display") != "none";
7619         },
7620
7621         /**
7622          * Toggles the element's visibility or display, depending on visibility mode.
7623          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7624          * @return {Roo.Element} this
7625          */
7626         toggle : function(animate){
7627             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
7628             return this;
7629         },
7630
7631         /**
7632          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
7633          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
7634          * @return {Roo.Element} this
7635          */
7636         setDisplayed : function(value) {
7637             if(typeof value == "boolean"){
7638                value = value ? this.originalDisplay : "none";
7639             }
7640             this.setStyle("display", value);
7641             return this;
7642         },
7643
7644         /**
7645          * Tries to focus the element. Any exceptions are caught and ignored.
7646          * @return {Roo.Element} this
7647          */
7648         focus : function() {
7649             try{
7650                 this.dom.focus();
7651             }catch(e){}
7652             return this;
7653         },
7654
7655         /**
7656          * Tries to blur the element. Any exceptions are caught and ignored.
7657          * @return {Roo.Element} this
7658          */
7659         blur : function() {
7660             try{
7661                 this.dom.blur();
7662             }catch(e){}
7663             return this;
7664         },
7665
7666         /**
7667          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
7668          * @param {String/Array} className The CSS class to add, or an array of classes
7669          * @return {Roo.Element} this
7670          */
7671         addClass : function(className){
7672             if(className instanceof Array){
7673                 for(var i = 0, len = className.length; i < len; i++) {
7674                     this.addClass(className[i]);
7675                 }
7676             }else{
7677                 if(className && !this.hasClass(className)){
7678                     this.dom.className = this.dom.className + " " + className;
7679                 }
7680             }
7681             return this;
7682         },
7683
7684         /**
7685          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
7686          * @param {String/Array} className The CSS class to add, or an array of classes
7687          * @return {Roo.Element} this
7688          */
7689         radioClass : function(className){
7690             var siblings = this.dom.parentNode.childNodes;
7691             for(var i = 0; i < siblings.length; i++) {
7692                 var s = siblings[i];
7693                 if(s.nodeType == 1){
7694                     Roo.get(s).removeClass(className);
7695                 }
7696             }
7697             this.addClass(className);
7698             return this;
7699         },
7700
7701         /**
7702          * Removes one or more CSS classes from the element.
7703          * @param {String/Array} className The CSS class to remove, or an array of classes
7704          * @return {Roo.Element} this
7705          */
7706         removeClass : function(className){
7707             if(!className || !this.dom.className){
7708                 return this;
7709             }
7710             if(className instanceof Array){
7711                 for(var i = 0, len = className.length; i < len; i++) {
7712                     this.removeClass(className[i]);
7713                 }
7714             }else{
7715                 if(this.hasClass(className)){
7716                     var re = this.classReCache[className];
7717                     if (!re) {
7718                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
7719                        this.classReCache[className] = re;
7720                     }
7721                     this.dom.className =
7722                         this.dom.className.replace(re, " ");
7723                 }
7724             }
7725             return this;
7726         },
7727
7728         // private
7729         classReCache: {},
7730
7731         /**
7732          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
7733          * @param {String} className The CSS class to toggle
7734          * @return {Roo.Element} this
7735          */
7736         toggleClass : function(className){
7737             if(this.hasClass(className)){
7738                 this.removeClass(className);
7739             }else{
7740                 this.addClass(className);
7741             }
7742             return this;
7743         },
7744
7745         /**
7746          * Checks if the specified CSS class exists on this element's DOM node.
7747          * @param {String} className The CSS class to check for
7748          * @return {Boolean} True if the class exists, else false
7749          */
7750         hasClass : function(className){
7751             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
7752         },
7753
7754         /**
7755          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
7756          * @param {String} oldClassName The CSS class to replace
7757          * @param {String} newClassName The replacement CSS class
7758          * @return {Roo.Element} this
7759          */
7760         replaceClass : function(oldClassName, newClassName){
7761             this.removeClass(oldClassName);
7762             this.addClass(newClassName);
7763             return this;
7764         },
7765
7766         /**
7767          * Returns an object with properties matching the styles requested.
7768          * For example, el.getStyles('color', 'font-size', 'width') might return
7769          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
7770          * @param {String} style1 A style name
7771          * @param {String} style2 A style name
7772          * @param {String} etc.
7773          * @return {Object} The style object
7774          */
7775         getStyles : function(){
7776             var a = arguments, len = a.length, r = {};
7777             for(var i = 0; i < len; i++){
7778                 r[a[i]] = this.getStyle(a[i]);
7779             }
7780             return r;
7781         },
7782
7783         /**
7784          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
7785          * @param {String} property The style property whose value is returned.
7786          * @return {String} The current value of the style property for this element.
7787          */
7788         getStyle : function(){
7789             return view && view.getComputedStyle ?
7790                 function(prop){
7791                     var el = this.dom, v, cs, camel;
7792                     if(prop == 'float'){
7793                         prop = "cssFloat";
7794                     }
7795                     if(el.style && (v = el.style[prop])){
7796                         return v;
7797                     }
7798                     if(cs = view.getComputedStyle(el, "")){
7799                         if(!(camel = propCache[prop])){
7800                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
7801                         }
7802                         return cs[camel];
7803                     }
7804                     return null;
7805                 } :
7806                 function(prop){
7807                     var el = this.dom, v, cs, camel;
7808                     if(prop == 'opacity'){
7809                         if(typeof el.style.filter == 'string'){
7810                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
7811                             if(m){
7812                                 var fv = parseFloat(m[1]);
7813                                 if(!isNaN(fv)){
7814                                     return fv ? fv / 100 : 0;
7815                                 }
7816                             }
7817                         }
7818                         return 1;
7819                     }else if(prop == 'float'){
7820                         prop = "styleFloat";
7821                     }
7822                     if(!(camel = propCache[prop])){
7823                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
7824                     }
7825                     if(v = el.style[camel]){
7826                         return v;
7827                     }
7828                     if(cs = el.currentStyle){
7829                         return cs[camel];
7830                     }
7831                     return null;
7832                 };
7833         }(),
7834
7835         /**
7836          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
7837          * @param {String/Object} property The style property to be set, or an object of multiple styles.
7838          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
7839          * @return {Roo.Element} this
7840          */
7841         setStyle : function(prop, value){
7842             if(typeof prop == "string"){
7843                 
7844                 if (prop == 'float') {
7845                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
7846                     return this;
7847                 }
7848                 
7849                 var camel;
7850                 if(!(camel = propCache[prop])){
7851                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
7852                 }
7853                 
7854                 if(camel == 'opacity') {
7855                     this.setOpacity(value);
7856                 }else{
7857                     this.dom.style[camel] = value;
7858                 }
7859             }else{
7860                 for(var style in prop){
7861                     if(typeof prop[style] != "function"){
7862                        this.setStyle(style, prop[style]);
7863                     }
7864                 }
7865             }
7866             return this;
7867         },
7868
7869         /**
7870          * More flexible version of {@link #setStyle} for setting style properties.
7871          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
7872          * a function which returns such a specification.
7873          * @return {Roo.Element} this
7874          */
7875         applyStyles : function(style){
7876             Roo.DomHelper.applyStyles(this.dom, style);
7877             return this;
7878         },
7879
7880         /**
7881           * 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).
7882           * @return {Number} The X position of the element
7883           */
7884         getX : function(){
7885             return D.getX(this.dom);
7886         },
7887
7888         /**
7889           * 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).
7890           * @return {Number} The Y position of the element
7891           */
7892         getY : function(){
7893             return D.getY(this.dom);
7894         },
7895
7896         /**
7897           * 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).
7898           * @return {Array} The XY position of the element
7899           */
7900         getXY : function(){
7901             return D.getXY(this.dom);
7902         },
7903
7904         /**
7905          * 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).
7906          * @param {Number} The X position of the element
7907          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7908          * @return {Roo.Element} this
7909          */
7910         setX : function(x, animate){
7911             if(!animate || !A){
7912                 D.setX(this.dom, x);
7913             }else{
7914                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
7915             }
7916             return this;
7917         },
7918
7919         /**
7920          * 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).
7921          * @param {Number} The Y position of the element
7922          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7923          * @return {Roo.Element} this
7924          */
7925         setY : function(y, animate){
7926             if(!animate || !A){
7927                 D.setY(this.dom, y);
7928             }else{
7929                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
7930             }
7931             return this;
7932         },
7933
7934         /**
7935          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
7936          * @param {String} left The left CSS property value
7937          * @return {Roo.Element} this
7938          */
7939         setLeft : function(left){
7940             this.setStyle("left", this.addUnits(left));
7941             return this;
7942         },
7943
7944         /**
7945          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
7946          * @param {String} top The top CSS property value
7947          * @return {Roo.Element} this
7948          */
7949         setTop : function(top){
7950             this.setStyle("top", this.addUnits(top));
7951             return this;
7952         },
7953
7954         /**
7955          * Sets the element's CSS right style.
7956          * @param {String} right The right CSS property value
7957          * @return {Roo.Element} this
7958          */
7959         setRight : function(right){
7960             this.setStyle("right", this.addUnits(right));
7961             return this;
7962         },
7963
7964         /**
7965          * Sets the element's CSS bottom style.
7966          * @param {String} bottom The bottom CSS property value
7967          * @return {Roo.Element} this
7968          */
7969         setBottom : function(bottom){
7970             this.setStyle("bottom", this.addUnits(bottom));
7971             return this;
7972         },
7973
7974         /**
7975          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7976          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7977          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
7978          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7979          * @return {Roo.Element} this
7980          */
7981         setXY : function(pos, animate){
7982             if(!animate || !A){
7983                 D.setXY(this.dom, pos);
7984             }else{
7985                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
7986             }
7987             return this;
7988         },
7989
7990         /**
7991          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
7992          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
7993          * @param {Number} x X value for new position (coordinates are page-based)
7994          * @param {Number} y Y value for new position (coordinates are page-based)
7995          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
7996          * @return {Roo.Element} this
7997          */
7998         setLocation : function(x, y, animate){
7999             this.setXY([x, y], this.preanim(arguments, 2));
8000             return this;
8001         },
8002
8003         /**
8004          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
8005          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
8006          * @param {Number} x X value for new position (coordinates are page-based)
8007          * @param {Number} y Y value for new position (coordinates are page-based)
8008          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8009          * @return {Roo.Element} this
8010          */
8011         moveTo : function(x, y, animate){
8012             this.setXY([x, y], this.preanim(arguments, 2));
8013             return this;
8014         },
8015
8016         /**
8017          * Returns the region of the given element.
8018          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
8019          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
8020          */
8021         getRegion : function(){
8022             return D.getRegion(this.dom);
8023         },
8024
8025         /**
8026          * Returns the offset height of the element
8027          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
8028          * @return {Number} The element's height
8029          */
8030         getHeight : function(contentHeight){
8031             var h = this.dom.offsetHeight || 0;
8032             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
8033         },
8034
8035         /**
8036          * Returns the offset width of the element
8037          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
8038          * @return {Number} The element's width
8039          */
8040         getWidth : function(contentWidth){
8041             var w = this.dom.offsetWidth || 0;
8042             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
8043         },
8044
8045         /**
8046          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
8047          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
8048          * if a height has not been set using CSS.
8049          * @return {Number}
8050          */
8051         getComputedHeight : function(){
8052             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
8053             if(!h){
8054                 h = parseInt(this.getStyle('height'), 10) || 0;
8055                 if(!this.isBorderBox()){
8056                     h += this.getFrameWidth('tb');
8057                 }
8058             }
8059             return h;
8060         },
8061
8062         /**
8063          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
8064          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
8065          * if a width has not been set using CSS.
8066          * @return {Number}
8067          */
8068         getComputedWidth : function(){
8069             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
8070             if(!w){
8071                 w = parseInt(this.getStyle('width'), 10) || 0;
8072                 if(!this.isBorderBox()){
8073                     w += this.getFrameWidth('lr');
8074                 }
8075             }
8076             return w;
8077         },
8078
8079         /**
8080          * Returns the size of the element.
8081          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
8082          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8083          */
8084         getSize : function(contentSize){
8085             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
8086         },
8087
8088         /**
8089          * Returns the width and height of the viewport.
8090          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
8091          */
8092         getViewSize : function(){
8093             var d = this.dom, doc = document, aw = 0, ah = 0;
8094             if(d == doc || d == doc.body){
8095                 return {width : D.getViewWidth(), height: D.getViewHeight()};
8096             }else{
8097                 return {
8098                     width : d.clientWidth,
8099                     height: d.clientHeight
8100                 };
8101             }
8102         },
8103
8104         /**
8105          * Returns the value of the "value" attribute
8106          * @param {Boolean} asNumber true to parse the value as a number
8107          * @return {String/Number}
8108          */
8109         getValue : function(asNumber){
8110             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
8111         },
8112
8113         // private
8114         adjustWidth : function(width){
8115             if(typeof width == "number"){
8116                 if(this.autoBoxAdjust && !this.isBorderBox()){
8117                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
8118                 }
8119                 if(width < 0){
8120                     width = 0;
8121                 }
8122             }
8123             return width;
8124         },
8125
8126         // private
8127         adjustHeight : function(height){
8128             if(typeof height == "number"){
8129                if(this.autoBoxAdjust && !this.isBorderBox()){
8130                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
8131                }
8132                if(height < 0){
8133                    height = 0;
8134                }
8135             }
8136             return height;
8137         },
8138
8139         /**
8140          * Set the width of the element
8141          * @param {Number} width The new width
8142          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8143          * @return {Roo.Element} this
8144          */
8145         setWidth : function(width, animate){
8146             width = this.adjustWidth(width);
8147             if(!animate || !A){
8148                 this.dom.style.width = this.addUnits(width);
8149             }else{
8150                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
8151             }
8152             return this;
8153         },
8154
8155         /**
8156          * Set the height of the element
8157          * @param {Number} height The new height
8158          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8159          * @return {Roo.Element} this
8160          */
8161          setHeight : function(height, animate){
8162             height = this.adjustHeight(height);
8163             if(!animate || !A){
8164                 this.dom.style.height = this.addUnits(height);
8165             }else{
8166                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
8167             }
8168             return this;
8169         },
8170
8171         /**
8172          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
8173          * @param {Number} width The new width
8174          * @param {Number} height The new height
8175          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8176          * @return {Roo.Element} this
8177          */
8178          setSize : function(width, height, animate){
8179             if(typeof width == "object"){ // in case of object from getSize()
8180                 height = width.height; width = width.width;
8181             }
8182             width = this.adjustWidth(width); height = this.adjustHeight(height);
8183             if(!animate || !A){
8184                 this.dom.style.width = this.addUnits(width);
8185                 this.dom.style.height = this.addUnits(height);
8186             }else{
8187                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
8188             }
8189             return this;
8190         },
8191
8192         /**
8193          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
8194          * @param {Number} x X value for new position (coordinates are page-based)
8195          * @param {Number} y Y value for new position (coordinates are page-based)
8196          * @param {Number} width The new width
8197          * @param {Number} height The new height
8198          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8199          * @return {Roo.Element} this
8200          */
8201         setBounds : function(x, y, width, height, animate){
8202             if(!animate || !A){
8203                 this.setSize(width, height);
8204                 this.setLocation(x, y);
8205             }else{
8206                 width = this.adjustWidth(width); height = this.adjustHeight(height);
8207                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
8208                               this.preanim(arguments, 4), 'motion');
8209             }
8210             return this;
8211         },
8212
8213         /**
8214          * 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.
8215          * @param {Roo.lib.Region} region The region to fill
8216          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8217          * @return {Roo.Element} this
8218          */
8219         setRegion : function(region, animate){
8220             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
8221             return this;
8222         },
8223
8224         /**
8225          * Appends an event handler
8226          *
8227          * @param {String}   eventName     The type of event to append
8228          * @param {Function} fn        The method the event invokes
8229          * @param {Object} scope       (optional) The scope (this object) of the fn
8230          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
8231          */
8232         addListener : function(eventName, fn, scope, options){
8233             if (this.dom) {
8234                 Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
8235             }
8236             if (eventName == 'dblclick') {
8237                 this.addListener('touchstart', this.onTapHandler, this);
8238             }
8239         },
8240         tapedTwice : false,
8241         onTapHandler : function(event)
8242         {
8243             if(!this.tapedTwice) {
8244                 this.tapedTwice = true;
8245                 var s = this;
8246                 setTimeout( function() {
8247                     s.tapedTwice = false;
8248                 }, 300 );
8249                 return;
8250             }
8251             event.preventDefault();
8252             var revent = new MouseEvent('dblclick',  {
8253                 view: window,
8254                 bubbles: true,
8255                 cancelable: true
8256             });
8257              
8258             this.dom.dispatchEvent(revent);
8259             //action on double tap goes below
8260              
8261         }, 
8262
8263         /**
8264          * Removes an event handler from this element
8265          * @param {String} eventName the type of event to remove
8266          * @param {Function} fn the method the event invokes
8267          * @return {Roo.Element} this
8268          */
8269         removeListener : function(eventName, fn){
8270             Roo.EventManager.removeListener(this.dom,  eventName, fn);
8271             return this;
8272         },
8273
8274         /**
8275          * Removes all previous added listeners from this element
8276          * @return {Roo.Element} this
8277          */
8278         removeAllListeners : function(){
8279             E.purgeElement(this.dom);
8280             return this;
8281         },
8282
8283         relayEvent : function(eventName, observable){
8284             this.on(eventName, function(e){
8285                 observable.fireEvent(eventName, e);
8286             });
8287         },
8288
8289         /**
8290          * Set the opacity of the element
8291          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
8292          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8293          * @return {Roo.Element} this
8294          */
8295          setOpacity : function(opacity, animate){
8296             if(!animate || !A){
8297                 var s = this.dom.style;
8298                 if(Roo.isIE){
8299                     s.zoom = 1;
8300                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
8301                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
8302                 }else{
8303                     s.opacity = opacity;
8304                 }
8305             }else{
8306                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
8307             }
8308             return this;
8309         },
8310
8311         /**
8312          * Gets the left X coordinate
8313          * @param {Boolean} local True to get the local css position instead of page coordinate
8314          * @return {Number}
8315          */
8316         getLeft : function(local){
8317             if(!local){
8318                 return this.getX();
8319             }else{
8320                 return parseInt(this.getStyle("left"), 10) || 0;
8321             }
8322         },
8323
8324         /**
8325          * Gets the right X coordinate of the element (element X position + element width)
8326          * @param {Boolean} local True to get the local css position instead of page coordinate
8327          * @return {Number}
8328          */
8329         getRight : function(local){
8330             if(!local){
8331                 return this.getX() + this.getWidth();
8332             }else{
8333                 return (this.getLeft(true) + this.getWidth()) || 0;
8334             }
8335         },
8336
8337         /**
8338          * Gets the top Y coordinate
8339          * @param {Boolean} local True to get the local css position instead of page coordinate
8340          * @return {Number}
8341          */
8342         getTop : function(local) {
8343             if(!local){
8344                 return this.getY();
8345             }else{
8346                 return parseInt(this.getStyle("top"), 10) || 0;
8347             }
8348         },
8349
8350         /**
8351          * Gets the bottom Y coordinate of the element (element Y position + element height)
8352          * @param {Boolean} local True to get the local css position instead of page coordinate
8353          * @return {Number}
8354          */
8355         getBottom : function(local){
8356             if(!local){
8357                 return this.getY() + this.getHeight();
8358             }else{
8359                 return (this.getTop(true) + this.getHeight()) || 0;
8360             }
8361         },
8362
8363         /**
8364         * Initializes positioning on this element. If a desired position is not passed, it will make the
8365         * the element positioned relative IF it is not already positioned.
8366         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
8367         * @param {Number} zIndex (optional) The zIndex to apply
8368         * @param {Number} x (optional) Set the page X position
8369         * @param {Number} y (optional) Set the page Y position
8370         */
8371         position : function(pos, zIndex, x, y){
8372             if(!pos){
8373                if(this.getStyle('position') == 'static'){
8374                    this.setStyle('position', 'relative');
8375                }
8376             }else{
8377                 this.setStyle("position", pos);
8378             }
8379             if(zIndex){
8380                 this.setStyle("z-index", zIndex);
8381             }
8382             if(x !== undefined && y !== undefined){
8383                 this.setXY([x, y]);
8384             }else if(x !== undefined){
8385                 this.setX(x);
8386             }else if(y !== undefined){
8387                 this.setY(y);
8388             }
8389         },
8390
8391         /**
8392         * Clear positioning back to the default when the document was loaded
8393         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
8394         * @return {Roo.Element} this
8395          */
8396         clearPositioning : function(value){
8397             value = value ||'';
8398             this.setStyle({
8399                 "left": value,
8400                 "right": value,
8401                 "top": value,
8402                 "bottom": value,
8403                 "z-index": "",
8404                 "position" : "static"
8405             });
8406             return this;
8407         },
8408
8409         /**
8410         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
8411         * snapshot before performing an update and then restoring the element.
8412         * @return {Object}
8413         */
8414         getPositioning : function(){
8415             var l = this.getStyle("left");
8416             var t = this.getStyle("top");
8417             return {
8418                 "position" : this.getStyle("position"),
8419                 "left" : l,
8420                 "right" : l ? "" : this.getStyle("right"),
8421                 "top" : t,
8422                 "bottom" : t ? "" : this.getStyle("bottom"),
8423                 "z-index" : this.getStyle("z-index")
8424             };
8425         },
8426
8427         /**
8428          * Gets the width of the border(s) for the specified side(s)
8429          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8430          * passing lr would get the border (l)eft width + the border (r)ight width.
8431          * @return {Number} The width of the sides passed added together
8432          */
8433         getBorderWidth : function(side){
8434             return this.addStyles(side, El.borders);
8435         },
8436
8437         /**
8438          * Gets the width of the padding(s) for the specified side(s)
8439          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
8440          * passing lr would get the padding (l)eft + the padding (r)ight.
8441          * @return {Number} The padding of the sides passed added together
8442          */
8443         getPadding : function(side){
8444             return this.addStyles(side, El.paddings);
8445         },
8446
8447         /**
8448         * Set positioning with an object returned by getPositioning().
8449         * @param {Object} posCfg
8450         * @return {Roo.Element} this
8451          */
8452         setPositioning : function(pc){
8453             this.applyStyles(pc);
8454             if(pc.right == "auto"){
8455                 this.dom.style.right = "";
8456             }
8457             if(pc.bottom == "auto"){
8458                 this.dom.style.bottom = "";
8459             }
8460             return this;
8461         },
8462
8463         // private
8464         fixDisplay : function(){
8465             if(this.getStyle("display") == "none"){
8466                 this.setStyle("visibility", "hidden");
8467                 this.setStyle("display", this.originalDisplay); // first try reverting to default
8468                 if(this.getStyle("display") == "none"){ // if that fails, default to block
8469                     this.setStyle("display", "block");
8470                 }
8471             }
8472         },
8473
8474         /**
8475          * Quick set left and top adding default units
8476          * @param {String} left The left CSS property value
8477          * @param {String} top The top CSS property value
8478          * @return {Roo.Element} this
8479          */
8480          setLeftTop : function(left, top){
8481             this.dom.style.left = this.addUnits(left);
8482             this.dom.style.top = this.addUnits(top);
8483             return this;
8484         },
8485
8486         /**
8487          * Move this element relative to its current position.
8488          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
8489          * @param {Number} distance How far to move the element in pixels
8490          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8491          * @return {Roo.Element} this
8492          */
8493          move : function(direction, distance, animate){
8494             var xy = this.getXY();
8495             direction = direction.toLowerCase();
8496             switch(direction){
8497                 case "l":
8498                 case "left":
8499                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
8500                     break;
8501                case "r":
8502                case "right":
8503                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
8504                     break;
8505                case "t":
8506                case "top":
8507                case "up":
8508                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
8509                     break;
8510                case "b":
8511                case "bottom":
8512                case "down":
8513                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
8514                     break;
8515             }
8516             return this;
8517         },
8518
8519         /**
8520          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
8521          * @return {Roo.Element} this
8522          */
8523         clip : function(){
8524             if(!this.isClipped){
8525                this.isClipped = true;
8526                this.originalClip = {
8527                    "o": this.getStyle("overflow"),
8528                    "x": this.getStyle("overflow-x"),
8529                    "y": this.getStyle("overflow-y")
8530                };
8531                this.setStyle("overflow", "hidden");
8532                this.setStyle("overflow-x", "hidden");
8533                this.setStyle("overflow-y", "hidden");
8534             }
8535             return this;
8536         },
8537
8538         /**
8539          *  Return clipping (overflow) to original clipping before clip() was called
8540          * @return {Roo.Element} this
8541          */
8542         unclip : function(){
8543             if(this.isClipped){
8544                 this.isClipped = false;
8545                 var o = this.originalClip;
8546                 if(o.o){this.setStyle("overflow", o.o);}
8547                 if(o.x){this.setStyle("overflow-x", o.x);}
8548                 if(o.y){this.setStyle("overflow-y", o.y);}
8549             }
8550             return this;
8551         },
8552
8553
8554         /**
8555          * Gets the x,y coordinates specified by the anchor position on the element.
8556          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
8557          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
8558          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
8559          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
8560          * @return {Array} [x, y] An array containing the element's x and y coordinates
8561          */
8562         getAnchorXY : function(anchor, local, s){
8563             //Passing a different size is useful for pre-calculating anchors,
8564             //especially for anchored animations that change the el size.
8565
8566             var w, h, vp = false;
8567             if(!s){
8568                 var d = this.dom;
8569                 if(d == document.body || d == document){
8570                     vp = true;
8571                     w = D.getViewWidth(); h = D.getViewHeight();
8572                 }else{
8573                     w = this.getWidth(); h = this.getHeight();
8574                 }
8575             }else{
8576                 w = s.width;  h = s.height;
8577             }
8578             var x = 0, y = 0, r = Math.round;
8579             switch((anchor || "tl").toLowerCase()){
8580                 case "c":
8581                     x = r(w*.5);
8582                     y = r(h*.5);
8583                 break;
8584                 case "t":
8585                     x = r(w*.5);
8586                     y = 0;
8587                 break;
8588                 case "l":
8589                     x = 0;
8590                     y = r(h*.5);
8591                 break;
8592                 case "r":
8593                     x = w;
8594                     y = r(h*.5);
8595                 break;
8596                 case "b":
8597                     x = r(w*.5);
8598                     y = h;
8599                 break;
8600                 case "tl":
8601                     x = 0;
8602                     y = 0;
8603                 break;
8604                 case "bl":
8605                     x = 0;
8606                     y = h;
8607                 break;
8608                 case "br":
8609                     x = w;
8610                     y = h;
8611                 break;
8612                 case "tr":
8613                     x = w;
8614                     y = 0;
8615                 break;
8616             }
8617             if(local === true){
8618                 return [x, y];
8619             }
8620             if(vp){
8621                 var sc = this.getScroll();
8622                 return [x + sc.left, y + sc.top];
8623             }
8624             //Add the element's offset xy
8625             var o = this.getXY();
8626             return [x+o[0], y+o[1]];
8627         },
8628
8629         /**
8630          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
8631          * supported position values.
8632          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8633          * @param {String} position The position to align to.
8634          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8635          * @return {Array} [x, y]
8636          */
8637         getAlignToXY : function(el, p, o)
8638         {
8639             el = Roo.get(el);
8640             var d = this.dom;
8641             if(!el.dom){
8642                 throw "Element.alignTo with an element that doesn't exist";
8643             }
8644             var c = false; //constrain to viewport
8645             var p1 = "", p2 = "";
8646             o = o || [0,0];
8647
8648             if(!p){
8649                 p = "tl-bl";
8650             }else if(p == "?"){
8651                 p = "tl-bl?";
8652             }else if(p.indexOf("-") == -1){
8653                 p = "tl-" + p;
8654             }
8655             p = p.toLowerCase();
8656             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
8657             if(!m){
8658                throw "Element.alignTo with an invalid alignment " + p;
8659             }
8660             p1 = m[1]; p2 = m[2]; c = !!m[3];
8661
8662             //Subtract the aligned el's internal xy from the target's offset xy
8663             //plus custom offset to get the aligned el's new offset xy
8664             var a1 = this.getAnchorXY(p1, true);
8665             var a2 = el.getAnchorXY(p2, false);
8666             var x = a2[0] - a1[0] + o[0];
8667             var y = a2[1] - a1[1] + o[1];
8668             if(c){
8669                 //constrain the aligned el to viewport if necessary
8670                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
8671                 // 5px of margin for ie
8672                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
8673
8674                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
8675                 //perpendicular to the vp border, allow the aligned el to slide on that border,
8676                 //otherwise swap the aligned el to the opposite border of the target.
8677                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
8678                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
8679                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
8680                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
8681
8682                var doc = document;
8683                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
8684                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
8685
8686                if((x+w) > dw + scrollX){
8687                     x = swapX ? r.left-w : dw+scrollX-w;
8688                 }
8689                if(x < scrollX){
8690                    x = swapX ? r.right : scrollX;
8691                }
8692                if((y+h) > dh + scrollY){
8693                     y = swapY ? r.top-h : dh+scrollY-h;
8694                 }
8695                if (y < scrollY){
8696                    y = swapY ? r.bottom : scrollY;
8697                }
8698             }
8699             return [x,y];
8700         },
8701
8702         // private
8703         getConstrainToXY : function(){
8704             var os = {top:0, left:0, bottom:0, right: 0};
8705
8706             return function(el, local, offsets, proposedXY){
8707                 el = Roo.get(el);
8708                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
8709
8710                 var vw, vh, vx = 0, vy = 0;
8711                 if(el.dom == document.body || el.dom == document){
8712                     vw = Roo.lib.Dom.getViewWidth();
8713                     vh = Roo.lib.Dom.getViewHeight();
8714                 }else{
8715                     vw = el.dom.clientWidth;
8716                     vh = el.dom.clientHeight;
8717                     if(!local){
8718                         var vxy = el.getXY();
8719                         vx = vxy[0];
8720                         vy = vxy[1];
8721                     }
8722                 }
8723
8724                 var s = el.getScroll();
8725
8726                 vx += offsets.left + s.left;
8727                 vy += offsets.top + s.top;
8728
8729                 vw -= offsets.right;
8730                 vh -= offsets.bottom;
8731
8732                 var vr = vx+vw;
8733                 var vb = vy+vh;
8734
8735                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
8736                 var x = xy[0], y = xy[1];
8737                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
8738
8739                 // only move it if it needs it
8740                 var moved = false;
8741
8742                 // first validate right/bottom
8743                 if((x + w) > vr){
8744                     x = vr - w;
8745                     moved = true;
8746                 }
8747                 if((y + h) > vb){
8748                     y = vb - h;
8749                     moved = true;
8750                 }
8751                 // then make sure top/left isn't negative
8752                 if(x < vx){
8753                     x = vx;
8754                     moved = true;
8755                 }
8756                 if(y < vy){
8757                     y = vy;
8758                     moved = true;
8759                 }
8760                 return moved ? [x, y] : false;
8761             };
8762         }(),
8763
8764         // private
8765         adjustForConstraints : function(xy, parent, offsets){
8766             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
8767         },
8768
8769         /**
8770          * Aligns this element with another element relative to the specified anchor points. If the other element is the
8771          * document it aligns it to the viewport.
8772          * The position parameter is optional, and can be specified in any one of the following formats:
8773          * <ul>
8774          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
8775          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
8776          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
8777          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
8778          *   <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
8779          *       element's anchor point, and the second value is used as the target's anchor point.</li>
8780          * </ul>
8781          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
8782          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
8783          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
8784          * that specified in order to enforce the viewport constraints.
8785          * Following are all of the supported anchor positions:
8786     <pre>
8787     Value  Description
8788     -----  -----------------------------
8789     tl     The top left corner (default)
8790     t      The center of the top edge
8791     tr     The top right corner
8792     l      The center of the left edge
8793     c      In the center of the element
8794     r      The center of the right edge
8795     bl     The bottom left corner
8796     b      The center of the bottom edge
8797     br     The bottom right corner
8798     </pre>
8799     Example Usage:
8800     <pre><code>
8801     // align el to other-el using the default positioning ("tl-bl", non-constrained)
8802     el.alignTo("other-el");
8803
8804     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
8805     el.alignTo("other-el", "tr?");
8806
8807     // align the bottom right corner of el with the center left edge of other-el
8808     el.alignTo("other-el", "br-l?");
8809
8810     // align the center of el with the bottom left corner of other-el and
8811     // adjust the x position by -6 pixels (and the y position by 0)
8812     el.alignTo("other-el", "c-bl", [-6, 0]);
8813     </code></pre>
8814          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8815          * @param {String} position The position to align to.
8816          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8817          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8818          * @return {Roo.Element} this
8819          */
8820         alignTo : function(element, position, offsets, animate){
8821             var xy = this.getAlignToXY(element, position, offsets);
8822             this.setXY(xy, this.preanim(arguments, 3));
8823             return this;
8824         },
8825
8826         /**
8827          * Anchors an element to another element and realigns it when the window is resized.
8828          * @param {String/HTMLElement/Roo.Element} element The element to align to.
8829          * @param {String} position The position to align to.
8830          * @param {Array} offsets (optional) Offset the positioning by [x, y]
8831          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
8832          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
8833          * is a number, it is used as the buffer delay (defaults to 50ms).
8834          * @param {Function} callback The function to call after the animation finishes
8835          * @return {Roo.Element} this
8836          */
8837         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
8838             var action = function(){
8839                 this.alignTo(el, alignment, offsets, animate);
8840                 Roo.callback(callback, this);
8841             };
8842             Roo.EventManager.onWindowResize(action, this);
8843             var tm = typeof monitorScroll;
8844             if(tm != 'undefined'){
8845                 Roo.EventManager.on(window, 'scroll', action, this,
8846                     {buffer: tm == 'number' ? monitorScroll : 50});
8847             }
8848             action.call(this); // align immediately
8849             return this;
8850         },
8851         /**
8852          * Clears any opacity settings from this element. Required in some cases for IE.
8853          * @return {Roo.Element} this
8854          */
8855         clearOpacity : function(){
8856             if (window.ActiveXObject) {
8857                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
8858                     this.dom.style.filter = "";
8859                 }
8860             } else {
8861                 this.dom.style.opacity = "";
8862                 this.dom.style["-moz-opacity"] = "";
8863                 this.dom.style["-khtml-opacity"] = "";
8864             }
8865             return this;
8866         },
8867
8868         /**
8869          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
8870          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
8871          * @return {Roo.Element} this
8872          */
8873         hide : function(animate){
8874             this.setVisible(false, this.preanim(arguments, 0));
8875             return this;
8876         },
8877
8878         /**
8879         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
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         show : function(animate){
8884             this.setVisible(true, this.preanim(arguments, 0));
8885             return this;
8886         },
8887
8888         /**
8889          * @private Test if size has a unit, otherwise appends the default
8890          */
8891         addUnits : function(size){
8892             return Roo.Element.addUnits(size, this.defaultUnit);
8893         },
8894
8895         /**
8896          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
8897          * @return {Roo.Element} this
8898          */
8899         beginMeasure : function(){
8900             var el = this.dom;
8901             if(el.offsetWidth || el.offsetHeight){
8902                 return this; // offsets work already
8903             }
8904             var changed = [];
8905             var p = this.dom, b = document.body; // start with this element
8906             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
8907                 var pe = Roo.get(p);
8908                 if(pe.getStyle('display') == 'none'){
8909                     changed.push({el: p, visibility: pe.getStyle("visibility")});
8910                     p.style.visibility = "hidden";
8911                     p.style.display = "block";
8912                 }
8913                 p = p.parentNode;
8914             }
8915             this._measureChanged = changed;
8916             return this;
8917
8918         },
8919
8920         /**
8921          * Restores displays to before beginMeasure was called
8922          * @return {Roo.Element} this
8923          */
8924         endMeasure : function(){
8925             var changed = this._measureChanged;
8926             if(changed){
8927                 for(var i = 0, len = changed.length; i < len; i++) {
8928                     var r = changed[i];
8929                     r.el.style.visibility = r.visibility;
8930                     r.el.style.display = "none";
8931                 }
8932                 this._measureChanged = null;
8933             }
8934             return this;
8935         },
8936
8937         /**
8938         * Update the innerHTML of this element, optionally searching for and processing scripts
8939         * @param {String} html The new HTML
8940         * @param {Boolean} loadScripts (optional) true to look for and process scripts
8941         * @param {Function} callback For async script loading you can be noticed when the update completes
8942         * @return {Roo.Element} this
8943          */
8944         update : function(html, loadScripts, callback){
8945             if(typeof html == "undefined"){
8946                 html = "";
8947             }
8948             if(loadScripts !== true){
8949                 this.dom.innerHTML = html;
8950                 if(typeof callback == "function"){
8951                     callback();
8952                 }
8953                 return this;
8954             }
8955             var id = Roo.id();
8956             var dom = this.dom;
8957
8958             html += '<span id="' + id + '"></span>';
8959
8960             E.onAvailable(id, function(){
8961                 var hd = document.getElementsByTagName("head")[0];
8962                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
8963                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
8964                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
8965
8966                 var match;
8967                 while(match = re.exec(html)){
8968                     var attrs = match[1];
8969                     var srcMatch = attrs ? attrs.match(srcRe) : false;
8970                     if(srcMatch && srcMatch[2]){
8971                        var s = document.createElement("script");
8972                        s.src = srcMatch[2];
8973                        var typeMatch = attrs.match(typeRe);
8974                        if(typeMatch && typeMatch[2]){
8975                            s.type = typeMatch[2];
8976                        }
8977                        hd.appendChild(s);
8978                     }else if(match[2] && match[2].length > 0){
8979                         if(window.execScript) {
8980                            window.execScript(match[2]);
8981                         } else {
8982                             /**
8983                              * eval:var:id
8984                              * eval:var:dom
8985                              * eval:var:html
8986                              * 
8987                              */
8988                            window.eval(match[2]);
8989                         }
8990                     }
8991                 }
8992                 var el = document.getElementById(id);
8993                 if(el){el.parentNode.removeChild(el);}
8994                 if(typeof callback == "function"){
8995                     callback();
8996                 }
8997             });
8998             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
8999             return this;
9000         },
9001
9002         /**
9003          * Direct access to the UpdateManager update() method (takes the same parameters).
9004          * @param {String/Function} url The url for this request or a function to call to get the url
9005          * @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}
9006          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9007          * @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.
9008          * @return {Roo.Element} this
9009          */
9010         load : function(){
9011             var um = this.getUpdateManager();
9012             um.update.apply(um, arguments);
9013             return this;
9014         },
9015
9016         /**
9017         * Gets this element's UpdateManager
9018         * @return {Roo.UpdateManager} The UpdateManager
9019         */
9020         getUpdateManager : function(){
9021             if(!this.updateManager){
9022                 this.updateManager = new Roo.UpdateManager(this);
9023             }
9024             return this.updateManager;
9025         },
9026
9027         /**
9028          * Disables text selection for this element (normalized across browsers)
9029          * @return {Roo.Element} this
9030          */
9031         unselectable : function(){
9032             this.dom.unselectable = "on";
9033             this.swallowEvent("selectstart", true);
9034             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
9035             this.addClass("x-unselectable");
9036             return this;
9037         },
9038
9039         /**
9040         * Calculates the x, y to center this element on the screen
9041         * @return {Array} The x, y values [x, y]
9042         */
9043         getCenterXY : function(){
9044             return this.getAlignToXY(document, 'c-c');
9045         },
9046
9047         /**
9048         * Centers the Element in either the viewport, or another Element.
9049         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
9050         */
9051         center : function(centerIn){
9052             this.alignTo(centerIn || document, 'c-c');
9053             return this;
9054         },
9055
9056         /**
9057          * Tests various css rules/browsers to determine if this element uses a border box
9058          * @return {Boolean}
9059          */
9060         isBorderBox : function(){
9061             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
9062         },
9063
9064         /**
9065          * Return a box {x, y, width, height} that can be used to set another elements
9066          * size/location to match this element.
9067          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
9068          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
9069          * @return {Object} box An object in the format {x, y, width, height}
9070          */
9071         getBox : function(contentBox, local){
9072             var xy;
9073             if(!local){
9074                 xy = this.getXY();
9075             }else{
9076                 var left = parseInt(this.getStyle("left"), 10) || 0;
9077                 var top = parseInt(this.getStyle("top"), 10) || 0;
9078                 xy = [left, top];
9079             }
9080             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
9081             if(!contentBox){
9082                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
9083             }else{
9084                 var l = this.getBorderWidth("l")+this.getPadding("l");
9085                 var r = this.getBorderWidth("r")+this.getPadding("r");
9086                 var t = this.getBorderWidth("t")+this.getPadding("t");
9087                 var b = this.getBorderWidth("b")+this.getPadding("b");
9088                 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)};
9089             }
9090             bx.right = bx.x + bx.width;
9091             bx.bottom = bx.y + bx.height;
9092             return bx;
9093         },
9094
9095         /**
9096          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
9097          for more information about the sides.
9098          * @param {String} sides
9099          * @return {Number}
9100          */
9101         getFrameWidth : function(sides, onlyContentBox){
9102             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
9103         },
9104
9105         /**
9106          * 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.
9107          * @param {Object} box The box to fill {x, y, width, height}
9108          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
9109          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9110          * @return {Roo.Element} this
9111          */
9112         setBox : function(box, adjust, animate){
9113             var w = box.width, h = box.height;
9114             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
9115                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9116                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9117             }
9118             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
9119             return this;
9120         },
9121
9122         /**
9123          * Forces the browser to repaint this element
9124          * @return {Roo.Element} this
9125          */
9126          repaint : function(){
9127             var dom = this.dom;
9128             this.addClass("x-repaint");
9129             setTimeout(function(){
9130                 Roo.get(dom).removeClass("x-repaint");
9131             }, 1);
9132             return this;
9133         },
9134
9135         /**
9136          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
9137          * then it returns the calculated width of the sides (see getPadding)
9138          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
9139          * @return {Object/Number}
9140          */
9141         getMargins : function(side){
9142             if(!side){
9143                 return {
9144                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
9145                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
9146                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
9147                     right: parseInt(this.getStyle("margin-right"), 10) || 0
9148                 };
9149             }else{
9150                 return this.addStyles(side, El.margins);
9151              }
9152         },
9153
9154         // private
9155         addStyles : function(sides, styles){
9156             var val = 0, v, w;
9157             for(var i = 0, len = sides.length; i < len; i++){
9158                 v = this.getStyle(styles[sides.charAt(i)]);
9159                 if(v){
9160                      w = parseInt(v, 10);
9161                      if(w){ val += w; }
9162                 }
9163             }
9164             return val;
9165         },
9166
9167         /**
9168          * Creates a proxy element of this element
9169          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
9170          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
9171          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
9172          * @return {Roo.Element} The new proxy element
9173          */
9174         createProxy : function(config, renderTo, matchBox){
9175             if(renderTo){
9176                 renderTo = Roo.getDom(renderTo);
9177             }else{
9178                 renderTo = document.body;
9179             }
9180             config = typeof config == "object" ?
9181                 config : {tag : "div", cls: config};
9182             var proxy = Roo.DomHelper.append(renderTo, config, true);
9183             if(matchBox){
9184                proxy.setBox(this.getBox());
9185             }
9186             return proxy;
9187         },
9188
9189         /**
9190          * Puts a mask over this element to disable user interaction. Requires core.css.
9191          * This method can only be applied to elements which accept child nodes.
9192          * @param {String} msg (optional) A message to display in the mask
9193          * @param {String} msgCls (optional) A css class to apply to the msg element
9194          * @return {Element} The mask  element
9195          */
9196         mask : function(msg, msgCls)
9197         {
9198             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
9199                 this.setStyle("position", "relative");
9200             }
9201             if(!this._mask){
9202                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
9203             }
9204             
9205             this.addClass("x-masked");
9206             this._mask.setDisplayed(true);
9207             
9208             // we wander
9209             var z = 0;
9210             var dom = this.dom;
9211             while (dom && dom.style) {
9212                 if (!isNaN(parseInt(dom.style.zIndex))) {
9213                     z = Math.max(z, parseInt(dom.style.zIndex));
9214                 }
9215                 dom = dom.parentNode;
9216             }
9217             // if we are masking the body - then it hides everything..
9218             if (this.dom == document.body) {
9219                 z = 1000000;
9220                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
9221                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
9222             }
9223            
9224             if(typeof msg == 'string'){
9225                 if(!this._maskMsg){
9226                     this._maskMsg = Roo.DomHelper.append(this.dom, {
9227                         cls: "roo-el-mask-msg", 
9228                         cn: [
9229                             {
9230                                 tag: 'i',
9231                                 cls: 'fa fa-spinner fa-spin'
9232                             },
9233                             {
9234                                 tag: 'div'
9235                             }   
9236                         ]
9237                     }, true);
9238                 }
9239                 var mm = this._maskMsg;
9240                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
9241                 if (mm.dom.lastChild) { // weird IE issue?
9242                     mm.dom.lastChild.innerHTML = msg;
9243                 }
9244                 mm.setDisplayed(true);
9245                 mm.center(this);
9246                 mm.setStyle('z-index', z + 102);
9247             }
9248             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
9249                 this._mask.setHeight(this.getHeight());
9250             }
9251             this._mask.setStyle('z-index', z + 100);
9252             
9253             return this._mask;
9254         },
9255
9256         /**
9257          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
9258          * it is cached for reuse.
9259          */
9260         unmask : function(removeEl){
9261             if(this._mask){
9262                 if(removeEl === true){
9263                     this._mask.remove();
9264                     delete this._mask;
9265                     if(this._maskMsg){
9266                         this._maskMsg.remove();
9267                         delete this._maskMsg;
9268                     }
9269                 }else{
9270                     this._mask.setDisplayed(false);
9271                     if(this._maskMsg){
9272                         this._maskMsg.setDisplayed(false);
9273                     }
9274                 }
9275             }
9276             this.removeClass("x-masked");
9277         },
9278
9279         /**
9280          * Returns true if this element is masked
9281          * @return {Boolean}
9282          */
9283         isMasked : function(){
9284             return this._mask && this._mask.isVisible();
9285         },
9286
9287         /**
9288          * Creates an iframe shim for this element to keep selects and other windowed objects from
9289          * showing through.
9290          * @return {Roo.Element} The new shim element
9291          */
9292         createShim : function(){
9293             var el = document.createElement('iframe');
9294             el.frameBorder = 'no';
9295             el.className = 'roo-shim';
9296             if(Roo.isIE && Roo.isSecure){
9297                 el.src = Roo.SSL_SECURE_URL;
9298             }
9299             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
9300             shim.autoBoxAdjust = false;
9301             return shim;
9302         },
9303
9304         /**
9305          * Removes this element from the DOM and deletes it from the cache
9306          */
9307         remove : function(){
9308             if(this.dom.parentNode){
9309                 this.dom.parentNode.removeChild(this.dom);
9310             }
9311             delete El.cache[this.dom.id];
9312         },
9313
9314         /**
9315          * Sets up event handlers to add and remove a css class when the mouse is over this element
9316          * @param {String} className
9317          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
9318          * mouseout events for children elements
9319          * @return {Roo.Element} this
9320          */
9321         addClassOnOver : function(className, preventFlicker){
9322             this.on("mouseover", function(){
9323                 Roo.fly(this, '_internal').addClass(className);
9324             }, this.dom);
9325             var removeFn = function(e){
9326                 if(preventFlicker !== true || !e.within(this, true)){
9327                     Roo.fly(this, '_internal').removeClass(className);
9328                 }
9329             };
9330             this.on("mouseout", removeFn, this.dom);
9331             return this;
9332         },
9333
9334         /**
9335          * Sets up event handlers to add and remove a css class when this element has the focus
9336          * @param {String} className
9337          * @return {Roo.Element} this
9338          */
9339         addClassOnFocus : function(className){
9340             this.on("focus", function(){
9341                 Roo.fly(this, '_internal').addClass(className);
9342             }, this.dom);
9343             this.on("blur", function(){
9344                 Roo.fly(this, '_internal').removeClass(className);
9345             }, this.dom);
9346             return this;
9347         },
9348         /**
9349          * 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)
9350          * @param {String} className
9351          * @return {Roo.Element} this
9352          */
9353         addClassOnClick : function(className){
9354             var dom = this.dom;
9355             this.on("mousedown", function(){
9356                 Roo.fly(dom, '_internal').addClass(className);
9357                 var d = Roo.get(document);
9358                 var fn = function(){
9359                     Roo.fly(dom, '_internal').removeClass(className);
9360                     d.removeListener("mouseup", fn);
9361                 };
9362                 d.on("mouseup", fn);
9363             });
9364             return this;
9365         },
9366
9367         /**
9368          * Stops the specified event from bubbling and optionally prevents the default action
9369          * @param {String} eventName
9370          * @param {Boolean} preventDefault (optional) true to prevent the default action too
9371          * @return {Roo.Element} this
9372          */
9373         swallowEvent : function(eventName, preventDefault){
9374             var fn = function(e){
9375                 e.stopPropagation();
9376                 if(preventDefault){
9377                     e.preventDefault();
9378                 }
9379             };
9380             if(eventName instanceof Array){
9381                 for(var i = 0, len = eventName.length; i < len; i++){
9382                      this.on(eventName[i], fn);
9383                 }
9384                 return this;
9385             }
9386             this.on(eventName, fn);
9387             return this;
9388         },
9389
9390         /**
9391          * @private
9392          */
9393         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
9394
9395         /**
9396          * Sizes this element to its parent element's dimensions performing
9397          * neccessary box adjustments.
9398          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
9399          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
9400          * @return {Roo.Element} this
9401          */
9402         fitToParent : function(monitorResize, targetParent) {
9403           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
9404           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
9405           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
9406             return;
9407           }
9408           var p = Roo.get(targetParent || this.dom.parentNode);
9409           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
9410           if (monitorResize === true) {
9411             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
9412             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
9413           }
9414           return this;
9415         },
9416
9417         /**
9418          * Gets the next sibling, skipping text nodes
9419          * @return {HTMLElement} The next sibling or null
9420          */
9421         getNextSibling : function(){
9422             var n = this.dom.nextSibling;
9423             while(n && n.nodeType != 1){
9424                 n = n.nextSibling;
9425             }
9426             return n;
9427         },
9428
9429         /**
9430          * Gets the previous sibling, skipping text nodes
9431          * @return {HTMLElement} The previous sibling or null
9432          */
9433         getPrevSibling : function(){
9434             var n = this.dom.previousSibling;
9435             while(n && n.nodeType != 1){
9436                 n = n.previousSibling;
9437             }
9438             return n;
9439         },
9440
9441
9442         /**
9443          * Appends the passed element(s) to this element
9444          * @param {String/HTMLElement/Array/Element/CompositeElement} el
9445          * @return {Roo.Element} this
9446          */
9447         appendChild: function(el){
9448             el = Roo.get(el);
9449             el.appendTo(this);
9450             return this;
9451         },
9452
9453         /**
9454          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
9455          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
9456          * automatically generated with the specified attributes.
9457          * @param {HTMLElement} insertBefore (optional) a child element of this element
9458          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
9459          * @return {Roo.Element} The new child element
9460          */
9461         createChild: function(config, insertBefore, returnDom){
9462             config = config || {tag:'div'};
9463             if(insertBefore){
9464                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
9465             }
9466             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
9467         },
9468
9469         /**
9470          * Appends this element to the passed element
9471          * @param {String/HTMLElement/Element} el The new parent element
9472          * @return {Roo.Element} this
9473          */
9474         appendTo: function(el){
9475             el = Roo.getDom(el);
9476             el.appendChild(this.dom);
9477             return this;
9478         },
9479
9480         /**
9481          * Inserts this element before the passed element in the DOM
9482          * @param {String/HTMLElement/Element} el The element to insert before
9483          * @return {Roo.Element} this
9484          */
9485         insertBefore: function(el){
9486             el = Roo.getDom(el);
9487             el.parentNode.insertBefore(this.dom, el);
9488             return this;
9489         },
9490
9491         /**
9492          * Inserts this element after the passed element in the DOM
9493          * @param {String/HTMLElement/Element} el The element to insert after
9494          * @return {Roo.Element} this
9495          */
9496         insertAfter: function(el){
9497             el = Roo.getDom(el);
9498             el.parentNode.insertBefore(this.dom, el.nextSibling);
9499             return this;
9500         },
9501
9502         /**
9503          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
9504          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9505          * @return {Roo.Element} The new child
9506          */
9507         insertFirst: function(el, returnDom){
9508             el = el || {};
9509             if(typeof el == 'object' && !el.nodeType){ // dh config
9510                 return this.createChild(el, this.dom.firstChild, returnDom);
9511             }else{
9512                 el = Roo.getDom(el);
9513                 this.dom.insertBefore(el, this.dom.firstChild);
9514                 return !returnDom ? Roo.get(el) : el;
9515             }
9516         },
9517
9518         /**
9519          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
9520          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
9521          * @param {String} where (optional) 'before' or 'after' defaults to before
9522          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9523          * @return {Roo.Element} the inserted Element
9524          */
9525         insertSibling: function(el, where, returnDom){
9526             where = where ? where.toLowerCase() : 'before';
9527             el = el || {};
9528             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
9529
9530             if(typeof el == 'object' && !el.nodeType){ // dh config
9531                 if(where == 'after' && !this.dom.nextSibling){
9532                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
9533                 }else{
9534                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
9535                 }
9536
9537             }else{
9538                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
9539                             where == 'before' ? this.dom : this.dom.nextSibling);
9540                 if(!returnDom){
9541                     rt = Roo.get(rt);
9542                 }
9543             }
9544             return rt;
9545         },
9546
9547         /**
9548          * Creates and wraps this element with another element
9549          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
9550          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
9551          * @return {HTMLElement/Element} The newly created wrapper element
9552          */
9553         wrap: function(config, returnDom){
9554             if(!config){
9555                 config = {tag: "div"};
9556             }
9557             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
9558             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
9559             return newEl;
9560         },
9561
9562         /**
9563          * Replaces the passed element with this element
9564          * @param {String/HTMLElement/Element} el The element to replace
9565          * @return {Roo.Element} this
9566          */
9567         replace: function(el){
9568             el = Roo.get(el);
9569             this.insertBefore(el);
9570             el.remove();
9571             return this;
9572         },
9573
9574         /**
9575          * Inserts an html fragment into this element
9576          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
9577          * @param {String} html The HTML fragment
9578          * @param {Boolean} returnEl True to return an Roo.Element
9579          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
9580          */
9581         insertHtml : function(where, html, returnEl){
9582             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
9583             return returnEl ? Roo.get(el) : el;
9584         },
9585
9586         /**
9587          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
9588          * @param {Object} o The object with the attributes
9589          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
9590          * @return {Roo.Element} this
9591          */
9592         set : function(o, useSet){
9593             var el = this.dom;
9594             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
9595             for(var attr in o){
9596                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
9597                 if(attr=="cls"){
9598                     el.className = o["cls"];
9599                 }else{
9600                     if(useSet) {
9601                         el.setAttribute(attr, o[attr]);
9602                     } else {
9603                         el[attr] = o[attr];
9604                     }
9605                 }
9606             }
9607             if(o.style){
9608                 Roo.DomHelper.applyStyles(el, o.style);
9609             }
9610             return this;
9611         },
9612
9613         /**
9614          * Convenience method for constructing a KeyMap
9615          * @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:
9616          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
9617          * @param {Function} fn The function to call
9618          * @param {Object} scope (optional) The scope of the function
9619          * @return {Roo.KeyMap} The KeyMap created
9620          */
9621         addKeyListener : function(key, fn, scope){
9622             var config;
9623             if(typeof key != "object" || key instanceof Array){
9624                 config = {
9625                     key: key,
9626                     fn: fn,
9627                     scope: scope
9628                 };
9629             }else{
9630                 config = {
9631                     key : key.key,
9632                     shift : key.shift,
9633                     ctrl : key.ctrl,
9634                     alt : key.alt,
9635                     fn: fn,
9636                     scope: scope
9637                 };
9638             }
9639             return new Roo.KeyMap(this, config);
9640         },
9641
9642         /**
9643          * Creates a KeyMap for this element
9644          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
9645          * @return {Roo.KeyMap} The KeyMap created
9646          */
9647         addKeyMap : function(config){
9648             return new Roo.KeyMap(this, config);
9649         },
9650
9651         /**
9652          * Returns true if this element is scrollable.
9653          * @return {Boolean}
9654          */
9655          isScrollable : function(){
9656             var dom = this.dom;
9657             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
9658         },
9659
9660         /**
9661          * 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().
9662          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
9663          * @param {Number} value The new scroll value
9664          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9665          * @return {Element} this
9666          */
9667
9668         scrollTo : function(side, value, animate){
9669             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
9670             if(!animate || !A){
9671                 this.dom[prop] = value;
9672             }else{
9673                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
9674                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
9675             }
9676             return this;
9677         },
9678
9679         /**
9680          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
9681          * within this element's scrollable range.
9682          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9683          * @param {Number} distance How far to scroll the element in pixels
9684          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9685          * @return {Boolean} Returns true if a scroll was triggered or false if the element
9686          * was scrolled as far as it could go.
9687          */
9688          scroll : function(direction, distance, animate){
9689              if(!this.isScrollable()){
9690                  return;
9691              }
9692              var el = this.dom;
9693              var l = el.scrollLeft, t = el.scrollTop;
9694              var w = el.scrollWidth, h = el.scrollHeight;
9695              var cw = el.clientWidth, ch = el.clientHeight;
9696              direction = direction.toLowerCase();
9697              var scrolled = false;
9698              var a = this.preanim(arguments, 2);
9699              switch(direction){
9700                  case "l":
9701                  case "left":
9702                      if(w - l > cw){
9703                          var v = Math.min(l + distance, w-cw);
9704                          this.scrollTo("left", v, a);
9705                          scrolled = true;
9706                      }
9707                      break;
9708                 case "r":
9709                 case "right":
9710                      if(l > 0){
9711                          var v = Math.max(l - distance, 0);
9712                          this.scrollTo("left", v, a);
9713                          scrolled = true;
9714                      }
9715                      break;
9716                 case "t":
9717                 case "top":
9718                 case "up":
9719                      if(t > 0){
9720                          var v = Math.max(t - distance, 0);
9721                          this.scrollTo("top", v, a);
9722                          scrolled = true;
9723                      }
9724                      break;
9725                 case "b":
9726                 case "bottom":
9727                 case "down":
9728                      if(h - t > ch){
9729                          var v = Math.min(t + distance, h-ch);
9730                          this.scrollTo("top", v, a);
9731                          scrolled = true;
9732                      }
9733                      break;
9734              }
9735              return scrolled;
9736         },
9737
9738         /**
9739          * Translates the passed page coordinates into left/top css values for this element
9740          * @param {Number/Array} x The page x or an array containing [x, y]
9741          * @param {Number} y The page y
9742          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
9743          */
9744         translatePoints : function(x, y){
9745             if(typeof x == 'object' || x instanceof Array){
9746                 y = x[1]; x = x[0];
9747             }
9748             var p = this.getStyle('position');
9749             var o = this.getXY();
9750
9751             var l = parseInt(this.getStyle('left'), 10);
9752             var t = parseInt(this.getStyle('top'), 10);
9753
9754             if(isNaN(l)){
9755                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
9756             }
9757             if(isNaN(t)){
9758                 t = (p == "relative") ? 0 : this.dom.offsetTop;
9759             }
9760
9761             return {left: (x - o[0] + l), top: (y - o[1] + t)};
9762         },
9763
9764         /**
9765          * Returns the current scroll position of the element.
9766          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
9767          */
9768         getScroll : function(){
9769             var d = this.dom, doc = document;
9770             if(d == doc || d == doc.body){
9771                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
9772                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
9773                 return {left: l, top: t};
9774             }else{
9775                 return {left: d.scrollLeft, top: d.scrollTop};
9776             }
9777         },
9778
9779         /**
9780          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
9781          * are convert to standard 6 digit hex color.
9782          * @param {String} attr The css attribute
9783          * @param {String} defaultValue The default value to use when a valid color isn't found
9784          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
9785          * YUI color anims.
9786          */
9787         getColor : function(attr, defaultValue, prefix){
9788             var v = this.getStyle(attr);
9789             if(!v || v == "transparent" || v == "inherit") {
9790                 return defaultValue;
9791             }
9792             var color = typeof prefix == "undefined" ? "#" : prefix;
9793             if(v.substr(0, 4) == "rgb("){
9794                 var rvs = v.slice(4, v.length -1).split(",");
9795                 for(var i = 0; i < 3; i++){
9796                     var h = parseInt(rvs[i]).toString(16);
9797                     if(h < 16){
9798                         h = "0" + h;
9799                     }
9800                     color += h;
9801                 }
9802             } else {
9803                 if(v.substr(0, 1) == "#"){
9804                     if(v.length == 4) {
9805                         for(var i = 1; i < 4; i++){
9806                             var c = v.charAt(i);
9807                             color +=  c + c;
9808                         }
9809                     }else if(v.length == 7){
9810                         color += v.substr(1);
9811                     }
9812                 }
9813             }
9814             return(color.length > 5 ? color.toLowerCase() : defaultValue);
9815         },
9816
9817         /**
9818          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
9819          * gradient background, rounded corners and a 4-way shadow.
9820          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
9821          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
9822          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
9823          * @return {Roo.Element} this
9824          */
9825         boxWrap : function(cls){
9826             cls = cls || 'x-box';
9827             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
9828             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
9829             return el;
9830         },
9831
9832         /**
9833          * Returns the value of a namespaced attribute from the element's underlying DOM node.
9834          * @param {String} namespace The namespace in which to look for the attribute
9835          * @param {String} name The attribute name
9836          * @return {String} The attribute value
9837          */
9838         getAttributeNS : Roo.isIE ? function(ns, name){
9839             var d = this.dom;
9840             var type = typeof d[ns+":"+name];
9841             if(type != 'undefined' && type != 'unknown'){
9842                 return d[ns+":"+name];
9843             }
9844             return d[name];
9845         } : function(ns, name){
9846             var d = this.dom;
9847             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
9848         },
9849         
9850         
9851         /**
9852          * Sets or Returns the value the dom attribute value
9853          * @param {String|Object} name The attribute name (or object to set multiple attributes)
9854          * @param {String} value (optional) The value to set the attribute to
9855          * @return {String} The attribute value
9856          */
9857         attr : function(name){
9858             if (arguments.length > 1) {
9859                 this.dom.setAttribute(name, arguments[1]);
9860                 return arguments[1];
9861             }
9862             if (typeof(name) == 'object') {
9863                 for(var i in name) {
9864                     this.attr(i, name[i]);
9865                 }
9866                 return name;
9867             }
9868             
9869             
9870             if (!this.dom.hasAttribute(name)) {
9871                 return undefined;
9872             }
9873             return this.dom.getAttribute(name);
9874         }
9875         
9876         
9877         
9878     };
9879
9880     var ep = El.prototype;
9881
9882     /**
9883      * Appends an event handler (Shorthand for addListener)
9884      * @param {String}   eventName     The type of event to append
9885      * @param {Function} fn        The method the event invokes
9886      * @param {Object} scope       (optional) The scope (this object) of the fn
9887      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9888      * @method
9889      */
9890     ep.on = ep.addListener;
9891         // backwards compat
9892     ep.mon = ep.addListener;
9893
9894     /**
9895      * Removes an event handler from this element (shorthand for removeListener)
9896      * @param {String} eventName the type of event to remove
9897      * @param {Function} fn the method the event invokes
9898      * @return {Roo.Element} this
9899      * @method
9900      */
9901     ep.un = ep.removeListener;
9902
9903     /**
9904      * true to automatically adjust width and height settings for box-model issues (default to true)
9905      */
9906     ep.autoBoxAdjust = true;
9907
9908     // private
9909     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
9910
9911     // private
9912     El.addUnits = function(v, defaultUnit){
9913         if(v === "" || v == "auto"){
9914             return v;
9915         }
9916         if(v === undefined){
9917             return '';
9918         }
9919         if(typeof v == "number" || !El.unitPattern.test(v)){
9920             return v + (defaultUnit || 'px');
9921         }
9922         return v;
9923     };
9924
9925     // special markup used throughout Roo when box wrapping elements
9926     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>';
9927     /**
9928      * Visibility mode constant - Use visibility to hide element
9929      * @static
9930      * @type Number
9931      */
9932     El.VISIBILITY = 1;
9933     /**
9934      * Visibility mode constant - Use display to hide element
9935      * @static
9936      * @type Number
9937      */
9938     El.DISPLAY = 2;
9939
9940     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
9941     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
9942     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
9943
9944
9945
9946     /**
9947      * @private
9948      */
9949     El.cache = {};
9950
9951     var docEl;
9952
9953     /**
9954      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
9955      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
9956      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
9957      * @return {Element} The Element object
9958      * @static
9959      */
9960     El.get = function(el){
9961         var ex, elm, id;
9962         if(!el){ return null; }
9963         if(typeof el == "string"){ // element id
9964             if(!(elm = document.getElementById(el))){
9965                 return null;
9966             }
9967             if(ex = El.cache[el]){
9968                 ex.dom = elm;
9969             }else{
9970                 ex = El.cache[el] = new El(elm);
9971             }
9972             return ex;
9973         }else if(el.tagName){ // dom element
9974             if(!(id = el.id)){
9975                 id = Roo.id(el);
9976             }
9977             if(ex = El.cache[id]){
9978                 ex.dom = el;
9979             }else{
9980                 ex = El.cache[id] = new El(el);
9981             }
9982             return ex;
9983         }else if(el instanceof El){
9984             if(el != docEl){
9985                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
9986                                                               // catch case where it hasn't been appended
9987                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
9988             }
9989             return el;
9990         }else if(el.isComposite){
9991             return el;
9992         }else if(el instanceof Array){
9993             return El.select(el);
9994         }else if(el == document){
9995             // create a bogus element object representing the document object
9996             if(!docEl){
9997                 var f = function(){};
9998                 f.prototype = El.prototype;
9999                 docEl = new f();
10000                 docEl.dom = document;
10001             }
10002             return docEl;
10003         }
10004         return null;
10005     };
10006
10007     // private
10008     El.uncache = function(el){
10009         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
10010             if(a[i]){
10011                 delete El.cache[a[i].id || a[i]];
10012             }
10013         }
10014     };
10015
10016     // private
10017     // Garbage collection - uncache elements/purge listeners on orphaned elements
10018     // so we don't hold a reference and cause the browser to retain them
10019     El.garbageCollect = function(){
10020         if(!Roo.enableGarbageCollector){
10021             clearInterval(El.collectorThread);
10022             return;
10023         }
10024         for(var eid in El.cache){
10025             var el = El.cache[eid], d = el.dom;
10026             // -------------------------------------------------------
10027             // Determining what is garbage:
10028             // -------------------------------------------------------
10029             // !d
10030             // dom node is null, definitely garbage
10031             // -------------------------------------------------------
10032             // !d.parentNode
10033             // no parentNode == direct orphan, definitely garbage
10034             // -------------------------------------------------------
10035             // !d.offsetParent && !document.getElementById(eid)
10036             // display none elements have no offsetParent so we will
10037             // also try to look it up by it's id. However, check
10038             // offsetParent first so we don't do unneeded lookups.
10039             // This enables collection of elements that are not orphans
10040             // directly, but somewhere up the line they have an orphan
10041             // parent.
10042             // -------------------------------------------------------
10043             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
10044                 delete El.cache[eid];
10045                 if(d && Roo.enableListenerCollection){
10046                     E.purgeElement(d);
10047                 }
10048             }
10049         }
10050     }
10051     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
10052
10053
10054     // dom is optional
10055     El.Flyweight = function(dom){
10056         this.dom = dom;
10057     };
10058     El.Flyweight.prototype = El.prototype;
10059
10060     El._flyweights = {};
10061     /**
10062      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10063      * the dom node can be overwritten by other code.
10064      * @param {String/HTMLElement} el The dom node or id
10065      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10066      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10067      * @static
10068      * @return {Element} The shared Element object
10069      */
10070     El.fly = function(el, named){
10071         named = named || '_global';
10072         el = Roo.getDom(el);
10073         if(!el){
10074             return null;
10075         }
10076         if(!El._flyweights[named]){
10077             El._flyweights[named] = new El.Flyweight();
10078         }
10079         El._flyweights[named].dom = el;
10080         return El._flyweights[named];
10081     };
10082
10083     /**
10084      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
10085      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
10086      * Shorthand of {@link Roo.Element#get}
10087      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
10088      * @return {Element} The Element object
10089      * @member Roo
10090      * @method get
10091      */
10092     Roo.get = El.get;
10093     /**
10094      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
10095      * the dom node can be overwritten by other code.
10096      * Shorthand of {@link Roo.Element#fly}
10097      * @param {String/HTMLElement} el The dom node or id
10098      * @param {String} named (optional) Allows for creation of named reusable flyweights to
10099      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
10100      * @static
10101      * @return {Element} The shared Element object
10102      * @member Roo
10103      * @method fly
10104      */
10105     Roo.fly = El.fly;
10106
10107     // speedy lookup for elements never to box adjust
10108     var noBoxAdjust = Roo.isStrict ? {
10109         select:1
10110     } : {
10111         input:1, select:1, textarea:1
10112     };
10113     if(Roo.isIE || Roo.isGecko){
10114         noBoxAdjust['button'] = 1;
10115     }
10116
10117
10118     Roo.EventManager.on(window, 'unload', function(){
10119         delete El.cache;
10120         delete El._flyweights;
10121     });
10122 })();
10123
10124
10125
10126
10127 if(Roo.DomQuery){
10128     Roo.Element.selectorFunction = Roo.DomQuery.select;
10129 }
10130
10131 Roo.Element.select = function(selector, unique, root){
10132     var els;
10133     if(typeof selector == "string"){
10134         els = Roo.Element.selectorFunction(selector, root);
10135     }else if(selector.length !== undefined){
10136         els = selector;
10137     }else{
10138         throw "Invalid selector";
10139     }
10140     if(unique === true){
10141         return new Roo.CompositeElement(els);
10142     }else{
10143         return new Roo.CompositeElementLite(els);
10144     }
10145 };
10146 /**
10147  * Selects elements based on the passed CSS selector to enable working on them as 1.
10148  * @param {String/Array} selector The CSS selector or an array of elements
10149  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
10150  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
10151  * @return {CompositeElementLite/CompositeElement}
10152  * @member Roo
10153  * @method select
10154  */
10155 Roo.select = Roo.Element.select;
10156
10157
10158
10159
10160
10161
10162
10163
10164
10165
10166
10167
10168
10169
10170 /*
10171  * Based on:
10172  * Ext JS Library 1.1.1
10173  * Copyright(c) 2006-2007, Ext JS, LLC.
10174  *
10175  * Originally Released Under LGPL - original licence link has changed is not relivant.
10176  *
10177  * Fork - LGPL
10178  * <script type="text/javascript">
10179  */
10180
10181
10182
10183 //Notifies Element that fx methods are available
10184 Roo.enableFx = true;
10185
10186 /**
10187  * @class Roo.Fx
10188  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
10189  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
10190  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
10191  * Element effects to work.</p><br/>
10192  *
10193  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
10194  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
10195  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
10196  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
10197  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
10198  * expected results and should be done with care.</p><br/>
10199  *
10200  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
10201  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
10202 <pre>
10203 Value  Description
10204 -----  -----------------------------
10205 tl     The top left corner
10206 t      The center of the top edge
10207 tr     The top right corner
10208 l      The center of the left edge
10209 r      The center of the right edge
10210 bl     The bottom left corner
10211 b      The center of the bottom edge
10212 br     The bottom right corner
10213 </pre>
10214  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
10215  * below are common options that can be passed to any Fx method.</b>
10216  * @cfg {Function} callback A function called when the effect is finished
10217  * @cfg {Object} scope The scope of the effect function
10218  * @cfg {String} easing A valid Easing value for the effect
10219  * @cfg {String} afterCls A css class to apply after the effect
10220  * @cfg {Number} duration The length of time (in seconds) that the effect should last
10221  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
10222  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
10223  * effects that end with the element being visually hidden, ignored otherwise)
10224  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
10225  * a function which returns such a specification that will be applied to the Element after the effect finishes
10226  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
10227  * @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
10228  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
10229  */
10230 Roo.Fx = {
10231         /**
10232          * Slides the element into view.  An anchor point can be optionally passed to set the point of
10233          * origin for the slide effect.  This function automatically handles wrapping the element with
10234          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10235          * Usage:
10236          *<pre><code>
10237 // default: slide the element in from the top
10238 el.slideIn();
10239
10240 // custom: slide the element in from the right with a 2-second duration
10241 el.slideIn('r', { duration: 2 });
10242
10243 // common config options shown with default values
10244 el.slideIn('t', {
10245     easing: 'easeOut',
10246     duration: .5
10247 });
10248 </code></pre>
10249          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10250          * @param {Object} options (optional) Object literal with any of the Fx config options
10251          * @return {Roo.Element} The Element
10252          */
10253     slideIn : function(anchor, o){
10254         var el = this.getFxEl();
10255         o = o || {};
10256
10257         el.queueFx(o, function(){
10258
10259             anchor = anchor || "t";
10260
10261             // fix display to visibility
10262             this.fixDisplay();
10263
10264             // restore values after effect
10265             var r = this.getFxRestore();
10266             var b = this.getBox();
10267             // fixed size for slide
10268             this.setSize(b);
10269
10270             // wrap if needed
10271             var wrap = this.fxWrap(r.pos, o, "hidden");
10272
10273             var st = this.dom.style;
10274             st.visibility = "visible";
10275             st.position = "absolute";
10276
10277             // clear out temp styles after slide and unwrap
10278             var after = function(){
10279                 el.fxUnwrap(wrap, r.pos, o);
10280                 st.width = r.width;
10281                 st.height = r.height;
10282                 el.afterFx(o);
10283             };
10284             // time to calc the positions
10285             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
10286
10287             switch(anchor.toLowerCase()){
10288                 case "t":
10289                     wrap.setSize(b.width, 0);
10290                     st.left = st.bottom = "0";
10291                     a = {height: bh};
10292                 break;
10293                 case "l":
10294                     wrap.setSize(0, b.height);
10295                     st.right = st.top = "0";
10296                     a = {width: bw};
10297                 break;
10298                 case "r":
10299                     wrap.setSize(0, b.height);
10300                     wrap.setX(b.right);
10301                     st.left = st.top = "0";
10302                     a = {width: bw, points: pt};
10303                 break;
10304                 case "b":
10305                     wrap.setSize(b.width, 0);
10306                     wrap.setY(b.bottom);
10307                     st.left = st.top = "0";
10308                     a = {height: bh, points: pt};
10309                 break;
10310                 case "tl":
10311                     wrap.setSize(0, 0);
10312                     st.right = st.bottom = "0";
10313                     a = {width: bw, height: bh};
10314                 break;
10315                 case "bl":
10316                     wrap.setSize(0, 0);
10317                     wrap.setY(b.y+b.height);
10318                     st.right = st.top = "0";
10319                     a = {width: bw, height: bh, points: pt};
10320                 break;
10321                 case "br":
10322                     wrap.setSize(0, 0);
10323                     wrap.setXY([b.right, b.bottom]);
10324                     st.left = st.top = "0";
10325                     a = {width: bw, height: bh, points: pt};
10326                 break;
10327                 case "tr":
10328                     wrap.setSize(0, 0);
10329                     wrap.setX(b.x+b.width);
10330                     st.left = st.bottom = "0";
10331                     a = {width: bw, height: bh, points: pt};
10332                 break;
10333             }
10334             this.dom.style.visibility = "visible";
10335             wrap.show();
10336
10337             arguments.callee.anim = wrap.fxanim(a,
10338                 o,
10339                 'motion',
10340                 .5,
10341                 'easeOut', after);
10342         });
10343         return this;
10344     },
10345     
10346         /**
10347          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
10348          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
10349          * 'hidden') but block elements will still take up space in the document.  The element must be removed
10350          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
10351          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
10352          * Usage:
10353          *<pre><code>
10354 // default: slide the element out to the top
10355 el.slideOut();
10356
10357 // custom: slide the element out to the right with a 2-second duration
10358 el.slideOut('r', { duration: 2 });
10359
10360 // common config options shown with default values
10361 el.slideOut('t', {
10362     easing: 'easeOut',
10363     duration: .5,
10364     remove: false,
10365     useDisplay: false
10366 });
10367 </code></pre>
10368          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
10369          * @param {Object} options (optional) Object literal with any of the Fx config options
10370          * @return {Roo.Element} The Element
10371          */
10372     slideOut : function(anchor, o){
10373         var el = this.getFxEl();
10374         o = o || {};
10375
10376         el.queueFx(o, function(){
10377
10378             anchor = anchor || "t";
10379
10380             // restore values after effect
10381             var r = this.getFxRestore();
10382             
10383             var b = this.getBox();
10384             // fixed size for slide
10385             this.setSize(b);
10386
10387             // wrap if needed
10388             var wrap = this.fxWrap(r.pos, o, "visible");
10389
10390             var st = this.dom.style;
10391             st.visibility = "visible";
10392             st.position = "absolute";
10393
10394             wrap.setSize(b);
10395
10396             var after = function(){
10397                 if(o.useDisplay){
10398                     el.setDisplayed(false);
10399                 }else{
10400                     el.hide();
10401                 }
10402
10403                 el.fxUnwrap(wrap, r.pos, o);
10404
10405                 st.width = r.width;
10406                 st.height = r.height;
10407
10408                 el.afterFx(o);
10409             };
10410
10411             var a, zero = {to: 0};
10412             switch(anchor.toLowerCase()){
10413                 case "t":
10414                     st.left = st.bottom = "0";
10415                     a = {height: zero};
10416                 break;
10417                 case "l":
10418                     st.right = st.top = "0";
10419                     a = {width: zero};
10420                 break;
10421                 case "r":
10422                     st.left = st.top = "0";
10423                     a = {width: zero, points: {to:[b.right, b.y]}};
10424                 break;
10425                 case "b":
10426                     st.left = st.top = "0";
10427                     a = {height: zero, points: {to:[b.x, b.bottom]}};
10428                 break;
10429                 case "tl":
10430                     st.right = st.bottom = "0";
10431                     a = {width: zero, height: zero};
10432                 break;
10433                 case "bl":
10434                     st.right = st.top = "0";
10435                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
10436                 break;
10437                 case "br":
10438                     st.left = st.top = "0";
10439                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
10440                 break;
10441                 case "tr":
10442                     st.left = st.bottom = "0";
10443                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
10444                 break;
10445             }
10446
10447             arguments.callee.anim = wrap.fxanim(a,
10448                 o,
10449                 'motion',
10450                 .5,
10451                 "easeOut", after);
10452         });
10453         return this;
10454     },
10455
10456         /**
10457          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
10458          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
10459          * The element must be removed from the DOM using the 'remove' config option if desired.
10460          * Usage:
10461          *<pre><code>
10462 // default
10463 el.puff();
10464
10465 // common config options shown with default values
10466 el.puff({
10467     easing: 'easeOut',
10468     duration: .5,
10469     remove: false,
10470     useDisplay: false
10471 });
10472 </code></pre>
10473          * @param {Object} options (optional) Object literal with any of the Fx config options
10474          * @return {Roo.Element} The Element
10475          */
10476     puff : function(o){
10477         var el = this.getFxEl();
10478         o = o || {};
10479
10480         el.queueFx(o, function(){
10481             this.clearOpacity();
10482             this.show();
10483
10484             // restore values after effect
10485             var r = this.getFxRestore();
10486             var st = this.dom.style;
10487
10488             var after = function(){
10489                 if(o.useDisplay){
10490                     el.setDisplayed(false);
10491                 }else{
10492                     el.hide();
10493                 }
10494
10495                 el.clearOpacity();
10496
10497                 el.setPositioning(r.pos);
10498                 st.width = r.width;
10499                 st.height = r.height;
10500                 st.fontSize = '';
10501                 el.afterFx(o);
10502             };
10503
10504             var width = this.getWidth();
10505             var height = this.getHeight();
10506
10507             arguments.callee.anim = this.fxanim({
10508                     width : {to: this.adjustWidth(width * 2)},
10509                     height : {to: this.adjustHeight(height * 2)},
10510                     points : {by: [-(width * .5), -(height * .5)]},
10511                     opacity : {to: 0},
10512                     fontSize: {to:200, unit: "%"}
10513                 },
10514                 o,
10515                 'motion',
10516                 .5,
10517                 "easeOut", after);
10518         });
10519         return this;
10520     },
10521
10522         /**
10523          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
10524          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
10525          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
10526          * Usage:
10527          *<pre><code>
10528 // default
10529 el.switchOff();
10530
10531 // all config options shown with default values
10532 el.switchOff({
10533     easing: 'easeIn',
10534     duration: .3,
10535     remove: false,
10536     useDisplay: false
10537 });
10538 </code></pre>
10539          * @param {Object} options (optional) Object literal with any of the Fx config options
10540          * @return {Roo.Element} The Element
10541          */
10542     switchOff : function(o){
10543         var el = this.getFxEl();
10544         o = o || {};
10545
10546         el.queueFx(o, function(){
10547             this.clearOpacity();
10548             this.clip();
10549
10550             // restore values after effect
10551             var r = this.getFxRestore();
10552             var st = this.dom.style;
10553
10554             var after = function(){
10555                 if(o.useDisplay){
10556                     el.setDisplayed(false);
10557                 }else{
10558                     el.hide();
10559                 }
10560
10561                 el.clearOpacity();
10562                 el.setPositioning(r.pos);
10563                 st.width = r.width;
10564                 st.height = r.height;
10565
10566                 el.afterFx(o);
10567             };
10568
10569             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
10570                 this.clearOpacity();
10571                 (function(){
10572                     this.fxanim({
10573                         height:{to:1},
10574                         points:{by:[0, this.getHeight() * .5]}
10575                     }, o, 'motion', 0.3, 'easeIn', after);
10576                 }).defer(100, this);
10577             });
10578         });
10579         return this;
10580     },
10581
10582     /**
10583      * Highlights the Element by setting a color (applies to the background-color by default, but can be
10584      * changed using the "attr" config option) and then fading back to the original color. If no original
10585      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
10586      * Usage:
10587 <pre><code>
10588 // default: highlight background to yellow
10589 el.highlight();
10590
10591 // custom: highlight foreground text to blue for 2 seconds
10592 el.highlight("0000ff", { attr: 'color', duration: 2 });
10593
10594 // common config options shown with default values
10595 el.highlight("ffff9c", {
10596     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
10597     endColor: (current color) or "ffffff",
10598     easing: 'easeIn',
10599     duration: 1
10600 });
10601 </code></pre>
10602      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
10603      * @param {Object} options (optional) Object literal with any of the Fx config options
10604      * @return {Roo.Element} The Element
10605      */ 
10606     highlight : function(color, o){
10607         var el = this.getFxEl();
10608         o = o || {};
10609
10610         el.queueFx(o, function(){
10611             color = color || "ffff9c";
10612             attr = o.attr || "backgroundColor";
10613
10614             this.clearOpacity();
10615             this.show();
10616
10617             var origColor = this.getColor(attr);
10618             var restoreColor = this.dom.style[attr];
10619             endColor = (o.endColor || origColor) || "ffffff";
10620
10621             var after = function(){
10622                 el.dom.style[attr] = restoreColor;
10623                 el.afterFx(o);
10624             };
10625
10626             var a = {};
10627             a[attr] = {from: color, to: endColor};
10628             arguments.callee.anim = this.fxanim(a,
10629                 o,
10630                 'color',
10631                 1,
10632                 'easeIn', after);
10633         });
10634         return this;
10635     },
10636
10637    /**
10638     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
10639     * Usage:
10640 <pre><code>
10641 // default: a single light blue ripple
10642 el.frame();
10643
10644 // custom: 3 red ripples lasting 3 seconds total
10645 el.frame("ff0000", 3, { duration: 3 });
10646
10647 // common config options shown with default values
10648 el.frame("C3DAF9", 1, {
10649     duration: 1 //duration of entire animation (not each individual ripple)
10650     // Note: Easing is not configurable and will be ignored if included
10651 });
10652 </code></pre>
10653     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
10654     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
10655     * @param {Object} options (optional) Object literal with any of the Fx config options
10656     * @return {Roo.Element} The Element
10657     */
10658     frame : function(color, count, o){
10659         var el = this.getFxEl();
10660         o = o || {};
10661
10662         el.queueFx(o, function(){
10663             color = color || "#C3DAF9";
10664             if(color.length == 6){
10665                 color = "#" + color;
10666             }
10667             count = count || 1;
10668             duration = o.duration || 1;
10669             this.show();
10670
10671             var b = this.getBox();
10672             var animFn = function(){
10673                 var proxy = this.createProxy({
10674
10675                      style:{
10676                         visbility:"hidden",
10677                         position:"absolute",
10678                         "z-index":"35000", // yee haw
10679                         border:"0px solid " + color
10680                      }
10681                   });
10682                 var scale = Roo.isBorderBox ? 2 : 1;
10683                 proxy.animate({
10684                     top:{from:b.y, to:b.y - 20},
10685                     left:{from:b.x, to:b.x - 20},
10686                     borderWidth:{from:0, to:10},
10687                     opacity:{from:1, to:0},
10688                     height:{from:b.height, to:(b.height + (20*scale))},
10689                     width:{from:b.width, to:(b.width + (20*scale))}
10690                 }, duration, function(){
10691                     proxy.remove();
10692                 });
10693                 if(--count > 0){
10694                      animFn.defer((duration/2)*1000, this);
10695                 }else{
10696                     el.afterFx(o);
10697                 }
10698             };
10699             animFn.call(this);
10700         });
10701         return this;
10702     },
10703
10704    /**
10705     * Creates a pause before any subsequent queued effects begin.  If there are
10706     * no effects queued after the pause it will have no effect.
10707     * Usage:
10708 <pre><code>
10709 el.pause(1);
10710 </code></pre>
10711     * @param {Number} seconds The length of time to pause (in seconds)
10712     * @return {Roo.Element} The Element
10713     */
10714     pause : function(seconds){
10715         var el = this.getFxEl();
10716         var o = {};
10717
10718         el.queueFx(o, function(){
10719             setTimeout(function(){
10720                 el.afterFx(o);
10721             }, seconds * 1000);
10722         });
10723         return this;
10724     },
10725
10726    /**
10727     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
10728     * using the "endOpacity" config option.
10729     * Usage:
10730 <pre><code>
10731 // default: fade in from opacity 0 to 100%
10732 el.fadeIn();
10733
10734 // custom: fade in from opacity 0 to 75% over 2 seconds
10735 el.fadeIn({ endOpacity: .75, duration: 2});
10736
10737 // common config options shown with default values
10738 el.fadeIn({
10739     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
10740     easing: 'easeOut',
10741     duration: .5
10742 });
10743 </code></pre>
10744     * @param {Object} options (optional) Object literal with any of the Fx config options
10745     * @return {Roo.Element} The Element
10746     */
10747     fadeIn : function(o){
10748         var el = this.getFxEl();
10749         o = o || {};
10750         el.queueFx(o, function(){
10751             this.setOpacity(0);
10752             this.fixDisplay();
10753             this.dom.style.visibility = 'visible';
10754             var to = o.endOpacity || 1;
10755             arguments.callee.anim = this.fxanim({opacity:{to:to}},
10756                 o, null, .5, "easeOut", function(){
10757                 if(to == 1){
10758                     this.clearOpacity();
10759                 }
10760                 el.afterFx(o);
10761             });
10762         });
10763         return this;
10764     },
10765
10766    /**
10767     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
10768     * using the "endOpacity" config option.
10769     * Usage:
10770 <pre><code>
10771 // default: fade out from the element's current opacity to 0
10772 el.fadeOut();
10773
10774 // custom: fade out from the element's current opacity to 25% over 2 seconds
10775 el.fadeOut({ endOpacity: .25, duration: 2});
10776
10777 // common config options shown with default values
10778 el.fadeOut({
10779     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
10780     easing: 'easeOut',
10781     duration: .5
10782     remove: false,
10783     useDisplay: false
10784 });
10785 </code></pre>
10786     * @param {Object} options (optional) Object literal with any of the Fx config options
10787     * @return {Roo.Element} The Element
10788     */
10789     fadeOut : function(o){
10790         var el = this.getFxEl();
10791         o = o || {};
10792         el.queueFx(o, function(){
10793             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
10794                 o, null, .5, "easeOut", function(){
10795                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
10796                      this.dom.style.display = "none";
10797                 }else{
10798                      this.dom.style.visibility = "hidden";
10799                 }
10800                 this.clearOpacity();
10801                 el.afterFx(o);
10802             });
10803         });
10804         return this;
10805     },
10806
10807    /**
10808     * Animates the transition of an element's dimensions from a starting height/width
10809     * to an ending height/width.
10810     * Usage:
10811 <pre><code>
10812 // change height and width to 100x100 pixels
10813 el.scale(100, 100);
10814
10815 // common config options shown with default values.  The height and width will default to
10816 // the element's existing values if passed as null.
10817 el.scale(
10818     [element's width],
10819     [element's height], {
10820     easing: 'easeOut',
10821     duration: .35
10822 });
10823 </code></pre>
10824     * @param {Number} width  The new width (pass undefined to keep the original width)
10825     * @param {Number} height  The new height (pass undefined to keep the original height)
10826     * @param {Object} options (optional) Object literal with any of the Fx config options
10827     * @return {Roo.Element} The Element
10828     */
10829     scale : function(w, h, o){
10830         this.shift(Roo.apply({}, o, {
10831             width: w,
10832             height: h
10833         }));
10834         return this;
10835     },
10836
10837    /**
10838     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
10839     * Any of these properties not specified in the config object will not be changed.  This effect 
10840     * requires that at least one new dimension, position or opacity setting must be passed in on
10841     * the config object in order for the function to have any effect.
10842     * Usage:
10843 <pre><code>
10844 // slide the element horizontally to x position 200 while changing the height and opacity
10845 el.shift({ x: 200, height: 50, opacity: .8 });
10846
10847 // common config options shown with default values.
10848 el.shift({
10849     width: [element's width],
10850     height: [element's height],
10851     x: [element's x position],
10852     y: [element's y position],
10853     opacity: [element's opacity],
10854     easing: 'easeOut',
10855     duration: .35
10856 });
10857 </code></pre>
10858     * @param {Object} options  Object literal with any of the Fx config options
10859     * @return {Roo.Element} The Element
10860     */
10861     shift : function(o){
10862         var el = this.getFxEl();
10863         o = o || {};
10864         el.queueFx(o, function(){
10865             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
10866             if(w !== undefined){
10867                 a.width = {to: this.adjustWidth(w)};
10868             }
10869             if(h !== undefined){
10870                 a.height = {to: this.adjustHeight(h)};
10871             }
10872             if(x !== undefined || y !== undefined){
10873                 a.points = {to: [
10874                     x !== undefined ? x : this.getX(),
10875                     y !== undefined ? y : this.getY()
10876                 ]};
10877             }
10878             if(op !== undefined){
10879                 a.opacity = {to: op};
10880             }
10881             if(o.xy !== undefined){
10882                 a.points = {to: o.xy};
10883             }
10884             arguments.callee.anim = this.fxanim(a,
10885                 o, 'motion', .35, "easeOut", function(){
10886                 el.afterFx(o);
10887             });
10888         });
10889         return this;
10890     },
10891
10892         /**
10893          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
10894          * ending point of the effect.
10895          * Usage:
10896          *<pre><code>
10897 // default: slide the element downward while fading out
10898 el.ghost();
10899
10900 // custom: slide the element out to the right with a 2-second duration
10901 el.ghost('r', { duration: 2 });
10902
10903 // common config options shown with default values
10904 el.ghost('b', {
10905     easing: 'easeOut',
10906     duration: .5
10907     remove: false,
10908     useDisplay: false
10909 });
10910 </code></pre>
10911          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
10912          * @param {Object} options (optional) Object literal with any of the Fx config options
10913          * @return {Roo.Element} The Element
10914          */
10915     ghost : function(anchor, o){
10916         var el = this.getFxEl();
10917         o = o || {};
10918
10919         el.queueFx(o, function(){
10920             anchor = anchor || "b";
10921
10922             // restore values after effect
10923             var r = this.getFxRestore();
10924             var w = this.getWidth(),
10925                 h = this.getHeight();
10926
10927             var st = this.dom.style;
10928
10929             var after = function(){
10930                 if(o.useDisplay){
10931                     el.setDisplayed(false);
10932                 }else{
10933                     el.hide();
10934                 }
10935
10936                 el.clearOpacity();
10937                 el.setPositioning(r.pos);
10938                 st.width = r.width;
10939                 st.height = r.height;
10940
10941                 el.afterFx(o);
10942             };
10943
10944             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
10945             switch(anchor.toLowerCase()){
10946                 case "t":
10947                     pt.by = [0, -h];
10948                 break;
10949                 case "l":
10950                     pt.by = [-w, 0];
10951                 break;
10952                 case "r":
10953                     pt.by = [w, 0];
10954                 break;
10955                 case "b":
10956                     pt.by = [0, h];
10957                 break;
10958                 case "tl":
10959                     pt.by = [-w, -h];
10960                 break;
10961                 case "bl":
10962                     pt.by = [-w, h];
10963                 break;
10964                 case "br":
10965                     pt.by = [w, h];
10966                 break;
10967                 case "tr":
10968                     pt.by = [w, -h];
10969                 break;
10970             }
10971
10972             arguments.callee.anim = this.fxanim(a,
10973                 o,
10974                 'motion',
10975                 .5,
10976                 "easeOut", after);
10977         });
10978         return this;
10979     },
10980
10981         /**
10982          * Ensures that all effects queued after syncFx is called on the element are
10983          * run concurrently.  This is the opposite of {@link #sequenceFx}.
10984          * @return {Roo.Element} The Element
10985          */
10986     syncFx : function(){
10987         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
10988             block : false,
10989             concurrent : true,
10990             stopFx : false
10991         });
10992         return this;
10993     },
10994
10995         /**
10996          * Ensures that all effects queued after sequenceFx is called on the element are
10997          * run in sequence.  This is the opposite of {@link #syncFx}.
10998          * @return {Roo.Element} The Element
10999          */
11000     sequenceFx : function(){
11001         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
11002             block : false,
11003             concurrent : false,
11004             stopFx : false
11005         });
11006         return this;
11007     },
11008
11009         /* @private */
11010     nextFx : function(){
11011         var ef = this.fxQueue[0];
11012         if(ef){
11013             ef.call(this);
11014         }
11015     },
11016
11017         /**
11018          * Returns true if the element has any effects actively running or queued, else returns false.
11019          * @return {Boolean} True if element has active effects, else false
11020          */
11021     hasActiveFx : function(){
11022         return this.fxQueue && this.fxQueue[0];
11023     },
11024
11025         /**
11026          * Stops any running effects and clears the element's internal effects queue if it contains
11027          * any additional effects that haven't started yet.
11028          * @return {Roo.Element} The Element
11029          */
11030     stopFx : function(){
11031         if(this.hasActiveFx()){
11032             var cur = this.fxQueue[0];
11033             if(cur && cur.anim && cur.anim.isAnimated()){
11034                 this.fxQueue = [cur]; // clear out others
11035                 cur.anim.stop(true);
11036             }
11037         }
11038         return this;
11039     },
11040
11041         /* @private */
11042     beforeFx : function(o){
11043         if(this.hasActiveFx() && !o.concurrent){
11044            if(o.stopFx){
11045                this.stopFx();
11046                return true;
11047            }
11048            return false;
11049         }
11050         return true;
11051     },
11052
11053         /**
11054          * Returns true if the element is currently blocking so that no other effect can be queued
11055          * until this effect is finished, else returns false if blocking is not set.  This is commonly
11056          * used to ensure that an effect initiated by a user action runs to completion prior to the
11057          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
11058          * @return {Boolean} True if blocking, else false
11059          */
11060     hasFxBlock : function(){
11061         var q = this.fxQueue;
11062         return q && q[0] && q[0].block;
11063     },
11064
11065         /* @private */
11066     queueFx : function(o, fn){
11067         if(!this.fxQueue){
11068             this.fxQueue = [];
11069         }
11070         if(!this.hasFxBlock()){
11071             Roo.applyIf(o, this.fxDefaults);
11072             if(!o.concurrent){
11073                 var run = this.beforeFx(o);
11074                 fn.block = o.block;
11075                 this.fxQueue.push(fn);
11076                 if(run){
11077                     this.nextFx();
11078                 }
11079             }else{
11080                 fn.call(this);
11081             }
11082         }
11083         return this;
11084     },
11085
11086         /* @private */
11087     fxWrap : function(pos, o, vis){
11088         var wrap;
11089         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
11090             var wrapXY;
11091             if(o.fixPosition){
11092                 wrapXY = this.getXY();
11093             }
11094             var div = document.createElement("div");
11095             div.style.visibility = vis;
11096             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
11097             wrap.setPositioning(pos);
11098             if(wrap.getStyle("position") == "static"){
11099                 wrap.position("relative");
11100             }
11101             this.clearPositioning('auto');
11102             wrap.clip();
11103             wrap.dom.appendChild(this.dom);
11104             if(wrapXY){
11105                 wrap.setXY(wrapXY);
11106             }
11107         }
11108         return wrap;
11109     },
11110
11111         /* @private */
11112     fxUnwrap : function(wrap, pos, o){
11113         this.clearPositioning();
11114         this.setPositioning(pos);
11115         if(!o.wrap){
11116             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
11117             wrap.remove();
11118         }
11119     },
11120
11121         /* @private */
11122     getFxRestore : function(){
11123         var st = this.dom.style;
11124         return {pos: this.getPositioning(), width: st.width, height : st.height};
11125     },
11126
11127         /* @private */
11128     afterFx : function(o){
11129         if(o.afterStyle){
11130             this.applyStyles(o.afterStyle);
11131         }
11132         if(o.afterCls){
11133             this.addClass(o.afterCls);
11134         }
11135         if(o.remove === true){
11136             this.remove();
11137         }
11138         Roo.callback(o.callback, o.scope, [this]);
11139         if(!o.concurrent){
11140             this.fxQueue.shift();
11141             this.nextFx();
11142         }
11143     },
11144
11145         /* @private */
11146     getFxEl : function(){ // support for composite element fx
11147         return Roo.get(this.dom);
11148     },
11149
11150         /* @private */
11151     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
11152         animType = animType || 'run';
11153         opt = opt || {};
11154         var anim = Roo.lib.Anim[animType](
11155             this.dom, args,
11156             (opt.duration || defaultDur) || .35,
11157             (opt.easing || defaultEase) || 'easeOut',
11158             function(){
11159                 Roo.callback(cb, this);
11160             },
11161             this
11162         );
11163         opt.anim = anim;
11164         return anim;
11165     }
11166 };
11167
11168 // backwords compat
11169 Roo.Fx.resize = Roo.Fx.scale;
11170
11171 //When included, Roo.Fx is automatically applied to Element so that all basic
11172 //effects are available directly via the Element API
11173 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
11174  * Based on:
11175  * Ext JS Library 1.1.1
11176  * Copyright(c) 2006-2007, Ext JS, LLC.
11177  *
11178  * Originally Released Under LGPL - original licence link has changed is not relivant.
11179  *
11180  * Fork - LGPL
11181  * <script type="text/javascript">
11182  */
11183
11184
11185 /**
11186  * @class Roo.CompositeElement
11187  * Standard composite class. Creates a Roo.Element for every element in the collection.
11188  * <br><br>
11189  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11190  * actions will be performed on all the elements in this collection.</b>
11191  * <br><br>
11192  * All methods return <i>this</i> and can be chained.
11193  <pre><code>
11194  var els = Roo.select("#some-el div.some-class", true);
11195  // or select directly from an existing element
11196  var el = Roo.get('some-el');
11197  el.select('div.some-class', true);
11198
11199  els.setWidth(100); // all elements become 100 width
11200  els.hide(true); // all elements fade out and hide
11201  // or
11202  els.setWidth(100).hide(true);
11203  </code></pre>
11204  */
11205 Roo.CompositeElement = function(els){
11206     this.elements = [];
11207     this.addElements(els);
11208 };
11209 Roo.CompositeElement.prototype = {
11210     isComposite: true,
11211     addElements : function(els){
11212         if(!els) {
11213             return this;
11214         }
11215         if(typeof els == "string"){
11216             els = Roo.Element.selectorFunction(els);
11217         }
11218         var yels = this.elements;
11219         var index = yels.length-1;
11220         for(var i = 0, len = els.length; i < len; i++) {
11221                 yels[++index] = Roo.get(els[i]);
11222         }
11223         return this;
11224     },
11225
11226     /**
11227     * Clears this composite and adds the elements returned by the passed selector.
11228     * @param {String/Array} els A string CSS selector, an array of elements or an element
11229     * @return {CompositeElement} this
11230     */
11231     fill : function(els){
11232         this.elements = [];
11233         this.add(els);
11234         return this;
11235     },
11236
11237     /**
11238     * Filters this composite to only elements that match the passed selector.
11239     * @param {String} selector A string CSS selector
11240     * @param {Boolean} inverse return inverse filter (not matches)
11241     * @return {CompositeElement} this
11242     */
11243     filter : function(selector, inverse){
11244         var els = [];
11245         inverse = inverse || false;
11246         this.each(function(el){
11247             var match = inverse ? !el.is(selector) : el.is(selector);
11248             if(match){
11249                 els[els.length] = el.dom;
11250             }
11251         });
11252         this.fill(els);
11253         return this;
11254     },
11255
11256     invoke : function(fn, args){
11257         var els = this.elements;
11258         for(var i = 0, len = els.length; i < len; i++) {
11259                 Roo.Element.prototype[fn].apply(els[i], args);
11260         }
11261         return this;
11262     },
11263     /**
11264     * Adds elements to this composite.
11265     * @param {String/Array} els A string CSS selector, an array of elements or an element
11266     * @return {CompositeElement} this
11267     */
11268     add : function(els){
11269         if(typeof els == "string"){
11270             this.addElements(Roo.Element.selectorFunction(els));
11271         }else if(els.length !== undefined){
11272             this.addElements(els);
11273         }else{
11274             this.addElements([els]);
11275         }
11276         return this;
11277     },
11278     /**
11279     * Calls the passed function passing (el, this, index) for each element in this composite.
11280     * @param {Function} fn The function to call
11281     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11282     * @return {CompositeElement} this
11283     */
11284     each : function(fn, scope){
11285         var els = this.elements;
11286         for(var i = 0, len = els.length; i < len; i++){
11287             if(fn.call(scope || els[i], els[i], this, i) === false) {
11288                 break;
11289             }
11290         }
11291         return this;
11292     },
11293
11294     /**
11295      * Returns the Element object at the specified index
11296      * @param {Number} index
11297      * @return {Roo.Element}
11298      */
11299     item : function(index){
11300         return this.elements[index] || null;
11301     },
11302
11303     /**
11304      * Returns the first Element
11305      * @return {Roo.Element}
11306      */
11307     first : function(){
11308         return this.item(0);
11309     },
11310
11311     /**
11312      * Returns the last Element
11313      * @return {Roo.Element}
11314      */
11315     last : function(){
11316         return this.item(this.elements.length-1);
11317     },
11318
11319     /**
11320      * Returns the number of elements in this composite
11321      * @return Number
11322      */
11323     getCount : function(){
11324         return this.elements.length;
11325     },
11326
11327     /**
11328      * Returns true if this composite contains the passed element
11329      * @return Boolean
11330      */
11331     contains : function(el){
11332         return this.indexOf(el) !== -1;
11333     },
11334
11335     /**
11336      * Returns true if this composite contains the passed element
11337      * @return Boolean
11338      */
11339     indexOf : function(el){
11340         return this.elements.indexOf(Roo.get(el));
11341     },
11342
11343
11344     /**
11345     * Removes the specified element(s).
11346     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
11347     * or an array of any of those.
11348     * @param {Boolean} removeDom (optional) True to also remove the element from the document
11349     * @return {CompositeElement} this
11350     */
11351     removeElement : function(el, removeDom){
11352         if(el instanceof Array){
11353             for(var i = 0, len = el.length; i < len; i++){
11354                 this.removeElement(el[i]);
11355             }
11356             return this;
11357         }
11358         var index = typeof el == 'number' ? el : this.indexOf(el);
11359         if(index !== -1){
11360             if(removeDom){
11361                 var d = this.elements[index];
11362                 if(d.dom){
11363                     d.remove();
11364                 }else{
11365                     d.parentNode.removeChild(d);
11366                 }
11367             }
11368             this.elements.splice(index, 1);
11369         }
11370         return this;
11371     },
11372
11373     /**
11374     * Replaces the specified element with the passed element.
11375     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
11376     * to replace.
11377     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
11378     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
11379     * @return {CompositeElement} this
11380     */
11381     replaceElement : function(el, replacement, domReplace){
11382         var index = typeof el == 'number' ? el : this.indexOf(el);
11383         if(index !== -1){
11384             if(domReplace){
11385                 this.elements[index].replaceWith(replacement);
11386             }else{
11387                 this.elements.splice(index, 1, Roo.get(replacement))
11388             }
11389         }
11390         return this;
11391     },
11392
11393     /**
11394      * Removes all elements.
11395      */
11396     clear : function(){
11397         this.elements = [];
11398     }
11399 };
11400 (function(){
11401     Roo.CompositeElement.createCall = function(proto, fnName){
11402         if(!proto[fnName]){
11403             proto[fnName] = function(){
11404                 return this.invoke(fnName, arguments);
11405             };
11406         }
11407     };
11408     for(var fnName in Roo.Element.prototype){
11409         if(typeof Roo.Element.prototype[fnName] == "function"){
11410             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
11411         }
11412     };
11413 })();
11414 /*
11415  * Based on:
11416  * Ext JS Library 1.1.1
11417  * Copyright(c) 2006-2007, Ext JS, LLC.
11418  *
11419  * Originally Released Under LGPL - original licence link has changed is not relivant.
11420  *
11421  * Fork - LGPL
11422  * <script type="text/javascript">
11423  */
11424
11425 /**
11426  * @class Roo.CompositeElementLite
11427  * @extends Roo.CompositeElement
11428  * Flyweight composite class. Reuses the same Roo.Element for element operations.
11429  <pre><code>
11430  var els = Roo.select("#some-el div.some-class");
11431  // or select directly from an existing element
11432  var el = Roo.get('some-el');
11433  el.select('div.some-class');
11434
11435  els.setWidth(100); // all elements become 100 width
11436  els.hide(true); // all elements fade out and hide
11437  // or
11438  els.setWidth(100).hide(true);
11439  </code></pre><br><br>
11440  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
11441  * actions will be performed on all the elements in this collection.</b>
11442  */
11443 Roo.CompositeElementLite = function(els){
11444     Roo.CompositeElementLite.superclass.constructor.call(this, els);
11445     this.el = new Roo.Element.Flyweight();
11446 };
11447 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
11448     addElements : function(els){
11449         if(els){
11450             if(els instanceof Array){
11451                 this.elements = this.elements.concat(els);
11452             }else{
11453                 var yels = this.elements;
11454                 var index = yels.length-1;
11455                 for(var i = 0, len = els.length; i < len; i++) {
11456                     yels[++index] = els[i];
11457                 }
11458             }
11459         }
11460         return this;
11461     },
11462     invoke : function(fn, args){
11463         var els = this.elements;
11464         var el = this.el;
11465         for(var i = 0, len = els.length; i < len; i++) {
11466             el.dom = els[i];
11467                 Roo.Element.prototype[fn].apply(el, args);
11468         }
11469         return this;
11470     },
11471     /**
11472      * Returns a flyweight Element of the dom element object at the specified index
11473      * @param {Number} index
11474      * @return {Roo.Element}
11475      */
11476     item : function(index){
11477         if(!this.elements[index]){
11478             return null;
11479         }
11480         this.el.dom = this.elements[index];
11481         return this.el;
11482     },
11483
11484     // fixes scope with flyweight
11485     addListener : function(eventName, handler, scope, opt){
11486         var els = this.elements;
11487         for(var i = 0, len = els.length; i < len; i++) {
11488             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
11489         }
11490         return this;
11491     },
11492
11493     /**
11494     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
11495     * passed is the flyweight (shared) Roo.Element instance, so if you require a
11496     * a reference to the dom node, use el.dom.</b>
11497     * @param {Function} fn The function to call
11498     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
11499     * @return {CompositeElement} this
11500     */
11501     each : function(fn, scope){
11502         var els = this.elements;
11503         var el = this.el;
11504         for(var i = 0, len = els.length; i < len; i++){
11505             el.dom = els[i];
11506                 if(fn.call(scope || el, el, this, i) === false){
11507                 break;
11508             }
11509         }
11510         return this;
11511     },
11512
11513     indexOf : function(el){
11514         return this.elements.indexOf(Roo.getDom(el));
11515     },
11516
11517     replaceElement : function(el, replacement, domReplace){
11518         var index = typeof el == 'number' ? el : this.indexOf(el);
11519         if(index !== -1){
11520             replacement = Roo.getDom(replacement);
11521             if(domReplace){
11522                 var d = this.elements[index];
11523                 d.parentNode.insertBefore(replacement, d);
11524                 d.parentNode.removeChild(d);
11525             }
11526             this.elements.splice(index, 1, replacement);
11527         }
11528         return this;
11529     }
11530 });
11531 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
11532
11533 /*
11534  * Based on:
11535  * Ext JS Library 1.1.1
11536  * Copyright(c) 2006-2007, Ext JS, LLC.
11537  *
11538  * Originally Released Under LGPL - original licence link has changed is not relivant.
11539  *
11540  * Fork - LGPL
11541  * <script type="text/javascript">
11542  */
11543
11544  
11545
11546 /**
11547  * @class Roo.data.Connection
11548  * @extends Roo.util.Observable
11549  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
11550  * either to a configured URL, or to a URL specified at request time. 
11551  * 
11552  * Requests made by this class are asynchronous, and will return immediately. No data from
11553  * the server will be available to the statement immediately following the {@link #request} call.
11554  * To process returned data, use a callback in the request options object, or an event listener.
11555  * 
11556  * Note: If you are doing a file upload, you will not get a normal response object sent back to
11557  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
11558  * The response object is created using the innerHTML of the IFRAME's document as the responseText
11559  * property and, if present, the IFRAME's XML document as the responseXML property.
11560  * 
11561  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
11562  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
11563  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
11564  * standard DOM methods.
11565  * @constructor
11566  * @param {Object} config a configuration object.
11567  */
11568 Roo.data.Connection = function(config){
11569     Roo.apply(this, config);
11570     this.addEvents({
11571         /**
11572          * @event beforerequest
11573          * Fires before a network request is made to retrieve a data object.
11574          * @param {Connection} conn This Connection object.
11575          * @param {Object} options The options config object passed to the {@link #request} method.
11576          */
11577         "beforerequest" : true,
11578         /**
11579          * @event requestcomplete
11580          * Fires if the request was successfully completed.
11581          * @param {Connection} conn This Connection object.
11582          * @param {Object} response The XHR object containing the response data.
11583          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11584          * @param {Object} options The options config object passed to the {@link #request} method.
11585          */
11586         "requestcomplete" : true,
11587         /**
11588          * @event requestexception
11589          * Fires if an error HTTP status was returned from the server.
11590          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
11591          * @param {Connection} conn This Connection object.
11592          * @param {Object} response The XHR object containing the response data.
11593          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
11594          * @param {Object} options The options config object passed to the {@link #request} method.
11595          */
11596         "requestexception" : true
11597     });
11598     Roo.data.Connection.superclass.constructor.call(this);
11599 };
11600
11601 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
11602     /**
11603      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
11604      */
11605     /**
11606      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
11607      * extra parameters to each request made by this object. (defaults to undefined)
11608      */
11609     /**
11610      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
11611      *  to each request made by this object. (defaults to undefined)
11612      */
11613     /**
11614      * @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)
11615      */
11616     /**
11617      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11618      */
11619     timeout : 30000,
11620     /**
11621      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
11622      * @type Boolean
11623      */
11624     autoAbort:false,
11625
11626     /**
11627      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
11628      * @type Boolean
11629      */
11630     disableCaching: true,
11631
11632     /**
11633      * Sends an HTTP request to a remote server.
11634      * @param {Object} options An object which may contain the following properties:<ul>
11635      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
11636      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
11637      * request, a url encoded string or a function to call to get either.</li>
11638      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
11639      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
11640      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
11641      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
11642      * <li>options {Object} The parameter to the request call.</li>
11643      * <li>success {Boolean} True if the request succeeded.</li>
11644      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11645      * </ul></li>
11646      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
11647      * The callback is passed the following parameters:<ul>
11648      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11649      * <li>options {Object} The parameter to the request call.</li>
11650      * </ul></li>
11651      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
11652      * The callback is passed the following parameters:<ul>
11653      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
11654      * <li>options {Object} The parameter to the request call.</li>
11655      * </ul></li>
11656      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
11657      * for the callback function. Defaults to the browser window.</li>
11658      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
11659      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
11660      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
11661      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
11662      * params for the post data. Any params will be appended to the URL.</li>
11663      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
11664      * </ul>
11665      * @return {Number} transactionId
11666      */
11667     request : function(o){
11668         if(this.fireEvent("beforerequest", this, o) !== false){
11669             var p = o.params;
11670
11671             if(typeof p == "function"){
11672                 p = p.call(o.scope||window, o);
11673             }
11674             if(typeof p == "object"){
11675                 p = Roo.urlEncode(o.params);
11676             }
11677             if(this.extraParams){
11678                 var extras = Roo.urlEncode(this.extraParams);
11679                 p = p ? (p + '&' + extras) : extras;
11680             }
11681
11682             var url = o.url || this.url;
11683             if(typeof url == 'function'){
11684                 url = url.call(o.scope||window, o);
11685             }
11686
11687             if(o.form){
11688                 var form = Roo.getDom(o.form);
11689                 url = url || form.action;
11690
11691                 var enctype = form.getAttribute("enctype");
11692                 
11693                 if (o.formData) {
11694                     return this.doFormDataUpload(o, url);
11695                 }
11696                 
11697                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
11698                     return this.doFormUpload(o, p, url);
11699                 }
11700                 var f = Roo.lib.Ajax.serializeForm(form);
11701                 p = p ? (p + '&' + f) : f;
11702             }
11703             
11704             if (!o.form && o.formData) {
11705                 o.formData = o.formData === true ? new FormData() : o.formData;
11706                 for (var k in o.params) {
11707                     o.formData.append(k,o.params[k]);
11708                 }
11709                     
11710                 return this.doFormDataUpload(o, url);
11711             }
11712             
11713
11714             var hs = o.headers;
11715             if(this.defaultHeaders){
11716                 hs = Roo.apply(hs || {}, this.defaultHeaders);
11717                 if(!o.headers){
11718                     o.headers = hs;
11719                 }
11720             }
11721
11722             var cb = {
11723                 success: this.handleResponse,
11724                 failure: this.handleFailure,
11725                 scope: this,
11726                 argument: {options: o},
11727                 timeout : o.timeout || this.timeout
11728             };
11729
11730             var method = o.method||this.method||(p ? "POST" : "GET");
11731
11732             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
11733                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
11734             }
11735
11736             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11737                 if(o.autoAbort){
11738                     this.abort();
11739                 }
11740             }else if(this.autoAbort !== false){
11741                 this.abort();
11742             }
11743
11744             if((method == 'GET' && p) || o.xmlData){
11745                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11746                 p = '';
11747             }
11748             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
11749             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
11750             Roo.lib.Ajax.useDefaultHeader == true;
11751             return this.transId;
11752         }else{
11753             Roo.callback(o.callback, o.scope, [o, null, null]);
11754             return null;
11755         }
11756     },
11757
11758     /**
11759      * Determine whether this object has a request outstanding.
11760      * @param {Number} transactionId (Optional) defaults to the last transaction
11761      * @return {Boolean} True if there is an outstanding request.
11762      */
11763     isLoading : function(transId){
11764         if(transId){
11765             return Roo.lib.Ajax.isCallInProgress(transId);
11766         }else{
11767             return this.transId ? true : false;
11768         }
11769     },
11770
11771     /**
11772      * Aborts any outstanding request.
11773      * @param {Number} transactionId (Optional) defaults to the last transaction
11774      */
11775     abort : function(transId){
11776         if(transId || this.isLoading()){
11777             Roo.lib.Ajax.abort(transId || this.transId);
11778         }
11779     },
11780
11781     // private
11782     handleResponse : function(response){
11783         this.transId = false;
11784         var options = response.argument.options;
11785         response.argument = options ? options.argument : null;
11786         this.fireEvent("requestcomplete", this, response, options);
11787         Roo.callback(options.success, options.scope, [response, options]);
11788         Roo.callback(options.callback, options.scope, [options, true, response]);
11789     },
11790
11791     // private
11792     handleFailure : function(response, e){
11793         this.transId = false;
11794         var options = response.argument.options;
11795         response.argument = options ? options.argument : null;
11796         this.fireEvent("requestexception", this, response, options, e);
11797         Roo.callback(options.failure, options.scope, [response, options]);
11798         Roo.callback(options.callback, options.scope, [options, false, response]);
11799     },
11800
11801     // private
11802     doFormUpload : function(o, ps, url){
11803         var id = Roo.id();
11804         var frame = document.createElement('iframe');
11805         frame.id = id;
11806         frame.name = id;
11807         frame.className = 'x-hidden';
11808         if(Roo.isIE){
11809             frame.src = Roo.SSL_SECURE_URL;
11810         }
11811         document.body.appendChild(frame);
11812
11813         if(Roo.isIE){
11814            document.frames[id].name = id;
11815         }
11816
11817         var form = Roo.getDom(o.form);
11818         form.target = id;
11819         form.method = 'POST';
11820         form.enctype = form.encoding = 'multipart/form-data';
11821         if(url){
11822             form.action = url;
11823         }
11824
11825         var hiddens, hd;
11826         if(ps){ // add dynamic params
11827             hiddens = [];
11828             ps = Roo.urlDecode(ps, false);
11829             for(var k in ps){
11830                 if(ps.hasOwnProperty(k)){
11831                     hd = document.createElement('input');
11832                     hd.type = 'hidden';
11833                     hd.name = k;
11834                     hd.value = ps[k];
11835                     form.appendChild(hd);
11836                     hiddens.push(hd);
11837                 }
11838             }
11839         }
11840
11841         function cb(){
11842             var r = {  // bogus response object
11843                 responseText : '',
11844                 responseXML : null
11845             };
11846
11847             r.argument = o ? o.argument : null;
11848
11849             try { //
11850                 var doc;
11851                 if(Roo.isIE){
11852                     doc = frame.contentWindow.document;
11853                 }else {
11854                     doc = (frame.contentDocument || window.frames[id].document);
11855                 }
11856                 if(doc && doc.body){
11857                     r.responseText = doc.body.innerHTML;
11858                 }
11859                 if(doc && doc.XMLDocument){
11860                     r.responseXML = doc.XMLDocument;
11861                 }else {
11862                     r.responseXML = doc;
11863                 }
11864             }
11865             catch(e) {
11866                 // ignore
11867             }
11868
11869             Roo.EventManager.removeListener(frame, 'load', cb, this);
11870
11871             this.fireEvent("requestcomplete", this, r, o);
11872             Roo.callback(o.success, o.scope, [r, o]);
11873             Roo.callback(o.callback, o.scope, [o, true, r]);
11874
11875             setTimeout(function(){document.body.removeChild(frame);}, 100);
11876         }
11877
11878         Roo.EventManager.on(frame, 'load', cb, this);
11879         form.submit();
11880
11881         if(hiddens){ // remove dynamic params
11882             for(var i = 0, len = hiddens.length; i < len; i++){
11883                 form.removeChild(hiddens[i]);
11884             }
11885         }
11886     },
11887     // this is a 'formdata version???'
11888     
11889     
11890     doFormDataUpload : function(o,  url)
11891     {
11892         var formData;
11893         if (o.form) {
11894             var form =  Roo.getDom(o.form);
11895             form.enctype = form.encoding = 'multipart/form-data';
11896             formData = o.formData === true ? new FormData(form) : o.formData;
11897         } else {
11898             formData = o.formData === true ? new FormData() : o.formData;
11899         }
11900         
11901       
11902         var cb = {
11903             success: this.handleResponse,
11904             failure: this.handleFailure,
11905             scope: this,
11906             argument: {options: o},
11907             timeout : o.timeout || this.timeout
11908         };
11909  
11910         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
11911             if(o.autoAbort){
11912                 this.abort();
11913             }
11914         }else if(this.autoAbort !== false){
11915             this.abort();
11916         }
11917
11918         //Roo.lib.Ajax.defaultPostHeader = null;
11919         Roo.lib.Ajax.useDefaultHeader = false;
11920         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
11921         Roo.lib.Ajax.useDefaultHeader = true;
11922  
11923          
11924     }
11925     
11926 });
11927 /*
11928  * Based on:
11929  * Ext JS Library 1.1.1
11930  * Copyright(c) 2006-2007, Ext JS, LLC.
11931  *
11932  * Originally Released Under LGPL - original licence link has changed is not relivant.
11933  *
11934  * Fork - LGPL
11935  * <script type="text/javascript">
11936  */
11937  
11938 /**
11939  * Global Ajax request class.
11940  * 
11941  * @class Roo.Ajax
11942  * @extends Roo.data.Connection
11943  * @static
11944  * 
11945  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
11946  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
11947  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
11948  * @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)
11949  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
11950  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
11951  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
11952  */
11953 Roo.Ajax = new Roo.data.Connection({
11954     // fix up the docs
11955     /**
11956      * @scope Roo.Ajax
11957      * @type {Boolear} 
11958      */
11959     autoAbort : false,
11960
11961     /**
11962      * Serialize the passed form into a url encoded string
11963      * @scope Roo.Ajax
11964      * @param {String/HTMLElement} form
11965      * @return {String}
11966      */
11967     serializeForm : function(form){
11968         return Roo.lib.Ajax.serializeForm(form);
11969     }
11970 });/*
11971  * Based on:
11972  * Ext JS Library 1.1.1
11973  * Copyright(c) 2006-2007, Ext JS, LLC.
11974  *
11975  * Originally Released Under LGPL - original licence link has changed is not relivant.
11976  *
11977  * Fork - LGPL
11978  * <script type="text/javascript">
11979  */
11980
11981  
11982 /**
11983  * @class Roo.UpdateManager
11984  * @extends Roo.util.Observable
11985  * Provides AJAX-style update for Element object.<br><br>
11986  * Usage:<br>
11987  * <pre><code>
11988  * // Get it from a Roo.Element object
11989  * var el = Roo.get("foo");
11990  * var mgr = el.getUpdateManager();
11991  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
11992  * ...
11993  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
11994  * <br>
11995  * // or directly (returns the same UpdateManager instance)
11996  * var mgr = new Roo.UpdateManager("myElementId");
11997  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
11998  * mgr.on("update", myFcnNeedsToKnow);
11999  * <br>
12000    // short handed call directly from the element object
12001    Roo.get("foo").load({
12002         url: "bar.php",
12003         scripts:true,
12004         params: "for=bar",
12005         text: "Loading Foo..."
12006    });
12007  * </code></pre>
12008  * @constructor
12009  * Create new UpdateManager directly.
12010  * @param {String/HTMLElement/Roo.Element} el The element to update
12011  * @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).
12012  */
12013 Roo.UpdateManager = function(el, forceNew){
12014     el = Roo.get(el);
12015     if(!forceNew && el.updateManager){
12016         return el.updateManager;
12017     }
12018     /**
12019      * The Element object
12020      * @type Roo.Element
12021      */
12022     this.el = el;
12023     /**
12024      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
12025      * @type String
12026      */
12027     this.defaultUrl = null;
12028
12029     this.addEvents({
12030         /**
12031          * @event beforeupdate
12032          * Fired before an update is made, return false from your handler and the update is cancelled.
12033          * @param {Roo.Element} el
12034          * @param {String/Object/Function} url
12035          * @param {String/Object} params
12036          */
12037         "beforeupdate": true,
12038         /**
12039          * @event update
12040          * Fired after successful update is made.
12041          * @param {Roo.Element} el
12042          * @param {Object} oResponseObject The response Object
12043          */
12044         "update": true,
12045         /**
12046          * @event failure
12047          * Fired on update failure.
12048          * @param {Roo.Element} el
12049          * @param {Object} oResponseObject The response Object
12050          */
12051         "failure": true
12052     });
12053     var d = Roo.UpdateManager.defaults;
12054     /**
12055      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
12056      * @type String
12057      */
12058     this.sslBlankUrl = d.sslBlankUrl;
12059     /**
12060      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
12061      * @type Boolean
12062      */
12063     this.disableCaching = d.disableCaching;
12064     /**
12065      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12066      * @type String
12067      */
12068     this.indicatorText = d.indicatorText;
12069     /**
12070      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
12071      * @type String
12072      */
12073     this.showLoadIndicator = d.showLoadIndicator;
12074     /**
12075      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
12076      * @type Number
12077      */
12078     this.timeout = d.timeout;
12079
12080     /**
12081      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
12082      * @type Boolean
12083      */
12084     this.loadScripts = d.loadScripts;
12085
12086     /**
12087      * Transaction object of current executing transaction
12088      */
12089     this.transaction = null;
12090
12091     /**
12092      * @private
12093      */
12094     this.autoRefreshProcId = null;
12095     /**
12096      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
12097      * @type Function
12098      */
12099     this.refreshDelegate = this.refresh.createDelegate(this);
12100     /**
12101      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
12102      * @type Function
12103      */
12104     this.updateDelegate = this.update.createDelegate(this);
12105     /**
12106      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
12107      * @type Function
12108      */
12109     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
12110     /**
12111      * @private
12112      */
12113     this.successDelegate = this.processSuccess.createDelegate(this);
12114     /**
12115      * @private
12116      */
12117     this.failureDelegate = this.processFailure.createDelegate(this);
12118
12119     if(!this.renderer){
12120      /**
12121       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
12122       */
12123     this.renderer = new Roo.UpdateManager.BasicRenderer();
12124     }
12125     
12126     Roo.UpdateManager.superclass.constructor.call(this);
12127 };
12128
12129 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
12130     /**
12131      * Get the Element this UpdateManager is bound to
12132      * @return {Roo.Element} The element
12133      */
12134     getEl : function(){
12135         return this.el;
12136     },
12137     /**
12138      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
12139      * @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:
12140 <pre><code>
12141 um.update({<br/>
12142     url: "your-url.php",<br/>
12143     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
12144     callback: yourFunction,<br/>
12145     scope: yourObject, //(optional scope)  <br/>
12146     discardUrl: false, <br/>
12147     nocache: false,<br/>
12148     text: "Loading...",<br/>
12149     timeout: 30,<br/>
12150     scripts: false<br/>
12151 });
12152 </code></pre>
12153      * The only required property is url. The optional properties nocache, text and scripts
12154      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
12155      * @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}
12156      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12157      * @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.
12158      */
12159     update : function(url, params, callback, discardUrl){
12160         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
12161             var method = this.method,
12162                 cfg;
12163             if(typeof url == "object"){ // must be config object
12164                 cfg = url;
12165                 url = cfg.url;
12166                 params = params || cfg.params;
12167                 callback = callback || cfg.callback;
12168                 discardUrl = discardUrl || cfg.discardUrl;
12169                 if(callback && cfg.scope){
12170                     callback = callback.createDelegate(cfg.scope);
12171                 }
12172                 if(typeof cfg.method != "undefined"){method = cfg.method;};
12173                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
12174                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
12175                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
12176                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
12177             }
12178             this.showLoading();
12179             if(!discardUrl){
12180                 this.defaultUrl = url;
12181             }
12182             if(typeof url == "function"){
12183                 url = url.call(this);
12184             }
12185
12186             method = method || (params ? "POST" : "GET");
12187             if(method == "GET"){
12188                 url = this.prepareUrl(url);
12189             }
12190
12191             var o = Roo.apply(cfg ||{}, {
12192                 url : url,
12193                 params: params,
12194                 success: this.successDelegate,
12195                 failure: this.failureDelegate,
12196                 callback: undefined,
12197                 timeout: (this.timeout*1000),
12198                 argument: {"url": url, "form": null, "callback": callback, "params": params}
12199             });
12200             Roo.log("updated manager called with timeout of " + o.timeout);
12201             this.transaction = Roo.Ajax.request(o);
12202         }
12203     },
12204
12205     /**
12206      * 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.
12207      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
12208      * @param {String/HTMLElement} form The form Id or form element
12209      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
12210      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
12211      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
12212      */
12213     formUpdate : function(form, url, reset, callback){
12214         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
12215             if(typeof url == "function"){
12216                 url = url.call(this);
12217             }
12218             form = Roo.getDom(form);
12219             this.transaction = Roo.Ajax.request({
12220                 form: form,
12221                 url:url,
12222                 success: this.successDelegate,
12223                 failure: this.failureDelegate,
12224                 timeout: (this.timeout*1000),
12225                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
12226             });
12227             this.showLoading.defer(1, this);
12228         }
12229     },
12230
12231     /**
12232      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
12233      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12234      */
12235     refresh : function(callback){
12236         if(this.defaultUrl == null){
12237             return;
12238         }
12239         this.update(this.defaultUrl, null, callback, true);
12240     },
12241
12242     /**
12243      * Set this element to auto refresh.
12244      * @param {Number} interval How often to update (in seconds).
12245      * @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)
12246      * @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}
12247      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
12248      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
12249      */
12250     startAutoRefresh : function(interval, url, params, callback, refreshNow){
12251         if(refreshNow){
12252             this.update(url || this.defaultUrl, params, callback, true);
12253         }
12254         if(this.autoRefreshProcId){
12255             clearInterval(this.autoRefreshProcId);
12256         }
12257         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
12258     },
12259
12260     /**
12261      * Stop auto refresh on this element.
12262      */
12263      stopAutoRefresh : function(){
12264         if(this.autoRefreshProcId){
12265             clearInterval(this.autoRefreshProcId);
12266             delete this.autoRefreshProcId;
12267         }
12268     },
12269
12270     isAutoRefreshing : function(){
12271        return this.autoRefreshProcId ? true : false;
12272     },
12273     /**
12274      * Called to update the element to "Loading" state. Override to perform custom action.
12275      */
12276     showLoading : function(){
12277         if(this.showLoadIndicator){
12278             this.el.update(this.indicatorText);
12279         }
12280     },
12281
12282     /**
12283      * Adds unique parameter to query string if disableCaching = true
12284      * @private
12285      */
12286     prepareUrl : function(url){
12287         if(this.disableCaching){
12288             var append = "_dc=" + (new Date().getTime());
12289             if(url.indexOf("?") !== -1){
12290                 url += "&" + append;
12291             }else{
12292                 url += "?" + append;
12293             }
12294         }
12295         return url;
12296     },
12297
12298     /**
12299      * @private
12300      */
12301     processSuccess : function(response){
12302         this.transaction = null;
12303         if(response.argument.form && response.argument.reset){
12304             try{ // put in try/catch since some older FF releases had problems with this
12305                 response.argument.form.reset();
12306             }catch(e){}
12307         }
12308         if(this.loadScripts){
12309             this.renderer.render(this.el, response, this,
12310                 this.updateComplete.createDelegate(this, [response]));
12311         }else{
12312             this.renderer.render(this.el, response, this);
12313             this.updateComplete(response);
12314         }
12315     },
12316
12317     updateComplete : function(response){
12318         this.fireEvent("update", this.el, response);
12319         if(typeof response.argument.callback == "function"){
12320             response.argument.callback(this.el, true, response);
12321         }
12322     },
12323
12324     /**
12325      * @private
12326      */
12327     processFailure : function(response){
12328         this.transaction = null;
12329         this.fireEvent("failure", this.el, response);
12330         if(typeof response.argument.callback == "function"){
12331             response.argument.callback(this.el, false, response);
12332         }
12333     },
12334
12335     /**
12336      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
12337      * @param {Object} renderer The object implementing the render() method
12338      */
12339     setRenderer : function(renderer){
12340         this.renderer = renderer;
12341     },
12342
12343     getRenderer : function(){
12344        return this.renderer;
12345     },
12346
12347     /**
12348      * Set the defaultUrl used for updates
12349      * @param {String/Function} defaultUrl The url or a function to call to get the url
12350      */
12351     setDefaultUrl : function(defaultUrl){
12352         this.defaultUrl = defaultUrl;
12353     },
12354
12355     /**
12356      * Aborts the executing transaction
12357      */
12358     abort : function(){
12359         if(this.transaction){
12360             Roo.Ajax.abort(this.transaction);
12361         }
12362     },
12363
12364     /**
12365      * Returns true if an update is in progress
12366      * @return {Boolean}
12367      */
12368     isUpdating : function(){
12369         if(this.transaction){
12370             return Roo.Ajax.isLoading(this.transaction);
12371         }
12372         return false;
12373     }
12374 });
12375
12376 /**
12377  * @class Roo.UpdateManager.defaults
12378  * @static (not really - but it helps the doc tool)
12379  * The defaults collection enables customizing the default properties of UpdateManager
12380  */
12381    Roo.UpdateManager.defaults = {
12382        /**
12383          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
12384          * @type Number
12385          */
12386          timeout : 30,
12387
12388          /**
12389          * True to process scripts by default (Defaults to false).
12390          * @type Boolean
12391          */
12392         loadScripts : false,
12393
12394         /**
12395         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
12396         * @type String
12397         */
12398         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
12399         /**
12400          * Whether to append unique parameter on get request to disable caching (Defaults to false).
12401          * @type Boolean
12402          */
12403         disableCaching : false,
12404         /**
12405          * Whether to show indicatorText when loading (Defaults to true).
12406          * @type Boolean
12407          */
12408         showLoadIndicator : true,
12409         /**
12410          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
12411          * @type String
12412          */
12413         indicatorText : '<div class="loading-indicator">Loading...</div>'
12414    };
12415
12416 /**
12417  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
12418  *Usage:
12419  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
12420  * @param {String/HTMLElement/Roo.Element} el The element to update
12421  * @param {String} url The url
12422  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
12423  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
12424  * @static
12425  * @deprecated
12426  * @member Roo.UpdateManager
12427  */
12428 Roo.UpdateManager.updateElement = function(el, url, params, options){
12429     var um = Roo.get(el, true).getUpdateManager();
12430     Roo.apply(um, options);
12431     um.update(url, params, options ? options.callback : null);
12432 };
12433 // alias for backwards compat
12434 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
12435 /**
12436  * @class Roo.UpdateManager.BasicRenderer
12437  * Default Content renderer. Updates the elements innerHTML with the responseText.
12438  */
12439 Roo.UpdateManager.BasicRenderer = function(){};
12440
12441 Roo.UpdateManager.BasicRenderer.prototype = {
12442     /**
12443      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
12444      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
12445      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
12446      * @param {Roo.Element} el The element being rendered
12447      * @param {Object} response The YUI Connect response object
12448      * @param {UpdateManager} updateManager The calling update manager
12449      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
12450      */
12451      render : function(el, response, updateManager, callback){
12452         el.update(response.responseText, updateManager.loadScripts, callback);
12453     }
12454 };
12455 /*
12456  * Based on:
12457  * Roo JS
12458  * (c)) Alan Knowles
12459  * Licence : LGPL
12460  */
12461
12462
12463 /**
12464  * @class Roo.DomTemplate
12465  * @extends Roo.Template
12466  * An effort at a dom based template engine..
12467  *
12468  * Similar to XTemplate, except it uses dom parsing to create the template..
12469  *
12470  * Supported features:
12471  *
12472  *  Tags:
12473
12474 <pre><code>
12475       {a_variable} - output encoded.
12476       {a_variable.format:("Y-m-d")} - call a method on the variable
12477       {a_variable:raw} - unencoded output
12478       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
12479       {a_variable:this.method_on_template(...)} - call a method on the template object.
12480  
12481 </code></pre>
12482  *  The tpl tag:
12483 <pre><code>
12484         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
12485         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
12486         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
12487         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
12488   
12489 </code></pre>
12490  *      
12491  */
12492 Roo.DomTemplate = function()
12493 {
12494      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
12495      if (this.html) {
12496         this.compile();
12497      }
12498 };
12499
12500
12501 Roo.extend(Roo.DomTemplate, Roo.Template, {
12502     /**
12503      * id counter for sub templates.
12504      */
12505     id : 0,
12506     /**
12507      * flag to indicate if dom parser is inside a pre,
12508      * it will strip whitespace if not.
12509      */
12510     inPre : false,
12511     
12512     /**
12513      * The various sub templates
12514      */
12515     tpls : false,
12516     
12517     
12518     
12519     /**
12520      *
12521      * basic tag replacing syntax
12522      * WORD:WORD()
12523      *
12524      * // you can fake an object call by doing this
12525      *  x.t:(test,tesT) 
12526      * 
12527      */
12528     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
12529     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
12530     
12531     iterChild : function (node, method) {
12532         
12533         var oldPre = this.inPre;
12534         if (node.tagName == 'PRE') {
12535             this.inPre = true;
12536         }
12537         for( var i = 0; i < node.childNodes.length; i++) {
12538             method.call(this, node.childNodes[i]);
12539         }
12540         this.inPre = oldPre;
12541     },
12542     
12543     
12544     
12545     /**
12546      * compile the template
12547      *
12548      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
12549      *
12550      */
12551     compile: function()
12552     {
12553         var s = this.html;
12554         
12555         // covert the html into DOM...
12556         var doc = false;
12557         var div =false;
12558         try {
12559             doc = document.implementation.createHTMLDocument("");
12560             doc.documentElement.innerHTML =   this.html  ;
12561             div = doc.documentElement;
12562         } catch (e) {
12563             // old IE... - nasty -- it causes all sorts of issues.. with
12564             // images getting pulled from server..
12565             div = document.createElement('div');
12566             div.innerHTML = this.html;
12567         }
12568         //doc.documentElement.innerHTML = htmlBody
12569          
12570         
12571         
12572         this.tpls = [];
12573         var _t = this;
12574         this.iterChild(div, function(n) {_t.compileNode(n, true); });
12575         
12576         var tpls = this.tpls;
12577         
12578         // create a top level template from the snippet..
12579         
12580         //Roo.log(div.innerHTML);
12581         
12582         var tpl = {
12583             uid : 'master',
12584             id : this.id++,
12585             attr : false,
12586             value : false,
12587             body : div.innerHTML,
12588             
12589             forCall : false,
12590             execCall : false,
12591             dom : div,
12592             isTop : true
12593             
12594         };
12595         tpls.unshift(tpl);
12596         
12597         
12598         // compile them...
12599         this.tpls = [];
12600         Roo.each(tpls, function(tp){
12601             this.compileTpl(tp);
12602             this.tpls[tp.id] = tp;
12603         }, this);
12604         
12605         this.master = tpls[0];
12606         return this;
12607         
12608         
12609     },
12610     
12611     compileNode : function(node, istop) {
12612         // test for
12613         //Roo.log(node);
12614         
12615         
12616         // skip anything not a tag..
12617         if (node.nodeType != 1) {
12618             if (node.nodeType == 3 && !this.inPre) {
12619                 // reduce white space..
12620                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
12621                 
12622             }
12623             return;
12624         }
12625         
12626         var tpl = {
12627             uid : false,
12628             id : false,
12629             attr : false,
12630             value : false,
12631             body : '',
12632             
12633             forCall : false,
12634             execCall : false,
12635             dom : false,
12636             isTop : istop
12637             
12638             
12639         };
12640         
12641         
12642         switch(true) {
12643             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
12644             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
12645             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
12646             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
12647             // no default..
12648         }
12649         
12650         
12651         if (!tpl.attr) {
12652             // just itterate children..
12653             this.iterChild(node,this.compileNode);
12654             return;
12655         }
12656         tpl.uid = this.id++;
12657         tpl.value = node.getAttribute('roo-' +  tpl.attr);
12658         node.removeAttribute('roo-'+ tpl.attr);
12659         if (tpl.attr != 'name') {
12660             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
12661             node.parentNode.replaceChild(placeholder,  node);
12662         } else {
12663             
12664             var placeholder =  document.createElement('span');
12665             placeholder.className = 'roo-tpl-' + tpl.value;
12666             node.parentNode.replaceChild(placeholder,  node);
12667         }
12668         
12669         // parent now sees '{domtplXXXX}
12670         this.iterChild(node,this.compileNode);
12671         
12672         // we should now have node body...
12673         var div = document.createElement('div');
12674         div.appendChild(node);
12675         tpl.dom = node;
12676         // this has the unfortunate side effect of converting tagged attributes
12677         // eg. href="{...}" into %7C...%7D
12678         // this has been fixed by searching for those combo's although it's a bit hacky..
12679         
12680         
12681         tpl.body = div.innerHTML;
12682         
12683         
12684          
12685         tpl.id = tpl.uid;
12686         switch(tpl.attr) {
12687             case 'for' :
12688                 switch (tpl.value) {
12689                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
12690                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
12691                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
12692                 }
12693                 break;
12694             
12695             case 'exec':
12696                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12697                 break;
12698             
12699             case 'if':     
12700                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
12701                 break;
12702             
12703             case 'name':
12704                 tpl.id  = tpl.value; // replace non characters???
12705                 break;
12706             
12707         }
12708         
12709         
12710         this.tpls.push(tpl);
12711         
12712         
12713         
12714     },
12715     
12716     
12717     
12718     
12719     /**
12720      * Compile a segment of the template into a 'sub-template'
12721      *
12722      * 
12723      * 
12724      *
12725      */
12726     compileTpl : function(tpl)
12727     {
12728         var fm = Roo.util.Format;
12729         var useF = this.disableFormats !== true;
12730         
12731         var sep = Roo.isGecko ? "+\n" : ",\n";
12732         
12733         var undef = function(str) {
12734             Roo.debug && Roo.log("Property not found :"  + str);
12735             return '';
12736         };
12737           
12738         //Roo.log(tpl.body);
12739         
12740         
12741         
12742         var fn = function(m, lbrace, name, format, args)
12743         {
12744             //Roo.log("ARGS");
12745             //Roo.log(arguments);
12746             args = args ? args.replace(/\\'/g,"'") : args;
12747             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
12748             if (typeof(format) == 'undefined') {
12749                 format =  'htmlEncode'; 
12750             }
12751             if (format == 'raw' ) {
12752                 format = false;
12753             }
12754             
12755             if(name.substr(0, 6) == 'domtpl'){
12756                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
12757             }
12758             
12759             // build an array of options to determine if value is undefined..
12760             
12761             // basically get 'xxxx.yyyy' then do
12762             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
12763             //    (function () { Roo.log("Property not found"); return ''; })() :
12764             //    ......
12765             
12766             var udef_ar = [];
12767             var lookfor = '';
12768             Roo.each(name.split('.'), function(st) {
12769                 lookfor += (lookfor.length ? '.': '') + st;
12770                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
12771             });
12772             
12773             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
12774             
12775             
12776             if(format && useF){
12777                 
12778                 args = args ? ',' + args : "";
12779                  
12780                 if(format.substr(0, 5) != "this."){
12781                     format = "fm." + format + '(';
12782                 }else{
12783                     format = 'this.call("'+ format.substr(5) + '", ';
12784                     args = ", values";
12785                 }
12786                 
12787                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
12788             }
12789              
12790             if (args && args.length) {
12791                 // called with xxyx.yuu:(test,test)
12792                 // change to ()
12793                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
12794             }
12795             // raw.. - :raw modifier..
12796             return "'"+ sep + udef_st  + name + ")"+sep+"'";
12797             
12798         };
12799         var body;
12800         // branched to use + in gecko and [].join() in others
12801         if(Roo.isGecko){
12802             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
12803                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
12804                     "';};};";
12805         }else{
12806             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
12807             body.push(tpl.body.replace(/(\r\n|\n)/g,
12808                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
12809             body.push("'].join('');};};");
12810             body = body.join('');
12811         }
12812         
12813         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
12814        
12815         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
12816         eval(body);
12817         
12818         return this;
12819     },
12820      
12821     /**
12822      * same as applyTemplate, except it's done to one of the subTemplates
12823      * when using named templates, you can do:
12824      *
12825      * var str = pl.applySubTemplate('your-name', values);
12826      *
12827      * 
12828      * @param {Number} id of the template
12829      * @param {Object} values to apply to template
12830      * @param {Object} parent (normaly the instance of this object)
12831      */
12832     applySubTemplate : function(id, values, parent)
12833     {
12834         
12835         
12836         var t = this.tpls[id];
12837         
12838         
12839         try { 
12840             if(t.ifCall && !t.ifCall.call(this, values, parent)){
12841                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
12842                 return '';
12843             }
12844         } catch(e) {
12845             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
12846             Roo.log(values);
12847           
12848             return '';
12849         }
12850         try { 
12851             
12852             if(t.execCall && t.execCall.call(this, values, parent)){
12853                 return '';
12854             }
12855         } catch(e) {
12856             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12857             Roo.log(values);
12858             return '';
12859         }
12860         
12861         try {
12862             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
12863             parent = t.target ? values : parent;
12864             if(t.forCall && vs instanceof Array){
12865                 var buf = [];
12866                 for(var i = 0, len = vs.length; i < len; i++){
12867                     try {
12868                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
12869                     } catch (e) {
12870                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12871                         Roo.log(e.body);
12872                         //Roo.log(t.compiled);
12873                         Roo.log(vs[i]);
12874                     }   
12875                 }
12876                 return buf.join('');
12877             }
12878         } catch (e) {
12879             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
12880             Roo.log(values);
12881             return '';
12882         }
12883         try {
12884             return t.compiled.call(this, vs, parent);
12885         } catch (e) {
12886             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
12887             Roo.log(e.body);
12888             //Roo.log(t.compiled);
12889             Roo.log(values);
12890             return '';
12891         }
12892     },
12893
12894    
12895
12896     applyTemplate : function(values){
12897         return this.master.compiled.call(this, values, {});
12898         //var s = this.subs;
12899     },
12900
12901     apply : function(){
12902         return this.applyTemplate.apply(this, arguments);
12903     }
12904
12905  });
12906
12907 Roo.DomTemplate.from = function(el){
12908     el = Roo.getDom(el);
12909     return new Roo.Domtemplate(el.value || el.innerHTML);
12910 };/*
12911  * Based on:
12912  * Ext JS Library 1.1.1
12913  * Copyright(c) 2006-2007, Ext JS, LLC.
12914  *
12915  * Originally Released Under LGPL - original licence link has changed is not relivant.
12916  *
12917  * Fork - LGPL
12918  * <script type="text/javascript">
12919  */
12920
12921 /**
12922  * @class Roo.util.DelayedTask
12923  * Provides a convenient method of performing setTimeout where a new
12924  * timeout cancels the old timeout. An example would be performing validation on a keypress.
12925  * You can use this class to buffer
12926  * the keypress events for a certain number of milliseconds, and perform only if they stop
12927  * for that amount of time.
12928  * @constructor The parameters to this constructor serve as defaults and are not required.
12929  * @param {Function} fn (optional) The default function to timeout
12930  * @param {Object} scope (optional) The default scope of that timeout
12931  * @param {Array} args (optional) The default Array of arguments
12932  */
12933 Roo.util.DelayedTask = function(fn, scope, args){
12934     var id = null, d, t;
12935
12936     var call = function(){
12937         var now = new Date().getTime();
12938         if(now - t >= d){
12939             clearInterval(id);
12940             id = null;
12941             fn.apply(scope, args || []);
12942         }
12943     };
12944     /**
12945      * Cancels any pending timeout and queues a new one
12946      * @param {Number} delay The milliseconds to delay
12947      * @param {Function} newFn (optional) Overrides function passed to constructor
12948      * @param {Object} newScope (optional) Overrides scope passed to constructor
12949      * @param {Array} newArgs (optional) Overrides args passed to constructor
12950      */
12951     this.delay = function(delay, newFn, newScope, newArgs){
12952         if(id && delay != d){
12953             this.cancel();
12954         }
12955         d = delay;
12956         t = new Date().getTime();
12957         fn = newFn || fn;
12958         scope = newScope || scope;
12959         args = newArgs || args;
12960         if(!id){
12961             id = setInterval(call, d);
12962         }
12963     };
12964
12965     /**
12966      * Cancel the last queued timeout
12967      */
12968     this.cancel = function(){
12969         if(id){
12970             clearInterval(id);
12971             id = null;
12972         }
12973     };
12974 };/*
12975  * Based on:
12976  * Ext JS Library 1.1.1
12977  * Copyright(c) 2006-2007, Ext JS, LLC.
12978  *
12979  * Originally Released Under LGPL - original licence link has changed is not relivant.
12980  *
12981  * Fork - LGPL
12982  * <script type="text/javascript">
12983  */
12984  
12985  
12986 Roo.util.TaskRunner = function(interval){
12987     interval = interval || 10;
12988     var tasks = [], removeQueue = [];
12989     var id = 0;
12990     var running = false;
12991
12992     var stopThread = function(){
12993         running = false;
12994         clearInterval(id);
12995         id = 0;
12996     };
12997
12998     var startThread = function(){
12999         if(!running){
13000             running = true;
13001             id = setInterval(runTasks, interval);
13002         }
13003     };
13004
13005     var removeTask = function(task){
13006         removeQueue.push(task);
13007         if(task.onStop){
13008             task.onStop();
13009         }
13010     };
13011
13012     var runTasks = function(){
13013         if(removeQueue.length > 0){
13014             for(var i = 0, len = removeQueue.length; i < len; i++){
13015                 tasks.remove(removeQueue[i]);
13016             }
13017             removeQueue = [];
13018             if(tasks.length < 1){
13019                 stopThread();
13020                 return;
13021             }
13022         }
13023         var now = new Date().getTime();
13024         for(var i = 0, len = tasks.length; i < len; ++i){
13025             var t = tasks[i];
13026             var itime = now - t.taskRunTime;
13027             if(t.interval <= itime){
13028                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
13029                 t.taskRunTime = now;
13030                 if(rt === false || t.taskRunCount === t.repeat){
13031                     removeTask(t);
13032                     return;
13033                 }
13034             }
13035             if(t.duration && t.duration <= (now - t.taskStartTime)){
13036                 removeTask(t);
13037             }
13038         }
13039     };
13040
13041     /**
13042      * Queues a new task.
13043      * @param {Object} task
13044      */
13045     this.start = function(task){
13046         tasks.push(task);
13047         task.taskStartTime = new Date().getTime();
13048         task.taskRunTime = 0;
13049         task.taskRunCount = 0;
13050         startThread();
13051         return task;
13052     };
13053
13054     this.stop = function(task){
13055         removeTask(task);
13056         return task;
13057     };
13058
13059     this.stopAll = function(){
13060         stopThread();
13061         for(var i = 0, len = tasks.length; i < len; i++){
13062             if(tasks[i].onStop){
13063                 tasks[i].onStop();
13064             }
13065         }
13066         tasks = [];
13067         removeQueue = [];
13068     };
13069 };
13070
13071 Roo.TaskMgr = new Roo.util.TaskRunner();/*
13072  * Based on:
13073  * Ext JS Library 1.1.1
13074  * Copyright(c) 2006-2007, Ext JS, LLC.
13075  *
13076  * Originally Released Under LGPL - original licence link has changed is not relivant.
13077  *
13078  * Fork - LGPL
13079  * <script type="text/javascript">
13080  */
13081
13082  
13083 /**
13084  * @class Roo.util.MixedCollection
13085  * @extends Roo.util.Observable
13086  * A Collection class that maintains both numeric indexes and keys and exposes events.
13087  * @constructor
13088  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
13089  * collection (defaults to false)
13090  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
13091  * and return the key value for that item.  This is used when available to look up the key on items that
13092  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
13093  * equivalent to providing an implementation for the {@link #getKey} method.
13094  */
13095 Roo.util.MixedCollection = function(allowFunctions, keyFn){
13096     this.items = [];
13097     this.map = {};
13098     this.keys = [];
13099     this.length = 0;
13100     this.addEvents({
13101         /**
13102          * @event clear
13103          * Fires when the collection is cleared.
13104          */
13105         "clear" : true,
13106         /**
13107          * @event add
13108          * Fires when an item is added to the collection.
13109          * @param {Number} index The index at which the item was added.
13110          * @param {Object} o The item added.
13111          * @param {String} key The key associated with the added item.
13112          */
13113         "add" : true,
13114         /**
13115          * @event replace
13116          * Fires when an item is replaced in the collection.
13117          * @param {String} key he key associated with the new added.
13118          * @param {Object} old The item being replaced.
13119          * @param {Object} new The new item.
13120          */
13121         "replace" : true,
13122         /**
13123          * @event remove
13124          * Fires when an item is removed from the collection.
13125          * @param {Object} o The item being removed.
13126          * @param {String} key (optional) The key associated with the removed item.
13127          */
13128         "remove" : true,
13129         "sort" : true
13130     });
13131     this.allowFunctions = allowFunctions === true;
13132     if(keyFn){
13133         this.getKey = keyFn;
13134     }
13135     Roo.util.MixedCollection.superclass.constructor.call(this);
13136 };
13137
13138 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
13139     allowFunctions : false,
13140     
13141 /**
13142  * Adds an item to the collection.
13143  * @param {String} key The key to associate with the item
13144  * @param {Object} o The item to add.
13145  * @return {Object} The item added.
13146  */
13147     add : function(key, o){
13148         if(arguments.length == 1){
13149             o = arguments[0];
13150             key = this.getKey(o);
13151         }
13152         if(typeof key == "undefined" || key === null){
13153             this.length++;
13154             this.items.push(o);
13155             this.keys.push(null);
13156         }else{
13157             var old = this.map[key];
13158             if(old){
13159                 return this.replace(key, o);
13160             }
13161             this.length++;
13162             this.items.push(o);
13163             this.map[key] = o;
13164             this.keys.push(key);
13165         }
13166         this.fireEvent("add", this.length-1, o, key);
13167         return o;
13168     },
13169        
13170 /**
13171   * MixedCollection has a generic way to fetch keys if you implement getKey.
13172 <pre><code>
13173 // normal way
13174 var mc = new Roo.util.MixedCollection();
13175 mc.add(someEl.dom.id, someEl);
13176 mc.add(otherEl.dom.id, otherEl);
13177 //and so on
13178
13179 // using getKey
13180 var mc = new Roo.util.MixedCollection();
13181 mc.getKey = function(el){
13182    return el.dom.id;
13183 };
13184 mc.add(someEl);
13185 mc.add(otherEl);
13186
13187 // or via the constructor
13188 var mc = new Roo.util.MixedCollection(false, function(el){
13189    return el.dom.id;
13190 });
13191 mc.add(someEl);
13192 mc.add(otherEl);
13193 </code></pre>
13194  * @param o {Object} The item for which to find the key.
13195  * @return {Object} The key for the passed item.
13196  */
13197     getKey : function(o){
13198          return o.id; 
13199     },
13200    
13201 /**
13202  * Replaces an item in the collection.
13203  * @param {String} key The key associated with the item to replace, or the item to replace.
13204  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
13205  * @return {Object}  The new item.
13206  */
13207     replace : function(key, o){
13208         if(arguments.length == 1){
13209             o = arguments[0];
13210             key = this.getKey(o);
13211         }
13212         var old = this.item(key);
13213         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
13214              return this.add(key, o);
13215         }
13216         var index = this.indexOfKey(key);
13217         this.items[index] = o;
13218         this.map[key] = o;
13219         this.fireEvent("replace", key, old, o);
13220         return o;
13221     },
13222    
13223 /**
13224  * Adds all elements of an Array or an Object to the collection.
13225  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
13226  * an Array of values, each of which are added to the collection.
13227  */
13228     addAll : function(objs){
13229         if(arguments.length > 1 || objs instanceof Array){
13230             var args = arguments.length > 1 ? arguments : objs;
13231             for(var i = 0, len = args.length; i < len; i++){
13232                 this.add(args[i]);
13233             }
13234         }else{
13235             for(var key in objs){
13236                 if(this.allowFunctions || typeof objs[key] != "function"){
13237                     this.add(key, objs[key]);
13238                 }
13239             }
13240         }
13241     },
13242    
13243 /**
13244  * Executes the specified function once for every item in the collection, passing each
13245  * item as the first and only parameter. returning false from the function will stop the iteration.
13246  * @param {Function} fn The function to execute for each item.
13247  * @param {Object} scope (optional) The scope in which to execute the function.
13248  */
13249     each : function(fn, scope){
13250         var items = [].concat(this.items); // each safe for removal
13251         for(var i = 0, len = items.length; i < len; i++){
13252             if(fn.call(scope || items[i], items[i], i, len) === false){
13253                 break;
13254             }
13255         }
13256     },
13257    
13258 /**
13259  * Executes the specified function once for every key in the collection, passing each
13260  * key, and its associated item as the first two parameters.
13261  * @param {Function} fn The function to execute for each item.
13262  * @param {Object} scope (optional) The scope in which to execute the function.
13263  */
13264     eachKey : function(fn, scope){
13265         for(var i = 0, len = this.keys.length; i < len; i++){
13266             fn.call(scope || window, this.keys[i], this.items[i], i, len);
13267         }
13268     },
13269    
13270 /**
13271  * Returns the first item in the collection which elicits a true return value from the
13272  * passed selection function.
13273  * @param {Function} fn The selection function to execute for each item.
13274  * @param {Object} scope (optional) The scope in which to execute the function.
13275  * @return {Object} The first item in the collection which returned true from the selection function.
13276  */
13277     find : function(fn, scope){
13278         for(var i = 0, len = this.items.length; i < len; i++){
13279             if(fn.call(scope || window, this.items[i], this.keys[i])){
13280                 return this.items[i];
13281             }
13282         }
13283         return null;
13284     },
13285    
13286 /**
13287  * Inserts an item at the specified index in the collection.
13288  * @param {Number} index The index to insert the item at.
13289  * @param {String} key The key to associate with the new item, or the item itself.
13290  * @param {Object} o  (optional) If the second parameter was a key, the new item.
13291  * @return {Object} The item inserted.
13292  */
13293     insert : function(index, key, o){
13294         if(arguments.length == 2){
13295             o = arguments[1];
13296             key = this.getKey(o);
13297         }
13298         if(index >= this.length){
13299             return this.add(key, o);
13300         }
13301         this.length++;
13302         this.items.splice(index, 0, o);
13303         if(typeof key != "undefined" && key != null){
13304             this.map[key] = o;
13305         }
13306         this.keys.splice(index, 0, key);
13307         this.fireEvent("add", index, o, key);
13308         return o;
13309     },
13310    
13311 /**
13312  * Removed an item from the collection.
13313  * @param {Object} o The item to remove.
13314  * @return {Object} The item removed.
13315  */
13316     remove : function(o){
13317         return this.removeAt(this.indexOf(o));
13318     },
13319    
13320 /**
13321  * Remove an item from a specified index in the collection.
13322  * @param {Number} index The index within the collection of the item to remove.
13323  */
13324     removeAt : function(index){
13325         if(index < this.length && index >= 0){
13326             this.length--;
13327             var o = this.items[index];
13328             this.items.splice(index, 1);
13329             var key = this.keys[index];
13330             if(typeof key != "undefined"){
13331                 delete this.map[key];
13332             }
13333             this.keys.splice(index, 1);
13334             this.fireEvent("remove", o, key);
13335         }
13336     },
13337    
13338 /**
13339  * Removed an item associated with the passed key fom the collection.
13340  * @param {String} key The key of the item to remove.
13341  */
13342     removeKey : function(key){
13343         return this.removeAt(this.indexOfKey(key));
13344     },
13345    
13346 /**
13347  * Returns the number of items in the collection.
13348  * @return {Number} the number of items in the collection.
13349  */
13350     getCount : function(){
13351         return this.length; 
13352     },
13353    
13354 /**
13355  * Returns index within the collection of the passed Object.
13356  * @param {Object} o The item to find the index of.
13357  * @return {Number} index of the item.
13358  */
13359     indexOf : function(o){
13360         if(!this.items.indexOf){
13361             for(var i = 0, len = this.items.length; i < len; i++){
13362                 if(this.items[i] == o) {
13363                     return i;
13364                 }
13365             }
13366             return -1;
13367         }else{
13368             return this.items.indexOf(o);
13369         }
13370     },
13371    
13372 /**
13373  * Returns index within the collection of the passed key.
13374  * @param {String} key The key to find the index of.
13375  * @return {Number} index of the key.
13376  */
13377     indexOfKey : function(key){
13378         if(!this.keys.indexOf){
13379             for(var i = 0, len = this.keys.length; i < len; i++){
13380                 if(this.keys[i] == key) {
13381                     return i;
13382                 }
13383             }
13384             return -1;
13385         }else{
13386             return this.keys.indexOf(key);
13387         }
13388     },
13389    
13390 /**
13391  * Returns the item associated with the passed key OR index. Key has priority over index.
13392  * @param {String/Number} key The key or index of the item.
13393  * @return {Object} The item associated with the passed key.
13394  */
13395     item : function(key){
13396         if (key === 'length') {
13397             return null;
13398         }
13399         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
13400         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
13401     },
13402     
13403 /**
13404  * Returns the item at the specified index.
13405  * @param {Number} index The index of the item.
13406  * @return {Object}
13407  */
13408     itemAt : function(index){
13409         return this.items[index];
13410     },
13411     
13412 /**
13413  * Returns the item associated with the passed key.
13414  * @param {String/Number} key The key of the item.
13415  * @return {Object} The item associated with the passed key.
13416  */
13417     key : function(key){
13418         return this.map[key];
13419     },
13420    
13421 /**
13422  * Returns true if the collection contains the passed Object as an item.
13423  * @param {Object} o  The Object to look for in the collection.
13424  * @return {Boolean} True if the collection contains the Object as an item.
13425  */
13426     contains : function(o){
13427         return this.indexOf(o) != -1;
13428     },
13429    
13430 /**
13431  * Returns true if the collection contains the passed Object as a key.
13432  * @param {String} key The key to look for in the collection.
13433  * @return {Boolean} True if the collection contains the Object as a key.
13434  */
13435     containsKey : function(key){
13436         return typeof this.map[key] != "undefined";
13437     },
13438    
13439 /**
13440  * Removes all items from the collection.
13441  */
13442     clear : function(){
13443         this.length = 0;
13444         this.items = [];
13445         this.keys = [];
13446         this.map = {};
13447         this.fireEvent("clear");
13448     },
13449    
13450 /**
13451  * Returns the first item in the collection.
13452  * @return {Object} the first item in the collection..
13453  */
13454     first : function(){
13455         return this.items[0]; 
13456     },
13457    
13458 /**
13459  * Returns the last item in the collection.
13460  * @return {Object} the last item in the collection..
13461  */
13462     last : function(){
13463         return this.items[this.length-1];   
13464     },
13465     
13466     _sort : function(property, dir, fn){
13467         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
13468         fn = fn || function(a, b){
13469             return a-b;
13470         };
13471         var c = [], k = this.keys, items = this.items;
13472         for(var i = 0, len = items.length; i < len; i++){
13473             c[c.length] = {key: k[i], value: items[i], index: i};
13474         }
13475         c.sort(function(a, b){
13476             var v = fn(a[property], b[property]) * dsc;
13477             if(v == 0){
13478                 v = (a.index < b.index ? -1 : 1);
13479             }
13480             return v;
13481         });
13482         for(var i = 0, len = c.length; i < len; i++){
13483             items[i] = c[i].value;
13484             k[i] = c[i].key;
13485         }
13486         this.fireEvent("sort", this);
13487     },
13488     
13489     /**
13490      * Sorts this collection with the passed comparison function
13491      * @param {String} direction (optional) "ASC" or "DESC"
13492      * @param {Function} fn (optional) comparison function
13493      */
13494     sort : function(dir, fn){
13495         this._sort("value", dir, fn);
13496     },
13497     
13498     /**
13499      * Sorts this collection by keys
13500      * @param {String} direction (optional) "ASC" or "DESC"
13501      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
13502      */
13503     keySort : function(dir, fn){
13504         this._sort("key", dir, fn || function(a, b){
13505             return String(a).toUpperCase()-String(b).toUpperCase();
13506         });
13507     },
13508     
13509     /**
13510      * Returns a range of items in this collection
13511      * @param {Number} startIndex (optional) defaults to 0
13512      * @param {Number} endIndex (optional) default to the last item
13513      * @return {Array} An array of items
13514      */
13515     getRange : function(start, end){
13516         var items = this.items;
13517         if(items.length < 1){
13518             return [];
13519         }
13520         start = start || 0;
13521         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
13522         var r = [];
13523         if(start <= end){
13524             for(var i = start; i <= end; i++) {
13525                     r[r.length] = items[i];
13526             }
13527         }else{
13528             for(var i = start; i >= end; i--) {
13529                     r[r.length] = items[i];
13530             }
13531         }
13532         return r;
13533     },
13534         
13535     /**
13536      * Filter the <i>objects</i> in this collection by a specific property. 
13537      * Returns a new collection that has been filtered.
13538      * @param {String} property A property on your objects
13539      * @param {String/RegExp} value Either string that the property values 
13540      * should start with or a RegExp to test against the property
13541      * @return {MixedCollection} The new filtered collection
13542      */
13543     filter : function(property, value){
13544         if(!value.exec){ // not a regex
13545             value = String(value);
13546             if(value.length == 0){
13547                 return this.clone();
13548             }
13549             value = new RegExp("^" + Roo.escapeRe(value), "i");
13550         }
13551         return this.filterBy(function(o){
13552             return o && value.test(o[property]);
13553         });
13554         },
13555     
13556     /**
13557      * Filter by a function. * Returns a new collection that has been filtered.
13558      * The passed function will be called with each 
13559      * object in the collection. If the function returns true, the value is included 
13560      * otherwise it is filtered.
13561      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
13562      * @param {Object} scope (optional) The scope of the function (defaults to this) 
13563      * @return {MixedCollection} The new filtered collection
13564      */
13565     filterBy : function(fn, scope){
13566         var r = new Roo.util.MixedCollection();
13567         r.getKey = this.getKey;
13568         var k = this.keys, it = this.items;
13569         for(var i = 0, len = it.length; i < len; i++){
13570             if(fn.call(scope||this, it[i], k[i])){
13571                                 r.add(k[i], it[i]);
13572                         }
13573         }
13574         return r;
13575     },
13576     
13577     /**
13578      * Creates a duplicate of this collection
13579      * @return {MixedCollection}
13580      */
13581     clone : function(){
13582         var r = new Roo.util.MixedCollection();
13583         var k = this.keys, it = this.items;
13584         for(var i = 0, len = it.length; i < len; i++){
13585             r.add(k[i], it[i]);
13586         }
13587         r.getKey = this.getKey;
13588         return r;
13589     }
13590 });
13591 /**
13592  * Returns the item associated with the passed key or index.
13593  * @method
13594  * @param {String/Number} key The key or index of the item.
13595  * @return {Object} The item associated with the passed key.
13596  */
13597 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
13598  * Based on:
13599  * Ext JS Library 1.1.1
13600  * Copyright(c) 2006-2007, Ext JS, LLC.
13601  *
13602  * Originally Released Under LGPL - original licence link has changed is not relivant.
13603  *
13604  * Fork - LGPL
13605  * <script type="text/javascript">
13606  */
13607 /**
13608  * @class Roo.util.JSON
13609  * Modified version of Douglas Crockford"s json.js that doesn"t
13610  * mess with the Object prototype 
13611  * http://www.json.org/js.html
13612  * @singleton
13613  */
13614 Roo.util.JSON = new (function(){
13615     var useHasOwn = {}.hasOwnProperty ? true : false;
13616     
13617     // crashes Safari in some instances
13618     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
13619     
13620     var pad = function(n) {
13621         return n < 10 ? "0" + n : n;
13622     };
13623     
13624     var m = {
13625         "\b": '\\b',
13626         "\t": '\\t',
13627         "\n": '\\n',
13628         "\f": '\\f',
13629         "\r": '\\r',
13630         '"' : '\\"',
13631         "\\": '\\\\'
13632     };
13633
13634     var encodeString = function(s){
13635         if (/["\\\x00-\x1f]/.test(s)) {
13636             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
13637                 var c = m[b];
13638                 if(c){
13639                     return c;
13640                 }
13641                 c = b.charCodeAt();
13642                 return "\\u00" +
13643                     Math.floor(c / 16).toString(16) +
13644                     (c % 16).toString(16);
13645             }) + '"';
13646         }
13647         return '"' + s + '"';
13648     };
13649     
13650     var encodeArray = function(o){
13651         var a = ["["], b, i, l = o.length, v;
13652             for (i = 0; i < l; i += 1) {
13653                 v = o[i];
13654                 switch (typeof v) {
13655                     case "undefined":
13656                     case "function":
13657                     case "unknown":
13658                         break;
13659                     default:
13660                         if (b) {
13661                             a.push(',');
13662                         }
13663                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
13664                         b = true;
13665                 }
13666             }
13667             a.push("]");
13668             return a.join("");
13669     };
13670     
13671     var encodeDate = function(o){
13672         return '"' + o.getFullYear() + "-" +
13673                 pad(o.getMonth() + 1) + "-" +
13674                 pad(o.getDate()) + "T" +
13675                 pad(o.getHours()) + ":" +
13676                 pad(o.getMinutes()) + ":" +
13677                 pad(o.getSeconds()) + '"';
13678     };
13679     
13680     /**
13681      * Encodes an Object, Array or other value
13682      * @param {Mixed} o The variable to encode
13683      * @return {String} The JSON string
13684      */
13685     this.encode = function(o)
13686     {
13687         // should this be extended to fully wrap stringify..
13688         
13689         if(typeof o == "undefined" || o === null){
13690             return "null";
13691         }else if(o instanceof Array){
13692             return encodeArray(o);
13693         }else if(o instanceof Date){
13694             return encodeDate(o);
13695         }else if(typeof o == "string"){
13696             return encodeString(o);
13697         }else if(typeof o == "number"){
13698             return isFinite(o) ? String(o) : "null";
13699         }else if(typeof o == "boolean"){
13700             return String(o);
13701         }else {
13702             var a = ["{"], b, i, v;
13703             for (i in o) {
13704                 if(!useHasOwn || o.hasOwnProperty(i)) {
13705                     v = o[i];
13706                     switch (typeof v) {
13707                     case "undefined":
13708                     case "function":
13709                     case "unknown":
13710                         break;
13711                     default:
13712                         if(b){
13713                             a.push(',');
13714                         }
13715                         a.push(this.encode(i), ":",
13716                                 v === null ? "null" : this.encode(v));
13717                         b = true;
13718                     }
13719                 }
13720             }
13721             a.push("}");
13722             return a.join("");
13723         }
13724     };
13725     
13726     /**
13727      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
13728      * @param {String} json The JSON string
13729      * @return {Object} The resulting object
13730      */
13731     this.decode = function(json){
13732         
13733         return  /** eval:var:json */ eval("(" + json + ')');
13734     };
13735 })();
13736 /** 
13737  * Shorthand for {@link Roo.util.JSON#encode}
13738  * @member Roo encode 
13739  * @method */
13740 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
13741 /** 
13742  * Shorthand for {@link Roo.util.JSON#decode}
13743  * @member Roo decode 
13744  * @method */
13745 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
13746 /*
13747  * Based on:
13748  * Ext JS Library 1.1.1
13749  * Copyright(c) 2006-2007, Ext JS, LLC.
13750  *
13751  * Originally Released Under LGPL - original licence link has changed is not relivant.
13752  *
13753  * Fork - LGPL
13754  * <script type="text/javascript">
13755  */
13756  
13757 /**
13758  * @class Roo.util.Format
13759  * Reusable data formatting functions
13760  * @singleton
13761  */
13762 Roo.util.Format = function(){
13763     var trimRe = /^\s+|\s+$/g;
13764     return {
13765         /**
13766          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
13767          * @param {String} value The string to truncate
13768          * @param {Number} length The maximum length to allow before truncating
13769          * @return {String} The converted text
13770          */
13771         ellipsis : function(value, len){
13772             if(value && value.length > len){
13773                 return value.substr(0, len-3)+"...";
13774             }
13775             return value;
13776         },
13777
13778         /**
13779          * Checks a reference and converts it to empty string if it is undefined
13780          * @param {Mixed} value Reference to check
13781          * @return {Mixed} Empty string if converted, otherwise the original value
13782          */
13783         undef : function(value){
13784             return typeof value != "undefined" ? value : "";
13785         },
13786
13787         /**
13788          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
13789          * @param {String} value The string to encode
13790          * @return {String} The encoded text
13791          */
13792         htmlEncode : function(value){
13793             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
13794         },
13795
13796         /**
13797          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
13798          * @param {String} value The string to decode
13799          * @return {String} The decoded text
13800          */
13801         htmlDecode : function(value){
13802             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
13803         },
13804
13805         /**
13806          * Trims any whitespace from either side of a string
13807          * @param {String} value The text to trim
13808          * @return {String} The trimmed text
13809          */
13810         trim : function(value){
13811             return String(value).replace(trimRe, "");
13812         },
13813
13814         /**
13815          * Returns a substring from within an original string
13816          * @param {String} value The original text
13817          * @param {Number} start The start index of the substring
13818          * @param {Number} length The length of the substring
13819          * @return {String} The substring
13820          */
13821         substr : function(value, start, length){
13822             return String(value).substr(start, length);
13823         },
13824
13825         /**
13826          * Converts a string to all lower case letters
13827          * @param {String} value The text to convert
13828          * @return {String} The converted text
13829          */
13830         lowercase : function(value){
13831             return String(value).toLowerCase();
13832         },
13833
13834         /**
13835          * Converts a string to all upper case letters
13836          * @param {String} value The text to convert
13837          * @return {String} The converted text
13838          */
13839         uppercase : function(value){
13840             return String(value).toUpperCase();
13841         },
13842
13843         /**
13844          * Converts the first character only of a string to upper case
13845          * @param {String} value The text to convert
13846          * @return {String} The converted text
13847          */
13848         capitalize : function(value){
13849             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
13850         },
13851
13852         // private
13853         call : function(value, fn){
13854             if(arguments.length > 2){
13855                 var args = Array.prototype.slice.call(arguments, 2);
13856                 args.unshift(value);
13857                  
13858                 return /** eval:var:value */  eval(fn).apply(window, args);
13859             }else{
13860                 /** eval:var:value */
13861                 return /** eval:var:value */ eval(fn).call(window, value);
13862             }
13863         },
13864
13865        
13866         /**
13867          * safer version of Math.toFixed..??/
13868          * @param {Number/String} value The numeric value to format
13869          * @param {Number/String} value Decimal places 
13870          * @return {String} The formatted currency string
13871          */
13872         toFixed : function(v, n)
13873         {
13874             // why not use to fixed - precision is buggered???
13875             if (!n) {
13876                 return Math.round(v-0);
13877             }
13878             var fact = Math.pow(10,n+1);
13879             v = (Math.round((v-0)*fact))/fact;
13880             var z = (''+fact).substring(2);
13881             if (v == Math.floor(v)) {
13882                 return Math.floor(v) + '.' + z;
13883             }
13884             
13885             // now just padd decimals..
13886             var ps = String(v).split('.');
13887             var fd = (ps[1] + z);
13888             var r = fd.substring(0,n); 
13889             var rm = fd.substring(n); 
13890             if (rm < 5) {
13891                 return ps[0] + '.' + r;
13892             }
13893             r*=1; // turn it into a number;
13894             r++;
13895             if (String(r).length != n) {
13896                 ps[0]*=1;
13897                 ps[0]++;
13898                 r = String(r).substring(1); // chop the end off.
13899             }
13900             
13901             return ps[0] + '.' + r;
13902              
13903         },
13904         
13905         /**
13906          * Format a number as US currency
13907          * @param {Number/String} value The numeric value to format
13908          * @return {String} The formatted currency string
13909          */
13910         usMoney : function(v){
13911             return '$' + Roo.util.Format.number(v);
13912         },
13913         
13914         /**
13915          * Format a number
13916          * eventually this should probably emulate php's number_format
13917          * @param {Number/String} value The numeric value to format
13918          * @param {Number} decimals number of decimal places
13919          * @param {String} delimiter for thousands (default comma)
13920          * @return {String} The formatted currency string
13921          */
13922         number : function(v, decimals, thousandsDelimiter)
13923         {
13924             // multiply and round.
13925             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
13926             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
13927             
13928             var mul = Math.pow(10, decimals);
13929             var zero = String(mul).substring(1);
13930             v = (Math.round((v-0)*mul))/mul;
13931             
13932             // if it's '0' number.. then
13933             
13934             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
13935             v = String(v);
13936             var ps = v.split('.');
13937             var whole = ps[0];
13938             
13939             var r = /(\d+)(\d{3})/;
13940             // add comma's
13941             
13942             if(thousandsDelimiter.length != 0) {
13943                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
13944             } 
13945             
13946             var sub = ps[1] ?
13947                     // has decimals..
13948                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
13949                     // does not have decimals
13950                     (decimals ? ('.' + zero) : '');
13951             
13952             
13953             return whole + sub ;
13954         },
13955         
13956         /**
13957          * Parse a value into a formatted date using the specified format pattern.
13958          * @param {Mixed} value The value to format
13959          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
13960          * @return {String} The formatted date string
13961          */
13962         date : function(v, format){
13963             if(!v){
13964                 return "";
13965             }
13966             if(!(v instanceof Date)){
13967                 v = new Date(Date.parse(v));
13968             }
13969             return v.dateFormat(format || Roo.util.Format.defaults.date);
13970         },
13971
13972         /**
13973          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
13974          * @param {String} format Any valid date format string
13975          * @return {Function} The date formatting function
13976          */
13977         dateRenderer : function(format){
13978             return function(v){
13979                 return Roo.util.Format.date(v, format);  
13980             };
13981         },
13982
13983         // private
13984         stripTagsRE : /<\/?[^>]+>/gi,
13985         
13986         /**
13987          * Strips all HTML tags
13988          * @param {Mixed} value The text from which to strip tags
13989          * @return {String} The stripped text
13990          */
13991         stripTags : function(v){
13992             return !v ? v : String(v).replace(this.stripTagsRE, "");
13993         },
13994         
13995         /**
13996          * Size in Mb,Gb etc.
13997          * @param {Number} value The number to be formated
13998          * @param {number} decimals how many decimal places
13999          * @return {String} the formated string
14000          */
14001         size : function(value, decimals)
14002         {
14003             var sizes = ['b', 'k', 'M', 'G', 'T'];
14004             if (value == 0) {
14005                 return 0;
14006             }
14007             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
14008             return this.number(value/ Math.pow(1024, i) ,decimals) + ' ' + sizes[i];
14009         }
14010         
14011         
14012         
14013     };
14014 }();
14015 Roo.util.Format.defaults = {
14016     date : 'd/M/Y'
14017 };/*
14018  * Based on:
14019  * Ext JS Library 1.1.1
14020  * Copyright(c) 2006-2007, Ext JS, LLC.
14021  *
14022  * Originally Released Under LGPL - original licence link has changed is not relivant.
14023  *
14024  * Fork - LGPL
14025  * <script type="text/javascript">
14026  */
14027
14028
14029  
14030
14031 /**
14032  * @class Roo.MasterTemplate
14033  * @extends Roo.Template
14034  * Provides a template that can have child templates. The syntax is:
14035 <pre><code>
14036 var t = new Roo.MasterTemplate(
14037         '&lt;select name="{name}"&gt;',
14038                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
14039         '&lt;/select&gt;'
14040 );
14041 t.add('options', {value: 'foo', text: 'bar'});
14042 // or you can add multiple child elements in one shot
14043 t.addAll('options', [
14044     {value: 'foo', text: 'bar'},
14045     {value: 'foo2', text: 'bar2'},
14046     {value: 'foo3', text: 'bar3'}
14047 ]);
14048 // then append, applying the master template values
14049 t.append('my-form', {name: 'my-select'});
14050 </code></pre>
14051 * A name attribute for the child template is not required if you have only one child
14052 * template or you want to refer to them by index.
14053  */
14054 Roo.MasterTemplate = function(){
14055     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
14056     this.originalHtml = this.html;
14057     var st = {};
14058     var m, re = this.subTemplateRe;
14059     re.lastIndex = 0;
14060     var subIndex = 0;
14061     while(m = re.exec(this.html)){
14062         var name = m[1], content = m[2];
14063         st[subIndex] = {
14064             name: name,
14065             index: subIndex,
14066             buffer: [],
14067             tpl : new Roo.Template(content)
14068         };
14069         if(name){
14070             st[name] = st[subIndex];
14071         }
14072         st[subIndex].tpl.compile();
14073         st[subIndex].tpl.call = this.call.createDelegate(this);
14074         subIndex++;
14075     }
14076     this.subCount = subIndex;
14077     this.subs = st;
14078 };
14079 Roo.extend(Roo.MasterTemplate, Roo.Template, {
14080     /**
14081     * The regular expression used to match sub templates
14082     * @type RegExp
14083     * @property
14084     */
14085     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
14086
14087     /**
14088      * Applies the passed values to a child template.
14089      * @param {String/Number} name (optional) The name or index of the child template
14090      * @param {Array/Object} values The values to be applied to the template
14091      * @return {MasterTemplate} this
14092      */
14093      add : function(name, values){
14094         if(arguments.length == 1){
14095             values = arguments[0];
14096             name = 0;
14097         }
14098         var s = this.subs[name];
14099         s.buffer[s.buffer.length] = s.tpl.apply(values);
14100         return this;
14101     },
14102
14103     /**
14104      * Applies all the passed values to a child template.
14105      * @param {String/Number} name (optional) The name or index of the child template
14106      * @param {Array} values The values to be applied to the template, this should be an array of objects.
14107      * @param {Boolean} reset (optional) True to reset the template first
14108      * @return {MasterTemplate} this
14109      */
14110     fill : function(name, values, reset){
14111         var a = arguments;
14112         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
14113             values = a[0];
14114             name = 0;
14115             reset = a[1];
14116         }
14117         if(reset){
14118             this.reset();
14119         }
14120         for(var i = 0, len = values.length; i < len; i++){
14121             this.add(name, values[i]);
14122         }
14123         return this;
14124     },
14125
14126     /**
14127      * Resets the template for reuse
14128      * @return {MasterTemplate} this
14129      */
14130      reset : function(){
14131         var s = this.subs;
14132         for(var i = 0; i < this.subCount; i++){
14133             s[i].buffer = [];
14134         }
14135         return this;
14136     },
14137
14138     applyTemplate : function(values){
14139         var s = this.subs;
14140         var replaceIndex = -1;
14141         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
14142             return s[++replaceIndex].buffer.join("");
14143         });
14144         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
14145     },
14146
14147     apply : function(){
14148         return this.applyTemplate.apply(this, arguments);
14149     },
14150
14151     compile : function(){return this;}
14152 });
14153
14154 /**
14155  * Alias for fill().
14156  * @method
14157  */
14158 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
14159  /**
14160  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
14161  * var tpl = Roo.MasterTemplate.from('element-id');
14162  * @param {String/HTMLElement} el
14163  * @param {Object} config
14164  * @static
14165  */
14166 Roo.MasterTemplate.from = function(el, config){
14167     el = Roo.getDom(el);
14168     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
14169 };/*
14170  * Based on:
14171  * Ext JS Library 1.1.1
14172  * Copyright(c) 2006-2007, Ext JS, LLC.
14173  *
14174  * Originally Released Under LGPL - original licence link has changed is not relivant.
14175  *
14176  * Fork - LGPL
14177  * <script type="text/javascript">
14178  */
14179
14180  
14181 /**
14182  * @class Roo.util.CSS
14183  * Utility class for manipulating CSS rules
14184  * @singleton
14185  */
14186 Roo.util.CSS = function(){
14187         var rules = null;
14188         var doc = document;
14189
14190     var camelRe = /(-[a-z])/gi;
14191     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
14192
14193    return {
14194    /**
14195     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
14196     * tag and appended to the HEAD of the document.
14197     * @param {String|Object} cssText The text containing the css rules
14198     * @param {String} id An id to add to the stylesheet for later removal
14199     * @return {StyleSheet}
14200     */
14201     createStyleSheet : function(cssText, id){
14202         var ss;
14203         var head = doc.getElementsByTagName("head")[0];
14204         var nrules = doc.createElement("style");
14205         nrules.setAttribute("type", "text/css");
14206         if(id){
14207             nrules.setAttribute("id", id);
14208         }
14209         if (typeof(cssText) != 'string') {
14210             // support object maps..
14211             // not sure if this a good idea.. 
14212             // perhaps it should be merged with the general css handling
14213             // and handle js style props.
14214             var cssTextNew = [];
14215             for(var n in cssText) {
14216                 var citems = [];
14217                 for(var k in cssText[n]) {
14218                     citems.push( k + ' : ' +cssText[n][k] + ';' );
14219                 }
14220                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
14221                 
14222             }
14223             cssText = cssTextNew.join("\n");
14224             
14225         }
14226        
14227        
14228        if(Roo.isIE){
14229            head.appendChild(nrules);
14230            ss = nrules.styleSheet;
14231            ss.cssText = cssText;
14232        }else{
14233            try{
14234                 nrules.appendChild(doc.createTextNode(cssText));
14235            }catch(e){
14236                nrules.cssText = cssText; 
14237            }
14238            head.appendChild(nrules);
14239            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
14240        }
14241        this.cacheStyleSheet(ss);
14242        return ss;
14243    },
14244
14245    /**
14246     * Removes a style or link tag by id
14247     * @param {String} id The id of the tag
14248     */
14249    removeStyleSheet : function(id){
14250        var existing = doc.getElementById(id);
14251        if(existing){
14252            existing.parentNode.removeChild(existing);
14253        }
14254    },
14255
14256    /**
14257     * Dynamically swaps an existing stylesheet reference for a new one
14258     * @param {String} id The id of an existing link tag to remove
14259     * @param {String} url The href of the new stylesheet to include
14260     */
14261    swapStyleSheet : function(id, url){
14262        this.removeStyleSheet(id);
14263        var ss = doc.createElement("link");
14264        ss.setAttribute("rel", "stylesheet");
14265        ss.setAttribute("type", "text/css");
14266        ss.setAttribute("id", id);
14267        ss.setAttribute("href", url);
14268        doc.getElementsByTagName("head")[0].appendChild(ss);
14269    },
14270    
14271    /**
14272     * Refresh the rule cache if you have dynamically added stylesheets
14273     * @return {Object} An object (hash) of rules indexed by selector
14274     */
14275    refreshCache : function(){
14276        return this.getRules(true);
14277    },
14278
14279    // private
14280    cacheStyleSheet : function(stylesheet){
14281        if(!rules){
14282            rules = {};
14283        }
14284        try{// try catch for cross domain access issue
14285            var ssRules = stylesheet.cssRules || stylesheet.rules;
14286            for(var j = ssRules.length-1; j >= 0; --j){
14287                rules[ssRules[j].selectorText] = ssRules[j];
14288            }
14289        }catch(e){}
14290    },
14291    
14292    /**
14293     * Gets all css rules for the document
14294     * @param {Boolean} refreshCache true to refresh the internal cache
14295     * @return {Object} An object (hash) of rules indexed by selector
14296     */
14297    getRules : function(refreshCache){
14298                 if(rules == null || refreshCache){
14299                         rules = {};
14300                         var ds = doc.styleSheets;
14301                         for(var i =0, len = ds.length; i < len; i++){
14302                             try{
14303                         this.cacheStyleSheet(ds[i]);
14304                     }catch(e){} 
14305                 }
14306                 }
14307                 return rules;
14308         },
14309         
14310         /**
14311     * Gets an an individual CSS rule by selector(s)
14312     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
14313     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
14314     * @return {CSSRule} The CSS rule or null if one is not found
14315     */
14316    getRule : function(selector, refreshCache){
14317                 var rs = this.getRules(refreshCache);
14318                 if(!(selector instanceof Array)){
14319                     return rs[selector];
14320                 }
14321                 for(var i = 0; i < selector.length; i++){
14322                         if(rs[selector[i]]){
14323                                 return rs[selector[i]];
14324                         }
14325                 }
14326                 return null;
14327         },
14328         
14329         
14330         /**
14331     * Updates a rule property
14332     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
14333     * @param {String} property The css property
14334     * @param {String} value The new value for the property
14335     * @return {Boolean} true If a rule was found and updated
14336     */
14337    updateRule : function(selector, property, value){
14338                 if(!(selector instanceof Array)){
14339                         var rule = this.getRule(selector);
14340                         if(rule){
14341                                 rule.style[property.replace(camelRe, camelFn)] = value;
14342                                 return true;
14343                         }
14344                 }else{
14345                         for(var i = 0; i < selector.length; i++){
14346                                 if(this.updateRule(selector[i], property, value)){
14347                                         return true;
14348                                 }
14349                         }
14350                 }
14351                 return false;
14352         }
14353    };   
14354 }();/*
14355  * Based on:
14356  * Ext JS Library 1.1.1
14357  * Copyright(c) 2006-2007, Ext JS, LLC.
14358  *
14359  * Originally Released Under LGPL - original licence link has changed is not relivant.
14360  *
14361  * Fork - LGPL
14362  * <script type="text/javascript">
14363  */
14364
14365  
14366
14367 /**
14368  * @class Roo.util.ClickRepeater
14369  * @extends Roo.util.Observable
14370  * 
14371  * A wrapper class which can be applied to any element. Fires a "click" event while the
14372  * mouse is pressed. The interval between firings may be specified in the config but
14373  * defaults to 10 milliseconds.
14374  * 
14375  * Optionally, a CSS class may be applied to the element during the time it is pressed.
14376  * 
14377  * @cfg {String/HTMLElement/Element} el The element to act as a button.
14378  * @cfg {Number} delay The initial delay before the repeating event begins firing.
14379  * Similar to an autorepeat key delay.
14380  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
14381  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
14382  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
14383  *           "interval" and "delay" are ignored. "immediate" is honored.
14384  * @cfg {Boolean} preventDefault True to prevent the default click event
14385  * @cfg {Boolean} stopDefault True to stop the default click event
14386  * 
14387  * @history
14388  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
14389  *     2007-02-02 jvs Renamed to ClickRepeater
14390  *   2007-02-03 jvs Modifications for FF Mac and Safari 
14391  *
14392  *  @constructor
14393  * @param {String/HTMLElement/Element} el The element to listen on
14394  * @param {Object} config
14395  **/
14396 Roo.util.ClickRepeater = function(el, config)
14397 {
14398     this.el = Roo.get(el);
14399     this.el.unselectable();
14400
14401     Roo.apply(this, config);
14402
14403     this.addEvents({
14404     /**
14405      * @event mousedown
14406      * Fires when the mouse button is depressed.
14407      * @param {Roo.util.ClickRepeater} this
14408      */
14409         "mousedown" : true,
14410     /**
14411      * @event click
14412      * Fires on a specified interval during the time the element is pressed.
14413      * @param {Roo.util.ClickRepeater} this
14414      */
14415         "click" : true,
14416     /**
14417      * @event mouseup
14418      * Fires when the mouse key is released.
14419      * @param {Roo.util.ClickRepeater} this
14420      */
14421         "mouseup" : true
14422     });
14423
14424     this.el.on("mousedown", this.handleMouseDown, this);
14425     if(this.preventDefault || this.stopDefault){
14426         this.el.on("click", function(e){
14427             if(this.preventDefault){
14428                 e.preventDefault();
14429             }
14430             if(this.stopDefault){
14431                 e.stopEvent();
14432             }
14433         }, this);
14434     }
14435
14436     // allow inline handler
14437     if(this.handler){
14438         this.on("click", this.handler,  this.scope || this);
14439     }
14440
14441     Roo.util.ClickRepeater.superclass.constructor.call(this);
14442 };
14443
14444 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
14445     interval : 20,
14446     delay: 250,
14447     preventDefault : true,
14448     stopDefault : false,
14449     timer : 0,
14450
14451     // private
14452     handleMouseDown : function(){
14453         clearTimeout(this.timer);
14454         this.el.blur();
14455         if(this.pressClass){
14456             this.el.addClass(this.pressClass);
14457         }
14458         this.mousedownTime = new Date();
14459
14460         Roo.get(document).on("mouseup", this.handleMouseUp, this);
14461         this.el.on("mouseout", this.handleMouseOut, this);
14462
14463         this.fireEvent("mousedown", this);
14464         this.fireEvent("click", this);
14465         
14466         this.timer = this.click.defer(this.delay || this.interval, this);
14467     },
14468
14469     // private
14470     click : function(){
14471         this.fireEvent("click", this);
14472         this.timer = this.click.defer(this.getInterval(), this);
14473     },
14474
14475     // private
14476     getInterval: function(){
14477         if(!this.accelerate){
14478             return this.interval;
14479         }
14480         var pressTime = this.mousedownTime.getElapsed();
14481         if(pressTime < 500){
14482             return 400;
14483         }else if(pressTime < 1700){
14484             return 320;
14485         }else if(pressTime < 2600){
14486             return 250;
14487         }else if(pressTime < 3500){
14488             return 180;
14489         }else if(pressTime < 4400){
14490             return 140;
14491         }else if(pressTime < 5300){
14492             return 80;
14493         }else if(pressTime < 6200){
14494             return 50;
14495         }else{
14496             return 10;
14497         }
14498     },
14499
14500     // private
14501     handleMouseOut : function(){
14502         clearTimeout(this.timer);
14503         if(this.pressClass){
14504             this.el.removeClass(this.pressClass);
14505         }
14506         this.el.on("mouseover", this.handleMouseReturn, this);
14507     },
14508
14509     // private
14510     handleMouseReturn : function(){
14511         this.el.un("mouseover", this.handleMouseReturn);
14512         if(this.pressClass){
14513             this.el.addClass(this.pressClass);
14514         }
14515         this.click();
14516     },
14517
14518     // private
14519     handleMouseUp : function(){
14520         clearTimeout(this.timer);
14521         this.el.un("mouseover", this.handleMouseReturn);
14522         this.el.un("mouseout", this.handleMouseOut);
14523         Roo.get(document).un("mouseup", this.handleMouseUp);
14524         this.el.removeClass(this.pressClass);
14525         this.fireEvent("mouseup", this);
14526     }
14527 });/**
14528  * @class Roo.util.Clipboard
14529  * @static
14530  * 
14531  * Clipboard UTILS
14532  * 
14533  **/
14534 Roo.util.Clipboard = {
14535     /**
14536      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
14537      * @param {String} text to copy to clipboard
14538      */
14539     write : function(text) {
14540         // navigator clipboard api needs a secure context (https)
14541         if (navigator.clipboard && window.isSecureContext) {
14542             // navigator clipboard api method'
14543             navigator.clipboard.writeText(text);
14544             return ;
14545         } 
14546         // text area method
14547         var ta = document.createElement("textarea");
14548         ta.value = text;
14549         // make the textarea out of viewport
14550         ta.style.position = "fixed";
14551         ta.style.left = "-999999px";
14552         ta.style.top = "-999999px";
14553         document.body.appendChild(ta);
14554         ta.focus();
14555         ta.select();
14556         document.execCommand('copy');
14557         (function() {
14558             ta.remove();
14559         }).defer(100);
14560         
14561     }
14562         
14563 }
14564     /*
14565  * Based on:
14566  * Ext JS Library 1.1.1
14567  * Copyright(c) 2006-2007, Ext JS, LLC.
14568  *
14569  * Originally Released Under LGPL - original licence link has changed is not relivant.
14570  *
14571  * Fork - LGPL
14572  * <script type="text/javascript">
14573  */
14574
14575  
14576 /**
14577  * @class Roo.KeyNav
14578  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
14579  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
14580  * way to implement custom navigation schemes for any UI component.</p>
14581  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
14582  * pageUp, pageDown, del, home, end.  Usage:</p>
14583  <pre><code>
14584 var nav = new Roo.KeyNav("my-element", {
14585     "left" : function(e){
14586         this.moveLeft(e.ctrlKey);
14587     },
14588     "right" : function(e){
14589         this.moveRight(e.ctrlKey);
14590     },
14591     "enter" : function(e){
14592         this.save();
14593     },
14594     scope : this
14595 });
14596 </code></pre>
14597  * @constructor
14598  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14599  * @param {Object} config The config
14600  */
14601 Roo.KeyNav = function(el, config){
14602     this.el = Roo.get(el);
14603     Roo.apply(this, config);
14604     if(!this.disabled){
14605         this.disabled = true;
14606         this.enable();
14607     }
14608 };
14609
14610 Roo.KeyNav.prototype = {
14611     /**
14612      * @cfg {Boolean} disabled
14613      * True to disable this KeyNav instance (defaults to false)
14614      */
14615     disabled : false,
14616     /**
14617      * @cfg {String} defaultEventAction
14618      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
14619      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
14620      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
14621      */
14622     defaultEventAction: "stopEvent",
14623     /**
14624      * @cfg {Boolean} forceKeyDown
14625      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
14626      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
14627      * handle keydown instead of keypress.
14628      */
14629     forceKeyDown : false,
14630
14631     // private
14632     prepareEvent : function(e){
14633         var k = e.getKey();
14634         var h = this.keyToHandler[k];
14635         //if(h && this[h]){
14636         //    e.stopPropagation();
14637         //}
14638         if(Roo.isSafari && h && k >= 37 && k <= 40){
14639             e.stopEvent();
14640         }
14641     },
14642
14643     // private
14644     relay : function(e){
14645         var k = e.getKey();
14646         var h = this.keyToHandler[k];
14647         if(h && this[h]){
14648             if(this.doRelay(e, this[h], h) !== true){
14649                 e[this.defaultEventAction]();
14650             }
14651         }
14652     },
14653
14654     // private
14655     doRelay : function(e, h, hname){
14656         return h.call(this.scope || this, e);
14657     },
14658
14659     // possible handlers
14660     enter : false,
14661     left : false,
14662     right : false,
14663     up : false,
14664     down : false,
14665     tab : false,
14666     esc : false,
14667     pageUp : false,
14668     pageDown : false,
14669     del : false,
14670     home : false,
14671     end : false,
14672
14673     // quick lookup hash
14674     keyToHandler : {
14675         37 : "left",
14676         39 : "right",
14677         38 : "up",
14678         40 : "down",
14679         33 : "pageUp",
14680         34 : "pageDown",
14681         46 : "del",
14682         36 : "home",
14683         35 : "end",
14684         13 : "enter",
14685         27 : "esc",
14686         9  : "tab"
14687     },
14688
14689         /**
14690          * Enable this KeyNav
14691          */
14692         enable: function(){
14693                 if(this.disabled){
14694             // ie won't do special keys on keypress, no one else will repeat keys with keydown
14695             // the EventObject will normalize Safari automatically
14696             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14697                 this.el.on("keydown", this.relay,  this);
14698             }else{
14699                 this.el.on("keydown", this.prepareEvent,  this);
14700                 this.el.on("keypress", this.relay,  this);
14701             }
14702                     this.disabled = false;
14703                 }
14704         },
14705
14706         /**
14707          * Disable this KeyNav
14708          */
14709         disable: function(){
14710                 if(!this.disabled){
14711                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
14712                 this.el.un("keydown", this.relay);
14713             }else{
14714                 this.el.un("keydown", this.prepareEvent);
14715                 this.el.un("keypress", this.relay);
14716             }
14717                     this.disabled = true;
14718                 }
14719         }
14720 };/*
14721  * Based on:
14722  * Ext JS Library 1.1.1
14723  * Copyright(c) 2006-2007, Ext JS, LLC.
14724  *
14725  * Originally Released Under LGPL - original licence link has changed is not relivant.
14726  *
14727  * Fork - LGPL
14728  * <script type="text/javascript">
14729  */
14730
14731  
14732 /**
14733  * @class Roo.KeyMap
14734  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
14735  * The constructor accepts the same config object as defined by {@link #addBinding}.
14736  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
14737  * combination it will call the function with this signature (if the match is a multi-key
14738  * combination the callback will still be called only once): (String key, Roo.EventObject e)
14739  * A KeyMap can also handle a string representation of keys.<br />
14740  * Usage:
14741  <pre><code>
14742 // map one key by key code
14743 var map = new Roo.KeyMap("my-element", {
14744     key: 13, // or Roo.EventObject.ENTER
14745     fn: myHandler,
14746     scope: myObject
14747 });
14748
14749 // map multiple keys to one action by string
14750 var map = new Roo.KeyMap("my-element", {
14751     key: "a\r\n\t",
14752     fn: myHandler,
14753     scope: myObject
14754 });
14755
14756 // map multiple keys to multiple actions by strings and array of codes
14757 var map = new Roo.KeyMap("my-element", [
14758     {
14759         key: [10,13],
14760         fn: function(){ alert("Return was pressed"); }
14761     }, {
14762         key: "abc",
14763         fn: function(){ alert('a, b or c was pressed'); }
14764     }, {
14765         key: "\t",
14766         ctrl:true,
14767         shift:true,
14768         fn: function(){ alert('Control + shift + tab was pressed.'); }
14769     }
14770 ]);
14771 </code></pre>
14772  * <b>Note: A KeyMap starts enabled</b>
14773  * @constructor
14774  * @param {String/HTMLElement/Roo.Element} el The element to bind to
14775  * @param {Object} config The config (see {@link #addBinding})
14776  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
14777  */
14778 Roo.KeyMap = function(el, config, eventName){
14779     this.el  = Roo.get(el);
14780     this.eventName = eventName || "keydown";
14781     this.bindings = [];
14782     if(config){
14783         this.addBinding(config);
14784     }
14785     this.enable();
14786 };
14787
14788 Roo.KeyMap.prototype = {
14789     /**
14790      * True to stop the event from bubbling and prevent the default browser action if the
14791      * key was handled by the KeyMap (defaults to false)
14792      * @type Boolean
14793      */
14794     stopEvent : false,
14795
14796     /**
14797      * Add a new binding to this KeyMap. The following config object properties are supported:
14798      * <pre>
14799 Property    Type             Description
14800 ----------  ---------------  ----------------------------------------------------------------------
14801 key         String/Array     A single keycode or an array of keycodes to handle
14802 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
14803 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
14804 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
14805 fn          Function         The function to call when KeyMap finds the expected key combination
14806 scope       Object           The scope of the callback function
14807 </pre>
14808      *
14809      * Usage:
14810      * <pre><code>
14811 // Create a KeyMap
14812 var map = new Roo.KeyMap(document, {
14813     key: Roo.EventObject.ENTER,
14814     fn: handleKey,
14815     scope: this
14816 });
14817
14818 //Add a new binding to the existing KeyMap later
14819 map.addBinding({
14820     key: 'abc',
14821     shift: true,
14822     fn: handleKey,
14823     scope: this
14824 });
14825 </code></pre>
14826      * @param {Object/Array} config A single KeyMap config or an array of configs
14827      */
14828         addBinding : function(config){
14829         if(config instanceof Array){
14830             for(var i = 0, len = config.length; i < len; i++){
14831                 this.addBinding(config[i]);
14832             }
14833             return;
14834         }
14835         var keyCode = config.key,
14836             shift = config.shift, 
14837             ctrl = config.ctrl, 
14838             alt = config.alt,
14839             fn = config.fn,
14840             scope = config.scope;
14841         if(typeof keyCode == "string"){
14842             var ks = [];
14843             var keyString = keyCode.toUpperCase();
14844             for(var j = 0, len = keyString.length; j < len; j++){
14845                 ks.push(keyString.charCodeAt(j));
14846             }
14847             keyCode = ks;
14848         }
14849         var keyArray = keyCode instanceof Array;
14850         var handler = function(e){
14851             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14852                 var k = e.getKey();
14853                 if(keyArray){
14854                     for(var i = 0, len = keyCode.length; i < len; i++){
14855                         if(keyCode[i] == k){
14856                           if(this.stopEvent){
14857                               e.stopEvent();
14858                           }
14859                           fn.call(scope || window, k, e);
14860                           return;
14861                         }
14862                     }
14863                 }else{
14864                     if(k == keyCode){
14865                         if(this.stopEvent){
14866                            e.stopEvent();
14867                         }
14868                         fn.call(scope || window, k, e);
14869                     }
14870                 }
14871             }
14872         };
14873         this.bindings.push(handler);  
14874         },
14875
14876     /**
14877      * Shorthand for adding a single key listener
14878      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
14879      * following options:
14880      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14881      * @param {Function} fn The function to call
14882      * @param {Object} scope (optional) The scope of the function
14883      */
14884     on : function(key, fn, scope){
14885         var keyCode, shift, ctrl, alt;
14886         if(typeof key == "object" && !(key instanceof Array)){
14887             keyCode = key.key;
14888             shift = key.shift;
14889             ctrl = key.ctrl;
14890             alt = key.alt;
14891         }else{
14892             keyCode = key;
14893         }
14894         this.addBinding({
14895             key: keyCode,
14896             shift: shift,
14897             ctrl: ctrl,
14898             alt: alt,
14899             fn: fn,
14900             scope: scope
14901         })
14902     },
14903
14904     // private
14905     handleKeyDown : function(e){
14906             if(this.enabled){ //just in case
14907             var b = this.bindings;
14908             for(var i = 0, len = b.length; i < len; i++){
14909                 b[i].call(this, e);
14910             }
14911             }
14912         },
14913         
14914         /**
14915          * Returns true if this KeyMap is enabled
14916          * @return {Boolean} 
14917          */
14918         isEnabled : function(){
14919             return this.enabled;  
14920         },
14921         
14922         /**
14923          * Enables this KeyMap
14924          */
14925         enable: function(){
14926                 if(!this.enabled){
14927                     this.el.on(this.eventName, this.handleKeyDown, this);
14928                     this.enabled = true;
14929                 }
14930         },
14931
14932         /**
14933          * Disable this KeyMap
14934          */
14935         disable: function(){
14936                 if(this.enabled){
14937                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
14938                     this.enabled = false;
14939                 }
14940         }
14941 };/*
14942  * Based on:
14943  * Ext JS Library 1.1.1
14944  * Copyright(c) 2006-2007, Ext JS, LLC.
14945  *
14946  * Originally Released Under LGPL - original licence link has changed is not relivant.
14947  *
14948  * Fork - LGPL
14949  * <script type="text/javascript">
14950  */
14951
14952  
14953 /**
14954  * @class Roo.util.TextMetrics
14955  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
14956  * wide, in pixels, a given block of text will be.
14957  * @singleton
14958  */
14959 Roo.util.TextMetrics = function(){
14960     var shared;
14961     return {
14962         /**
14963          * Measures the size of the specified text
14964          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
14965          * that can affect the size of the rendered text
14966          * @param {String} text The text to measure
14967          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14968          * in order to accurately measure the text height
14969          * @return {Object} An object containing the text's size {width: (width), height: (height)}
14970          */
14971         measure : function(el, text, fixedWidth){
14972             if(!shared){
14973                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
14974             }
14975             shared.bind(el);
14976             shared.setFixedWidth(fixedWidth || 'auto');
14977             return shared.getSize(text);
14978         },
14979
14980         /**
14981          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
14982          * the overhead of multiple calls to initialize the style properties on each measurement.
14983          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
14984          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
14985          * in order to accurately measure the text height
14986          * @return {Roo.util.TextMetrics.Instance} instance The new instance
14987          */
14988         createInstance : function(el, fixedWidth){
14989             return Roo.util.TextMetrics.Instance(el, fixedWidth);
14990         }
14991     };
14992 }();
14993
14994  
14995
14996 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
14997     var ml = new Roo.Element(document.createElement('div'));
14998     document.body.appendChild(ml.dom);
14999     ml.position('absolute');
15000     ml.setLeftTop(-1000, -1000);
15001     ml.hide();
15002
15003     if(fixedWidth){
15004         ml.setWidth(fixedWidth);
15005     }
15006      
15007     var instance = {
15008         /**
15009          * Returns the size of the specified text based on the internal element's style and width properties
15010          * @memberOf Roo.util.TextMetrics.Instance#
15011          * @param {String} text The text to measure
15012          * @return {Object} An object containing the text's size {width: (width), height: (height)}
15013          */
15014         getSize : function(text){
15015             ml.update(text);
15016             var s = ml.getSize();
15017             ml.update('');
15018             return s;
15019         },
15020
15021         /**
15022          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
15023          * that can affect the size of the rendered text
15024          * @memberOf Roo.util.TextMetrics.Instance#
15025          * @param {String/HTMLElement} el The element, dom node or id
15026          */
15027         bind : function(el){
15028             ml.setStyle(
15029                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
15030             );
15031         },
15032
15033         /**
15034          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
15035          * to set a fixed width in order to accurately measure the text height.
15036          * @memberOf Roo.util.TextMetrics.Instance#
15037          * @param {Number} width The width to set on the element
15038          */
15039         setFixedWidth : function(width){
15040             ml.setWidth(width);
15041         },
15042
15043         /**
15044          * Returns the measured width of the specified text
15045          * @memberOf Roo.util.TextMetrics.Instance#
15046          * @param {String} text The text to measure
15047          * @return {Number} width The width in pixels
15048          */
15049         getWidth : function(text){
15050             ml.dom.style.width = 'auto';
15051             return this.getSize(text).width;
15052         },
15053
15054         /**
15055          * Returns the measured height of the specified text.  For multiline text, be sure to call
15056          * {@link #setFixedWidth} if necessary.
15057          * @memberOf Roo.util.TextMetrics.Instance#
15058          * @param {String} text The text to measure
15059          * @return {Number} height The height in pixels
15060          */
15061         getHeight : function(text){
15062             return this.getSize(text).height;
15063         }
15064     };
15065
15066     instance.bind(bindTo);
15067
15068     return instance;
15069 };
15070
15071 // backwards compat
15072 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
15073  * Based on:
15074  * Ext JS Library 1.1.1
15075  * Copyright(c) 2006-2007, Ext JS, LLC.
15076  *
15077  * Originally Released Under LGPL - original licence link has changed is not relivant.
15078  *
15079  * Fork - LGPL
15080  * <script type="text/javascript">
15081  */
15082
15083 /**
15084  * @class Roo.state.Provider
15085  * Abstract base class for state provider implementations. This class provides methods
15086  * for encoding and decoding <b>typed</b> variables including dates and defines the 
15087  * Provider interface.
15088  */
15089 Roo.state.Provider = function(){
15090     /**
15091      * @event statechange
15092      * Fires when a state change occurs.
15093      * @param {Provider} this This state provider
15094      * @param {String} key The state key which was changed
15095      * @param {String} value The encoded value for the state
15096      */
15097     this.addEvents({
15098         "statechange": true
15099     });
15100     this.state = {};
15101     Roo.state.Provider.superclass.constructor.call(this);
15102 };
15103 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
15104     /**
15105      * Returns the current value for a key
15106      * @param {String} name The key name
15107      * @param {Mixed} defaultValue A default value to return if the key's value is not found
15108      * @return {Mixed} The state data
15109      */
15110     get : function(name, defaultValue){
15111         return typeof this.state[name] == "undefined" ?
15112             defaultValue : this.state[name];
15113     },
15114     
15115     /**
15116      * Clears a value from the state
15117      * @param {String} name The key name
15118      */
15119     clear : function(name){
15120         delete this.state[name];
15121         this.fireEvent("statechange", this, name, null);
15122     },
15123     
15124     /**
15125      * Sets the value for a key
15126      * @param {String} name The key name
15127      * @param {Mixed} value The value to set
15128      */
15129     set : function(name, value){
15130         this.state[name] = value;
15131         this.fireEvent("statechange", this, name, value);
15132     },
15133     
15134     /**
15135      * Decodes a string previously encoded with {@link #encodeValue}.
15136      * @param {String} value The value to decode
15137      * @return {Mixed} The decoded value
15138      */
15139     decodeValue : function(cookie){
15140         var re = /^(a|n|d|b|s|o)\:(.*)$/;
15141         var matches = re.exec(unescape(cookie));
15142         if(!matches || !matches[1]) {
15143             return; // non state cookie
15144         }
15145         var type = matches[1];
15146         var v = matches[2];
15147         switch(type){
15148             case "n":
15149                 return parseFloat(v);
15150             case "d":
15151                 return new Date(Date.parse(v));
15152             case "b":
15153                 return (v == "1");
15154             case "a":
15155                 var all = [];
15156                 var values = v.split("^");
15157                 for(var i = 0, len = values.length; i < len; i++){
15158                     all.push(this.decodeValue(values[i]));
15159                 }
15160                 return all;
15161            case "o":
15162                 var all = {};
15163                 var values = v.split("^");
15164                 for(var i = 0, len = values.length; i < len; i++){
15165                     var kv = values[i].split("=");
15166                     all[kv[0]] = this.decodeValue(kv[1]);
15167                 }
15168                 return all;
15169            default:
15170                 return v;
15171         }
15172     },
15173     
15174     /**
15175      * Encodes a value including type information.  Decode with {@link #decodeValue}.
15176      * @param {Mixed} value The value to encode
15177      * @return {String} The encoded value
15178      */
15179     encodeValue : function(v){
15180         var enc;
15181         if(typeof v == "number"){
15182             enc = "n:" + v;
15183         }else if(typeof v == "boolean"){
15184             enc = "b:" + (v ? "1" : "0");
15185         }else if(v instanceof Date){
15186             enc = "d:" + v.toGMTString();
15187         }else if(v instanceof Array){
15188             var flat = "";
15189             for(var i = 0, len = v.length; i < len; i++){
15190                 flat += this.encodeValue(v[i]);
15191                 if(i != len-1) {
15192                     flat += "^";
15193                 }
15194             }
15195             enc = "a:" + flat;
15196         }else if(typeof v == "object"){
15197             var flat = "";
15198             for(var key in v){
15199                 if(typeof v[key] != "function"){
15200                     flat += key + "=" + this.encodeValue(v[key]) + "^";
15201                 }
15202             }
15203             enc = "o:" + flat.substring(0, flat.length-1);
15204         }else{
15205             enc = "s:" + v;
15206         }
15207         return escape(enc);        
15208     }
15209 });
15210
15211 /*
15212  * Based on:
15213  * Ext JS Library 1.1.1
15214  * Copyright(c) 2006-2007, Ext JS, LLC.
15215  *
15216  * Originally Released Under LGPL - original licence link has changed is not relivant.
15217  *
15218  * Fork - LGPL
15219  * <script type="text/javascript">
15220  */
15221 /**
15222  * @class Roo.state.Manager
15223  * This is the global state manager. By default all components that are "state aware" check this class
15224  * for state information if you don't pass them a custom state provider. In order for this class
15225  * to be useful, it must be initialized with a provider when your application initializes.
15226  <pre><code>
15227 // in your initialization function
15228 init : function(){
15229    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
15230    ...
15231    // supposed you have a {@link Roo.BorderLayout}
15232    var layout = new Roo.BorderLayout(...);
15233    layout.restoreState();
15234    // or a {Roo.BasicDialog}
15235    var dialog = new Roo.BasicDialog(...);
15236    dialog.restoreState();
15237  </code></pre>
15238  * @singleton
15239  */
15240 Roo.state.Manager = function(){
15241     var provider = new Roo.state.Provider();
15242     
15243     return {
15244         /**
15245          * Configures the default state provider for your application
15246          * @param {Provider} stateProvider The state provider to set
15247          */
15248         setProvider : function(stateProvider){
15249             provider = stateProvider;
15250         },
15251         
15252         /**
15253          * Returns the current value for a key
15254          * @param {String} name The key name
15255          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
15256          * @return {Mixed} The state data
15257          */
15258         get : function(key, defaultValue){
15259             return provider.get(key, defaultValue);
15260         },
15261         
15262         /**
15263          * Sets the value for a key
15264          * @param {String} name The key name
15265          * @param {Mixed} value The state data
15266          */
15267          set : function(key, value){
15268             provider.set(key, value);
15269         },
15270         
15271         /**
15272          * Clears a value from the state
15273          * @param {String} name The key name
15274          */
15275         clear : function(key){
15276             provider.clear(key);
15277         },
15278         
15279         /**
15280          * Gets the currently configured state provider
15281          * @return {Provider} The state provider
15282          */
15283         getProvider : function(){
15284             return provider;
15285         }
15286     };
15287 }();
15288 /*
15289  * Based on:
15290  * Ext JS Library 1.1.1
15291  * Copyright(c) 2006-2007, Ext JS, LLC.
15292  *
15293  * Originally Released Under LGPL - original licence link has changed is not relivant.
15294  *
15295  * Fork - LGPL
15296  * <script type="text/javascript">
15297  */
15298 /**
15299  * @class Roo.state.CookieProvider
15300  * @extends Roo.state.Provider
15301  * The default Provider implementation which saves state via cookies.
15302  * <br />Usage:
15303  <pre><code>
15304    var cp = new Roo.state.CookieProvider({
15305        path: "/cgi-bin/",
15306        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
15307        domain: "roojs.com"
15308    })
15309    Roo.state.Manager.setProvider(cp);
15310  </code></pre>
15311  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
15312  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
15313  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
15314  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
15315  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
15316  * domain the page is running on including the 'www' like 'www.roojs.com')
15317  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
15318  * @constructor
15319  * Create a new CookieProvider
15320  * @param {Object} config The configuration object
15321  */
15322 Roo.state.CookieProvider = function(config){
15323     Roo.state.CookieProvider.superclass.constructor.call(this);
15324     this.path = "/";
15325     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
15326     this.domain = null;
15327     this.secure = false;
15328     Roo.apply(this, config);
15329     this.state = this.readCookies();
15330 };
15331
15332 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
15333     // private
15334     set : function(name, value){
15335         if(typeof value == "undefined" || value === null){
15336             this.clear(name);
15337             return;
15338         }
15339         this.setCookie(name, value);
15340         Roo.state.CookieProvider.superclass.set.call(this, name, value);
15341     },
15342
15343     // private
15344     clear : function(name){
15345         this.clearCookie(name);
15346         Roo.state.CookieProvider.superclass.clear.call(this, name);
15347     },
15348
15349     // private
15350     readCookies : function(){
15351         var cookies = {};
15352         var c = document.cookie + ";";
15353         var re = /\s?(.*?)=(.*?);/g;
15354         var matches;
15355         while((matches = re.exec(c)) != null){
15356             var name = matches[1];
15357             var value = matches[2];
15358             if(name && name.substring(0,3) == "ys-"){
15359                 cookies[name.substr(3)] = this.decodeValue(value);
15360             }
15361         }
15362         return cookies;
15363     },
15364
15365     // private
15366     setCookie : function(name, value){
15367         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
15368            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
15369            ((this.path == null) ? "" : ("; path=" + this.path)) +
15370            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15371            ((this.secure == true) ? "; secure" : "");
15372     },
15373
15374     // private
15375     clearCookie : function(name){
15376         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
15377            ((this.path == null) ? "" : ("; path=" + this.path)) +
15378            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
15379            ((this.secure == true) ? "; secure" : "");
15380     }
15381 });/*
15382  * Based on:
15383  * Ext JS Library 1.1.1
15384  * Copyright(c) 2006-2007, Ext JS, LLC.
15385  *
15386  * Originally Released Under LGPL - original licence link has changed is not relivant.
15387  *
15388  * Fork - LGPL
15389  * <script type="text/javascript">
15390  */
15391  
15392
15393 /**
15394  * @class Roo.ComponentMgr
15395  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
15396  * @singleton
15397  */
15398 Roo.ComponentMgr = function(){
15399     var all = new Roo.util.MixedCollection();
15400
15401     return {
15402         /**
15403          * Registers a component.
15404          * @param {Roo.Component} c The component
15405          */
15406         register : function(c){
15407             all.add(c);
15408         },
15409
15410         /**
15411          * Unregisters a component.
15412          * @param {Roo.Component} c The component
15413          */
15414         unregister : function(c){
15415             all.remove(c);
15416         },
15417
15418         /**
15419          * Returns a component by id
15420          * @param {String} id The component id
15421          */
15422         get : function(id){
15423             return all.get(id);
15424         },
15425
15426         /**
15427          * Registers a function that will be called when a specified component is added to ComponentMgr
15428          * @param {String} id The component id
15429          * @param {Funtction} fn The callback function
15430          * @param {Object} scope The scope of the callback
15431          */
15432         onAvailable : function(id, fn, scope){
15433             all.on("add", function(index, o){
15434                 if(o.id == id){
15435                     fn.call(scope || o, o);
15436                     all.un("add", fn, scope);
15437                 }
15438             });
15439         }
15440     };
15441 }();/*
15442  * Based on:
15443  * Ext JS Library 1.1.1
15444  * Copyright(c) 2006-2007, Ext JS, LLC.
15445  *
15446  * Originally Released Under LGPL - original licence link has changed is not relivant.
15447  *
15448  * Fork - LGPL
15449  * <script type="text/javascript">
15450  */
15451  
15452 /**
15453  * @class Roo.Component
15454  * @extends Roo.util.Observable
15455  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
15456  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
15457  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
15458  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
15459  * All visual components (widgets) that require rendering into a layout should subclass Component.
15460  * @constructor
15461  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
15462  * 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
15463  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
15464  */
15465 Roo.Component = function(config){
15466     config = config || {};
15467     if(config.tagName || config.dom || typeof config == "string"){ // element object
15468         config = {el: config, id: config.id || config};
15469     }
15470     this.initialConfig = config;
15471
15472     Roo.apply(this, config);
15473     this.addEvents({
15474         /**
15475          * @event disable
15476          * Fires after the component is disabled.
15477              * @param {Roo.Component} this
15478              */
15479         disable : true,
15480         /**
15481          * @event enable
15482          * Fires after the component is enabled.
15483              * @param {Roo.Component} this
15484              */
15485         enable : true,
15486         /**
15487          * @event beforeshow
15488          * Fires before the component is shown.  Return false to stop the show.
15489              * @param {Roo.Component} this
15490              */
15491         beforeshow : true,
15492         /**
15493          * @event show
15494          * Fires after the component is shown.
15495              * @param {Roo.Component} this
15496              */
15497         show : true,
15498         /**
15499          * @event beforehide
15500          * Fires before the component is hidden. Return false to stop the hide.
15501              * @param {Roo.Component} this
15502              */
15503         beforehide : true,
15504         /**
15505          * @event hide
15506          * Fires after the component is hidden.
15507              * @param {Roo.Component} this
15508              */
15509         hide : true,
15510         /**
15511          * @event beforerender
15512          * Fires before the component is rendered. Return false to stop the render.
15513              * @param {Roo.Component} this
15514              */
15515         beforerender : true,
15516         /**
15517          * @event render
15518          * Fires after the component is rendered.
15519              * @param {Roo.Component} this
15520              */
15521         render : true,
15522         /**
15523          * @event beforedestroy
15524          * Fires before the component is destroyed. Return false to stop the destroy.
15525              * @param {Roo.Component} this
15526              */
15527         beforedestroy : true,
15528         /**
15529          * @event destroy
15530          * Fires after the component is destroyed.
15531              * @param {Roo.Component} this
15532              */
15533         destroy : true
15534     });
15535     if(!this.id){
15536         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
15537     }
15538     Roo.ComponentMgr.register(this);
15539     Roo.Component.superclass.constructor.call(this);
15540     this.initComponent();
15541     if(this.renderTo){ // not supported by all components yet. use at your own risk!
15542         this.render(this.renderTo);
15543         delete this.renderTo;
15544     }
15545 };
15546
15547 /** @private */
15548 Roo.Component.AUTO_ID = 1000;
15549
15550 Roo.extend(Roo.Component, Roo.util.Observable, {
15551     /**
15552      * @scope Roo.Component.prototype
15553      * @type {Boolean}
15554      * true if this component is hidden. Read-only.
15555      */
15556     hidden : false,
15557     /**
15558      * @type {Boolean}
15559      * true if this component is disabled. Read-only.
15560      */
15561     disabled : false,
15562     /**
15563      * @type {Boolean}
15564      * true if this component has been rendered. Read-only.
15565      */
15566     rendered : false,
15567     
15568     /** @cfg {String} disableClass
15569      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
15570      */
15571     disabledClass : "x-item-disabled",
15572         /** @cfg {Boolean} allowDomMove
15573          * Whether the component can move the Dom node when rendering (defaults to true).
15574          */
15575     allowDomMove : true,
15576     /** @cfg {String} hideMode (display|visibility)
15577      * How this component should hidden. Supported values are
15578      * "visibility" (css visibility), "offsets" (negative offset position) and
15579      * "display" (css display) - defaults to "display".
15580      */
15581     hideMode: 'display',
15582
15583     /** @private */
15584     ctype : "Roo.Component",
15585
15586     /**
15587      * @cfg {String} actionMode 
15588      * which property holds the element that used for  hide() / show() / disable() / enable()
15589      * default is 'el' for forms you probably want to set this to fieldEl 
15590      */
15591     actionMode : "el",
15592
15593     /** @private */
15594     getActionEl : function(){
15595         return this[this.actionMode];
15596     },
15597
15598     initComponent : Roo.emptyFn,
15599     /**
15600      * If this is a lazy rendering component, render it to its container element.
15601      * @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.
15602      */
15603     render : function(container, position){
15604         
15605         if(this.rendered){
15606             return this;
15607         }
15608         
15609         if(this.fireEvent("beforerender", this) === false){
15610             return false;
15611         }
15612         
15613         if(!container && this.el){
15614             this.el = Roo.get(this.el);
15615             container = this.el.dom.parentNode;
15616             this.allowDomMove = false;
15617         }
15618         this.container = Roo.get(container);
15619         this.rendered = true;
15620         if(position !== undefined){
15621             if(typeof position == 'number'){
15622                 position = this.container.dom.childNodes[position];
15623             }else{
15624                 position = Roo.getDom(position);
15625             }
15626         }
15627         this.onRender(this.container, position || null);
15628         if(this.cls){
15629             this.el.addClass(this.cls);
15630             delete this.cls;
15631         }
15632         if(this.style){
15633             this.el.applyStyles(this.style);
15634             delete this.style;
15635         }
15636         this.fireEvent("render", this);
15637         this.afterRender(this.container);
15638         if(this.hidden){
15639             this.hide();
15640         }
15641         if(this.disabled){
15642             this.disable();
15643         }
15644
15645         return this;
15646         
15647     },
15648
15649     /** @private */
15650     // default function is not really useful
15651     onRender : function(ct, position){
15652         if(this.el){
15653             this.el = Roo.get(this.el);
15654             if(this.allowDomMove !== false){
15655                 ct.dom.insertBefore(this.el.dom, position);
15656             }
15657         }
15658     },
15659
15660     /** @private */
15661     getAutoCreate : function(){
15662         var cfg = typeof this.autoCreate == "object" ?
15663                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
15664         if(this.id && !cfg.id){
15665             cfg.id = this.id;
15666         }
15667         return cfg;
15668     },
15669
15670     /** @private */
15671     afterRender : Roo.emptyFn,
15672
15673     /**
15674      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
15675      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
15676      */
15677     destroy : function(){
15678         if(this.fireEvent("beforedestroy", this) !== false){
15679             this.purgeListeners();
15680             this.beforeDestroy();
15681             if(this.rendered){
15682                 this.el.removeAllListeners();
15683                 this.el.remove();
15684                 if(this.actionMode == "container"){
15685                     this.container.remove();
15686                 }
15687             }
15688             this.onDestroy();
15689             Roo.ComponentMgr.unregister(this);
15690             this.fireEvent("destroy", this);
15691         }
15692     },
15693
15694         /** @private */
15695     beforeDestroy : function(){
15696
15697     },
15698
15699         /** @private */
15700         onDestroy : function(){
15701
15702     },
15703
15704     /**
15705      * Returns the underlying {@link Roo.Element}.
15706      * @return {Roo.Element} The element
15707      */
15708     getEl : function(){
15709         return this.el;
15710     },
15711
15712     /**
15713      * Returns the id of this component.
15714      * @return {String}
15715      */
15716     getId : function(){
15717         return this.id;
15718     },
15719
15720     /**
15721      * Try to focus this component.
15722      * @param {Boolean} selectText True to also select the text in this component (if applicable)
15723      * @return {Roo.Component} this
15724      */
15725     focus : function(selectText){
15726         if(this.rendered){
15727             this.el.focus();
15728             if(selectText === true){
15729                 this.el.dom.select();
15730             }
15731         }
15732         return this;
15733     },
15734
15735     /** @private */
15736     blur : function(){
15737         if(this.rendered){
15738             this.el.blur();
15739         }
15740         return this;
15741     },
15742
15743     /**
15744      * Disable this component.
15745      * @return {Roo.Component} this
15746      */
15747     disable : function(){
15748         if(this.rendered){
15749             this.onDisable();
15750         }
15751         this.disabled = true;
15752         this.fireEvent("disable", this);
15753         return this;
15754     },
15755
15756         // private
15757     onDisable : function(){
15758         this.getActionEl().addClass(this.disabledClass);
15759         this.el.dom.disabled = true;
15760     },
15761
15762     /**
15763      * Enable this component.
15764      * @return {Roo.Component} this
15765      */
15766     enable : function(){
15767         if(this.rendered){
15768             this.onEnable();
15769         }
15770         this.disabled = false;
15771         this.fireEvent("enable", this);
15772         return this;
15773     },
15774
15775         // private
15776     onEnable : function(){
15777         this.getActionEl().removeClass(this.disabledClass);
15778         this.el.dom.disabled = false;
15779     },
15780
15781     /**
15782      * Convenience function for setting disabled/enabled by boolean.
15783      * @param {Boolean} disabled
15784      */
15785     setDisabled : function(disabled){
15786         this[disabled ? "disable" : "enable"]();
15787     },
15788
15789     /**
15790      * Show this component.
15791      * @return {Roo.Component} this
15792      */
15793     show: function(){
15794         if(this.fireEvent("beforeshow", this) !== false){
15795             this.hidden = false;
15796             if(this.rendered){
15797                 this.onShow();
15798             }
15799             this.fireEvent("show", this);
15800         }
15801         return this;
15802     },
15803
15804     // private
15805     onShow : function(){
15806         var ae = this.getActionEl();
15807         if(this.hideMode == 'visibility'){
15808             ae.dom.style.visibility = "visible";
15809         }else if(this.hideMode == 'offsets'){
15810             ae.removeClass('x-hidden');
15811         }else{
15812             ae.dom.style.display = "";
15813         }
15814     },
15815
15816     /**
15817      * Hide this component.
15818      * @return {Roo.Component} this
15819      */
15820     hide: function(){
15821         if(this.fireEvent("beforehide", this) !== false){
15822             this.hidden = true;
15823             if(this.rendered){
15824                 this.onHide();
15825             }
15826             this.fireEvent("hide", this);
15827         }
15828         return this;
15829     },
15830
15831     // private
15832     onHide : function(){
15833         var ae = this.getActionEl();
15834         if(this.hideMode == 'visibility'){
15835             ae.dom.style.visibility = "hidden";
15836         }else if(this.hideMode == 'offsets'){
15837             ae.addClass('x-hidden');
15838         }else{
15839             ae.dom.style.display = "none";
15840         }
15841     },
15842
15843     /**
15844      * Convenience function to hide or show this component by boolean.
15845      * @param {Boolean} visible True to show, false to hide
15846      * @return {Roo.Component} this
15847      */
15848     setVisible: function(visible){
15849         if(visible) {
15850             this.show();
15851         }else{
15852             this.hide();
15853         }
15854         return this;
15855     },
15856
15857     /**
15858      * Returns true if this component is visible.
15859      */
15860     isVisible : function(){
15861         return this.getActionEl().isVisible();
15862     },
15863
15864     cloneConfig : function(overrides){
15865         overrides = overrides || {};
15866         var id = overrides.id || Roo.id();
15867         var cfg = Roo.applyIf(overrides, this.initialConfig);
15868         cfg.id = id; // prevent dup id
15869         return new this.constructor(cfg);
15870     }
15871 });/*
15872  * Based on:
15873  * Ext JS Library 1.1.1
15874  * Copyright(c) 2006-2007, Ext JS, LLC.
15875  *
15876  * Originally Released Under LGPL - original licence link has changed is not relivant.
15877  *
15878  * Fork - LGPL
15879  * <script type="text/javascript">
15880  */
15881
15882 /**
15883  * @class Roo.BoxComponent
15884  * @extends Roo.Component
15885  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
15886  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
15887  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
15888  * layout containers.
15889  * @constructor
15890  * @param {Roo.Element/String/Object} config The configuration options.
15891  */
15892 Roo.BoxComponent = function(config){
15893     Roo.Component.call(this, config);
15894     this.addEvents({
15895         /**
15896          * @event resize
15897          * Fires after the component is resized.
15898              * @param {Roo.Component} this
15899              * @param {Number} adjWidth The box-adjusted width that was set
15900              * @param {Number} adjHeight The box-adjusted height that was set
15901              * @param {Number} rawWidth The width that was originally specified
15902              * @param {Number} rawHeight The height that was originally specified
15903              */
15904         resize : true,
15905         /**
15906          * @event move
15907          * Fires after the component is moved.
15908              * @param {Roo.Component} this
15909              * @param {Number} x The new x position
15910              * @param {Number} y The new y position
15911              */
15912         move : true
15913     });
15914 };
15915
15916 Roo.extend(Roo.BoxComponent, Roo.Component, {
15917     // private, set in afterRender to signify that the component has been rendered
15918     boxReady : false,
15919     // private, used to defer height settings to subclasses
15920     deferHeight: false,
15921     /** @cfg {Number} width
15922      * width (optional) size of component
15923      */
15924      /** @cfg {Number} height
15925      * height (optional) size of component
15926      */
15927      
15928     /**
15929      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
15930      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
15931      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
15932      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
15933      * @return {Roo.BoxComponent} this
15934      */
15935     setSize : function(w, h){
15936         // support for standard size objects
15937         if(typeof w == 'object'){
15938             h = w.height;
15939             w = w.width;
15940         }
15941         // not rendered
15942         if(!this.boxReady){
15943             this.width = w;
15944             this.height = h;
15945             return this;
15946         }
15947
15948         // prevent recalcs when not needed
15949         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
15950             return this;
15951         }
15952         this.lastSize = {width: w, height: h};
15953
15954         var adj = this.adjustSize(w, h);
15955         var aw = adj.width, ah = adj.height;
15956         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
15957             var rz = this.getResizeEl();
15958             if(!this.deferHeight && aw !== undefined && ah !== undefined){
15959                 rz.setSize(aw, ah);
15960             }else if(!this.deferHeight && ah !== undefined){
15961                 rz.setHeight(ah);
15962             }else if(aw !== undefined){
15963                 rz.setWidth(aw);
15964             }
15965             this.onResize(aw, ah, w, h);
15966             this.fireEvent('resize', this, aw, ah, w, h);
15967         }
15968         return this;
15969     },
15970
15971     /**
15972      * Gets the current size of the component's underlying element.
15973      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
15974      */
15975     getSize : function(){
15976         return this.el.getSize();
15977     },
15978
15979     /**
15980      * Gets the current XY position of the component's underlying element.
15981      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15982      * @return {Array} The XY position of the element (e.g., [100, 200])
15983      */
15984     getPosition : function(local){
15985         if(local === true){
15986             return [this.el.getLeft(true), this.el.getTop(true)];
15987         }
15988         return this.xy || this.el.getXY();
15989     },
15990
15991     /**
15992      * Gets the current box measurements of the component's underlying element.
15993      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
15994      * @returns {Object} box An object in the format {x, y, width, height}
15995      */
15996     getBox : function(local){
15997         var s = this.el.getSize();
15998         if(local){
15999             s.x = this.el.getLeft(true);
16000             s.y = this.el.getTop(true);
16001         }else{
16002             var xy = this.xy || this.el.getXY();
16003             s.x = xy[0];
16004             s.y = xy[1];
16005         }
16006         return s;
16007     },
16008
16009     /**
16010      * Sets the current box measurements of the component's underlying element.
16011      * @param {Object} box An object in the format {x, y, width, height}
16012      * @returns {Roo.BoxComponent} this
16013      */
16014     updateBox : function(box){
16015         this.setSize(box.width, box.height);
16016         this.setPagePosition(box.x, box.y);
16017         return this;
16018     },
16019
16020     // protected
16021     getResizeEl : function(){
16022         return this.resizeEl || this.el;
16023     },
16024
16025     // protected
16026     getPositionEl : function(){
16027         return this.positionEl || this.el;
16028     },
16029
16030     /**
16031      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
16032      * This method fires the move event.
16033      * @param {Number} left The new left
16034      * @param {Number} top The new top
16035      * @returns {Roo.BoxComponent} this
16036      */
16037     setPosition : function(x, y){
16038         this.x = x;
16039         this.y = y;
16040         if(!this.boxReady){
16041             return this;
16042         }
16043         var adj = this.adjustPosition(x, y);
16044         var ax = adj.x, ay = adj.y;
16045
16046         var el = this.getPositionEl();
16047         if(ax !== undefined || ay !== undefined){
16048             if(ax !== undefined && ay !== undefined){
16049                 el.setLeftTop(ax, ay);
16050             }else if(ax !== undefined){
16051                 el.setLeft(ax);
16052             }else if(ay !== undefined){
16053                 el.setTop(ay);
16054             }
16055             this.onPosition(ax, ay);
16056             this.fireEvent('move', this, ax, ay);
16057         }
16058         return this;
16059     },
16060
16061     /**
16062      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
16063      * This method fires the move event.
16064      * @param {Number} x The new x position
16065      * @param {Number} y The new y position
16066      * @returns {Roo.BoxComponent} this
16067      */
16068     setPagePosition : function(x, y){
16069         this.pageX = x;
16070         this.pageY = y;
16071         if(!this.boxReady){
16072             return;
16073         }
16074         if(x === undefined || y === undefined){ // cannot translate undefined points
16075             return;
16076         }
16077         var p = this.el.translatePoints(x, y);
16078         this.setPosition(p.left, p.top);
16079         return this;
16080     },
16081
16082     // private
16083     onRender : function(ct, position){
16084         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
16085         if(this.resizeEl){
16086             this.resizeEl = Roo.get(this.resizeEl);
16087         }
16088         if(this.positionEl){
16089             this.positionEl = Roo.get(this.positionEl);
16090         }
16091     },
16092
16093     // private
16094     afterRender : function(){
16095         Roo.BoxComponent.superclass.afterRender.call(this);
16096         this.boxReady = true;
16097         this.setSize(this.width, this.height);
16098         if(this.x || this.y){
16099             this.setPosition(this.x, this.y);
16100         }
16101         if(this.pageX || this.pageY){
16102             this.setPagePosition(this.pageX, this.pageY);
16103         }
16104     },
16105
16106     /**
16107      * Force the component's size to recalculate based on the underlying element's current height and width.
16108      * @returns {Roo.BoxComponent} this
16109      */
16110     syncSize : function(){
16111         delete this.lastSize;
16112         this.setSize(this.el.getWidth(), this.el.getHeight());
16113         return this;
16114     },
16115
16116     /**
16117      * Called after the component is resized, this method is empty by default but can be implemented by any
16118      * subclass that needs to perform custom logic after a resize occurs.
16119      * @param {Number} adjWidth The box-adjusted width that was set
16120      * @param {Number} adjHeight The box-adjusted height that was set
16121      * @param {Number} rawWidth The width that was originally specified
16122      * @param {Number} rawHeight The height that was originally specified
16123      */
16124     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
16125
16126     },
16127
16128     /**
16129      * Called after the component is moved, this method is empty by default but can be implemented by any
16130      * subclass that needs to perform custom logic after a move occurs.
16131      * @param {Number} x The new x position
16132      * @param {Number} y The new y position
16133      */
16134     onPosition : function(x, y){
16135
16136     },
16137
16138     // private
16139     adjustSize : function(w, h){
16140         if(this.autoWidth){
16141             w = 'auto';
16142         }
16143         if(this.autoHeight){
16144             h = 'auto';
16145         }
16146         return {width : w, height: h};
16147     },
16148
16149     // private
16150     adjustPosition : function(x, y){
16151         return {x : x, y: y};
16152     }
16153 });/*
16154  * Based on:
16155  * Ext JS Library 1.1.1
16156  * Copyright(c) 2006-2007, Ext JS, LLC.
16157  *
16158  * Originally Released Under LGPL - original licence link has changed is not relivant.
16159  *
16160  * Fork - LGPL
16161  * <script type="text/javascript">
16162  */
16163  (function(){ 
16164 /**
16165  * @class Roo.Layer
16166  * @extends Roo.Element
16167  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
16168  * automatic maintaining of shadow/shim positions.
16169  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
16170  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
16171  * you can pass a string with a CSS class name. False turns off the shadow.
16172  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
16173  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
16174  * @cfg {String} cls CSS class to add to the element
16175  * @cfg {Number} zindex Starting z-index (defaults to 11000)
16176  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
16177  * @constructor
16178  * @param {Object} config An object with config options.
16179  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
16180  */
16181
16182 Roo.Layer = function(config, existingEl){
16183     config = config || {};
16184     var dh = Roo.DomHelper;
16185     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
16186     if(existingEl){
16187         this.dom = Roo.getDom(existingEl);
16188     }
16189     if(!this.dom){
16190         var o = config.dh || {tag: "div", cls: "x-layer"};
16191         this.dom = dh.append(pel, o);
16192     }
16193     if(config.cls){
16194         this.addClass(config.cls);
16195     }
16196     this.constrain = config.constrain !== false;
16197     this.visibilityMode = Roo.Element.VISIBILITY;
16198     if(config.id){
16199         this.id = this.dom.id = config.id;
16200     }else{
16201         this.id = Roo.id(this.dom);
16202     }
16203     this.zindex = config.zindex || this.getZIndex();
16204     this.position("absolute", this.zindex);
16205     if(config.shadow){
16206         this.shadowOffset = config.shadowOffset || 4;
16207         this.shadow = new Roo.Shadow({
16208             offset : this.shadowOffset,
16209             mode : config.shadow
16210         });
16211     }else{
16212         this.shadowOffset = 0;
16213     }
16214     this.useShim = config.shim !== false && Roo.useShims;
16215     this.useDisplay = config.useDisplay;
16216     this.hide();
16217 };
16218
16219 var supr = Roo.Element.prototype;
16220
16221 // shims are shared among layer to keep from having 100 iframes
16222 var shims = [];
16223
16224 Roo.extend(Roo.Layer, Roo.Element, {
16225
16226     getZIndex : function(){
16227         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
16228     },
16229
16230     getShim : function(){
16231         if(!this.useShim){
16232             return null;
16233         }
16234         if(this.shim){
16235             return this.shim;
16236         }
16237         var shim = shims.shift();
16238         if(!shim){
16239             shim = this.createShim();
16240             shim.enableDisplayMode('block');
16241             shim.dom.style.display = 'none';
16242             shim.dom.style.visibility = 'visible';
16243         }
16244         var pn = this.dom.parentNode;
16245         if(shim.dom.parentNode != pn){
16246             pn.insertBefore(shim.dom, this.dom);
16247         }
16248         shim.setStyle('z-index', this.getZIndex()-2);
16249         this.shim = shim;
16250         return shim;
16251     },
16252
16253     hideShim : function(){
16254         if(this.shim){
16255             this.shim.setDisplayed(false);
16256             shims.push(this.shim);
16257             delete this.shim;
16258         }
16259     },
16260
16261     disableShadow : function(){
16262         if(this.shadow){
16263             this.shadowDisabled = true;
16264             this.shadow.hide();
16265             this.lastShadowOffset = this.shadowOffset;
16266             this.shadowOffset = 0;
16267         }
16268     },
16269
16270     enableShadow : function(show){
16271         if(this.shadow){
16272             this.shadowDisabled = false;
16273             this.shadowOffset = this.lastShadowOffset;
16274             delete this.lastShadowOffset;
16275             if(show){
16276                 this.sync(true);
16277             }
16278         }
16279     },
16280
16281     // private
16282     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
16283     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
16284     sync : function(doShow){
16285         var sw = this.shadow;
16286         if(!this.updating && this.isVisible() && (sw || this.useShim)){
16287             var sh = this.getShim();
16288
16289             var w = this.getWidth(),
16290                 h = this.getHeight();
16291
16292             var l = this.getLeft(true),
16293                 t = this.getTop(true);
16294
16295             if(sw && !this.shadowDisabled){
16296                 if(doShow && !sw.isVisible()){
16297                     sw.show(this);
16298                 }else{
16299                     sw.realign(l, t, w, h);
16300                 }
16301                 if(sh){
16302                     if(doShow){
16303                        sh.show();
16304                     }
16305                     // fit the shim behind the shadow, so it is shimmed too
16306                     var a = sw.adjusts, s = sh.dom.style;
16307                     s.left = (Math.min(l, l+a.l))+"px";
16308                     s.top = (Math.min(t, t+a.t))+"px";
16309                     s.width = (w+a.w)+"px";
16310                     s.height = (h+a.h)+"px";
16311                 }
16312             }else if(sh){
16313                 if(doShow){
16314                    sh.show();
16315                 }
16316                 sh.setSize(w, h);
16317                 sh.setLeftTop(l, t);
16318             }
16319             
16320         }
16321     },
16322
16323     // private
16324     destroy : function(){
16325         this.hideShim();
16326         if(this.shadow){
16327             this.shadow.hide();
16328         }
16329         this.removeAllListeners();
16330         var pn = this.dom.parentNode;
16331         if(pn){
16332             pn.removeChild(this.dom);
16333         }
16334         Roo.Element.uncache(this.id);
16335     },
16336
16337     remove : function(){
16338         this.destroy();
16339     },
16340
16341     // private
16342     beginUpdate : function(){
16343         this.updating = true;
16344     },
16345
16346     // private
16347     endUpdate : function(){
16348         this.updating = false;
16349         this.sync(true);
16350     },
16351
16352     // private
16353     hideUnders : function(negOffset){
16354         if(this.shadow){
16355             this.shadow.hide();
16356         }
16357         this.hideShim();
16358     },
16359
16360     // private
16361     constrainXY : function(){
16362         if(this.constrain){
16363             var vw = Roo.lib.Dom.getViewWidth(),
16364                 vh = Roo.lib.Dom.getViewHeight();
16365             var s = Roo.get(document).getScroll();
16366
16367             var xy = this.getXY();
16368             var x = xy[0], y = xy[1];   
16369             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
16370             // only move it if it needs it
16371             var moved = false;
16372             // first validate right/bottom
16373             if((x + w) > vw+s.left){
16374                 x = vw - w - this.shadowOffset;
16375                 moved = true;
16376             }
16377             if((y + h) > vh+s.top){
16378                 y = vh - h - this.shadowOffset;
16379                 moved = true;
16380             }
16381             // then make sure top/left isn't negative
16382             if(x < s.left){
16383                 x = s.left;
16384                 moved = true;
16385             }
16386             if(y < s.top){
16387                 y = s.top;
16388                 moved = true;
16389             }
16390             if(moved){
16391                 if(this.avoidY){
16392                     var ay = this.avoidY;
16393                     if(y <= ay && (y+h) >= ay){
16394                         y = ay-h-5;   
16395                     }
16396                 }
16397                 xy = [x, y];
16398                 this.storeXY(xy);
16399                 supr.setXY.call(this, xy);
16400                 this.sync();
16401             }
16402         }
16403     },
16404
16405     isVisible : function(){
16406         return this.visible;    
16407     },
16408
16409     // private
16410     showAction : function(){
16411         this.visible = true; // track visibility to prevent getStyle calls
16412         if(this.useDisplay === true){
16413             this.setDisplayed("");
16414         }else if(this.lastXY){
16415             supr.setXY.call(this, this.lastXY);
16416         }else if(this.lastLT){
16417             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
16418         }
16419     },
16420
16421     // private
16422     hideAction : function(){
16423         this.visible = false;
16424         if(this.useDisplay === true){
16425             this.setDisplayed(false);
16426         }else{
16427             this.setLeftTop(-10000,-10000);
16428         }
16429     },
16430
16431     // overridden Element method
16432     setVisible : function(v, a, d, c, e){
16433         if(v){
16434             this.showAction();
16435         }
16436         if(a && v){
16437             var cb = function(){
16438                 this.sync(true);
16439                 if(c){
16440                     c();
16441                 }
16442             }.createDelegate(this);
16443             supr.setVisible.call(this, true, true, d, cb, e);
16444         }else{
16445             if(!v){
16446                 this.hideUnders(true);
16447             }
16448             var cb = c;
16449             if(a){
16450                 cb = function(){
16451                     this.hideAction();
16452                     if(c){
16453                         c();
16454                     }
16455                 }.createDelegate(this);
16456             }
16457             supr.setVisible.call(this, v, a, d, cb, e);
16458             if(v){
16459                 this.sync(true);
16460             }else if(!a){
16461                 this.hideAction();
16462             }
16463         }
16464     },
16465
16466     storeXY : function(xy){
16467         delete this.lastLT;
16468         this.lastXY = xy;
16469     },
16470
16471     storeLeftTop : function(left, top){
16472         delete this.lastXY;
16473         this.lastLT = [left, top];
16474     },
16475
16476     // private
16477     beforeFx : function(){
16478         this.beforeAction();
16479         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
16480     },
16481
16482     // private
16483     afterFx : function(){
16484         Roo.Layer.superclass.afterFx.apply(this, arguments);
16485         this.sync(this.isVisible());
16486     },
16487
16488     // private
16489     beforeAction : function(){
16490         if(!this.updating && this.shadow){
16491             this.shadow.hide();
16492         }
16493     },
16494
16495     // overridden Element method
16496     setLeft : function(left){
16497         this.storeLeftTop(left, this.getTop(true));
16498         supr.setLeft.apply(this, arguments);
16499         this.sync();
16500     },
16501
16502     setTop : function(top){
16503         this.storeLeftTop(this.getLeft(true), top);
16504         supr.setTop.apply(this, arguments);
16505         this.sync();
16506     },
16507
16508     setLeftTop : function(left, top){
16509         this.storeLeftTop(left, top);
16510         supr.setLeftTop.apply(this, arguments);
16511         this.sync();
16512     },
16513
16514     setXY : function(xy, a, d, c, e){
16515         this.fixDisplay();
16516         this.beforeAction();
16517         this.storeXY(xy);
16518         var cb = this.createCB(c);
16519         supr.setXY.call(this, xy, a, d, cb, e);
16520         if(!a){
16521             cb();
16522         }
16523     },
16524
16525     // private
16526     createCB : function(c){
16527         var el = this;
16528         return function(){
16529             el.constrainXY();
16530             el.sync(true);
16531             if(c){
16532                 c();
16533             }
16534         };
16535     },
16536
16537     // overridden Element method
16538     setX : function(x, a, d, c, e){
16539         this.setXY([x, this.getY()], a, d, c, e);
16540     },
16541
16542     // overridden Element method
16543     setY : function(y, a, d, c, e){
16544         this.setXY([this.getX(), y], a, d, c, e);
16545     },
16546
16547     // overridden Element method
16548     setSize : function(w, h, a, d, c, e){
16549         this.beforeAction();
16550         var cb = this.createCB(c);
16551         supr.setSize.call(this, w, h, a, d, cb, e);
16552         if(!a){
16553             cb();
16554         }
16555     },
16556
16557     // overridden Element method
16558     setWidth : function(w, a, d, c, e){
16559         this.beforeAction();
16560         var cb = this.createCB(c);
16561         supr.setWidth.call(this, w, a, d, cb, e);
16562         if(!a){
16563             cb();
16564         }
16565     },
16566
16567     // overridden Element method
16568     setHeight : function(h, a, d, c, e){
16569         this.beforeAction();
16570         var cb = this.createCB(c);
16571         supr.setHeight.call(this, h, a, d, cb, e);
16572         if(!a){
16573             cb();
16574         }
16575     },
16576
16577     // overridden Element method
16578     setBounds : function(x, y, w, h, a, d, c, e){
16579         this.beforeAction();
16580         var cb = this.createCB(c);
16581         if(!a){
16582             this.storeXY([x, y]);
16583             supr.setXY.call(this, [x, y]);
16584             supr.setSize.call(this, w, h, a, d, cb, e);
16585             cb();
16586         }else{
16587             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
16588         }
16589         return this;
16590     },
16591     
16592     /**
16593      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
16594      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
16595      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
16596      * @param {Number} zindex The new z-index to set
16597      * @return {this} The Layer
16598      */
16599     setZIndex : function(zindex){
16600         this.zindex = zindex;
16601         this.setStyle("z-index", zindex + 2);
16602         if(this.shadow){
16603             this.shadow.setZIndex(zindex + 1);
16604         }
16605         if(this.shim){
16606             this.shim.setStyle("z-index", zindex);
16607         }
16608     }
16609 });
16610 })();/*
16611  * Original code for Roojs - LGPL
16612  * <script type="text/javascript">
16613  */
16614  
16615 /**
16616  * @class Roo.XComponent
16617  * A delayed Element creator...
16618  * Or a way to group chunks of interface together.
16619  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
16620  *  used in conjunction with XComponent.build() it will create an instance of each element,
16621  *  then call addxtype() to build the User interface.
16622  * 
16623  * Mypart.xyx = new Roo.XComponent({
16624
16625     parent : 'Mypart.xyz', // empty == document.element.!!
16626     order : '001',
16627     name : 'xxxx'
16628     region : 'xxxx'
16629     disabled : function() {} 
16630      
16631     tree : function() { // return an tree of xtype declared components
16632         var MODULE = this;
16633         return 
16634         {
16635             xtype : 'NestedLayoutPanel',
16636             // technicall
16637         }
16638      ]
16639  *})
16640  *
16641  *
16642  * It can be used to build a big heiracy, with parent etc.
16643  * or you can just use this to render a single compoent to a dom element
16644  * MYPART.render(Roo.Element | String(id) | dom_element )
16645  *
16646  *
16647  * Usage patterns.
16648  *
16649  * Classic Roo
16650  *
16651  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
16652  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
16653  *
16654  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
16655  *
16656  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
16657  * - if mulitple topModules exist, the last one is defined as the top module.
16658  *
16659  * Embeded Roo
16660  * 
16661  * When the top level or multiple modules are to embedded into a existing HTML page,
16662  * the parent element can container '#id' of the element where the module will be drawn.
16663  *
16664  * Bootstrap Roo
16665  *
16666  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
16667  * it relies more on a include mechanism, where sub modules are included into an outer page.
16668  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
16669  * 
16670  * Bootstrap Roo Included elements
16671  *
16672  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
16673  * hence confusing the component builder as it thinks there are multiple top level elements. 
16674  *
16675  * String Over-ride & Translations
16676  *
16677  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
16678  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
16679  * are needed. @see Roo.XComponent.overlayString  
16680  * 
16681  * 
16682  * 
16683  * @extends Roo.util.Observable
16684  * @constructor
16685  * @param cfg {Object} configuration of component
16686  * 
16687  */
16688 Roo.XComponent = function(cfg) {
16689     Roo.apply(this, cfg);
16690     this.addEvents({ 
16691         /**
16692              * @event built
16693              * Fires when this the componnt is built
16694              * @param {Roo.XComponent} c the component
16695              */
16696         'built' : true
16697         
16698     });
16699     this.region = this.region || 'center'; // default..
16700     Roo.XComponent.register(this);
16701     this.modules = false;
16702     this.el = false; // where the layout goes..
16703     
16704     
16705 }
16706 Roo.extend(Roo.XComponent, Roo.util.Observable, {
16707     /**
16708      * @property el
16709      * The created element (with Roo.factory())
16710      * @type {Roo.Layout}
16711      */
16712     el  : false,
16713     
16714     /**
16715      * @property el
16716      * for BC  - use el in new code
16717      * @type {Roo.Layout}
16718      */
16719     panel : false,
16720     
16721     /**
16722      * @property layout
16723      * for BC  - use el in new code
16724      * @type {Roo.Layout}
16725      */
16726     layout : false,
16727     
16728      /**
16729      * @cfg {Function|boolean} disabled
16730      * If this module is disabled by some rule, return true from the funtion
16731      */
16732     disabled : false,
16733     
16734     /**
16735      * @cfg {String} parent 
16736      * Name of parent element which it get xtype added to..
16737      */
16738     parent: false,
16739     
16740     /**
16741      * @cfg {String} order
16742      * Used to set the order in which elements are created (usefull for multiple tabs)
16743      */
16744     
16745     order : false,
16746     /**
16747      * @cfg {String} name
16748      * String to display while loading.
16749      */
16750     name : false,
16751     /**
16752      * @cfg {String} region
16753      * Region to render component to (defaults to center)
16754      */
16755     region : 'center',
16756     
16757     /**
16758      * @cfg {Array} items
16759      * A single item array - the first element is the root of the tree..
16760      * It's done this way to stay compatible with the Xtype system...
16761      */
16762     items : false,
16763     
16764     /**
16765      * @property _tree
16766      * The method that retuns the tree of parts that make up this compoennt 
16767      * @type {function}
16768      */
16769     _tree  : false,
16770     
16771      /**
16772      * render
16773      * render element to dom or tree
16774      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
16775      */
16776     
16777     render : function(el)
16778     {
16779         
16780         el = el || false;
16781         var hp = this.parent ? 1 : 0;
16782         Roo.debug &&  Roo.log(this);
16783         
16784         var tree = this._tree ? this._tree() : this.tree();
16785
16786         
16787         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
16788             // if parent is a '#.....' string, then let's use that..
16789             var ename = this.parent.substr(1);
16790             this.parent = false;
16791             Roo.debug && Roo.log(ename);
16792             switch (ename) {
16793                 case 'bootstrap-body':
16794                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
16795                         // this is the BorderLayout standard?
16796                        this.parent = { el : true };
16797                        break;
16798                     }
16799                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
16800                         // need to insert stuff...
16801                         this.parent =  {
16802                              el : new Roo.bootstrap.layout.Border({
16803                                  el : document.body, 
16804                      
16805                                  center: {
16806                                     titlebar: false,
16807                                     autoScroll:false,
16808                                     closeOnTab: true,
16809                                     tabPosition: 'top',
16810                                       //resizeTabs: true,
16811                                     alwaysShowTabs: true,
16812                                     hideTabs: false
16813                                      //minTabWidth: 140
16814                                  }
16815                              })
16816                         
16817                          };
16818                          break;
16819                     }
16820                          
16821                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
16822                         this.parent = { el :  new  Roo.bootstrap.Body() };
16823                         Roo.debug && Roo.log("setting el to doc body");
16824                          
16825                     } else {
16826                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
16827                     }
16828                     break;
16829                 case 'bootstrap':
16830                     this.parent = { el : true};
16831                     // fall through
16832                 default:
16833                     el = Roo.get(ename);
16834                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
16835                         this.parent = { el : true};
16836                     }
16837                     
16838                     break;
16839             }
16840                 
16841             
16842             if (!el && !this.parent) {
16843                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
16844                 return;
16845             }
16846         }
16847         
16848         Roo.debug && Roo.log("EL:");
16849         Roo.debug && Roo.log(el);
16850         Roo.debug && Roo.log("this.parent.el:");
16851         Roo.debug && Roo.log(this.parent.el);
16852         
16853
16854         // altertive root elements ??? - we need a better way to indicate these.
16855         var is_alt = Roo.XComponent.is_alt ||
16856                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
16857                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
16858                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
16859         
16860         
16861         
16862         if (!this.parent && is_alt) {
16863             //el = Roo.get(document.body);
16864             this.parent = { el : true };
16865         }
16866             
16867             
16868         
16869         if (!this.parent) {
16870             
16871             Roo.debug && Roo.log("no parent - creating one");
16872             
16873             el = el ? Roo.get(el) : false;      
16874             
16875             if (typeof(Roo.BorderLayout) == 'undefined' ) {
16876                 
16877                 this.parent =  {
16878                     el : new Roo.bootstrap.layout.Border({
16879                         el: el || document.body,
16880                     
16881                         center: {
16882                             titlebar: false,
16883                             autoScroll:false,
16884                             closeOnTab: true,
16885                             tabPosition: 'top',
16886                              //resizeTabs: true,
16887                             alwaysShowTabs: false,
16888                             hideTabs: true,
16889                             minTabWidth: 140,
16890                             overflow: 'visible'
16891                          }
16892                      })
16893                 };
16894             } else {
16895             
16896                 // it's a top level one..
16897                 this.parent =  {
16898                     el : new Roo.BorderLayout(el || document.body, {
16899                         center: {
16900                             titlebar: false,
16901                             autoScroll:false,
16902                             closeOnTab: true,
16903                             tabPosition: 'top',
16904                              //resizeTabs: true,
16905                             alwaysShowTabs: el && hp? false :  true,
16906                             hideTabs: el || !hp ? true :  false,
16907                             minTabWidth: 140
16908                          }
16909                     })
16910                 };
16911             }
16912         }
16913         
16914         if (!this.parent.el) {
16915                 // probably an old style ctor, which has been disabled.
16916                 return;
16917
16918         }
16919                 // The 'tree' method is  '_tree now' 
16920             
16921         tree.region = tree.region || this.region;
16922         var is_body = false;
16923         if (this.parent.el === true) {
16924             // bootstrap... - body..
16925             if (el) {
16926                 tree.el = el;
16927             }
16928             this.parent.el = Roo.factory(tree);
16929             is_body = true;
16930         }
16931         
16932         this.el = this.parent.el.addxtype(tree, undefined, is_body);
16933         this.fireEvent('built', this);
16934         
16935         this.panel = this.el;
16936         this.layout = this.panel.layout;
16937         this.parentLayout = this.parent.layout  || false;  
16938          
16939     }
16940     
16941 });
16942
16943 Roo.apply(Roo.XComponent, {
16944     /**
16945      * @property  hideProgress
16946      * true to disable the building progress bar.. usefull on single page renders.
16947      * @type Boolean
16948      */
16949     hideProgress : false,
16950     /**
16951      * @property  buildCompleted
16952      * True when the builder has completed building the interface.
16953      * @type Boolean
16954      */
16955     buildCompleted : false,
16956      
16957     /**
16958      * @property  topModule
16959      * the upper most module - uses document.element as it's constructor.
16960      * @type Object
16961      */
16962      
16963     topModule  : false,
16964       
16965     /**
16966      * @property  modules
16967      * array of modules to be created by registration system.
16968      * @type {Array} of Roo.XComponent
16969      */
16970     
16971     modules : [],
16972     /**
16973      * @property  elmodules
16974      * array of modules to be created by which use #ID 
16975      * @type {Array} of Roo.XComponent
16976      */
16977      
16978     elmodules : [],
16979
16980      /**
16981      * @property  is_alt
16982      * Is an alternative Root - normally used by bootstrap or other systems,
16983      *    where the top element in the tree can wrap 'body' 
16984      * @type {boolean}  (default false)
16985      */
16986      
16987     is_alt : false,
16988     /**
16989      * @property  build_from_html
16990      * Build elements from html - used by bootstrap HTML stuff 
16991      *    - this is cleared after build is completed
16992      * @type {boolean}    (default false)
16993      */
16994      
16995     build_from_html : false,
16996     /**
16997      * Register components to be built later.
16998      *
16999      * This solves the following issues
17000      * - Building is not done on page load, but after an authentication process has occured.
17001      * - Interface elements are registered on page load
17002      * - Parent Interface elements may not be loaded before child, so this handles that..
17003      * 
17004      *
17005      * example:
17006      * 
17007      * MyApp.register({
17008           order : '000001',
17009           module : 'Pman.Tab.projectMgr',
17010           region : 'center',
17011           parent : 'Pman.layout',
17012           disabled : false,  // or use a function..
17013         })
17014      
17015      * * @param {Object} details about module
17016      */
17017     register : function(obj) {
17018                 
17019         Roo.XComponent.event.fireEvent('register', obj);
17020         switch(typeof(obj.disabled) ) {
17021                 
17022             case 'undefined':
17023                 break;
17024             
17025             case 'function':
17026                 if ( obj.disabled() ) {
17027                         return;
17028                 }
17029                 break;
17030             
17031             default:
17032                 if (obj.disabled || obj.region == '#disabled') {
17033                         return;
17034                 }
17035                 break;
17036         }
17037                 
17038         this.modules.push(obj);
17039          
17040     },
17041     /**
17042      * convert a string to an object..
17043      * eg. 'AAA.BBB' -> finds AAA.BBB
17044
17045      */
17046     
17047     toObject : function(str)
17048     {
17049         if (!str || typeof(str) == 'object') {
17050             return str;
17051         }
17052         if (str.substring(0,1) == '#') {
17053             return str;
17054         }
17055
17056         var ar = str.split('.');
17057         var rt, o;
17058         rt = ar.shift();
17059             /** eval:var:o */
17060         try {
17061             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
17062         } catch (e) {
17063             throw "Module not found : " + str;
17064         }
17065         
17066         if (o === false) {
17067             throw "Module not found : " + str;
17068         }
17069         Roo.each(ar, function(e) {
17070             if (typeof(o[e]) == 'undefined') {
17071                 throw "Module not found : " + str;
17072             }
17073             o = o[e];
17074         });
17075         
17076         return o;
17077         
17078     },
17079     
17080     
17081     /**
17082      * move modules into their correct place in the tree..
17083      * 
17084      */
17085     preBuild : function ()
17086     {
17087         var _t = this;
17088         Roo.each(this.modules , function (obj)
17089         {
17090             Roo.XComponent.event.fireEvent('beforebuild', obj);
17091             
17092             var opar = obj.parent;
17093             try { 
17094                 obj.parent = this.toObject(opar);
17095             } catch(e) {
17096                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
17097                 return;
17098             }
17099             
17100             if (!obj.parent) {
17101                 Roo.debug && Roo.log("GOT top level module");
17102                 Roo.debug && Roo.log(obj);
17103                 obj.modules = new Roo.util.MixedCollection(false, 
17104                     function(o) { return o.order + '' }
17105                 );
17106                 this.topModule = obj;
17107                 return;
17108             }
17109                         // parent is a string (usually a dom element name..)
17110             if (typeof(obj.parent) == 'string') {
17111                 this.elmodules.push(obj);
17112                 return;
17113             }
17114             if (obj.parent.constructor != Roo.XComponent) {
17115                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
17116             }
17117             if (!obj.parent.modules) {
17118                 obj.parent.modules = new Roo.util.MixedCollection(false, 
17119                     function(o) { return o.order + '' }
17120                 );
17121             }
17122             if (obj.parent.disabled) {
17123                 obj.disabled = true;
17124             }
17125             obj.parent.modules.add(obj);
17126         }, this);
17127     },
17128     
17129      /**
17130      * make a list of modules to build.
17131      * @return {Array} list of modules. 
17132      */ 
17133     
17134     buildOrder : function()
17135     {
17136         var _this = this;
17137         var cmp = function(a,b) {   
17138             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
17139         };
17140         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
17141             throw "No top level modules to build";
17142         }
17143         
17144         // make a flat list in order of modules to build.
17145         var mods = this.topModule ? [ this.topModule ] : [];
17146                 
17147         
17148         // elmodules (is a list of DOM based modules )
17149         Roo.each(this.elmodules, function(e) {
17150             mods.push(e);
17151             if (!this.topModule &&
17152                 typeof(e.parent) == 'string' &&
17153                 e.parent.substring(0,1) == '#' &&
17154                 Roo.get(e.parent.substr(1))
17155                ) {
17156                 
17157                 _this.topModule = e;
17158             }
17159             
17160         });
17161
17162         
17163         // add modules to their parents..
17164         var addMod = function(m) {
17165             Roo.debug && Roo.log("build Order: add: " + m.name);
17166                 
17167             mods.push(m);
17168             if (m.modules && !m.disabled) {
17169                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
17170                 m.modules.keySort('ASC',  cmp );
17171                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
17172     
17173                 m.modules.each(addMod);
17174             } else {
17175                 Roo.debug && Roo.log("build Order: no child modules");
17176             }
17177             // not sure if this is used any more..
17178             if (m.finalize) {
17179                 m.finalize.name = m.name + " (clean up) ";
17180                 mods.push(m.finalize);
17181             }
17182             
17183         }
17184         if (this.topModule && this.topModule.modules) { 
17185             this.topModule.modules.keySort('ASC',  cmp );
17186             this.topModule.modules.each(addMod);
17187         } 
17188         return mods;
17189     },
17190     
17191      /**
17192      * Build the registered modules.
17193      * @param {Object} parent element.
17194      * @param {Function} optional method to call after module has been added.
17195      * 
17196      */ 
17197    
17198     build : function(opts) 
17199     {
17200         
17201         if (typeof(opts) != 'undefined') {
17202             Roo.apply(this,opts);
17203         }
17204         
17205         this.preBuild();
17206         var mods = this.buildOrder();
17207       
17208         //this.allmods = mods;
17209         //Roo.debug && Roo.log(mods);
17210         //return;
17211         if (!mods.length) { // should not happen
17212             throw "NO modules!!!";
17213         }
17214         
17215         
17216         var msg = "Building Interface...";
17217         // flash it up as modal - so we store the mask!?
17218         if (!this.hideProgress && Roo.MessageBox) {
17219             Roo.MessageBox.show({ title: 'loading' });
17220             Roo.MessageBox.show({
17221                title: "Please wait...",
17222                msg: msg,
17223                width:450,
17224                progress:true,
17225                buttons : false,
17226                closable:false,
17227                modal: false
17228               
17229             });
17230         }
17231         var total = mods.length;
17232         
17233         var _this = this;
17234         var progressRun = function() {
17235             if (!mods.length) {
17236                 Roo.debug && Roo.log('hide?');
17237                 if (!this.hideProgress && Roo.MessageBox) {
17238                     Roo.MessageBox.hide();
17239                 }
17240                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
17241                 
17242                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
17243                 
17244                 // THE END...
17245                 return false;   
17246             }
17247             
17248             var m = mods.shift();
17249             
17250             
17251             Roo.debug && Roo.log(m);
17252             // not sure if this is supported any more.. - modules that are are just function
17253             if (typeof(m) == 'function') { 
17254                 m.call(this);
17255                 return progressRun.defer(10, _this);
17256             } 
17257             
17258             
17259             msg = "Building Interface " + (total  - mods.length) + 
17260                     " of " + total + 
17261                     (m.name ? (' - ' + m.name) : '');
17262                         Roo.debug && Roo.log(msg);
17263             if (!_this.hideProgress &&  Roo.MessageBox) { 
17264                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
17265             }
17266             
17267          
17268             // is the module disabled?
17269             var disabled = (typeof(m.disabled) == 'function') ?
17270                 m.disabled.call(m.module.disabled) : m.disabled;    
17271             
17272             
17273             if (disabled) {
17274                 return progressRun(); // we do not update the display!
17275             }
17276             
17277             // now build 
17278             
17279                         
17280                         
17281             m.render();
17282             // it's 10 on top level, and 1 on others??? why...
17283             return progressRun.defer(10, _this);
17284              
17285         }
17286         progressRun.defer(1, _this);
17287      
17288         
17289         
17290     },
17291     /**
17292      * Overlay a set of modified strings onto a component
17293      * This is dependant on our builder exporting the strings and 'named strings' elements.
17294      * 
17295      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
17296      * @param {Object} associative array of 'named' string and it's new value.
17297      * 
17298      */
17299         overlayStrings : function( component, strings )
17300     {
17301         if (typeof(component['_named_strings']) == 'undefined') {
17302             throw "ERROR: component does not have _named_strings";
17303         }
17304         for ( var k in strings ) {
17305             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
17306             if (md !== false) {
17307                 component['_strings'][md] = strings[k];
17308             } else {
17309                 Roo.log('could not find named string: ' + k + ' in');
17310                 Roo.log(component);
17311             }
17312             
17313         }
17314         
17315     },
17316     
17317         
17318         /**
17319          * Event Object.
17320          *
17321          *
17322          */
17323         event: false, 
17324     /**
17325          * wrapper for event.on - aliased later..  
17326          * Typically use to register a event handler for register:
17327          *
17328          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
17329          *
17330          */
17331     on : false
17332    
17333     
17334     
17335 });
17336
17337 Roo.XComponent.event = new Roo.util.Observable({
17338                 events : { 
17339                         /**
17340                          * @event register
17341                          * Fires when an Component is registered,
17342                          * set the disable property on the Component to stop registration.
17343                          * @param {Roo.XComponent} c the component being registerd.
17344                          * 
17345                          */
17346                         'register' : true,
17347             /**
17348                          * @event beforebuild
17349                          * Fires before each Component is built
17350                          * can be used to apply permissions.
17351                          * @param {Roo.XComponent} c the component being registerd.
17352                          * 
17353                          */
17354                         'beforebuild' : true,
17355                         /**
17356                          * @event buildcomplete
17357                          * Fires on the top level element when all elements have been built
17358                          * @param {Roo.XComponent} the top level component.
17359                          */
17360                         'buildcomplete' : true
17361                         
17362                 }
17363 });
17364
17365 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
17366  //
17367  /**
17368  * marked - a markdown parser
17369  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
17370  * https://github.com/chjj/marked
17371  */
17372
17373
17374 /**
17375  *
17376  * Roo.Markdown - is a very crude wrapper around marked..
17377  *
17378  * usage:
17379  * 
17380  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
17381  * 
17382  * Note: move the sample code to the bottom of this
17383  * file before uncommenting it.
17384  *
17385  */
17386
17387 Roo.Markdown = {};
17388 Roo.Markdown.toHtml = function(text) {
17389     
17390     var c = new Roo.Markdown.marked.setOptions({
17391             renderer: new Roo.Markdown.marked.Renderer(),
17392             gfm: true,
17393             tables: true,
17394             breaks: false,
17395             pedantic: false,
17396             sanitize: false,
17397             smartLists: true,
17398             smartypants: false
17399           });
17400     // A FEW HACKS!!?
17401     
17402     text = text.replace(/\\\n/g,' ');
17403     return Roo.Markdown.marked(text);
17404 };
17405 //
17406 // converter
17407 //
17408 // Wraps all "globals" so that the only thing
17409 // exposed is makeHtml().
17410 //
17411 (function() {
17412     
17413      /**
17414          * eval:var:escape
17415          * eval:var:unescape
17416          * eval:var:replace
17417          */
17418       
17419     /**
17420      * Helpers
17421      */
17422     
17423     var escape = function (html, encode) {
17424       return html
17425         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
17426         .replace(/</g, '&lt;')
17427         .replace(/>/g, '&gt;')
17428         .replace(/"/g, '&quot;')
17429         .replace(/'/g, '&#39;');
17430     }
17431     
17432     var unescape = function (html) {
17433         // explicitly match decimal, hex, and named HTML entities 
17434       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
17435         n = n.toLowerCase();
17436         if (n === 'colon') { return ':'; }
17437         if (n.charAt(0) === '#') {
17438           return n.charAt(1) === 'x'
17439             ? String.fromCharCode(parseInt(n.substring(2), 16))
17440             : String.fromCharCode(+n.substring(1));
17441         }
17442         return '';
17443       });
17444     }
17445     
17446     var replace = function (regex, opt) {
17447       regex = regex.source;
17448       opt = opt || '';
17449       return function self(name, val) {
17450         if (!name) { return new RegExp(regex, opt); }
17451         val = val.source || val;
17452         val = val.replace(/(^|[^\[])\^/g, '$1');
17453         regex = regex.replace(name, val);
17454         return self;
17455       };
17456     }
17457
17458
17459          /**
17460          * eval:var:noop
17461     */
17462     var noop = function () {}
17463     noop.exec = noop;
17464     
17465          /**
17466          * eval:var:merge
17467     */
17468     var merge = function (obj) {
17469       var i = 1
17470         , target
17471         , key;
17472     
17473       for (; i < arguments.length; i++) {
17474         target = arguments[i];
17475         for (key in target) {
17476           if (Object.prototype.hasOwnProperty.call(target, key)) {
17477             obj[key] = target[key];
17478           }
17479         }
17480       }
17481     
17482       return obj;
17483     }
17484     
17485     
17486     /**
17487      * Block-Level Grammar
17488      */
17489     
17490     
17491     
17492     
17493     var block = {
17494       newline: /^\n+/,
17495       code: /^( {4}[^\n]+\n*)+/,
17496       fences: noop,
17497       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
17498       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
17499       nptable: noop,
17500       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
17501       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
17502       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
17503       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
17504       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
17505       table: noop,
17506       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
17507       text: /^[^\n]+/
17508     };
17509     
17510     block.bullet = /(?:[*+-]|\d+\.)/;
17511     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
17512     block.item = replace(block.item, 'gm')
17513       (/bull/g, block.bullet)
17514       ();
17515     
17516     block.list = replace(block.list)
17517       (/bull/g, block.bullet)
17518       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
17519       ('def', '\\n+(?=' + block.def.source + ')')
17520       ();
17521     
17522     block.blockquote = replace(block.blockquote)
17523       ('def', block.def)
17524       ();
17525     
17526     block._tag = '(?!(?:'
17527       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
17528       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
17529       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
17530     
17531     block.html = replace(block.html)
17532       ('comment', /<!--[\s\S]*?-->/)
17533       ('closed', /<(tag)[\s\S]+?<\/\1>/)
17534       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
17535       (/tag/g, block._tag)
17536       ();
17537     
17538     block.paragraph = replace(block.paragraph)
17539       ('hr', block.hr)
17540       ('heading', block.heading)
17541       ('lheading', block.lheading)
17542       ('blockquote', block.blockquote)
17543       ('tag', '<' + block._tag)
17544       ('def', block.def)
17545       ();
17546     
17547     /**
17548      * Normal Block Grammar
17549      */
17550     
17551     block.normal = merge({}, block);
17552     
17553     /**
17554      * GFM Block Grammar
17555      */
17556     
17557     block.gfm = merge({}, block.normal, {
17558       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
17559       paragraph: /^/,
17560       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
17561     });
17562     
17563     block.gfm.paragraph = replace(block.paragraph)
17564       ('(?!', '(?!'
17565         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
17566         + block.list.source.replace('\\1', '\\3') + '|')
17567       ();
17568     
17569     /**
17570      * GFM + Tables Block Grammar
17571      */
17572     
17573     block.tables = merge({}, block.gfm, {
17574       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
17575       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
17576     });
17577     
17578     /**
17579      * Block Lexer
17580      */
17581     
17582     var Lexer = function (options) {
17583       this.tokens = [];
17584       this.tokens.links = {};
17585       this.options = options || marked.defaults;
17586       this.rules = block.normal;
17587     
17588       if (this.options.gfm) {
17589         if (this.options.tables) {
17590           this.rules = block.tables;
17591         } else {
17592           this.rules = block.gfm;
17593         }
17594       }
17595     }
17596     
17597     /**
17598      * Expose Block Rules
17599      */
17600     
17601     Lexer.rules = block;
17602     
17603     /**
17604      * Static Lex Method
17605      */
17606     
17607     Lexer.lex = function(src, options) {
17608       var lexer = new Lexer(options);
17609       return lexer.lex(src);
17610     };
17611     
17612     /**
17613      * Preprocessing
17614      */
17615     
17616     Lexer.prototype.lex = function(src) {
17617       src = src
17618         .replace(/\r\n|\r/g, '\n')
17619         .replace(/\t/g, '    ')
17620         .replace(/\u00a0/g, ' ')
17621         .replace(/\u2424/g, '\n');
17622     
17623       return this.token(src, true);
17624     };
17625     
17626     /**
17627      * Lexing
17628      */
17629     
17630     Lexer.prototype.token = function(src, top, bq) {
17631       var src = src.replace(/^ +$/gm, '')
17632         , next
17633         , loose
17634         , cap
17635         , bull
17636         , b
17637         , item
17638         , space
17639         , i
17640         , l;
17641     
17642       while (src) {
17643         // newline
17644         if (cap = this.rules.newline.exec(src)) {
17645           src = src.substring(cap[0].length);
17646           if (cap[0].length > 1) {
17647             this.tokens.push({
17648               type: 'space'
17649             });
17650           }
17651         }
17652     
17653         // code
17654         if (cap = this.rules.code.exec(src)) {
17655           src = src.substring(cap[0].length);
17656           cap = cap[0].replace(/^ {4}/gm, '');
17657           this.tokens.push({
17658             type: 'code',
17659             text: !this.options.pedantic
17660               ? cap.replace(/\n+$/, '')
17661               : cap
17662           });
17663           continue;
17664         }
17665     
17666         // fences (gfm)
17667         if (cap = this.rules.fences.exec(src)) {
17668           src = src.substring(cap[0].length);
17669           this.tokens.push({
17670             type: 'code',
17671             lang: cap[2],
17672             text: cap[3] || ''
17673           });
17674           continue;
17675         }
17676     
17677         // heading
17678         if (cap = this.rules.heading.exec(src)) {
17679           src = src.substring(cap[0].length);
17680           this.tokens.push({
17681             type: 'heading',
17682             depth: cap[1].length,
17683             text: cap[2]
17684           });
17685           continue;
17686         }
17687     
17688         // table no leading pipe (gfm)
17689         if (top && (cap = this.rules.nptable.exec(src))) {
17690           src = src.substring(cap[0].length);
17691     
17692           item = {
17693             type: 'table',
17694             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17695             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17696             cells: cap[3].replace(/\n$/, '').split('\n')
17697           };
17698     
17699           for (i = 0; i < item.align.length; i++) {
17700             if (/^ *-+: *$/.test(item.align[i])) {
17701               item.align[i] = 'right';
17702             } else if (/^ *:-+: *$/.test(item.align[i])) {
17703               item.align[i] = 'center';
17704             } else if (/^ *:-+ *$/.test(item.align[i])) {
17705               item.align[i] = 'left';
17706             } else {
17707               item.align[i] = null;
17708             }
17709           }
17710     
17711           for (i = 0; i < item.cells.length; i++) {
17712             item.cells[i] = item.cells[i].split(/ *\| */);
17713           }
17714     
17715           this.tokens.push(item);
17716     
17717           continue;
17718         }
17719     
17720         // lheading
17721         if (cap = this.rules.lheading.exec(src)) {
17722           src = src.substring(cap[0].length);
17723           this.tokens.push({
17724             type: 'heading',
17725             depth: cap[2] === '=' ? 1 : 2,
17726             text: cap[1]
17727           });
17728           continue;
17729         }
17730     
17731         // hr
17732         if (cap = this.rules.hr.exec(src)) {
17733           src = src.substring(cap[0].length);
17734           this.tokens.push({
17735             type: 'hr'
17736           });
17737           continue;
17738         }
17739     
17740         // blockquote
17741         if (cap = this.rules.blockquote.exec(src)) {
17742           src = src.substring(cap[0].length);
17743     
17744           this.tokens.push({
17745             type: 'blockquote_start'
17746           });
17747     
17748           cap = cap[0].replace(/^ *> ?/gm, '');
17749     
17750           // Pass `top` to keep the current
17751           // "toplevel" state. This is exactly
17752           // how markdown.pl works.
17753           this.token(cap, top, true);
17754     
17755           this.tokens.push({
17756             type: 'blockquote_end'
17757           });
17758     
17759           continue;
17760         }
17761     
17762         // list
17763         if (cap = this.rules.list.exec(src)) {
17764           src = src.substring(cap[0].length);
17765           bull = cap[2];
17766     
17767           this.tokens.push({
17768             type: 'list_start',
17769             ordered: bull.length > 1
17770           });
17771     
17772           // Get each top-level item.
17773           cap = cap[0].match(this.rules.item);
17774     
17775           next = false;
17776           l = cap.length;
17777           i = 0;
17778     
17779           for (; i < l; i++) {
17780             item = cap[i];
17781     
17782             // Remove the list item's bullet
17783             // so it is seen as the next token.
17784             space = item.length;
17785             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
17786     
17787             // Outdent whatever the
17788             // list item contains. Hacky.
17789             if (~item.indexOf('\n ')) {
17790               space -= item.length;
17791               item = !this.options.pedantic
17792                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
17793                 : item.replace(/^ {1,4}/gm, '');
17794             }
17795     
17796             // Determine whether the next list item belongs here.
17797             // Backpedal if it does not belong in this list.
17798             if (this.options.smartLists && i !== l - 1) {
17799               b = block.bullet.exec(cap[i + 1])[0];
17800               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
17801                 src = cap.slice(i + 1).join('\n') + src;
17802                 i = l - 1;
17803               }
17804             }
17805     
17806             // Determine whether item is loose or not.
17807             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
17808             // for discount behavior.
17809             loose = next || /\n\n(?!\s*$)/.test(item);
17810             if (i !== l - 1) {
17811               next = item.charAt(item.length - 1) === '\n';
17812               if (!loose) { loose = next; }
17813             }
17814     
17815             this.tokens.push({
17816               type: loose
17817                 ? 'loose_item_start'
17818                 : 'list_item_start'
17819             });
17820     
17821             // Recurse.
17822             this.token(item, false, bq);
17823     
17824             this.tokens.push({
17825               type: 'list_item_end'
17826             });
17827           }
17828     
17829           this.tokens.push({
17830             type: 'list_end'
17831           });
17832     
17833           continue;
17834         }
17835     
17836         // html
17837         if (cap = this.rules.html.exec(src)) {
17838           src = src.substring(cap[0].length);
17839           this.tokens.push({
17840             type: this.options.sanitize
17841               ? 'paragraph'
17842               : 'html',
17843             pre: !this.options.sanitizer
17844               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
17845             text: cap[0]
17846           });
17847           continue;
17848         }
17849     
17850         // def
17851         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
17852           src = src.substring(cap[0].length);
17853           this.tokens.links[cap[1].toLowerCase()] = {
17854             href: cap[2],
17855             title: cap[3]
17856           };
17857           continue;
17858         }
17859     
17860         // table (gfm)
17861         if (top && (cap = this.rules.table.exec(src))) {
17862           src = src.substring(cap[0].length);
17863     
17864           item = {
17865             type: 'table',
17866             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
17867             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
17868             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
17869           };
17870     
17871           for (i = 0; i < item.align.length; i++) {
17872             if (/^ *-+: *$/.test(item.align[i])) {
17873               item.align[i] = 'right';
17874             } else if (/^ *:-+: *$/.test(item.align[i])) {
17875               item.align[i] = 'center';
17876             } else if (/^ *:-+ *$/.test(item.align[i])) {
17877               item.align[i] = 'left';
17878             } else {
17879               item.align[i] = null;
17880             }
17881           }
17882     
17883           for (i = 0; i < item.cells.length; i++) {
17884             item.cells[i] = item.cells[i]
17885               .replace(/^ *\| *| *\| *$/g, '')
17886               .split(/ *\| */);
17887           }
17888     
17889           this.tokens.push(item);
17890     
17891           continue;
17892         }
17893     
17894         // top-level paragraph
17895         if (top && (cap = this.rules.paragraph.exec(src))) {
17896           src = src.substring(cap[0].length);
17897           this.tokens.push({
17898             type: 'paragraph',
17899             text: cap[1].charAt(cap[1].length - 1) === '\n'
17900               ? cap[1].slice(0, -1)
17901               : cap[1]
17902           });
17903           continue;
17904         }
17905     
17906         // text
17907         if (cap = this.rules.text.exec(src)) {
17908           // Top-level should never reach here.
17909           src = src.substring(cap[0].length);
17910           this.tokens.push({
17911             type: 'text',
17912             text: cap[0]
17913           });
17914           continue;
17915         }
17916     
17917         if (src) {
17918           throw new
17919             Error('Infinite loop on byte: ' + src.charCodeAt(0));
17920         }
17921       }
17922     
17923       return this.tokens;
17924     };
17925     
17926     /**
17927      * Inline-Level Grammar
17928      */
17929     
17930     var inline = {
17931       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
17932       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
17933       url: noop,
17934       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
17935       link: /^!?\[(inside)\]\(href\)/,
17936       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
17937       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
17938       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
17939       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
17940       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
17941       br: /^ {2,}\n(?!\s*$)/,
17942       del: noop,
17943       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
17944     };
17945     
17946     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
17947     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
17948     
17949     inline.link = replace(inline.link)
17950       ('inside', inline._inside)
17951       ('href', inline._href)
17952       ();
17953     
17954     inline.reflink = replace(inline.reflink)
17955       ('inside', inline._inside)
17956       ();
17957     
17958     /**
17959      * Normal Inline Grammar
17960      */
17961     
17962     inline.normal = merge({}, inline);
17963     
17964     /**
17965      * Pedantic Inline Grammar
17966      */
17967     
17968     inline.pedantic = merge({}, inline.normal, {
17969       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
17970       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
17971     });
17972     
17973     /**
17974      * GFM Inline Grammar
17975      */
17976     
17977     inline.gfm = merge({}, inline.normal, {
17978       escape: replace(inline.escape)('])', '~|])')(),
17979       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
17980       del: /^~~(?=\S)([\s\S]*?\S)~~/,
17981       text: replace(inline.text)
17982         (']|', '~]|')
17983         ('|', '|https?://|')
17984         ()
17985     });
17986     
17987     /**
17988      * GFM + Line Breaks Inline Grammar
17989      */
17990     
17991     inline.breaks = merge({}, inline.gfm, {
17992       br: replace(inline.br)('{2,}', '*')(),
17993       text: replace(inline.gfm.text)('{2,}', '*')()
17994     });
17995     
17996     /**
17997      * Inline Lexer & Compiler
17998      */
17999     
18000     var InlineLexer  = function (links, options) {
18001       this.options = options || marked.defaults;
18002       this.links = links;
18003       this.rules = inline.normal;
18004       this.renderer = this.options.renderer || new Renderer;
18005       this.renderer.options = this.options;
18006     
18007       if (!this.links) {
18008         throw new
18009           Error('Tokens array requires a `links` property.');
18010       }
18011     
18012       if (this.options.gfm) {
18013         if (this.options.breaks) {
18014           this.rules = inline.breaks;
18015         } else {
18016           this.rules = inline.gfm;
18017         }
18018       } else if (this.options.pedantic) {
18019         this.rules = inline.pedantic;
18020       }
18021     }
18022     
18023     /**
18024      * Expose Inline Rules
18025      */
18026     
18027     InlineLexer.rules = inline;
18028     
18029     /**
18030      * Static Lexing/Compiling Method
18031      */
18032     
18033     InlineLexer.output = function(src, links, options) {
18034       var inline = new InlineLexer(links, options);
18035       return inline.output(src);
18036     };
18037     
18038     /**
18039      * Lexing/Compiling
18040      */
18041     
18042     InlineLexer.prototype.output = function(src) {
18043       var out = ''
18044         , link
18045         , text
18046         , href
18047         , cap;
18048     
18049       while (src) {
18050         // escape
18051         if (cap = this.rules.escape.exec(src)) {
18052           src = src.substring(cap[0].length);
18053           out += cap[1];
18054           continue;
18055         }
18056     
18057         // autolink
18058         if (cap = this.rules.autolink.exec(src)) {
18059           src = src.substring(cap[0].length);
18060           if (cap[2] === '@') {
18061             text = cap[1].charAt(6) === ':'
18062               ? this.mangle(cap[1].substring(7))
18063               : this.mangle(cap[1]);
18064             href = this.mangle('mailto:') + text;
18065           } else {
18066             text = escape(cap[1]);
18067             href = text;
18068           }
18069           out += this.renderer.link(href, null, text);
18070           continue;
18071         }
18072     
18073         // url (gfm)
18074         if (!this.inLink && (cap = this.rules.url.exec(src))) {
18075           src = src.substring(cap[0].length);
18076           text = escape(cap[1]);
18077           href = text;
18078           out += this.renderer.link(href, null, text);
18079           continue;
18080         }
18081     
18082         // tag
18083         if (cap = this.rules.tag.exec(src)) {
18084           if (!this.inLink && /^<a /i.test(cap[0])) {
18085             this.inLink = true;
18086           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
18087             this.inLink = false;
18088           }
18089           src = src.substring(cap[0].length);
18090           out += this.options.sanitize
18091             ? this.options.sanitizer
18092               ? this.options.sanitizer(cap[0])
18093               : escape(cap[0])
18094             : cap[0];
18095           continue;
18096         }
18097     
18098         // link
18099         if (cap = this.rules.link.exec(src)) {
18100           src = src.substring(cap[0].length);
18101           this.inLink = true;
18102           out += this.outputLink(cap, {
18103             href: cap[2],
18104             title: cap[3]
18105           });
18106           this.inLink = false;
18107           continue;
18108         }
18109     
18110         // reflink, nolink
18111         if ((cap = this.rules.reflink.exec(src))
18112             || (cap = this.rules.nolink.exec(src))) {
18113           src = src.substring(cap[0].length);
18114           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
18115           link = this.links[link.toLowerCase()];
18116           if (!link || !link.href) {
18117             out += cap[0].charAt(0);
18118             src = cap[0].substring(1) + src;
18119             continue;
18120           }
18121           this.inLink = true;
18122           out += this.outputLink(cap, link);
18123           this.inLink = false;
18124           continue;
18125         }
18126     
18127         // strong
18128         if (cap = this.rules.strong.exec(src)) {
18129           src = src.substring(cap[0].length);
18130           out += this.renderer.strong(this.output(cap[2] || cap[1]));
18131           continue;
18132         }
18133     
18134         // em
18135         if (cap = this.rules.em.exec(src)) {
18136           src = src.substring(cap[0].length);
18137           out += this.renderer.em(this.output(cap[2] || cap[1]));
18138           continue;
18139         }
18140     
18141         // code
18142         if (cap = this.rules.code.exec(src)) {
18143           src = src.substring(cap[0].length);
18144           out += this.renderer.codespan(escape(cap[2], true));
18145           continue;
18146         }
18147     
18148         // br
18149         if (cap = this.rules.br.exec(src)) {
18150           src = src.substring(cap[0].length);
18151           out += this.renderer.br();
18152           continue;
18153         }
18154     
18155         // del (gfm)
18156         if (cap = this.rules.del.exec(src)) {
18157           src = src.substring(cap[0].length);
18158           out += this.renderer.del(this.output(cap[1]));
18159           continue;
18160         }
18161     
18162         // text
18163         if (cap = this.rules.text.exec(src)) {
18164           src = src.substring(cap[0].length);
18165           out += this.renderer.text(escape(this.smartypants(cap[0])));
18166           continue;
18167         }
18168     
18169         if (src) {
18170           throw new
18171             Error('Infinite loop on byte: ' + src.charCodeAt(0));
18172         }
18173       }
18174     
18175       return out;
18176     };
18177     
18178     /**
18179      * Compile Link
18180      */
18181     
18182     InlineLexer.prototype.outputLink = function(cap, link) {
18183       var href = escape(link.href)
18184         , title = link.title ? escape(link.title) : null;
18185     
18186       return cap[0].charAt(0) !== '!'
18187         ? this.renderer.link(href, title, this.output(cap[1]))
18188         : this.renderer.image(href, title, escape(cap[1]));
18189     };
18190     
18191     /**
18192      * Smartypants Transformations
18193      */
18194     
18195     InlineLexer.prototype.smartypants = function(text) {
18196       if (!this.options.smartypants)  { return text; }
18197       return text
18198         // em-dashes
18199         .replace(/---/g, '\u2014')
18200         // en-dashes
18201         .replace(/--/g, '\u2013')
18202         // opening singles
18203         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
18204         // closing singles & apostrophes
18205         .replace(/'/g, '\u2019')
18206         // opening doubles
18207         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
18208         // closing doubles
18209         .replace(/"/g, '\u201d')
18210         // ellipses
18211         .replace(/\.{3}/g, '\u2026');
18212     };
18213     
18214     /**
18215      * Mangle Links
18216      */
18217     
18218     InlineLexer.prototype.mangle = function(text) {
18219       if (!this.options.mangle) { return text; }
18220       var out = ''
18221         , l = text.length
18222         , i = 0
18223         , ch;
18224     
18225       for (; i < l; i++) {
18226         ch = text.charCodeAt(i);
18227         if (Math.random() > 0.5) {
18228           ch = 'x' + ch.toString(16);
18229         }
18230         out += '&#' + ch + ';';
18231       }
18232     
18233       return out;
18234     };
18235     
18236     /**
18237      * Renderer
18238      */
18239     
18240      /**
18241          * eval:var:Renderer
18242     */
18243     
18244     var Renderer   = function (options) {
18245       this.options = options || {};
18246     }
18247     
18248     Renderer.prototype.code = function(code, lang, escaped) {
18249       if (this.options.highlight) {
18250         var out = this.options.highlight(code, lang);
18251         if (out != null && out !== code) {
18252           escaped = true;
18253           code = out;
18254         }
18255       } else {
18256             // hack!!! - it's already escapeD?
18257             escaped = true;
18258       }
18259     
18260       if (!lang) {
18261         return '<pre><code>'
18262           + (escaped ? code : escape(code, true))
18263           + '\n</code></pre>';
18264       }
18265     
18266       return '<pre><code class="'
18267         + this.options.langPrefix
18268         + escape(lang, true)
18269         + '">'
18270         + (escaped ? code : escape(code, true))
18271         + '\n</code></pre>\n';
18272     };
18273     
18274     Renderer.prototype.blockquote = function(quote) {
18275       return '<blockquote>\n' + quote + '</blockquote>\n';
18276     };
18277     
18278     Renderer.prototype.html = function(html) {
18279       return html;
18280     };
18281     
18282     Renderer.prototype.heading = function(text, level, raw) {
18283       return '<h'
18284         + level
18285         + ' id="'
18286         + this.options.headerPrefix
18287         + raw.toLowerCase().replace(/[^\w]+/g, '-')
18288         + '">'
18289         + text
18290         + '</h'
18291         + level
18292         + '>\n';
18293     };
18294     
18295     Renderer.prototype.hr = function() {
18296       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
18297     };
18298     
18299     Renderer.prototype.list = function(body, ordered) {
18300       var type = ordered ? 'ol' : 'ul';
18301       return '<' + type + '>\n' + body + '</' + type + '>\n';
18302     };
18303     
18304     Renderer.prototype.listitem = function(text) {
18305       return '<li>' + text + '</li>\n';
18306     };
18307     
18308     Renderer.prototype.paragraph = function(text) {
18309       return '<p>' + text + '</p>\n';
18310     };
18311     
18312     Renderer.prototype.table = function(header, body) {
18313       return '<table class="table table-striped">\n'
18314         + '<thead>\n'
18315         + header
18316         + '</thead>\n'
18317         + '<tbody>\n'
18318         + body
18319         + '</tbody>\n'
18320         + '</table>\n';
18321     };
18322     
18323     Renderer.prototype.tablerow = function(content) {
18324       return '<tr>\n' + content + '</tr>\n';
18325     };
18326     
18327     Renderer.prototype.tablecell = function(content, flags) {
18328       var type = flags.header ? 'th' : 'td';
18329       var tag = flags.align
18330         ? '<' + type + ' style="text-align:' + flags.align + '">'
18331         : '<' + type + '>';
18332       return tag + content + '</' + type + '>\n';
18333     };
18334     
18335     // span level renderer
18336     Renderer.prototype.strong = function(text) {
18337       return '<strong>' + text + '</strong>';
18338     };
18339     
18340     Renderer.prototype.em = function(text) {
18341       return '<em>' + text + '</em>';
18342     };
18343     
18344     Renderer.prototype.codespan = function(text) {
18345       return '<code>' + text + '</code>';
18346     };
18347     
18348     Renderer.prototype.br = function() {
18349       return this.options.xhtml ? '<br/>' : '<br>';
18350     };
18351     
18352     Renderer.prototype.del = function(text) {
18353       return '<del>' + text + '</del>';
18354     };
18355     
18356     Renderer.prototype.link = function(href, title, text) {
18357       if (this.options.sanitize) {
18358         try {
18359           var prot = decodeURIComponent(unescape(href))
18360             .replace(/[^\w:]/g, '')
18361             .toLowerCase();
18362         } catch (e) {
18363           return '';
18364         }
18365         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
18366           return '';
18367         }
18368       }
18369       var out = '<a href="' + href + '"';
18370       if (title) {
18371         out += ' title="' + title + '"';
18372       }
18373       out += '>' + text + '</a>';
18374       return out;
18375     };
18376     
18377     Renderer.prototype.image = function(href, title, text) {
18378       var out = '<img src="' + href + '" alt="' + text + '"';
18379       if (title) {
18380         out += ' title="' + title + '"';
18381       }
18382       out += this.options.xhtml ? '/>' : '>';
18383       return out;
18384     };
18385     
18386     Renderer.prototype.text = function(text) {
18387       return text;
18388     };
18389     
18390     /**
18391      * Parsing & Compiling
18392      */
18393          /**
18394          * eval:var:Parser
18395     */
18396     
18397     var Parser= function (options) {
18398       this.tokens = [];
18399       this.token = null;
18400       this.options = options || marked.defaults;
18401       this.options.renderer = this.options.renderer || new Renderer;
18402       this.renderer = this.options.renderer;
18403       this.renderer.options = this.options;
18404     }
18405     
18406     /**
18407      * Static Parse Method
18408      */
18409     
18410     Parser.parse = function(src, options, renderer) {
18411       var parser = new Parser(options, renderer);
18412       return parser.parse(src);
18413     };
18414     
18415     /**
18416      * Parse Loop
18417      */
18418     
18419     Parser.prototype.parse = function(src) {
18420       this.inline = new InlineLexer(src.links, this.options, this.renderer);
18421       this.tokens = src.reverse();
18422     
18423       var out = '';
18424       while (this.next()) {
18425         out += this.tok();
18426       }
18427     
18428       return out;
18429     };
18430     
18431     /**
18432      * Next Token
18433      */
18434     
18435     Parser.prototype.next = function() {
18436       return this.token = this.tokens.pop();
18437     };
18438     
18439     /**
18440      * Preview Next Token
18441      */
18442     
18443     Parser.prototype.peek = function() {
18444       return this.tokens[this.tokens.length - 1] || 0;
18445     };
18446     
18447     /**
18448      * Parse Text Tokens
18449      */
18450     
18451     Parser.prototype.parseText = function() {
18452       var body = this.token.text;
18453     
18454       while (this.peek().type === 'text') {
18455         body += '\n' + this.next().text;
18456       }
18457     
18458       return this.inline.output(body);
18459     };
18460     
18461     /**
18462      * Parse Current Token
18463      */
18464     
18465     Parser.prototype.tok = function() {
18466       switch (this.token.type) {
18467         case 'space': {
18468           return '';
18469         }
18470         case 'hr': {
18471           return this.renderer.hr();
18472         }
18473         case 'heading': {
18474           return this.renderer.heading(
18475             this.inline.output(this.token.text),
18476             this.token.depth,
18477             this.token.text);
18478         }
18479         case 'code': {
18480           return this.renderer.code(this.token.text,
18481             this.token.lang,
18482             this.token.escaped);
18483         }
18484         case 'table': {
18485           var header = ''
18486             , body = ''
18487             , i
18488             , row
18489             , cell
18490             , flags
18491             , j;
18492     
18493           // header
18494           cell = '';
18495           for (i = 0; i < this.token.header.length; i++) {
18496             flags = { header: true, align: this.token.align[i] };
18497             cell += this.renderer.tablecell(
18498               this.inline.output(this.token.header[i]),
18499               { header: true, align: this.token.align[i] }
18500             );
18501           }
18502           header += this.renderer.tablerow(cell);
18503     
18504           for (i = 0; i < this.token.cells.length; i++) {
18505             row = this.token.cells[i];
18506     
18507             cell = '';
18508             for (j = 0; j < row.length; j++) {
18509               cell += this.renderer.tablecell(
18510                 this.inline.output(row[j]),
18511                 { header: false, align: this.token.align[j] }
18512               );
18513             }
18514     
18515             body += this.renderer.tablerow(cell);
18516           }
18517           return this.renderer.table(header, body);
18518         }
18519         case 'blockquote_start': {
18520           var body = '';
18521     
18522           while (this.next().type !== 'blockquote_end') {
18523             body += this.tok();
18524           }
18525     
18526           return this.renderer.blockquote(body);
18527         }
18528         case 'list_start': {
18529           var body = ''
18530             , ordered = this.token.ordered;
18531     
18532           while (this.next().type !== 'list_end') {
18533             body += this.tok();
18534           }
18535     
18536           return this.renderer.list(body, ordered);
18537         }
18538         case 'list_item_start': {
18539           var body = '';
18540     
18541           while (this.next().type !== 'list_item_end') {
18542             body += this.token.type === 'text'
18543               ? this.parseText()
18544               : this.tok();
18545           }
18546     
18547           return this.renderer.listitem(body);
18548         }
18549         case 'loose_item_start': {
18550           var body = '';
18551     
18552           while (this.next().type !== 'list_item_end') {
18553             body += this.tok();
18554           }
18555     
18556           return this.renderer.listitem(body);
18557         }
18558         case 'html': {
18559           var html = !this.token.pre && !this.options.pedantic
18560             ? this.inline.output(this.token.text)
18561             : this.token.text;
18562           return this.renderer.html(html);
18563         }
18564         case 'paragraph': {
18565           return this.renderer.paragraph(this.inline.output(this.token.text));
18566         }
18567         case 'text': {
18568           return this.renderer.paragraph(this.parseText());
18569         }
18570       }
18571     };
18572   
18573     
18574     /**
18575      * Marked
18576      */
18577          /**
18578          * eval:var:marked
18579     */
18580     var marked = function (src, opt, callback) {
18581       if (callback || typeof opt === 'function') {
18582         if (!callback) {
18583           callback = opt;
18584           opt = null;
18585         }
18586     
18587         opt = merge({}, marked.defaults, opt || {});
18588     
18589         var highlight = opt.highlight
18590           , tokens
18591           , pending
18592           , i = 0;
18593     
18594         try {
18595           tokens = Lexer.lex(src, opt)
18596         } catch (e) {
18597           return callback(e);
18598         }
18599     
18600         pending = tokens.length;
18601          /**
18602          * eval:var:done
18603     */
18604         var done = function(err) {
18605           if (err) {
18606             opt.highlight = highlight;
18607             return callback(err);
18608           }
18609     
18610           var out;
18611     
18612           try {
18613             out = Parser.parse(tokens, opt);
18614           } catch (e) {
18615             err = e;
18616           }
18617     
18618           opt.highlight = highlight;
18619     
18620           return err
18621             ? callback(err)
18622             : callback(null, out);
18623         };
18624     
18625         if (!highlight || highlight.length < 3) {
18626           return done();
18627         }
18628     
18629         delete opt.highlight;
18630     
18631         if (!pending) { return done(); }
18632     
18633         for (; i < tokens.length; i++) {
18634           (function(token) {
18635             if (token.type !== 'code') {
18636               return --pending || done();
18637             }
18638             return highlight(token.text, token.lang, function(err, code) {
18639               if (err) { return done(err); }
18640               if (code == null || code === token.text) {
18641                 return --pending || done();
18642               }
18643               token.text = code;
18644               token.escaped = true;
18645               --pending || done();
18646             });
18647           })(tokens[i]);
18648         }
18649     
18650         return;
18651       }
18652       try {
18653         if (opt) { opt = merge({}, marked.defaults, opt); }
18654         return Parser.parse(Lexer.lex(src, opt), opt);
18655       } catch (e) {
18656         e.message += '\nPlease report this to https://github.com/chjj/marked.';
18657         if ((opt || marked.defaults).silent) {
18658           return '<p>An error occured:</p><pre>'
18659             + escape(e.message + '', true)
18660             + '</pre>';
18661         }
18662         throw e;
18663       }
18664     }
18665     
18666     /**
18667      * Options
18668      */
18669     
18670     marked.options =
18671     marked.setOptions = function(opt) {
18672       merge(marked.defaults, opt);
18673       return marked;
18674     };
18675     
18676     marked.defaults = {
18677       gfm: true,
18678       tables: true,
18679       breaks: false,
18680       pedantic: false,
18681       sanitize: false,
18682       sanitizer: null,
18683       mangle: true,
18684       smartLists: false,
18685       silent: false,
18686       highlight: null,
18687       langPrefix: 'lang-',
18688       smartypants: false,
18689       headerPrefix: '',
18690       renderer: new Renderer,
18691       xhtml: false
18692     };
18693     
18694     /**
18695      * Expose
18696      */
18697     
18698     marked.Parser = Parser;
18699     marked.parser = Parser.parse;
18700     
18701     marked.Renderer = Renderer;
18702     
18703     marked.Lexer = Lexer;
18704     marked.lexer = Lexer.lex;
18705     
18706     marked.InlineLexer = InlineLexer;
18707     marked.inlineLexer = InlineLexer.output;
18708     
18709     marked.parse = marked;
18710     
18711     Roo.Markdown.marked = marked;
18712
18713 })();/*
18714  * Based on:
18715  * Ext JS Library 1.1.1
18716  * Copyright(c) 2006-2007, Ext JS, LLC.
18717  *
18718  * Originally Released Under LGPL - original licence link has changed is not relivant.
18719  *
18720  * Fork - LGPL
18721  * <script type="text/javascript">
18722  */
18723
18724
18725
18726 /*
18727  * These classes are derivatives of the similarly named classes in the YUI Library.
18728  * The original license:
18729  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18730  * Code licensed under the BSD License:
18731  * http://developer.yahoo.net/yui/license.txt
18732  */
18733
18734 (function() {
18735
18736 var Event=Roo.EventManager;
18737 var Dom=Roo.lib.Dom;
18738
18739 /**
18740  * @class Roo.dd.DragDrop
18741  * @extends Roo.util.Observable
18742  * Defines the interface and base operation of items that that can be
18743  * dragged or can be drop targets.  It was designed to be extended, overriding
18744  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
18745  * Up to three html elements can be associated with a DragDrop instance:
18746  * <ul>
18747  * <li>linked element: the element that is passed into the constructor.
18748  * This is the element which defines the boundaries for interaction with
18749  * other DragDrop objects.</li>
18750  * <li>handle element(s): The drag operation only occurs if the element that
18751  * was clicked matches a handle element.  By default this is the linked
18752  * element, but there are times that you will want only a portion of the
18753  * linked element to initiate the drag operation, and the setHandleElId()
18754  * method provides a way to define this.</li>
18755  * <li>drag element: this represents the element that would be moved along
18756  * with the cursor during a drag operation.  By default, this is the linked
18757  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
18758  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
18759  * </li>
18760  * </ul>
18761  * This class should not be instantiated until the onload event to ensure that
18762  * the associated elements are available.
18763  * The following would define a DragDrop obj that would interact with any
18764  * other DragDrop obj in the "group1" group:
18765  * <pre>
18766  *  dd = new Roo.dd.DragDrop("div1", "group1");
18767  * </pre>
18768  * Since none of the event handlers have been implemented, nothing would
18769  * actually happen if you were to run the code above.  Normally you would
18770  * override this class or one of the default implementations, but you can
18771  * also override the methods you want on an instance of the class...
18772  * <pre>
18773  *  dd.onDragDrop = function(e, id) {
18774  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
18775  *  }
18776  * </pre>
18777  * @constructor
18778  * @param {String} id of the element that is linked to this instance
18779  * @param {String} sGroup the group of related DragDrop objects
18780  * @param {object} config an object containing configurable attributes
18781  *                Valid properties for DragDrop:
18782  *                    padding, isTarget, maintainOffset, primaryButtonOnly
18783  */
18784 Roo.dd.DragDrop = function(id, sGroup, config) {
18785     if (id) {
18786         this.init(id, sGroup, config);
18787     }
18788     
18789 };
18790
18791 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
18792
18793     /**
18794      * The id of the element associated with this object.  This is what we
18795      * refer to as the "linked element" because the size and position of
18796      * this element is used to determine when the drag and drop objects have
18797      * interacted.
18798      * @property id
18799      * @type String
18800      */
18801     id: null,
18802
18803     /**
18804      * Configuration attributes passed into the constructor
18805      * @property config
18806      * @type object
18807      */
18808     config: null,
18809
18810     /**
18811      * The id of the element that will be dragged.  By default this is same
18812      * as the linked element , but could be changed to another element. Ex:
18813      * Roo.dd.DDProxy
18814      * @property dragElId
18815      * @type String
18816      * @private
18817      */
18818     dragElId: null,
18819
18820     /**
18821      * the id of the element that initiates the drag operation.  By default
18822      * this is the linked element, but could be changed to be a child of this
18823      * element.  This lets us do things like only starting the drag when the
18824      * header element within the linked html element is clicked.
18825      * @property handleElId
18826      * @type String
18827      * @private
18828      */
18829     handleElId: null,
18830
18831     /**
18832      * An associative array of HTML tags that will be ignored if clicked.
18833      * @property invalidHandleTypes
18834      * @type {string: string}
18835      */
18836     invalidHandleTypes: null,
18837
18838     /**
18839      * An associative array of ids for elements that will be ignored if clicked
18840      * @property invalidHandleIds
18841      * @type {string: string}
18842      */
18843     invalidHandleIds: null,
18844
18845     /**
18846      * An indexted array of css class names for elements that will be ignored
18847      * if clicked.
18848      * @property invalidHandleClasses
18849      * @type string[]
18850      */
18851     invalidHandleClasses: null,
18852
18853     /**
18854      * The linked element's absolute X position at the time the drag was
18855      * started
18856      * @property startPageX
18857      * @type int
18858      * @private
18859      */
18860     startPageX: 0,
18861
18862     /**
18863      * The linked element's absolute X position at the time the drag was
18864      * started
18865      * @property startPageY
18866      * @type int
18867      * @private
18868      */
18869     startPageY: 0,
18870
18871     /**
18872      * The group defines a logical collection of DragDrop objects that are
18873      * related.  Instances only get events when interacting with other
18874      * DragDrop object in the same group.  This lets us define multiple
18875      * groups using a single DragDrop subclass if we want.
18876      * @property groups
18877      * @type {string: string}
18878      */
18879     groups: null,
18880
18881     /**
18882      * Individual drag/drop instances can be locked.  This will prevent
18883      * onmousedown start drag.
18884      * @property locked
18885      * @type boolean
18886      * @private
18887      */
18888     locked: false,
18889
18890     /**
18891      * Lock this instance
18892      * @method lock
18893      */
18894     lock: function() { this.locked = true; },
18895
18896     /**
18897      * Unlock this instace
18898      * @method unlock
18899      */
18900     unlock: function() { this.locked = false; },
18901
18902     /**
18903      * By default, all insances can be a drop target.  This can be disabled by
18904      * setting isTarget to false.
18905      * @method isTarget
18906      * @type boolean
18907      */
18908     isTarget: true,
18909
18910     /**
18911      * The padding configured for this drag and drop object for calculating
18912      * the drop zone intersection with this object.
18913      * @method padding
18914      * @type int[]
18915      */
18916     padding: null,
18917
18918     /**
18919      * Cached reference to the linked element
18920      * @property _domRef
18921      * @private
18922      */
18923     _domRef: null,
18924
18925     /**
18926      * Internal typeof flag
18927      * @property __ygDragDrop
18928      * @private
18929      */
18930     __ygDragDrop: true,
18931
18932     /**
18933      * Set to true when horizontal contraints are applied
18934      * @property constrainX
18935      * @type boolean
18936      * @private
18937      */
18938     constrainX: false,
18939
18940     /**
18941      * Set to true when vertical contraints are applied
18942      * @property constrainY
18943      * @type boolean
18944      * @private
18945      */
18946     constrainY: false,
18947
18948     /**
18949      * The left constraint
18950      * @property minX
18951      * @type int
18952      * @private
18953      */
18954     minX: 0,
18955
18956     /**
18957      * The right constraint
18958      * @property maxX
18959      * @type int
18960      * @private
18961      */
18962     maxX: 0,
18963
18964     /**
18965      * The up constraint
18966      * @property minY
18967      * @type int
18968      * @type int
18969      * @private
18970      */
18971     minY: 0,
18972
18973     /**
18974      * The down constraint
18975      * @property maxY
18976      * @type int
18977      * @private
18978      */
18979     maxY: 0,
18980
18981     /**
18982      * Maintain offsets when we resetconstraints.  Set to true when you want
18983      * the position of the element relative to its parent to stay the same
18984      * when the page changes
18985      *
18986      * @property maintainOffset
18987      * @type boolean
18988      */
18989     maintainOffset: false,
18990
18991     /**
18992      * Array of pixel locations the element will snap to if we specified a
18993      * horizontal graduation/interval.  This array is generated automatically
18994      * when you define a tick interval.
18995      * @property xTicks
18996      * @type int[]
18997      */
18998     xTicks: null,
18999
19000     /**
19001      * Array of pixel locations the element will snap to if we specified a
19002      * vertical graduation/interval.  This array is generated automatically
19003      * when you define a tick interval.
19004      * @property yTicks
19005      * @type int[]
19006      */
19007     yTicks: null,
19008
19009     /**
19010      * By default the drag and drop instance will only respond to the primary
19011      * button click (left button for a right-handed mouse).  Set to true to
19012      * allow drag and drop to start with any mouse click that is propogated
19013      * by the browser
19014      * @property primaryButtonOnly
19015      * @type boolean
19016      */
19017     primaryButtonOnly: true,
19018
19019     /**
19020      * The availabe property is false until the linked dom element is accessible.
19021      * @property available
19022      * @type boolean
19023      */
19024     available: false,
19025
19026     /**
19027      * By default, drags can only be initiated if the mousedown occurs in the
19028      * region the linked element is.  This is done in part to work around a
19029      * bug in some browsers that mis-report the mousedown if the previous
19030      * mouseup happened outside of the window.  This property is set to true
19031      * if outer handles are defined.
19032      *
19033      * @property hasOuterHandles
19034      * @type boolean
19035      * @default false
19036      */
19037     hasOuterHandles: false,
19038
19039     /**
19040      * Code that executes immediately before the startDrag event
19041      * @method b4StartDrag
19042      * @private
19043      */
19044     b4StartDrag: function(x, y) { },
19045
19046     /**
19047      * Abstract method called after a drag/drop object is clicked
19048      * and the drag or mousedown time thresholds have beeen met.
19049      * @method startDrag
19050      * @param {int} X click location
19051      * @param {int} Y click location
19052      */
19053     startDrag: function(x, y) { /* override this */ },
19054
19055     /**
19056      * Code that executes immediately before the onDrag event
19057      * @method b4Drag
19058      * @private
19059      */
19060     b4Drag: function(e) { },
19061
19062     /**
19063      * Abstract method called during the onMouseMove event while dragging an
19064      * object.
19065      * @method onDrag
19066      * @param {Event} e the mousemove event
19067      */
19068     onDrag: function(e) { /* override this */ },
19069
19070     /**
19071      * Abstract method called when this element fist begins hovering over
19072      * another DragDrop obj
19073      * @method onDragEnter
19074      * @param {Event} e the mousemove event
19075      * @param {String|DragDrop[]} id In POINT mode, the element
19076      * id this is hovering over.  In INTERSECT mode, an array of one or more
19077      * dragdrop items being hovered over.
19078      */
19079     onDragEnter: function(e, id) { /* override this */ },
19080
19081     /**
19082      * Code that executes immediately before the onDragOver event
19083      * @method b4DragOver
19084      * @private
19085      */
19086     b4DragOver: function(e) { },
19087
19088     /**
19089      * Abstract method called when this element is hovering over another
19090      * DragDrop obj
19091      * @method onDragOver
19092      * @param {Event} e the mousemove event
19093      * @param {String|DragDrop[]} id In POINT mode, the element
19094      * id this is hovering over.  In INTERSECT mode, an array of dd items
19095      * being hovered over.
19096      */
19097     onDragOver: function(e, id) { /* override this */ },
19098
19099     /**
19100      * Code that executes immediately before the onDragOut event
19101      * @method b4DragOut
19102      * @private
19103      */
19104     b4DragOut: function(e) { },
19105
19106     /**
19107      * Abstract method called when we are no longer hovering over an element
19108      * @method onDragOut
19109      * @param {Event} e the mousemove event
19110      * @param {String|DragDrop[]} id In POINT mode, the element
19111      * id this was hovering over.  In INTERSECT mode, an array of dd items
19112      * that the mouse is no longer over.
19113      */
19114     onDragOut: function(e, id) { /* override this */ },
19115
19116     /**
19117      * Code that executes immediately before the onDragDrop event
19118      * @method b4DragDrop
19119      * @private
19120      */
19121     b4DragDrop: function(e) { },
19122
19123     /**
19124      * Abstract method called when this item is dropped on another DragDrop
19125      * obj
19126      * @method onDragDrop
19127      * @param {Event} e the mouseup event
19128      * @param {String|DragDrop[]} id In POINT mode, the element
19129      * id this was dropped on.  In INTERSECT mode, an array of dd items this
19130      * was dropped on.
19131      */
19132     onDragDrop: function(e, id) { /* override this */ },
19133
19134     /**
19135      * Abstract method called when this item is dropped on an area with no
19136      * drop target
19137      * @method onInvalidDrop
19138      * @param {Event} e the mouseup event
19139      */
19140     onInvalidDrop: function(e) { /* override this */ },
19141
19142     /**
19143      * Code that executes immediately before the endDrag event
19144      * @method b4EndDrag
19145      * @private
19146      */
19147     b4EndDrag: function(e) { },
19148
19149     /**
19150      * Fired when we are done dragging the object
19151      * @method endDrag
19152      * @param {Event} e the mouseup event
19153      */
19154     endDrag: function(e) { /* override this */ },
19155
19156     /**
19157      * Code executed immediately before the onMouseDown event
19158      * @method b4MouseDown
19159      * @param {Event} e the mousedown event
19160      * @private
19161      */
19162     b4MouseDown: function(e) {  },
19163
19164     /**
19165      * Event handler that fires when a drag/drop obj gets a mousedown
19166      * @method onMouseDown
19167      * @param {Event} e the mousedown event
19168      */
19169     onMouseDown: function(e) { /* override this */ },
19170
19171     /**
19172      * Event handler that fires when a drag/drop obj gets a mouseup
19173      * @method onMouseUp
19174      * @param {Event} e the mouseup event
19175      */
19176     onMouseUp: function(e) { /* override this */ },
19177
19178     /**
19179      * Override the onAvailable method to do what is needed after the initial
19180      * position was determined.
19181      * @method onAvailable
19182      */
19183     onAvailable: function () {
19184     },
19185
19186     /*
19187      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
19188      * @type Object
19189      */
19190     defaultPadding : {left:0, right:0, top:0, bottom:0},
19191
19192     /*
19193      * Initializes the drag drop object's constraints to restrict movement to a certain element.
19194  *
19195  * Usage:
19196  <pre><code>
19197  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
19198                 { dragElId: "existingProxyDiv" });
19199  dd.startDrag = function(){
19200      this.constrainTo("parent-id");
19201  };
19202  </code></pre>
19203  * Or you can initalize it using the {@link Roo.Element} object:
19204  <pre><code>
19205  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
19206      startDrag : function(){
19207          this.constrainTo("parent-id");
19208      }
19209  });
19210  </code></pre>
19211      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
19212      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
19213      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
19214      * an object containing the sides to pad. For example: {right:10, bottom:10}
19215      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
19216      */
19217     constrainTo : function(constrainTo, pad, inContent){
19218         if(typeof pad == "number"){
19219             pad = {left: pad, right:pad, top:pad, bottom:pad};
19220         }
19221         pad = pad || this.defaultPadding;
19222         var b = Roo.get(this.getEl()).getBox();
19223         var ce = Roo.get(constrainTo);
19224         var s = ce.getScroll();
19225         var c, cd = ce.dom;
19226         if(cd == document.body){
19227             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
19228         }else{
19229             xy = ce.getXY();
19230             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
19231         }
19232
19233
19234         var topSpace = b.y - c.y;
19235         var leftSpace = b.x - c.x;
19236
19237         this.resetConstraints();
19238         this.setXConstraint(leftSpace - (pad.left||0), // left
19239                 c.width - leftSpace - b.width - (pad.right||0) //right
19240         );
19241         this.setYConstraint(topSpace - (pad.top||0), //top
19242                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
19243         );
19244     },
19245
19246     /**
19247      * Returns a reference to the linked element
19248      * @method getEl
19249      * @return {HTMLElement} the html element
19250      */
19251     getEl: function() {
19252         if (!this._domRef) {
19253             this._domRef = Roo.getDom(this.id);
19254         }
19255
19256         return this._domRef;
19257     },
19258
19259     /**
19260      * Returns a reference to the actual element to drag.  By default this is
19261      * the same as the html element, but it can be assigned to another
19262      * element. An example of this can be found in Roo.dd.DDProxy
19263      * @method getDragEl
19264      * @return {HTMLElement} the html element
19265      */
19266     getDragEl: function() {
19267         return Roo.getDom(this.dragElId);
19268     },
19269
19270     /**
19271      * Sets up the DragDrop object.  Must be called in the constructor of any
19272      * Roo.dd.DragDrop subclass
19273      * @method init
19274      * @param id the id of the linked element
19275      * @param {String} sGroup the group of related items
19276      * @param {object} config configuration attributes
19277      */
19278     init: function(id, sGroup, config) {
19279         this.initTarget(id, sGroup, config);
19280         if (!Roo.isTouch) {
19281             Event.on(this.id, "mousedown", this.handleMouseDown, this);
19282         }
19283         Event.on(this.id, "touchstart", this.handleMouseDown, this);
19284         // Event.on(this.id, "selectstart", Event.preventDefault);
19285     },
19286
19287     /**
19288      * Initializes Targeting functionality only... the object does not
19289      * get a mousedown handler.
19290      * @method initTarget
19291      * @param id the id of the linked element
19292      * @param {String} sGroup the group of related items
19293      * @param {object} config configuration attributes
19294      */
19295     initTarget: function(id, sGroup, config) {
19296
19297         // configuration attributes
19298         this.config = config || {};
19299
19300         // create a local reference to the drag and drop manager
19301         this.DDM = Roo.dd.DDM;
19302         // initialize the groups array
19303         this.groups = {};
19304
19305         // assume that we have an element reference instead of an id if the
19306         // parameter is not a string
19307         if (typeof id !== "string") {
19308             id = Roo.id(id);
19309         }
19310
19311         // set the id
19312         this.id = id;
19313
19314         // add to an interaction group
19315         this.addToGroup((sGroup) ? sGroup : "default");
19316
19317         // We don't want to register this as the handle with the manager
19318         // so we just set the id rather than calling the setter.
19319         this.handleElId = id;
19320
19321         // the linked element is the element that gets dragged by default
19322         this.setDragElId(id);
19323
19324         // by default, clicked anchors will not start drag operations.
19325         this.invalidHandleTypes = { A: "A" };
19326         this.invalidHandleIds = {};
19327         this.invalidHandleClasses = [];
19328
19329         this.applyConfig();
19330
19331         this.handleOnAvailable();
19332     },
19333
19334     /**
19335      * Applies the configuration parameters that were passed into the constructor.
19336      * This is supposed to happen at each level through the inheritance chain.  So
19337      * a DDProxy implentation will execute apply config on DDProxy, DD, and
19338      * DragDrop in order to get all of the parameters that are available in
19339      * each object.
19340      * @method applyConfig
19341      */
19342     applyConfig: function() {
19343
19344         // configurable properties:
19345         //    padding, isTarget, maintainOffset, primaryButtonOnly
19346         this.padding           = this.config.padding || [0, 0, 0, 0];
19347         this.isTarget          = (this.config.isTarget !== false);
19348         this.maintainOffset    = (this.config.maintainOffset);
19349         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
19350
19351     },
19352
19353     /**
19354      * Executed when the linked element is available
19355      * @method handleOnAvailable
19356      * @private
19357      */
19358     handleOnAvailable: function() {
19359         this.available = true;
19360         this.resetConstraints();
19361         this.onAvailable();
19362     },
19363
19364      /**
19365      * Configures the padding for the target zone in px.  Effectively expands
19366      * (or reduces) the virtual object size for targeting calculations.
19367      * Supports css-style shorthand; if only one parameter is passed, all sides
19368      * will have that padding, and if only two are passed, the top and bottom
19369      * will have the first param, the left and right the second.
19370      * @method setPadding
19371      * @param {int} iTop    Top pad
19372      * @param {int} iRight  Right pad
19373      * @param {int} iBot    Bot pad
19374      * @param {int} iLeft   Left pad
19375      */
19376     setPadding: function(iTop, iRight, iBot, iLeft) {
19377         // this.padding = [iLeft, iRight, iTop, iBot];
19378         if (!iRight && 0 !== iRight) {
19379             this.padding = [iTop, iTop, iTop, iTop];
19380         } else if (!iBot && 0 !== iBot) {
19381             this.padding = [iTop, iRight, iTop, iRight];
19382         } else {
19383             this.padding = [iTop, iRight, iBot, iLeft];
19384         }
19385     },
19386
19387     /**
19388      * Stores the initial placement of the linked element.
19389      * @method setInitialPosition
19390      * @param {int} diffX   the X offset, default 0
19391      * @param {int} diffY   the Y offset, default 0
19392      */
19393     setInitPosition: function(diffX, diffY) {
19394         var el = this.getEl();
19395
19396         if (!this.DDM.verifyEl(el)) {
19397             return;
19398         }
19399
19400         var dx = diffX || 0;
19401         var dy = diffY || 0;
19402
19403         var p = Dom.getXY( el );
19404
19405         this.initPageX = p[0] - dx;
19406         this.initPageY = p[1] - dy;
19407
19408         this.lastPageX = p[0];
19409         this.lastPageY = p[1];
19410
19411
19412         this.setStartPosition(p);
19413     },
19414
19415     /**
19416      * Sets the start position of the element.  This is set when the obj
19417      * is initialized, the reset when a drag is started.
19418      * @method setStartPosition
19419      * @param pos current position (from previous lookup)
19420      * @private
19421      */
19422     setStartPosition: function(pos) {
19423         var p = pos || Dom.getXY( this.getEl() );
19424         this.deltaSetXY = null;
19425
19426         this.startPageX = p[0];
19427         this.startPageY = p[1];
19428     },
19429
19430     /**
19431      * Add this instance to a group of related drag/drop objects.  All
19432      * instances belong to at least one group, and can belong to as many
19433      * groups as needed.
19434      * @method addToGroup
19435      * @param sGroup {string} the name of the group
19436      */
19437     addToGroup: function(sGroup) {
19438         this.groups[sGroup] = true;
19439         this.DDM.regDragDrop(this, sGroup);
19440     },
19441
19442     /**
19443      * Remove's this instance from the supplied interaction group
19444      * @method removeFromGroup
19445      * @param {string}  sGroup  The group to drop
19446      */
19447     removeFromGroup: function(sGroup) {
19448         if (this.groups[sGroup]) {
19449             delete this.groups[sGroup];
19450         }
19451
19452         this.DDM.removeDDFromGroup(this, sGroup);
19453     },
19454
19455     /**
19456      * Allows you to specify that an element other than the linked element
19457      * will be moved with the cursor during a drag
19458      * @method setDragElId
19459      * @param id {string} the id of the element that will be used to initiate the drag
19460      */
19461     setDragElId: function(id) {
19462         this.dragElId = id;
19463     },
19464
19465     /**
19466      * Allows you to specify a child of the linked element that should be
19467      * used to initiate the drag operation.  An example of this would be if
19468      * you have a content div with text and links.  Clicking anywhere in the
19469      * content area would normally start the drag operation.  Use this method
19470      * to specify that an element inside of the content div is the element
19471      * that starts the drag operation.
19472      * @method setHandleElId
19473      * @param id {string} the id of the element that will be used to
19474      * initiate the drag.
19475      */
19476     setHandleElId: function(id) {
19477         if (typeof id !== "string") {
19478             id = Roo.id(id);
19479         }
19480         this.handleElId = id;
19481         this.DDM.regHandle(this.id, id);
19482     },
19483
19484     /**
19485      * Allows you to set an element outside of the linked element as a drag
19486      * handle
19487      * @method setOuterHandleElId
19488      * @param id the id of the element that will be used to initiate the drag
19489      */
19490     setOuterHandleElId: function(id) {
19491         if (typeof id !== "string") {
19492             id = Roo.id(id);
19493         }
19494         Event.on(id, "mousedown",
19495                 this.handleMouseDown, this);
19496         this.setHandleElId(id);
19497
19498         this.hasOuterHandles = true;
19499     },
19500
19501     /**
19502      * Remove all drag and drop hooks for this element
19503      * @method unreg
19504      */
19505     unreg: function() {
19506         Event.un(this.id, "mousedown",
19507                 this.handleMouseDown);
19508         Event.un(this.id, "touchstart",
19509                 this.handleMouseDown);
19510         this._domRef = null;
19511         this.DDM._remove(this);
19512     },
19513
19514     destroy : function(){
19515         this.unreg();
19516     },
19517
19518     /**
19519      * Returns true if this instance is locked, or the drag drop mgr is locked
19520      * (meaning that all drag/drop is disabled on the page.)
19521      * @method isLocked
19522      * @return {boolean} true if this obj or all drag/drop is locked, else
19523      * false
19524      */
19525     isLocked: function() {
19526         return (this.DDM.isLocked() || this.locked);
19527     },
19528
19529     /**
19530      * Fired when this object is clicked
19531      * @method handleMouseDown
19532      * @param {Event} e
19533      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
19534      * @private
19535      */
19536     handleMouseDown: function(e, oDD){
19537      
19538         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
19539             //Roo.log('not touch/ button !=0');
19540             return;
19541         }
19542         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
19543             return; // double touch..
19544         }
19545         
19546
19547         if (this.isLocked()) {
19548             //Roo.log('locked');
19549             return;
19550         }
19551
19552         this.DDM.refreshCache(this.groups);
19553 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
19554         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
19555         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
19556             //Roo.log('no outer handes or not over target');
19557                 // do nothing.
19558         } else {
19559 //            Roo.log('check validator');
19560             if (this.clickValidator(e)) {
19561 //                Roo.log('validate success');
19562                 // set the initial element position
19563                 this.setStartPosition();
19564
19565
19566                 this.b4MouseDown(e);
19567                 this.onMouseDown(e);
19568
19569                 this.DDM.handleMouseDown(e, this);
19570
19571                 this.DDM.stopEvent(e);
19572             } else {
19573
19574
19575             }
19576         }
19577     },
19578
19579     clickValidator: function(e) {
19580         var target = e.getTarget();
19581         return ( this.isValidHandleChild(target) &&
19582                     (this.id == this.handleElId ||
19583                         this.DDM.handleWasClicked(target, this.id)) );
19584     },
19585
19586     /**
19587      * Allows you to specify a tag name that should not start a drag operation
19588      * when clicked.  This is designed to facilitate embedding links within a
19589      * drag handle that do something other than start the drag.
19590      * @method addInvalidHandleType
19591      * @param {string} tagName the type of element to exclude
19592      */
19593     addInvalidHandleType: function(tagName) {
19594         var type = tagName.toUpperCase();
19595         this.invalidHandleTypes[type] = type;
19596     },
19597
19598     /**
19599      * Lets you to specify an element id for a child of a drag handle
19600      * that should not initiate a drag
19601      * @method addInvalidHandleId
19602      * @param {string} id the element id of the element you wish to ignore
19603      */
19604     addInvalidHandleId: function(id) {
19605         if (typeof id !== "string") {
19606             id = Roo.id(id);
19607         }
19608         this.invalidHandleIds[id] = id;
19609     },
19610
19611     /**
19612      * Lets you specify a css class of elements that will not initiate a drag
19613      * @method addInvalidHandleClass
19614      * @param {string} cssClass the class of the elements you wish to ignore
19615      */
19616     addInvalidHandleClass: function(cssClass) {
19617         this.invalidHandleClasses.push(cssClass);
19618     },
19619
19620     /**
19621      * Unsets an excluded tag name set by addInvalidHandleType
19622      * @method removeInvalidHandleType
19623      * @param {string} tagName the type of element to unexclude
19624      */
19625     removeInvalidHandleType: function(tagName) {
19626         var type = tagName.toUpperCase();
19627         // this.invalidHandleTypes[type] = null;
19628         delete this.invalidHandleTypes[type];
19629     },
19630
19631     /**
19632      * Unsets an invalid handle id
19633      * @method removeInvalidHandleId
19634      * @param {string} id the id of the element to re-enable
19635      */
19636     removeInvalidHandleId: function(id) {
19637         if (typeof id !== "string") {
19638             id = Roo.id(id);
19639         }
19640         delete this.invalidHandleIds[id];
19641     },
19642
19643     /**
19644      * Unsets an invalid css class
19645      * @method removeInvalidHandleClass
19646      * @param {string} cssClass the class of the element(s) you wish to
19647      * re-enable
19648      */
19649     removeInvalidHandleClass: function(cssClass) {
19650         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
19651             if (this.invalidHandleClasses[i] == cssClass) {
19652                 delete this.invalidHandleClasses[i];
19653             }
19654         }
19655     },
19656
19657     /**
19658      * Checks the tag exclusion list to see if this click should be ignored
19659      * @method isValidHandleChild
19660      * @param {HTMLElement} node the HTMLElement to evaluate
19661      * @return {boolean} true if this is a valid tag type, false if not
19662      */
19663     isValidHandleChild: function(node) {
19664
19665         var valid = true;
19666         // var n = (node.nodeName == "#text") ? node.parentNode : node;
19667         var nodeName;
19668         try {
19669             nodeName = node.nodeName.toUpperCase();
19670         } catch(e) {
19671             nodeName = node.nodeName;
19672         }
19673         valid = valid && !this.invalidHandleTypes[nodeName];
19674         valid = valid && !this.invalidHandleIds[node.id];
19675
19676         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
19677             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
19678         }
19679
19680
19681         return valid;
19682
19683     },
19684
19685     /**
19686      * Create the array of horizontal tick marks if an interval was specified
19687      * in setXConstraint().
19688      * @method setXTicks
19689      * @private
19690      */
19691     setXTicks: function(iStartX, iTickSize) {
19692         this.xTicks = [];
19693         this.xTickSize = iTickSize;
19694
19695         var tickMap = {};
19696
19697         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
19698             if (!tickMap[i]) {
19699                 this.xTicks[this.xTicks.length] = i;
19700                 tickMap[i] = true;
19701             }
19702         }
19703
19704         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
19705             if (!tickMap[i]) {
19706                 this.xTicks[this.xTicks.length] = i;
19707                 tickMap[i] = true;
19708             }
19709         }
19710
19711         this.xTicks.sort(this.DDM.numericSort) ;
19712     },
19713
19714     /**
19715      * Create the array of vertical tick marks if an interval was specified in
19716      * setYConstraint().
19717      * @method setYTicks
19718      * @private
19719      */
19720     setYTicks: function(iStartY, iTickSize) {
19721         this.yTicks = [];
19722         this.yTickSize = iTickSize;
19723
19724         var tickMap = {};
19725
19726         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
19727             if (!tickMap[i]) {
19728                 this.yTicks[this.yTicks.length] = i;
19729                 tickMap[i] = true;
19730             }
19731         }
19732
19733         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
19734             if (!tickMap[i]) {
19735                 this.yTicks[this.yTicks.length] = i;
19736                 tickMap[i] = true;
19737             }
19738         }
19739
19740         this.yTicks.sort(this.DDM.numericSort) ;
19741     },
19742
19743     /**
19744      * By default, the element can be dragged any place on the screen.  Use
19745      * this method to limit the horizontal travel of the element.  Pass in
19746      * 0,0 for the parameters if you want to lock the drag to the y axis.
19747      * @method setXConstraint
19748      * @param {int} iLeft the number of pixels the element can move to the left
19749      * @param {int} iRight the number of pixels the element can move to the
19750      * right
19751      * @param {int} iTickSize optional parameter for specifying that the
19752      * element
19753      * should move iTickSize pixels at a time.
19754      */
19755     setXConstraint: function(iLeft, iRight, iTickSize) {
19756         this.leftConstraint = iLeft;
19757         this.rightConstraint = iRight;
19758
19759         this.minX = this.initPageX - iLeft;
19760         this.maxX = this.initPageX + iRight;
19761         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
19762
19763         this.constrainX = true;
19764     },
19765
19766     /**
19767      * Clears any constraints applied to this instance.  Also clears ticks
19768      * since they can't exist independent of a constraint at this time.
19769      * @method clearConstraints
19770      */
19771     clearConstraints: function() {
19772         this.constrainX = false;
19773         this.constrainY = false;
19774         this.clearTicks();
19775     },
19776
19777     /**
19778      * Clears any tick interval defined for this instance
19779      * @method clearTicks
19780      */
19781     clearTicks: function() {
19782         this.xTicks = null;
19783         this.yTicks = null;
19784         this.xTickSize = 0;
19785         this.yTickSize = 0;
19786     },
19787
19788     /**
19789      * By default, the element can be dragged any place on the screen.  Set
19790      * this to limit the vertical travel of the element.  Pass in 0,0 for the
19791      * parameters if you want to lock the drag to the x axis.
19792      * @method setYConstraint
19793      * @param {int} iUp the number of pixels the element can move up
19794      * @param {int} iDown the number of pixels the element can move down
19795      * @param {int} iTickSize optional parameter for specifying that the
19796      * element should move iTickSize pixels at a time.
19797      */
19798     setYConstraint: function(iUp, iDown, iTickSize) {
19799         this.topConstraint = iUp;
19800         this.bottomConstraint = iDown;
19801
19802         this.minY = this.initPageY - iUp;
19803         this.maxY = this.initPageY + iDown;
19804         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
19805
19806         this.constrainY = true;
19807
19808     },
19809
19810     /**
19811      * resetConstraints must be called if you manually reposition a dd element.
19812      * @method resetConstraints
19813      * @param {boolean} maintainOffset
19814      */
19815     resetConstraints: function() {
19816
19817
19818         // Maintain offsets if necessary
19819         if (this.initPageX || this.initPageX === 0) {
19820             // figure out how much this thing has moved
19821             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
19822             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
19823
19824             this.setInitPosition(dx, dy);
19825
19826         // This is the first time we have detected the element's position
19827         } else {
19828             this.setInitPosition();
19829         }
19830
19831         if (this.constrainX) {
19832             this.setXConstraint( this.leftConstraint,
19833                                  this.rightConstraint,
19834                                  this.xTickSize        );
19835         }
19836
19837         if (this.constrainY) {
19838             this.setYConstraint( this.topConstraint,
19839                                  this.bottomConstraint,
19840                                  this.yTickSize         );
19841         }
19842     },
19843
19844     /**
19845      * Normally the drag element is moved pixel by pixel, but we can specify
19846      * that it move a number of pixels at a time.  This method resolves the
19847      * location when we have it set up like this.
19848      * @method getTick
19849      * @param {int} val where we want to place the object
19850      * @param {int[]} tickArray sorted array of valid points
19851      * @return {int} the closest tick
19852      * @private
19853      */
19854     getTick: function(val, tickArray) {
19855
19856         if (!tickArray) {
19857             // If tick interval is not defined, it is effectively 1 pixel,
19858             // so we return the value passed to us.
19859             return val;
19860         } else if (tickArray[0] >= val) {
19861             // The value is lower than the first tick, so we return the first
19862             // tick.
19863             return tickArray[0];
19864         } else {
19865             for (var i=0, len=tickArray.length; i<len; ++i) {
19866                 var next = i + 1;
19867                 if (tickArray[next] && tickArray[next] >= val) {
19868                     var diff1 = val - tickArray[i];
19869                     var diff2 = tickArray[next] - val;
19870                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
19871                 }
19872             }
19873
19874             // The value is larger than the last tick, so we return the last
19875             // tick.
19876             return tickArray[tickArray.length - 1];
19877         }
19878     },
19879
19880     /**
19881      * toString method
19882      * @method toString
19883      * @return {string} string representation of the dd obj
19884      */
19885     toString: function() {
19886         return ("DragDrop " + this.id);
19887     }
19888
19889 });
19890
19891 })();
19892 /*
19893  * Based on:
19894  * Ext JS Library 1.1.1
19895  * Copyright(c) 2006-2007, Ext JS, LLC.
19896  *
19897  * Originally Released Under LGPL - original licence link has changed is not relivant.
19898  *
19899  * Fork - LGPL
19900  * <script type="text/javascript">
19901  */
19902
19903
19904 /**
19905  * The drag and drop utility provides a framework for building drag and drop
19906  * applications.  In addition to enabling drag and drop for specific elements,
19907  * the drag and drop elements are tracked by the manager class, and the
19908  * interactions between the various elements are tracked during the drag and
19909  * the implementing code is notified about these important moments.
19910  */
19911
19912 // Only load the library once.  Rewriting the manager class would orphan
19913 // existing drag and drop instances.
19914 if (!Roo.dd.DragDropMgr) {
19915
19916 /**
19917  * @class Roo.dd.DragDropMgr
19918  * DragDropMgr is a singleton that tracks the element interaction for
19919  * all DragDrop items in the window.  Generally, you will not call
19920  * this class directly, but it does have helper methods that could
19921  * be useful in your DragDrop implementations.
19922  * @singleton
19923  */
19924 Roo.dd.DragDropMgr = function() {
19925
19926     var Event = Roo.EventManager;
19927
19928     return {
19929
19930         /**
19931          * Two dimensional Array of registered DragDrop objects.  The first
19932          * dimension is the DragDrop item group, the second the DragDrop
19933          * object.
19934          * @property ids
19935          * @type {string: string}
19936          * @private
19937          * @static
19938          */
19939         ids: {},
19940
19941         /**
19942          * Array of element ids defined as drag handles.  Used to determine
19943          * if the element that generated the mousedown event is actually the
19944          * handle and not the html element itself.
19945          * @property handleIds
19946          * @type {string: string}
19947          * @private
19948          * @static
19949          */
19950         handleIds: {},
19951
19952         /**
19953          * the DragDrop object that is currently being dragged
19954          * @property dragCurrent
19955          * @type DragDrop
19956          * @private
19957          * @static
19958          **/
19959         dragCurrent: null,
19960
19961         /**
19962          * the DragDrop object(s) that are being hovered over
19963          * @property dragOvers
19964          * @type Array
19965          * @private
19966          * @static
19967          */
19968         dragOvers: {},
19969
19970         /**
19971          * the X distance between the cursor and the object being dragged
19972          * @property deltaX
19973          * @type int
19974          * @private
19975          * @static
19976          */
19977         deltaX: 0,
19978
19979         /**
19980          * the Y distance between the cursor and the object being dragged
19981          * @property deltaY
19982          * @type int
19983          * @private
19984          * @static
19985          */
19986         deltaY: 0,
19987
19988         /**
19989          * Flag to determine if we should prevent the default behavior of the
19990          * events we define. By default this is true, but this can be set to
19991          * false if you need the default behavior (not recommended)
19992          * @property preventDefault
19993          * @type boolean
19994          * @static
19995          */
19996         preventDefault: true,
19997
19998         /**
19999          * Flag to determine if we should stop the propagation of the events
20000          * we generate. This is true by default but you may want to set it to
20001          * false if the html element contains other features that require the
20002          * mouse click.
20003          * @property stopPropagation
20004          * @type boolean
20005          * @static
20006          */
20007         stopPropagation: true,
20008
20009         /**
20010          * Internal flag that is set to true when drag and drop has been
20011          * intialized
20012          * @property initialized
20013          * @private
20014          * @static
20015          */
20016         initalized: false,
20017
20018         /**
20019          * All drag and drop can be disabled.
20020          * @property locked
20021          * @private
20022          * @static
20023          */
20024         locked: false,
20025
20026         /**
20027          * Called the first time an element is registered.
20028          * @method init
20029          * @private
20030          * @static
20031          */
20032         init: function() {
20033             this.initialized = true;
20034         },
20035
20036         /**
20037          * In point mode, drag and drop interaction is defined by the
20038          * location of the cursor during the drag/drop
20039          * @property POINT
20040          * @type int
20041          * @static
20042          */
20043         POINT: 0,
20044
20045         /**
20046          * In intersect mode, drag and drop interactio nis defined by the
20047          * overlap of two or more drag and drop objects.
20048          * @property INTERSECT
20049          * @type int
20050          * @static
20051          */
20052         INTERSECT: 1,
20053
20054         /**
20055          * The current drag and drop mode.  Default: POINT
20056          * @property mode
20057          * @type int
20058          * @static
20059          */
20060         mode: 0,
20061
20062         /**
20063          * Runs method on all drag and drop objects
20064          * @method _execOnAll
20065          * @private
20066          * @static
20067          */
20068         _execOnAll: function(sMethod, args) {
20069             for (var i in this.ids) {
20070                 for (var j in this.ids[i]) {
20071                     var oDD = this.ids[i][j];
20072                     if (! this.isTypeOfDD(oDD)) {
20073                         continue;
20074                     }
20075                     oDD[sMethod].apply(oDD, args);
20076                 }
20077             }
20078         },
20079
20080         /**
20081          * Drag and drop initialization.  Sets up the global event handlers
20082          * @method _onLoad
20083          * @private
20084          * @static
20085          */
20086         _onLoad: function() {
20087
20088             this.init();
20089
20090             if (!Roo.isTouch) {
20091                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
20092                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
20093             }
20094             Event.on(document, "touchend",   this.handleMouseUp, this, true);
20095             Event.on(document, "touchmove", this.handleMouseMove, this, true);
20096             
20097             Event.on(window,   "unload",    this._onUnload, this, true);
20098             Event.on(window,   "resize",    this._onResize, this, true);
20099             // Event.on(window,   "mouseout",    this._test);
20100
20101         },
20102
20103         /**
20104          * Reset constraints on all drag and drop objs
20105          * @method _onResize
20106          * @private
20107          * @static
20108          */
20109         _onResize: function(e) {
20110             this._execOnAll("resetConstraints", []);
20111         },
20112
20113         /**
20114          * Lock all drag and drop functionality
20115          * @method lock
20116          * @static
20117          */
20118         lock: function() { this.locked = true; },
20119
20120         /**
20121          * Unlock all drag and drop functionality
20122          * @method unlock
20123          * @static
20124          */
20125         unlock: function() { this.locked = false; },
20126
20127         /**
20128          * Is drag and drop locked?
20129          * @method isLocked
20130          * @return {boolean} True if drag and drop is locked, false otherwise.
20131          * @static
20132          */
20133         isLocked: function() { return this.locked; },
20134
20135         /**
20136          * Location cache that is set for all drag drop objects when a drag is
20137          * initiated, cleared when the drag is finished.
20138          * @property locationCache
20139          * @private
20140          * @static
20141          */
20142         locationCache: {},
20143
20144         /**
20145          * Set useCache to false if you want to force object the lookup of each
20146          * drag and drop linked element constantly during a drag.
20147          * @property useCache
20148          * @type boolean
20149          * @static
20150          */
20151         useCache: true,
20152
20153         /**
20154          * The number of pixels that the mouse needs to move after the
20155          * mousedown before the drag is initiated.  Default=3;
20156          * @property clickPixelThresh
20157          * @type int
20158          * @static
20159          */
20160         clickPixelThresh: 3,
20161
20162         /**
20163          * The number of milliseconds after the mousedown event to initiate the
20164          * drag if we don't get a mouseup event. Default=1000
20165          * @property clickTimeThresh
20166          * @type int
20167          * @static
20168          */
20169         clickTimeThresh: 350,
20170
20171         /**
20172          * Flag that indicates that either the drag pixel threshold or the
20173          * mousdown time threshold has been met
20174          * @property dragThreshMet
20175          * @type boolean
20176          * @private
20177          * @static
20178          */
20179         dragThreshMet: false,
20180
20181         /**
20182          * Timeout used for the click time threshold
20183          * @property clickTimeout
20184          * @type Object
20185          * @private
20186          * @static
20187          */
20188         clickTimeout: null,
20189
20190         /**
20191          * The X position of the mousedown event stored for later use when a
20192          * drag threshold is met.
20193          * @property startX
20194          * @type int
20195          * @private
20196          * @static
20197          */
20198         startX: 0,
20199
20200         /**
20201          * The Y position of the mousedown event stored for later use when a
20202          * drag threshold is met.
20203          * @property startY
20204          * @type int
20205          * @private
20206          * @static
20207          */
20208         startY: 0,
20209
20210         /**
20211          * Each DragDrop instance must be registered with the DragDropMgr.
20212          * This is executed in DragDrop.init()
20213          * @method regDragDrop
20214          * @param {DragDrop} oDD the DragDrop object to register
20215          * @param {String} sGroup the name of the group this element belongs to
20216          * @static
20217          */
20218         regDragDrop: function(oDD, sGroup) {
20219             if (!this.initialized) { this.init(); }
20220
20221             if (!this.ids[sGroup]) {
20222                 this.ids[sGroup] = {};
20223             }
20224             this.ids[sGroup][oDD.id] = oDD;
20225         },
20226
20227         /**
20228          * Removes the supplied dd instance from the supplied group. Executed
20229          * by DragDrop.removeFromGroup, so don't call this function directly.
20230          * @method removeDDFromGroup
20231          * @private
20232          * @static
20233          */
20234         removeDDFromGroup: function(oDD, sGroup) {
20235             if (!this.ids[sGroup]) {
20236                 this.ids[sGroup] = {};
20237             }
20238
20239             var obj = this.ids[sGroup];
20240             if (obj && obj[oDD.id]) {
20241                 delete obj[oDD.id];
20242             }
20243         },
20244
20245         /**
20246          * Unregisters a drag and drop item.  This is executed in
20247          * DragDrop.unreg, use that method instead of calling this directly.
20248          * @method _remove
20249          * @private
20250          * @static
20251          */
20252         _remove: function(oDD) {
20253             for (var g in oDD.groups) {
20254                 if (g && this.ids[g][oDD.id]) {
20255                     delete this.ids[g][oDD.id];
20256                 }
20257             }
20258             delete this.handleIds[oDD.id];
20259         },
20260
20261         /**
20262          * Each DragDrop handle element must be registered.  This is done
20263          * automatically when executing DragDrop.setHandleElId()
20264          * @method regHandle
20265          * @param {String} sDDId the DragDrop id this element is a handle for
20266          * @param {String} sHandleId the id of the element that is the drag
20267          * handle
20268          * @static
20269          */
20270         regHandle: function(sDDId, sHandleId) {
20271             if (!this.handleIds[sDDId]) {
20272                 this.handleIds[sDDId] = {};
20273             }
20274             this.handleIds[sDDId][sHandleId] = sHandleId;
20275         },
20276
20277         /**
20278          * Utility function to determine if a given element has been
20279          * registered as a drag drop item.
20280          * @method isDragDrop
20281          * @param {String} id the element id to check
20282          * @return {boolean} true if this element is a DragDrop item,
20283          * false otherwise
20284          * @static
20285          */
20286         isDragDrop: function(id) {
20287             return ( this.getDDById(id) ) ? true : false;
20288         },
20289
20290         /**
20291          * Returns the drag and drop instances that are in all groups the
20292          * passed in instance belongs to.
20293          * @method getRelated
20294          * @param {DragDrop} p_oDD the obj to get related data for
20295          * @param {boolean} bTargetsOnly if true, only return targetable objs
20296          * @return {DragDrop[]} the related instances
20297          * @static
20298          */
20299         getRelated: function(p_oDD, bTargetsOnly) {
20300             var oDDs = [];
20301             for (var i in p_oDD.groups) {
20302                 for (j in this.ids[i]) {
20303                     var dd = this.ids[i][j];
20304                     if (! this.isTypeOfDD(dd)) {
20305                         continue;
20306                     }
20307                     if (!bTargetsOnly || dd.isTarget) {
20308                         oDDs[oDDs.length] = dd;
20309                     }
20310                 }
20311             }
20312
20313             return oDDs;
20314         },
20315
20316         /**
20317          * Returns true if the specified dd target is a legal target for
20318          * the specifice drag obj
20319          * @method isLegalTarget
20320          * @param {DragDrop} the drag obj
20321          * @param {DragDrop} the target
20322          * @return {boolean} true if the target is a legal target for the
20323          * dd obj
20324          * @static
20325          */
20326         isLegalTarget: function (oDD, oTargetDD) {
20327             var targets = this.getRelated(oDD, true);
20328             for (var i=0, len=targets.length;i<len;++i) {
20329                 if (targets[i].id == oTargetDD.id) {
20330                     return true;
20331                 }
20332             }
20333
20334             return false;
20335         },
20336
20337         /**
20338          * My goal is to be able to transparently determine if an object is
20339          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
20340          * returns "object", oDD.constructor.toString() always returns
20341          * "DragDrop" and not the name of the subclass.  So for now it just
20342          * evaluates a well-known variable in DragDrop.
20343          * @method isTypeOfDD
20344          * @param {Object} the object to evaluate
20345          * @return {boolean} true if typeof oDD = DragDrop
20346          * @static
20347          */
20348         isTypeOfDD: function (oDD) {
20349             return (oDD && oDD.__ygDragDrop);
20350         },
20351
20352         /**
20353          * Utility function to determine if a given element has been
20354          * registered as a drag drop handle for the given Drag Drop object.
20355          * @method isHandle
20356          * @param {String} id the element id to check
20357          * @return {boolean} true if this element is a DragDrop handle, false
20358          * otherwise
20359          * @static
20360          */
20361         isHandle: function(sDDId, sHandleId) {
20362             return ( this.handleIds[sDDId] &&
20363                             this.handleIds[sDDId][sHandleId] );
20364         },
20365
20366         /**
20367          * Returns the DragDrop instance for a given id
20368          * @method getDDById
20369          * @param {String} id the id of the DragDrop object
20370          * @return {DragDrop} the drag drop object, null if it is not found
20371          * @static
20372          */
20373         getDDById: function(id) {
20374             for (var i in this.ids) {
20375                 if (this.ids[i][id]) {
20376                     return this.ids[i][id];
20377                 }
20378             }
20379             return null;
20380         },
20381
20382         /**
20383          * Fired after a registered DragDrop object gets the mousedown event.
20384          * Sets up the events required to track the object being dragged
20385          * @method handleMouseDown
20386          * @param {Event} e the event
20387          * @param oDD the DragDrop object being dragged
20388          * @private
20389          * @static
20390          */
20391         handleMouseDown: function(e, oDD) {
20392             if(Roo.QuickTips){
20393                 Roo.QuickTips.disable();
20394             }
20395             this.currentTarget = e.getTarget();
20396
20397             this.dragCurrent = oDD;
20398
20399             var el = oDD.getEl();
20400
20401             // track start position
20402             this.startX = e.getPageX();
20403             this.startY = e.getPageY();
20404
20405             this.deltaX = this.startX - el.offsetLeft;
20406             this.deltaY = this.startY - el.offsetTop;
20407
20408             this.dragThreshMet = false;
20409
20410             this.clickTimeout = setTimeout(
20411                     function() {
20412                         var DDM = Roo.dd.DDM;
20413                         DDM.startDrag(DDM.startX, DDM.startY);
20414                     },
20415                     this.clickTimeThresh );
20416         },
20417
20418         /**
20419          * Fired when either the drag pixel threshol or the mousedown hold
20420          * time threshold has been met.
20421          * @method startDrag
20422          * @param x {int} the X position of the original mousedown
20423          * @param y {int} the Y position of the original mousedown
20424          * @static
20425          */
20426         startDrag: function(x, y) {
20427             clearTimeout(this.clickTimeout);
20428             if (this.dragCurrent) {
20429                 this.dragCurrent.b4StartDrag(x, y);
20430                 this.dragCurrent.startDrag(x, y);
20431             }
20432             this.dragThreshMet = true;
20433         },
20434
20435         /**
20436          * Internal function to handle the mouseup event.  Will be invoked
20437          * from the context of the document.
20438          * @method handleMouseUp
20439          * @param {Event} e the event
20440          * @private
20441          * @static
20442          */
20443         handleMouseUp: function(e) {
20444
20445             if(Roo.QuickTips){
20446                 Roo.QuickTips.enable();
20447             }
20448             if (! this.dragCurrent) {
20449                 return;
20450             }
20451
20452             clearTimeout(this.clickTimeout);
20453
20454             if (this.dragThreshMet) {
20455                 this.fireEvents(e, true);
20456             } else {
20457             }
20458
20459             this.stopDrag(e);
20460
20461             this.stopEvent(e);
20462         },
20463
20464         /**
20465          * Utility to stop event propagation and event default, if these
20466          * features are turned on.
20467          * @method stopEvent
20468          * @param {Event} e the event as returned by this.getEvent()
20469          * @static
20470          */
20471         stopEvent: function(e){
20472             if(this.stopPropagation) {
20473                 e.stopPropagation();
20474             }
20475
20476             if (this.preventDefault) {
20477                 e.preventDefault();
20478             }
20479         },
20480
20481         /**
20482          * Internal function to clean up event handlers after the drag
20483          * operation is complete
20484          * @method stopDrag
20485          * @param {Event} e the event
20486          * @private
20487          * @static
20488          */
20489         stopDrag: function(e) {
20490             // Fire the drag end event for the item that was dragged
20491             if (this.dragCurrent) {
20492                 if (this.dragThreshMet) {
20493                     this.dragCurrent.b4EndDrag(e);
20494                     this.dragCurrent.endDrag(e);
20495                 }
20496
20497                 this.dragCurrent.onMouseUp(e);
20498             }
20499
20500             this.dragCurrent = null;
20501             this.dragOvers = {};
20502         },
20503
20504         /**
20505          * Internal function to handle the mousemove event.  Will be invoked
20506          * from the context of the html element.
20507          *
20508          * @TODO figure out what we can do about mouse events lost when the
20509          * user drags objects beyond the window boundary.  Currently we can
20510          * detect this in internet explorer by verifying that the mouse is
20511          * down during the mousemove event.  Firefox doesn't give us the
20512          * button state on the mousemove event.
20513          * @method handleMouseMove
20514          * @param {Event} e the event
20515          * @private
20516          * @static
20517          */
20518         handleMouseMove: function(e) {
20519             if (! this.dragCurrent) {
20520                 return true;
20521             }
20522
20523             // var button = e.which || e.button;
20524
20525             // check for IE mouseup outside of page boundary
20526             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
20527                 this.stopEvent(e);
20528                 return this.handleMouseUp(e);
20529             }
20530
20531             if (!this.dragThreshMet) {
20532                 var diffX = Math.abs(this.startX - e.getPageX());
20533                 var diffY = Math.abs(this.startY - e.getPageY());
20534                 if (diffX > this.clickPixelThresh ||
20535                             diffY > this.clickPixelThresh) {
20536                     this.startDrag(this.startX, this.startY);
20537                 }
20538             }
20539
20540             if (this.dragThreshMet) {
20541                 this.dragCurrent.b4Drag(e);
20542                 this.dragCurrent.onDrag(e);
20543                 if(!this.dragCurrent.moveOnly){
20544                     this.fireEvents(e, false);
20545                 }
20546             }
20547
20548             this.stopEvent(e);
20549
20550             return true;
20551         },
20552
20553         /**
20554          * Iterates over all of the DragDrop elements to find ones we are
20555          * hovering over or dropping on
20556          * @method fireEvents
20557          * @param {Event} e the event
20558          * @param {boolean} isDrop is this a drop op or a mouseover op?
20559          * @private
20560          * @static
20561          */
20562         fireEvents: function(e, isDrop) {
20563             var dc = this.dragCurrent;
20564
20565             // If the user did the mouse up outside of the window, we could
20566             // get here even though we have ended the drag.
20567             if (!dc || dc.isLocked()) {
20568                 return;
20569             }
20570
20571             var pt = e.getPoint();
20572
20573             // cache the previous dragOver array
20574             var oldOvers = [];
20575
20576             var outEvts   = [];
20577             var overEvts  = [];
20578             var dropEvts  = [];
20579             var enterEvts = [];
20580
20581             // Check to see if the object(s) we were hovering over is no longer
20582             // being hovered over so we can fire the onDragOut event
20583             for (var i in this.dragOvers) {
20584
20585                 var ddo = this.dragOvers[i];
20586
20587                 if (! this.isTypeOfDD(ddo)) {
20588                     continue;
20589                 }
20590
20591                 if (! this.isOverTarget(pt, ddo, this.mode)) {
20592                     outEvts.push( ddo );
20593                 }
20594
20595                 oldOvers[i] = true;
20596                 delete this.dragOvers[i];
20597             }
20598
20599             for (var sGroup in dc.groups) {
20600
20601                 if ("string" != typeof sGroup) {
20602                     continue;
20603                 }
20604
20605                 for (i in this.ids[sGroup]) {
20606                     var oDD = this.ids[sGroup][i];
20607                     if (! this.isTypeOfDD(oDD)) {
20608                         continue;
20609                     }
20610
20611                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
20612                         if (this.isOverTarget(pt, oDD, this.mode)) {
20613                             // look for drop interactions
20614                             if (isDrop) {
20615                                 dropEvts.push( oDD );
20616                             // look for drag enter and drag over interactions
20617                             } else {
20618
20619                                 // initial drag over: dragEnter fires
20620                                 if (!oldOvers[oDD.id]) {
20621                                     enterEvts.push( oDD );
20622                                 // subsequent drag overs: dragOver fires
20623                                 } else {
20624                                     overEvts.push( oDD );
20625                                 }
20626
20627                                 this.dragOvers[oDD.id] = oDD;
20628                             }
20629                         }
20630                     }
20631                 }
20632             }
20633
20634             if (this.mode) {
20635                 if (outEvts.length) {
20636                     dc.b4DragOut(e, outEvts);
20637                     dc.onDragOut(e, outEvts);
20638                 }
20639
20640                 if (enterEvts.length) {
20641                     dc.onDragEnter(e, enterEvts);
20642                 }
20643
20644                 if (overEvts.length) {
20645                     dc.b4DragOver(e, overEvts);
20646                     dc.onDragOver(e, overEvts);
20647                 }
20648
20649                 if (dropEvts.length) {
20650                     dc.b4DragDrop(e, dropEvts);
20651                     dc.onDragDrop(e, dropEvts);
20652                 }
20653
20654             } else {
20655                 // fire dragout events
20656                 var len = 0;
20657                 for (i=0, len=outEvts.length; i<len; ++i) {
20658                     dc.b4DragOut(e, outEvts[i].id);
20659                     dc.onDragOut(e, outEvts[i].id);
20660                 }
20661
20662                 // fire enter events
20663                 for (i=0,len=enterEvts.length; i<len; ++i) {
20664                     // dc.b4DragEnter(e, oDD.id);
20665                     dc.onDragEnter(e, enterEvts[i].id);
20666                 }
20667
20668                 // fire over events
20669                 for (i=0,len=overEvts.length; i<len; ++i) {
20670                     dc.b4DragOver(e, overEvts[i].id);
20671                     dc.onDragOver(e, overEvts[i].id);
20672                 }
20673
20674                 // fire drop events
20675                 for (i=0, len=dropEvts.length; i<len; ++i) {
20676                     dc.b4DragDrop(e, dropEvts[i].id);
20677                     dc.onDragDrop(e, dropEvts[i].id);
20678                 }
20679
20680             }
20681
20682             // notify about a drop that did not find a target
20683             if (isDrop && !dropEvts.length) {
20684                 dc.onInvalidDrop(e);
20685             }
20686
20687         },
20688
20689         /**
20690          * Helper function for getting the best match from the list of drag
20691          * and drop objects returned by the drag and drop events when we are
20692          * in INTERSECT mode.  It returns either the first object that the
20693          * cursor is over, or the object that has the greatest overlap with
20694          * the dragged element.
20695          * @method getBestMatch
20696          * @param  {DragDrop[]} dds The array of drag and drop objects
20697          * targeted
20698          * @return {DragDrop}       The best single match
20699          * @static
20700          */
20701         getBestMatch: function(dds) {
20702             var winner = null;
20703             // Return null if the input is not what we expect
20704             //if (!dds || !dds.length || dds.length == 0) {
20705                // winner = null;
20706             // If there is only one item, it wins
20707             //} else if (dds.length == 1) {
20708
20709             var len = dds.length;
20710
20711             if (len == 1) {
20712                 winner = dds[0];
20713             } else {
20714                 // Loop through the targeted items
20715                 for (var i=0; i<len; ++i) {
20716                     var dd = dds[i];
20717                     // If the cursor is over the object, it wins.  If the
20718                     // cursor is over multiple matches, the first one we come
20719                     // to wins.
20720                     if (dd.cursorIsOver) {
20721                         winner = dd;
20722                         break;
20723                     // Otherwise the object with the most overlap wins
20724                     } else {
20725                         if (!winner ||
20726                             winner.overlap.getArea() < dd.overlap.getArea()) {
20727                             winner = dd;
20728                         }
20729                     }
20730                 }
20731             }
20732
20733             return winner;
20734         },
20735
20736         /**
20737          * Refreshes the cache of the top-left and bottom-right points of the
20738          * drag and drop objects in the specified group(s).  This is in the
20739          * format that is stored in the drag and drop instance, so typical
20740          * usage is:
20741          * <code>
20742          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
20743          * </code>
20744          * Alternatively:
20745          * <code>
20746          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
20747          * </code>
20748          * @TODO this really should be an indexed array.  Alternatively this
20749          * method could accept both.
20750          * @method refreshCache
20751          * @param {Object} groups an associative array of groups to refresh
20752          * @static
20753          */
20754         refreshCache: function(groups) {
20755             for (var sGroup in groups) {
20756                 if ("string" != typeof sGroup) {
20757                     continue;
20758                 }
20759                 for (var i in this.ids[sGroup]) {
20760                     var oDD = this.ids[sGroup][i];
20761
20762                     if (this.isTypeOfDD(oDD)) {
20763                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
20764                         var loc = this.getLocation(oDD);
20765                         if (loc) {
20766                             this.locationCache[oDD.id] = loc;
20767                         } else {
20768                             delete this.locationCache[oDD.id];
20769                             // this will unregister the drag and drop object if
20770                             // the element is not in a usable state
20771                             // oDD.unreg();
20772                         }
20773                     }
20774                 }
20775             }
20776         },
20777
20778         /**
20779          * This checks to make sure an element exists and is in the DOM.  The
20780          * main purpose is to handle cases where innerHTML is used to remove
20781          * drag and drop objects from the DOM.  IE provides an 'unspecified
20782          * error' when trying to access the offsetParent of such an element
20783          * @method verifyEl
20784          * @param {HTMLElement} el the element to check
20785          * @return {boolean} true if the element looks usable
20786          * @static
20787          */
20788         verifyEl: function(el) {
20789             if (el) {
20790                 var parent;
20791                 if(Roo.isIE){
20792                     try{
20793                         parent = el.offsetParent;
20794                     }catch(e){}
20795                 }else{
20796                     parent = el.offsetParent;
20797                 }
20798                 if (parent) {
20799                     return true;
20800                 }
20801             }
20802
20803             return false;
20804         },
20805
20806         /**
20807          * Returns a Region object containing the drag and drop element's position
20808          * and size, including the padding configured for it
20809          * @method getLocation
20810          * @param {DragDrop} oDD the drag and drop object to get the
20811          *                       location for
20812          * @return {Roo.lib.Region} a Region object representing the total area
20813          *                             the element occupies, including any padding
20814          *                             the instance is configured for.
20815          * @static
20816          */
20817         getLocation: function(oDD) {
20818             if (! this.isTypeOfDD(oDD)) {
20819                 return null;
20820             }
20821
20822             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
20823
20824             try {
20825                 pos= Roo.lib.Dom.getXY(el);
20826             } catch (e) { }
20827
20828             if (!pos) {
20829                 return null;
20830             }
20831
20832             x1 = pos[0];
20833             x2 = x1 + el.offsetWidth;
20834             y1 = pos[1];
20835             y2 = y1 + el.offsetHeight;
20836
20837             t = y1 - oDD.padding[0];
20838             r = x2 + oDD.padding[1];
20839             b = y2 + oDD.padding[2];
20840             l = x1 - oDD.padding[3];
20841
20842             return new Roo.lib.Region( t, r, b, l );
20843         },
20844
20845         /**
20846          * Checks the cursor location to see if it over the target
20847          * @method isOverTarget
20848          * @param {Roo.lib.Point} pt The point to evaluate
20849          * @param {DragDrop} oTarget the DragDrop object we are inspecting
20850          * @return {boolean} true if the mouse is over the target
20851          * @private
20852          * @static
20853          */
20854         isOverTarget: function(pt, oTarget, intersect) {
20855             // use cache if available
20856             var loc = this.locationCache[oTarget.id];
20857             if (!loc || !this.useCache) {
20858                 loc = this.getLocation(oTarget);
20859                 this.locationCache[oTarget.id] = loc;
20860
20861             }
20862
20863             if (!loc) {
20864                 return false;
20865             }
20866
20867             oTarget.cursorIsOver = loc.contains( pt );
20868
20869             // DragDrop is using this as a sanity check for the initial mousedown
20870             // in this case we are done.  In POINT mode, if the drag obj has no
20871             // contraints, we are also done. Otherwise we need to evaluate the
20872             // location of the target as related to the actual location of the
20873             // dragged element.
20874             var dc = this.dragCurrent;
20875             if (!dc || !dc.getTargetCoord ||
20876                     (!intersect && !dc.constrainX && !dc.constrainY)) {
20877                 return oTarget.cursorIsOver;
20878             }
20879
20880             oTarget.overlap = null;
20881
20882             // Get the current location of the drag element, this is the
20883             // location of the mouse event less the delta that represents
20884             // where the original mousedown happened on the element.  We
20885             // need to consider constraints and ticks as well.
20886             var pos = dc.getTargetCoord(pt.x, pt.y);
20887
20888             var el = dc.getDragEl();
20889             var curRegion = new Roo.lib.Region( pos.y,
20890                                                    pos.x + el.offsetWidth,
20891                                                    pos.y + el.offsetHeight,
20892                                                    pos.x );
20893
20894             var overlap = curRegion.intersect(loc);
20895
20896             if (overlap) {
20897                 oTarget.overlap = overlap;
20898                 return (intersect) ? true : oTarget.cursorIsOver;
20899             } else {
20900                 return false;
20901             }
20902         },
20903
20904         /**
20905          * unload event handler
20906          * @method _onUnload
20907          * @private
20908          * @static
20909          */
20910         _onUnload: function(e, me) {
20911             Roo.dd.DragDropMgr.unregAll();
20912         },
20913
20914         /**
20915          * Cleans up the drag and drop events and objects.
20916          * @method unregAll
20917          * @private
20918          * @static
20919          */
20920         unregAll: function() {
20921
20922             if (this.dragCurrent) {
20923                 this.stopDrag();
20924                 this.dragCurrent = null;
20925             }
20926
20927             this._execOnAll("unreg", []);
20928
20929             for (i in this.elementCache) {
20930                 delete this.elementCache[i];
20931             }
20932
20933             this.elementCache = {};
20934             this.ids = {};
20935         },
20936
20937         /**
20938          * A cache of DOM elements
20939          * @property elementCache
20940          * @private
20941          * @static
20942          */
20943         elementCache: {},
20944
20945         /**
20946          * Get the wrapper for the DOM element specified
20947          * @method getElWrapper
20948          * @param {String} id the id of the element to get
20949          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
20950          * @private
20951          * @deprecated This wrapper isn't that useful
20952          * @static
20953          */
20954         getElWrapper: function(id) {
20955             var oWrapper = this.elementCache[id];
20956             if (!oWrapper || !oWrapper.el) {
20957                 oWrapper = this.elementCache[id] =
20958                     new this.ElementWrapper(Roo.getDom(id));
20959             }
20960             return oWrapper;
20961         },
20962
20963         /**
20964          * Returns the actual DOM element
20965          * @method getElement
20966          * @param {String} id the id of the elment to get
20967          * @return {Object} The element
20968          * @deprecated use Roo.getDom instead
20969          * @static
20970          */
20971         getElement: function(id) {
20972             return Roo.getDom(id);
20973         },
20974
20975         /**
20976          * Returns the style property for the DOM element (i.e.,
20977          * document.getElById(id).style)
20978          * @method getCss
20979          * @param {String} id the id of the elment to get
20980          * @return {Object} The style property of the element
20981          * @deprecated use Roo.getDom instead
20982          * @static
20983          */
20984         getCss: function(id) {
20985             var el = Roo.getDom(id);
20986             return (el) ? el.style : null;
20987         },
20988
20989         /**
20990          * Inner class for cached elements
20991          * @class DragDropMgr.ElementWrapper
20992          * @for DragDropMgr
20993          * @private
20994          * @deprecated
20995          */
20996         ElementWrapper: function(el) {
20997                 /**
20998                  * The element
20999                  * @property el
21000                  */
21001                 this.el = el || null;
21002                 /**
21003                  * The element id
21004                  * @property id
21005                  */
21006                 this.id = this.el && el.id;
21007                 /**
21008                  * A reference to the style property
21009                  * @property css
21010                  */
21011                 this.css = this.el && el.style;
21012             },
21013
21014         /**
21015          * Returns the X position of an html element
21016          * @method getPosX
21017          * @param el the element for which to get the position
21018          * @return {int} the X coordinate
21019          * @for DragDropMgr
21020          * @deprecated use Roo.lib.Dom.getX instead
21021          * @static
21022          */
21023         getPosX: function(el) {
21024             return Roo.lib.Dom.getX(el);
21025         },
21026
21027         /**
21028          * Returns the Y position of an html element
21029          * @method getPosY
21030          * @param el the element for which to get the position
21031          * @return {int} the Y coordinate
21032          * @deprecated use Roo.lib.Dom.getY instead
21033          * @static
21034          */
21035         getPosY: function(el) {
21036             return Roo.lib.Dom.getY(el);
21037         },
21038
21039         /**
21040          * Swap two nodes.  In IE, we use the native method, for others we
21041          * emulate the IE behavior
21042          * @method swapNode
21043          * @param n1 the first node to swap
21044          * @param n2 the other node to swap
21045          * @static
21046          */
21047         swapNode: function(n1, n2) {
21048             if (n1.swapNode) {
21049                 n1.swapNode(n2);
21050             } else {
21051                 var p = n2.parentNode;
21052                 var s = n2.nextSibling;
21053
21054                 if (s == n1) {
21055                     p.insertBefore(n1, n2);
21056                 } else if (n2 == n1.nextSibling) {
21057                     p.insertBefore(n2, n1);
21058                 } else {
21059                     n1.parentNode.replaceChild(n2, n1);
21060                     p.insertBefore(n1, s);
21061                 }
21062             }
21063         },
21064
21065         /**
21066          * Returns the current scroll position
21067          * @method getScroll
21068          * @private
21069          * @static
21070          */
21071         getScroll: function () {
21072             var t, l, dde=document.documentElement, db=document.body;
21073             if (dde && (dde.scrollTop || dde.scrollLeft)) {
21074                 t = dde.scrollTop;
21075                 l = dde.scrollLeft;
21076             } else if (db) {
21077                 t = db.scrollTop;
21078                 l = db.scrollLeft;
21079             } else {
21080
21081             }
21082             return { top: t, left: l };
21083         },
21084
21085         /**
21086          * Returns the specified element style property
21087          * @method getStyle
21088          * @param {HTMLElement} el          the element
21089          * @param {string}      styleProp   the style property
21090          * @return {string} The value of the style property
21091          * @deprecated use Roo.lib.Dom.getStyle
21092          * @static
21093          */
21094         getStyle: function(el, styleProp) {
21095             return Roo.fly(el).getStyle(styleProp);
21096         },
21097
21098         /**
21099          * Gets the scrollTop
21100          * @method getScrollTop
21101          * @return {int} the document's scrollTop
21102          * @static
21103          */
21104         getScrollTop: function () { return this.getScroll().top; },
21105
21106         /**
21107          * Gets the scrollLeft
21108          * @method getScrollLeft
21109          * @return {int} the document's scrollTop
21110          * @static
21111          */
21112         getScrollLeft: function () { return this.getScroll().left; },
21113
21114         /**
21115          * Sets the x/y position of an element to the location of the
21116          * target element.
21117          * @method moveToEl
21118          * @param {HTMLElement} moveEl      The element to move
21119          * @param {HTMLElement} targetEl    The position reference element
21120          * @static
21121          */
21122         moveToEl: function (moveEl, targetEl) {
21123             var aCoord = Roo.lib.Dom.getXY(targetEl);
21124             Roo.lib.Dom.setXY(moveEl, aCoord);
21125         },
21126
21127         /**
21128          * Numeric array sort function
21129          * @method numericSort
21130          * @static
21131          */
21132         numericSort: function(a, b) { return (a - b); },
21133
21134         /**
21135          * Internal counter
21136          * @property _timeoutCount
21137          * @private
21138          * @static
21139          */
21140         _timeoutCount: 0,
21141
21142         /**
21143          * Trying to make the load order less important.  Without this we get
21144          * an error if this file is loaded before the Event Utility.
21145          * @method _addListeners
21146          * @private
21147          * @static
21148          */
21149         _addListeners: function() {
21150             var DDM = Roo.dd.DDM;
21151             if ( Roo.lib.Event && document ) {
21152                 DDM._onLoad();
21153             } else {
21154                 if (DDM._timeoutCount > 2000) {
21155                 } else {
21156                     setTimeout(DDM._addListeners, 10);
21157                     if (document && document.body) {
21158                         DDM._timeoutCount += 1;
21159                     }
21160                 }
21161             }
21162         },
21163
21164         /**
21165          * Recursively searches the immediate parent and all child nodes for
21166          * the handle element in order to determine wheter or not it was
21167          * clicked.
21168          * @method handleWasClicked
21169          * @param node the html element to inspect
21170          * @static
21171          */
21172         handleWasClicked: function(node, id) {
21173             if (this.isHandle(id, node.id)) {
21174                 return true;
21175             } else {
21176                 // check to see if this is a text node child of the one we want
21177                 var p = node.parentNode;
21178
21179                 while (p) {
21180                     if (this.isHandle(id, p.id)) {
21181                         return true;
21182                     } else {
21183                         p = p.parentNode;
21184                     }
21185                 }
21186             }
21187
21188             return false;
21189         }
21190
21191     };
21192
21193 }();
21194
21195 // shorter alias, save a few bytes
21196 Roo.dd.DDM = Roo.dd.DragDropMgr;
21197 Roo.dd.DDM._addListeners();
21198
21199 }/*
21200  * Based on:
21201  * Ext JS Library 1.1.1
21202  * Copyright(c) 2006-2007, Ext JS, LLC.
21203  *
21204  * Originally Released Under LGPL - original licence link has changed is not relivant.
21205  *
21206  * Fork - LGPL
21207  * <script type="text/javascript">
21208  */
21209
21210 /**
21211  * @class Roo.dd.DD
21212  * A DragDrop implementation where the linked element follows the
21213  * mouse cursor during a drag.
21214  * @extends Roo.dd.DragDrop
21215  * @constructor
21216  * @param {String} id the id of the linked element
21217  * @param {String} sGroup the group of related DragDrop items
21218  * @param {object} config an object containing configurable attributes
21219  *                Valid properties for DD:
21220  *                    scroll
21221  */
21222 Roo.dd.DD = function(id, sGroup, config) {
21223     if (id) {
21224         this.init(id, sGroup, config);
21225     }
21226 };
21227
21228 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
21229
21230     /**
21231      * When set to true, the utility automatically tries to scroll the browser
21232      * window wehn a drag and drop element is dragged near the viewport boundary.
21233      * Defaults to true.
21234      * @property scroll
21235      * @type boolean
21236      */
21237     scroll: true,
21238
21239     /**
21240      * Sets the pointer offset to the distance between the linked element's top
21241      * left corner and the location the element was clicked
21242      * @method autoOffset
21243      * @param {int} iPageX the X coordinate of the click
21244      * @param {int} iPageY the Y coordinate of the click
21245      */
21246     autoOffset: function(iPageX, iPageY) {
21247         var x = iPageX - this.startPageX;
21248         var y = iPageY - this.startPageY;
21249         this.setDelta(x, y);
21250     },
21251
21252     /**
21253      * Sets the pointer offset.  You can call this directly to force the
21254      * offset to be in a particular location (e.g., pass in 0,0 to set it
21255      * to the center of the object)
21256      * @method setDelta
21257      * @param {int} iDeltaX the distance from the left
21258      * @param {int} iDeltaY the distance from the top
21259      */
21260     setDelta: function(iDeltaX, iDeltaY) {
21261         this.deltaX = iDeltaX;
21262         this.deltaY = iDeltaY;
21263     },
21264
21265     /**
21266      * Sets the drag element to the location of the mousedown or click event,
21267      * maintaining the cursor location relative to the location on the element
21268      * that was clicked.  Override this if you want to place the element in a
21269      * location other than where the cursor is.
21270      * @method setDragElPos
21271      * @param {int} iPageX the X coordinate of the mousedown or drag event
21272      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21273      */
21274     setDragElPos: function(iPageX, iPageY) {
21275         // the first time we do this, we are going to check to make sure
21276         // the element has css positioning
21277
21278         var el = this.getDragEl();
21279         this.alignElWithMouse(el, iPageX, iPageY);
21280     },
21281
21282     /**
21283      * Sets the element to the location of the mousedown or click event,
21284      * maintaining the cursor location relative to the location on the element
21285      * that was clicked.  Override this if you want to place the element in a
21286      * location other than where the cursor is.
21287      * @method alignElWithMouse
21288      * @param {HTMLElement} el the element to move
21289      * @param {int} iPageX the X coordinate of the mousedown or drag event
21290      * @param {int} iPageY the Y coordinate of the mousedown or drag event
21291      */
21292     alignElWithMouse: function(el, iPageX, iPageY) {
21293         var oCoord = this.getTargetCoord(iPageX, iPageY);
21294         var fly = el.dom ? el : Roo.fly(el);
21295         if (!this.deltaSetXY) {
21296             var aCoord = [oCoord.x, oCoord.y];
21297             fly.setXY(aCoord);
21298             var newLeft = fly.getLeft(true);
21299             var newTop  = fly.getTop(true);
21300             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
21301         } else {
21302             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
21303         }
21304
21305         this.cachePosition(oCoord.x, oCoord.y);
21306         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
21307         return oCoord;
21308     },
21309
21310     /**
21311      * Saves the most recent position so that we can reset the constraints and
21312      * tick marks on-demand.  We need to know this so that we can calculate the
21313      * number of pixels the element is offset from its original position.
21314      * @method cachePosition
21315      * @param iPageX the current x position (optional, this just makes it so we
21316      * don't have to look it up again)
21317      * @param iPageY the current y position (optional, this just makes it so we
21318      * don't have to look it up again)
21319      */
21320     cachePosition: function(iPageX, iPageY) {
21321         if (iPageX) {
21322             this.lastPageX = iPageX;
21323             this.lastPageY = iPageY;
21324         } else {
21325             var aCoord = Roo.lib.Dom.getXY(this.getEl());
21326             this.lastPageX = aCoord[0];
21327             this.lastPageY = aCoord[1];
21328         }
21329     },
21330
21331     /**
21332      * Auto-scroll the window if the dragged object has been moved beyond the
21333      * visible window boundary.
21334      * @method autoScroll
21335      * @param {int} x the drag element's x position
21336      * @param {int} y the drag element's y position
21337      * @param {int} h the height of the drag element
21338      * @param {int} w the width of the drag element
21339      * @private
21340      */
21341     autoScroll: function(x, y, h, w) {
21342
21343         if (this.scroll) {
21344             // The client height
21345             var clientH = Roo.lib.Dom.getViewWidth();
21346
21347             // The client width
21348             var clientW = Roo.lib.Dom.getViewHeight();
21349
21350             // The amt scrolled down
21351             var st = this.DDM.getScrollTop();
21352
21353             // The amt scrolled right
21354             var sl = this.DDM.getScrollLeft();
21355
21356             // Location of the bottom of the element
21357             var bot = h + y;
21358
21359             // Location of the right of the element
21360             var right = w + x;
21361
21362             // The distance from the cursor to the bottom of the visible area,
21363             // adjusted so that we don't scroll if the cursor is beyond the
21364             // element drag constraints
21365             var toBot = (clientH + st - y - this.deltaY);
21366
21367             // The distance from the cursor to the right of the visible area
21368             var toRight = (clientW + sl - x - this.deltaX);
21369
21370
21371             // How close to the edge the cursor must be before we scroll
21372             // var thresh = (document.all) ? 100 : 40;
21373             var thresh = 40;
21374
21375             // How many pixels to scroll per autoscroll op.  This helps to reduce
21376             // clunky scrolling. IE is more sensitive about this ... it needs this
21377             // value to be higher.
21378             var scrAmt = (document.all) ? 80 : 30;
21379
21380             // Scroll down if we are near the bottom of the visible page and the
21381             // obj extends below the crease
21382             if ( bot > clientH && toBot < thresh ) {
21383                 window.scrollTo(sl, st + scrAmt);
21384             }
21385
21386             // Scroll up if the window is scrolled down and the top of the object
21387             // goes above the top border
21388             if ( y < st && st > 0 && y - st < thresh ) {
21389                 window.scrollTo(sl, st - scrAmt);
21390             }
21391
21392             // Scroll right if the obj is beyond the right border and the cursor is
21393             // near the border.
21394             if ( right > clientW && toRight < thresh ) {
21395                 window.scrollTo(sl + scrAmt, st);
21396             }
21397
21398             // Scroll left if the window has been scrolled to the right and the obj
21399             // extends past the left border
21400             if ( x < sl && sl > 0 && x - sl < thresh ) {
21401                 window.scrollTo(sl - scrAmt, st);
21402             }
21403         }
21404     },
21405
21406     /**
21407      * Finds the location the element should be placed if we want to move
21408      * it to where the mouse location less the click offset would place us.
21409      * @method getTargetCoord
21410      * @param {int} iPageX the X coordinate of the click
21411      * @param {int} iPageY the Y coordinate of the click
21412      * @return an object that contains the coordinates (Object.x and Object.y)
21413      * @private
21414      */
21415     getTargetCoord: function(iPageX, iPageY) {
21416
21417
21418         var x = iPageX - this.deltaX;
21419         var y = iPageY - this.deltaY;
21420
21421         if (this.constrainX) {
21422             if (x < this.minX) { x = this.minX; }
21423             if (x > this.maxX) { x = this.maxX; }
21424         }
21425
21426         if (this.constrainY) {
21427             if (y < this.minY) { y = this.minY; }
21428             if (y > this.maxY) { y = this.maxY; }
21429         }
21430
21431         x = this.getTick(x, this.xTicks);
21432         y = this.getTick(y, this.yTicks);
21433
21434
21435         return {x:x, y:y};
21436     },
21437
21438     /*
21439      * Sets up config options specific to this class. Overrides
21440      * Roo.dd.DragDrop, but all versions of this method through the
21441      * inheritance chain are called
21442      */
21443     applyConfig: function() {
21444         Roo.dd.DD.superclass.applyConfig.call(this);
21445         this.scroll = (this.config.scroll !== false);
21446     },
21447
21448     /*
21449      * Event that fires prior to the onMouseDown event.  Overrides
21450      * Roo.dd.DragDrop.
21451      */
21452     b4MouseDown: function(e) {
21453         // this.resetConstraints();
21454         this.autoOffset(e.getPageX(),
21455                             e.getPageY());
21456     },
21457
21458     /*
21459      * Event that fires prior to the onDrag event.  Overrides
21460      * Roo.dd.DragDrop.
21461      */
21462     b4Drag: function(e) {
21463         this.setDragElPos(e.getPageX(),
21464                             e.getPageY());
21465     },
21466
21467     toString: function() {
21468         return ("DD " + this.id);
21469     }
21470
21471     //////////////////////////////////////////////////////////////////////////
21472     // Debugging ygDragDrop events that can be overridden
21473     //////////////////////////////////////////////////////////////////////////
21474     /*
21475     startDrag: function(x, y) {
21476     },
21477
21478     onDrag: function(e) {
21479     },
21480
21481     onDragEnter: function(e, id) {
21482     },
21483
21484     onDragOver: function(e, id) {
21485     },
21486
21487     onDragOut: function(e, id) {
21488     },
21489
21490     onDragDrop: function(e, id) {
21491     },
21492
21493     endDrag: function(e) {
21494     }
21495
21496     */
21497
21498 });/*
21499  * Based on:
21500  * Ext JS Library 1.1.1
21501  * Copyright(c) 2006-2007, Ext JS, LLC.
21502  *
21503  * Originally Released Under LGPL - original licence link has changed is not relivant.
21504  *
21505  * Fork - LGPL
21506  * <script type="text/javascript">
21507  */
21508
21509 /**
21510  * @class Roo.dd.DDProxy
21511  * A DragDrop implementation that inserts an empty, bordered div into
21512  * the document that follows the cursor during drag operations.  At the time of
21513  * the click, the frame div is resized to the dimensions of the linked html
21514  * element, and moved to the exact location of the linked element.
21515  *
21516  * References to the "frame" element refer to the single proxy element that
21517  * was created to be dragged in place of all DDProxy elements on the
21518  * page.
21519  *
21520  * @extends Roo.dd.DD
21521  * @constructor
21522  * @param {String} id the id of the linked html element
21523  * @param {String} sGroup the group of related DragDrop objects
21524  * @param {object} config an object containing configurable attributes
21525  *                Valid properties for DDProxy in addition to those in DragDrop:
21526  *                   resizeFrame, centerFrame, dragElId
21527  */
21528 Roo.dd.DDProxy = function(id, sGroup, config) {
21529     if (id) {
21530         this.init(id, sGroup, config);
21531         this.initFrame();
21532     }
21533 };
21534
21535 /**
21536  * The default drag frame div id
21537  * @property Roo.dd.DDProxy.dragElId
21538  * @type String
21539  * @static
21540  */
21541 Roo.dd.DDProxy.dragElId = "ygddfdiv";
21542
21543 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
21544
21545     /**
21546      * By default we resize the drag frame to be the same size as the element
21547      * we want to drag (this is to get the frame effect).  We can turn it off
21548      * if we want a different behavior.
21549      * @property resizeFrame
21550      * @type boolean
21551      */
21552     resizeFrame: true,
21553
21554     /**
21555      * By default the frame is positioned exactly where the drag element is, so
21556      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
21557      * you do not have constraints on the obj is to have the drag frame centered
21558      * around the cursor.  Set centerFrame to true for this effect.
21559      * @property centerFrame
21560      * @type boolean
21561      */
21562     centerFrame: false,
21563
21564     /**
21565      * Creates the proxy element if it does not yet exist
21566      * @method createFrame
21567      */
21568     createFrame: function() {
21569         var self = this;
21570         var body = document.body;
21571
21572         if (!body || !body.firstChild) {
21573             setTimeout( function() { self.createFrame(); }, 50 );
21574             return;
21575         }
21576
21577         var div = this.getDragEl();
21578
21579         if (!div) {
21580             div    = document.createElement("div");
21581             div.id = this.dragElId;
21582             var s  = div.style;
21583
21584             s.position   = "absolute";
21585             s.visibility = "hidden";
21586             s.cursor     = "move";
21587             s.border     = "2px solid #aaa";
21588             s.zIndex     = 999;
21589
21590             // appendChild can blow up IE if invoked prior to the window load event
21591             // while rendering a table.  It is possible there are other scenarios
21592             // that would cause this to happen as well.
21593             body.insertBefore(div, body.firstChild);
21594         }
21595     },
21596
21597     /**
21598      * Initialization for the drag frame element.  Must be called in the
21599      * constructor of all subclasses
21600      * @method initFrame
21601      */
21602     initFrame: function() {
21603         this.createFrame();
21604     },
21605
21606     applyConfig: function() {
21607         Roo.dd.DDProxy.superclass.applyConfig.call(this);
21608
21609         this.resizeFrame = (this.config.resizeFrame !== false);
21610         this.centerFrame = (this.config.centerFrame);
21611         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
21612     },
21613
21614     /**
21615      * Resizes the drag frame to the dimensions of the clicked object, positions
21616      * it over the object, and finally displays it
21617      * @method showFrame
21618      * @param {int} iPageX X click position
21619      * @param {int} iPageY Y click position
21620      * @private
21621      */
21622     showFrame: function(iPageX, iPageY) {
21623         var el = this.getEl();
21624         var dragEl = this.getDragEl();
21625         var s = dragEl.style;
21626
21627         this._resizeProxy();
21628
21629         if (this.centerFrame) {
21630             this.setDelta( Math.round(parseInt(s.width,  10)/2),
21631                            Math.round(parseInt(s.height, 10)/2) );
21632         }
21633
21634         this.setDragElPos(iPageX, iPageY);
21635
21636         Roo.fly(dragEl).show();
21637     },
21638
21639     /**
21640      * The proxy is automatically resized to the dimensions of the linked
21641      * element when a drag is initiated, unless resizeFrame is set to false
21642      * @method _resizeProxy
21643      * @private
21644      */
21645     _resizeProxy: function() {
21646         if (this.resizeFrame) {
21647             var el = this.getEl();
21648             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
21649         }
21650     },
21651
21652     // overrides Roo.dd.DragDrop
21653     b4MouseDown: function(e) {
21654         var x = e.getPageX();
21655         var y = e.getPageY();
21656         this.autoOffset(x, y);
21657         this.setDragElPos(x, y);
21658     },
21659
21660     // overrides Roo.dd.DragDrop
21661     b4StartDrag: function(x, y) {
21662         // show the drag frame
21663         this.showFrame(x, y);
21664     },
21665
21666     // overrides Roo.dd.DragDrop
21667     b4EndDrag: function(e) {
21668         Roo.fly(this.getDragEl()).hide();
21669     },
21670
21671     // overrides Roo.dd.DragDrop
21672     // By default we try to move the element to the last location of the frame.
21673     // This is so that the default behavior mirrors that of Roo.dd.DD.
21674     endDrag: function(e) {
21675
21676         var lel = this.getEl();
21677         var del = this.getDragEl();
21678
21679         // Show the drag frame briefly so we can get its position
21680         del.style.visibility = "";
21681
21682         this.beforeMove();
21683         // Hide the linked element before the move to get around a Safari
21684         // rendering bug.
21685         lel.style.visibility = "hidden";
21686         Roo.dd.DDM.moveToEl(lel, del);
21687         del.style.visibility = "hidden";
21688         lel.style.visibility = "";
21689
21690         this.afterDrag();
21691     },
21692
21693     beforeMove : function(){
21694
21695     },
21696
21697     afterDrag : function(){
21698
21699     },
21700
21701     toString: function() {
21702         return ("DDProxy " + this.id);
21703     }
21704
21705 });
21706 /*
21707  * Based on:
21708  * Ext JS Library 1.1.1
21709  * Copyright(c) 2006-2007, Ext JS, LLC.
21710  *
21711  * Originally Released Under LGPL - original licence link has changed is not relivant.
21712  *
21713  * Fork - LGPL
21714  * <script type="text/javascript">
21715  */
21716
21717  /**
21718  * @class Roo.dd.DDTarget
21719  * A DragDrop implementation that does not move, but can be a drop
21720  * target.  You would get the same result by simply omitting implementation
21721  * for the event callbacks, but this way we reduce the processing cost of the
21722  * event listener and the callbacks.
21723  * @extends Roo.dd.DragDrop
21724  * @constructor
21725  * @param {String} id the id of the element that is a drop target
21726  * @param {String} sGroup the group of related DragDrop objects
21727  * @param {object} config an object containing configurable attributes
21728  *                 Valid properties for DDTarget in addition to those in
21729  *                 DragDrop:
21730  *                    none
21731  */
21732 Roo.dd.DDTarget = function(id, sGroup, config) {
21733     if (id) {
21734         this.initTarget(id, sGroup, config);
21735     }
21736     if (config && (config.listeners || config.events)) { 
21737         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
21738             listeners : config.listeners || {}, 
21739             events : config.events || {} 
21740         });    
21741     }
21742 };
21743
21744 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
21745 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
21746     toString: function() {
21747         return ("DDTarget " + this.id);
21748     }
21749 });
21750 /*
21751  * Based on:
21752  * Ext JS Library 1.1.1
21753  * Copyright(c) 2006-2007, Ext JS, LLC.
21754  *
21755  * Originally Released Under LGPL - original licence link has changed is not relivant.
21756  *
21757  * Fork - LGPL
21758  * <script type="text/javascript">
21759  */
21760  
21761
21762 /**
21763  * @class Roo.dd.ScrollManager
21764  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
21765  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
21766  * @singleton
21767  */
21768 Roo.dd.ScrollManager = function(){
21769     var ddm = Roo.dd.DragDropMgr;
21770     var els = {};
21771     var dragEl = null;
21772     var proc = {};
21773     
21774     
21775     
21776     var onStop = function(e){
21777         dragEl = null;
21778         clearProc();
21779     };
21780     
21781     var triggerRefresh = function(){
21782         if(ddm.dragCurrent){
21783              ddm.refreshCache(ddm.dragCurrent.groups);
21784         }
21785     };
21786     
21787     var doScroll = function(){
21788         if(ddm.dragCurrent){
21789             var dds = Roo.dd.ScrollManager;
21790             if(!dds.animate){
21791                 if(proc.el.scroll(proc.dir, dds.increment)){
21792                     triggerRefresh();
21793                 }
21794             }else{
21795                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
21796             }
21797         }
21798     };
21799     
21800     var clearProc = function(){
21801         if(proc.id){
21802             clearInterval(proc.id);
21803         }
21804         proc.id = 0;
21805         proc.el = null;
21806         proc.dir = "";
21807     };
21808     
21809     var startProc = function(el, dir){
21810          Roo.log('scroll startproc');
21811         clearProc();
21812         proc.el = el;
21813         proc.dir = dir;
21814         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
21815     };
21816     
21817     var onFire = function(e, isDrop){
21818        
21819         if(isDrop || !ddm.dragCurrent){ return; }
21820         var dds = Roo.dd.ScrollManager;
21821         if(!dragEl || dragEl != ddm.dragCurrent){
21822             dragEl = ddm.dragCurrent;
21823             // refresh regions on drag start
21824             dds.refreshCache();
21825         }
21826         
21827         var xy = Roo.lib.Event.getXY(e);
21828         var pt = new Roo.lib.Point(xy[0], xy[1]);
21829         for(var id in els){
21830             var el = els[id], r = el._region;
21831             if(r && r.contains(pt) && el.isScrollable()){
21832                 if(r.bottom - pt.y <= dds.thresh){
21833                     if(proc.el != el){
21834                         startProc(el, "down");
21835                     }
21836                     return;
21837                 }else if(r.right - pt.x <= dds.thresh){
21838                     if(proc.el != el){
21839                         startProc(el, "left");
21840                     }
21841                     return;
21842                 }else if(pt.y - r.top <= dds.thresh){
21843                     if(proc.el != el){
21844                         startProc(el, "up");
21845                     }
21846                     return;
21847                 }else if(pt.x - r.left <= dds.thresh){
21848                     if(proc.el != el){
21849                         startProc(el, "right");
21850                     }
21851                     return;
21852                 }
21853             }
21854         }
21855         clearProc();
21856     };
21857     
21858     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
21859     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
21860     
21861     return {
21862         /**
21863          * Registers new overflow element(s) to auto scroll
21864          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
21865          */
21866         register : function(el){
21867             if(el instanceof Array){
21868                 for(var i = 0, len = el.length; i < len; i++) {
21869                         this.register(el[i]);
21870                 }
21871             }else{
21872                 el = Roo.get(el);
21873                 els[el.id] = el;
21874             }
21875             Roo.dd.ScrollManager.els = els;
21876         },
21877         
21878         /**
21879          * Unregisters overflow element(s) so they are no longer scrolled
21880          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
21881          */
21882         unregister : function(el){
21883             if(el instanceof Array){
21884                 for(var i = 0, len = el.length; i < len; i++) {
21885                         this.unregister(el[i]);
21886                 }
21887             }else{
21888                 el = Roo.get(el);
21889                 delete els[el.id];
21890             }
21891         },
21892         
21893         /**
21894          * The number of pixels from the edge of a container the pointer needs to be to 
21895          * trigger scrolling (defaults to 25)
21896          * @type Number
21897          */
21898         thresh : 25,
21899         
21900         /**
21901          * The number of pixels to scroll in each scroll increment (defaults to 50)
21902          * @type Number
21903          */
21904         increment : 100,
21905         
21906         /**
21907          * The frequency of scrolls in milliseconds (defaults to 500)
21908          * @type Number
21909          */
21910         frequency : 500,
21911         
21912         /**
21913          * True to animate the scroll (defaults to true)
21914          * @type Boolean
21915          */
21916         animate: true,
21917         
21918         /**
21919          * The animation duration in seconds - 
21920          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
21921          * @type Number
21922          */
21923         animDuration: .4,
21924         
21925         /**
21926          * Manually trigger a cache refresh.
21927          */
21928         refreshCache : function(){
21929             for(var id in els){
21930                 if(typeof els[id] == 'object'){ // for people extending the object prototype
21931                     els[id]._region = els[id].getRegion();
21932                 }
21933             }
21934         }
21935     };
21936 }();/*
21937  * Based on:
21938  * Ext JS Library 1.1.1
21939  * Copyright(c) 2006-2007, Ext JS, LLC.
21940  *
21941  * Originally Released Under LGPL - original licence link has changed is not relivant.
21942  *
21943  * Fork - LGPL
21944  * <script type="text/javascript">
21945  */
21946  
21947
21948 /**
21949  * @class Roo.dd.Registry
21950  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
21951  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
21952  * @singleton
21953  */
21954 Roo.dd.Registry = function(){
21955     var elements = {}; 
21956     var handles = {}; 
21957     var autoIdSeed = 0;
21958
21959     var getId = function(el, autogen){
21960         if(typeof el == "string"){
21961             return el;
21962         }
21963         var id = el.id;
21964         if(!id && autogen !== false){
21965             id = "roodd-" + (++autoIdSeed);
21966             el.id = id;
21967         }
21968         return id;
21969     };
21970     
21971     return {
21972     /**
21973      * Register a drag drop element
21974      * @param {String|HTMLElement} element The id or DOM node to register
21975      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
21976      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
21977      * knows how to interpret, plus there are some specific properties known to the Registry that should be
21978      * populated in the data object (if applicable):
21979      * <pre>
21980 Value      Description<br />
21981 ---------  ------------------------------------------<br />
21982 handles    Array of DOM nodes that trigger dragging<br />
21983            for the element being registered<br />
21984 isHandle   True if the element passed in triggers<br />
21985            dragging itself, else false
21986 </pre>
21987      */
21988         register : function(el, data){
21989             data = data || {};
21990             if(typeof el == "string"){
21991                 el = document.getElementById(el);
21992             }
21993             data.ddel = el;
21994             elements[getId(el)] = data;
21995             if(data.isHandle !== false){
21996                 handles[data.ddel.id] = data;
21997             }
21998             if(data.handles){
21999                 var hs = data.handles;
22000                 for(var i = 0, len = hs.length; i < len; i++){
22001                         handles[getId(hs[i])] = data;
22002                 }
22003             }
22004         },
22005
22006     /**
22007      * Unregister a drag drop element
22008      * @param {String|HTMLElement}  element The id or DOM node to unregister
22009      */
22010         unregister : function(el){
22011             var id = getId(el, false);
22012             var data = elements[id];
22013             if(data){
22014                 delete elements[id];
22015                 if(data.handles){
22016                     var hs = data.handles;
22017                     for(var i = 0, len = hs.length; i < len; i++){
22018                         delete handles[getId(hs[i], false)];
22019                     }
22020                 }
22021             }
22022         },
22023
22024     /**
22025      * Returns the handle registered for a DOM Node by id
22026      * @param {String|HTMLElement} id The DOM node or id to look up
22027      * @return {Object} handle The custom handle data
22028      */
22029         getHandle : function(id){
22030             if(typeof id != "string"){ // must be element?
22031                 id = id.id;
22032             }
22033             return handles[id];
22034         },
22035
22036     /**
22037      * Returns the handle that is registered for the DOM node that is the target of the event
22038      * @param {Event} e The event
22039      * @return {Object} handle The custom handle data
22040      */
22041         getHandleFromEvent : function(e){
22042             var t = Roo.lib.Event.getTarget(e);
22043             return t ? handles[t.id] : null;
22044         },
22045
22046     /**
22047      * Returns a custom data object that is registered for a DOM node by id
22048      * @param {String|HTMLElement} id The DOM node or id to look up
22049      * @return {Object} data The custom data
22050      */
22051         getTarget : function(id){
22052             if(typeof id != "string"){ // must be element?
22053                 id = id.id;
22054             }
22055             return elements[id];
22056         },
22057
22058     /**
22059      * Returns a custom data object that is registered for the DOM node that is the target of the event
22060      * @param {Event} e The event
22061      * @return {Object} data The custom data
22062      */
22063         getTargetFromEvent : function(e){
22064             var t = Roo.lib.Event.getTarget(e);
22065             return t ? elements[t.id] || handles[t.id] : null;
22066         }
22067     };
22068 }();/*
22069  * Based on:
22070  * Ext JS Library 1.1.1
22071  * Copyright(c) 2006-2007, Ext JS, LLC.
22072  *
22073  * Originally Released Under LGPL - original licence link has changed is not relivant.
22074  *
22075  * Fork - LGPL
22076  * <script type="text/javascript">
22077  */
22078  
22079
22080 /**
22081  * @class Roo.dd.StatusProxy
22082  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
22083  * default drag proxy used by all Roo.dd components.
22084  * @constructor
22085  * @param {Object} config
22086  */
22087 Roo.dd.StatusProxy = function(config){
22088     Roo.apply(this, config);
22089     this.id = this.id || Roo.id();
22090     this.el = new Roo.Layer({
22091         dh: {
22092             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
22093                 {tag: "div", cls: "x-dd-drop-icon"},
22094                 {tag: "div", cls: "x-dd-drag-ghost"}
22095             ]
22096         }, 
22097         shadow: !config || config.shadow !== false
22098     });
22099     this.ghost = Roo.get(this.el.dom.childNodes[1]);
22100     this.dropStatus = this.dropNotAllowed;
22101 };
22102
22103 Roo.dd.StatusProxy.prototype = {
22104     /**
22105      * @cfg {String} dropAllowed
22106      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
22107      */
22108     dropAllowed : "x-dd-drop-ok",
22109     /**
22110      * @cfg {String} dropNotAllowed
22111      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
22112      */
22113     dropNotAllowed : "x-dd-drop-nodrop",
22114
22115     /**
22116      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
22117      * over the current target element.
22118      * @param {String} cssClass The css class for the new drop status indicator image
22119      */
22120     setStatus : function(cssClass){
22121         cssClass = cssClass || this.dropNotAllowed;
22122         if(this.dropStatus != cssClass){
22123             this.el.replaceClass(this.dropStatus, cssClass);
22124             this.dropStatus = cssClass;
22125         }
22126     },
22127
22128     /**
22129      * Resets the status indicator to the default dropNotAllowed value
22130      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
22131      */
22132     reset : function(clearGhost){
22133         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
22134         this.dropStatus = this.dropNotAllowed;
22135         if(clearGhost){
22136             this.ghost.update("");
22137         }
22138     },
22139
22140     /**
22141      * Updates the contents of the ghost element
22142      * @param {String} html The html that will replace the current innerHTML of the ghost element
22143      */
22144     update : function(html){
22145         if(typeof html == "string"){
22146             this.ghost.update(html);
22147         }else{
22148             this.ghost.update("");
22149             html.style.margin = "0";
22150             this.ghost.dom.appendChild(html);
22151         }
22152         // ensure float = none set?? cant remember why though.
22153         var el = this.ghost.dom.firstChild;
22154                 if(el){
22155                         Roo.fly(el).setStyle('float', 'none');
22156                 }
22157     },
22158     
22159     /**
22160      * Returns the underlying proxy {@link Roo.Layer}
22161      * @return {Roo.Layer} el
22162     */
22163     getEl : function(){
22164         return this.el;
22165     },
22166
22167     /**
22168      * Returns the ghost element
22169      * @return {Roo.Element} el
22170      */
22171     getGhost : function(){
22172         return this.ghost;
22173     },
22174
22175     /**
22176      * Hides the proxy
22177      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
22178      */
22179     hide : function(clear){
22180         this.el.hide();
22181         if(clear){
22182             this.reset(true);
22183         }
22184     },
22185
22186     /**
22187      * Stops the repair animation if it's currently running
22188      */
22189     stop : function(){
22190         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
22191             this.anim.stop();
22192         }
22193     },
22194
22195     /**
22196      * Displays this proxy
22197      */
22198     show : function(){
22199         this.el.show();
22200     },
22201
22202     /**
22203      * Force the Layer to sync its shadow and shim positions to the element
22204      */
22205     sync : function(){
22206         this.el.sync();
22207     },
22208
22209     /**
22210      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
22211      * invalid drop operation by the item being dragged.
22212      * @param {Array} xy The XY position of the element ([x, y])
22213      * @param {Function} callback The function to call after the repair is complete
22214      * @param {Object} scope The scope in which to execute the callback
22215      */
22216     repair : function(xy, callback, scope){
22217         this.callback = callback;
22218         this.scope = scope;
22219         if(xy && this.animRepair !== false){
22220             this.el.addClass("x-dd-drag-repair");
22221             this.el.hideUnders(true);
22222             this.anim = this.el.shift({
22223                 duration: this.repairDuration || .5,
22224                 easing: 'easeOut',
22225                 xy: xy,
22226                 stopFx: true,
22227                 callback: this.afterRepair,
22228                 scope: this
22229             });
22230         }else{
22231             this.afterRepair();
22232         }
22233     },
22234
22235     // private
22236     afterRepair : function(){
22237         this.hide(true);
22238         if(typeof this.callback == "function"){
22239             this.callback.call(this.scope || this);
22240         }
22241         this.callback = null;
22242         this.scope = null;
22243     }
22244 };/*
22245  * Based on:
22246  * Ext JS Library 1.1.1
22247  * Copyright(c) 2006-2007, Ext JS, LLC.
22248  *
22249  * Originally Released Under LGPL - original licence link has changed is not relivant.
22250  *
22251  * Fork - LGPL
22252  * <script type="text/javascript">
22253  */
22254
22255 /**
22256  * @class Roo.dd.DragSource
22257  * @extends Roo.dd.DDProxy
22258  * A simple class that provides the basic implementation needed to make any element draggable.
22259  * @constructor
22260  * @param {String/HTMLElement/Element} el The container element
22261  * @param {Object} config
22262  */
22263 Roo.dd.DragSource = function(el, config){
22264     this.el = Roo.get(el);
22265     this.dragData = {};
22266     
22267     Roo.apply(this, config);
22268     
22269     if(!this.proxy){
22270         this.proxy = new Roo.dd.StatusProxy();
22271     }
22272
22273     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
22274           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
22275     
22276     this.dragging = false;
22277 };
22278
22279 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
22280     /**
22281      * @cfg {String} dropAllowed
22282      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22283      */
22284     dropAllowed : "x-dd-drop-ok",
22285     /**
22286      * @cfg {String} dropNotAllowed
22287      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22288      */
22289     dropNotAllowed : "x-dd-drop-nodrop",
22290
22291     /**
22292      * Returns the data object associated with this drag source
22293      * @return {Object} data An object containing arbitrary data
22294      */
22295     getDragData : function(e){
22296         return this.dragData;
22297     },
22298
22299     // private
22300     onDragEnter : function(e, id){
22301         var target = Roo.dd.DragDropMgr.getDDById(id);
22302         this.cachedTarget = target;
22303         if(this.beforeDragEnter(target, e, id) !== false){
22304             if(target.isNotifyTarget){
22305                 var status = target.notifyEnter(this, e, this.dragData);
22306                 this.proxy.setStatus(status);
22307             }else{
22308                 this.proxy.setStatus(this.dropAllowed);
22309             }
22310             
22311             if(this.afterDragEnter){
22312                 /**
22313                  * An empty function by default, but provided so that you can perform a custom action
22314                  * when the dragged item enters the drop target by providing an implementation.
22315                  * @param {Roo.dd.DragDrop} target The drop target
22316                  * @param {Event} e The event object
22317                  * @param {String} id The id of the dragged element
22318                  * @method afterDragEnter
22319                  */
22320                 this.afterDragEnter(target, e, id);
22321             }
22322         }
22323     },
22324
22325     /**
22326      * An empty function by default, but provided so that you can perform a custom action
22327      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
22328      * @param {Roo.dd.DragDrop} target The drop target
22329      * @param {Event} e The event object
22330      * @param {String} id The id of the dragged element
22331      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22332      */
22333     beforeDragEnter : function(target, e, id){
22334         return true;
22335     },
22336
22337     // private
22338     alignElWithMouse: function() {
22339         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
22340         this.proxy.sync();
22341     },
22342
22343     // private
22344     onDragOver : function(e, id){
22345         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22346         if(this.beforeDragOver(target, e, id) !== false){
22347             if(target.isNotifyTarget){
22348                 var status = target.notifyOver(this, e, this.dragData);
22349                 this.proxy.setStatus(status);
22350             }
22351
22352             if(this.afterDragOver){
22353                 /**
22354                  * An empty function by default, but provided so that you can perform a custom action
22355                  * while the dragged item is over the drop target by providing an implementation.
22356                  * @param {Roo.dd.DragDrop} target The drop target
22357                  * @param {Event} e The event object
22358                  * @param {String} id The id of the dragged element
22359                  * @method afterDragOver
22360                  */
22361                 this.afterDragOver(target, e, id);
22362             }
22363         }
22364     },
22365
22366     /**
22367      * An empty function by default, but provided so that you can perform a custom action
22368      * while the dragged item is over the drop target and optionally cancel the onDragOver.
22369      * @param {Roo.dd.DragDrop} target The drop target
22370      * @param {Event} e The event object
22371      * @param {String} id The id of the dragged element
22372      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22373      */
22374     beforeDragOver : function(target, e, id){
22375         return true;
22376     },
22377
22378     // private
22379     onDragOut : function(e, id){
22380         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22381         if(this.beforeDragOut(target, e, id) !== false){
22382             if(target.isNotifyTarget){
22383                 target.notifyOut(this, e, this.dragData);
22384             }
22385             this.proxy.reset();
22386             if(this.afterDragOut){
22387                 /**
22388                  * An empty function by default, but provided so that you can perform a custom action
22389                  * after the dragged item is dragged out of the target without dropping.
22390                  * @param {Roo.dd.DragDrop} target The drop target
22391                  * @param {Event} e The event object
22392                  * @param {String} id The id of the dragged element
22393                  * @method afterDragOut
22394                  */
22395                 this.afterDragOut(target, e, id);
22396             }
22397         }
22398         this.cachedTarget = null;
22399     },
22400
22401     /**
22402      * An empty function by default, but provided so that you can perform a custom action before the dragged
22403      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
22404      * @param {Roo.dd.DragDrop} target The drop target
22405      * @param {Event} e The event object
22406      * @param {String} id The id of the dragged element
22407      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22408      */
22409     beforeDragOut : function(target, e, id){
22410         return true;
22411     },
22412     
22413     // private
22414     onDragDrop : function(e, id){
22415         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
22416         if(this.beforeDragDrop(target, e, id) !== false){
22417             if(target.isNotifyTarget){
22418                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
22419                     this.onValidDrop(target, e, id);
22420                 }else{
22421                     this.onInvalidDrop(target, e, id);
22422                 }
22423             }else{
22424                 this.onValidDrop(target, e, id);
22425             }
22426             
22427             if(this.afterDragDrop){
22428                 /**
22429                  * An empty function by default, but provided so that you can perform a custom action
22430                  * after a valid drag drop has occurred by providing an implementation.
22431                  * @param {Roo.dd.DragDrop} target The drop target
22432                  * @param {Event} e The event object
22433                  * @param {String} id The id of the dropped element
22434                  * @method afterDragDrop
22435                  */
22436                 this.afterDragDrop(target, e, id);
22437             }
22438         }
22439         delete this.cachedTarget;
22440     },
22441
22442     /**
22443      * An empty function by default, but provided so that you can perform a custom action before the dragged
22444      * item is dropped onto the target and optionally cancel the onDragDrop.
22445      * @param {Roo.dd.DragDrop} target The drop target
22446      * @param {Event} e The event object
22447      * @param {String} id The id of the dragged element
22448      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
22449      */
22450     beforeDragDrop : function(target, e, id){
22451         return true;
22452     },
22453
22454     // private
22455     onValidDrop : function(target, e, id){
22456         this.hideProxy();
22457         if(this.afterValidDrop){
22458             /**
22459              * An empty function by default, but provided so that you can perform a custom action
22460              * after a valid drop has occurred by providing an implementation.
22461              * @param {Object} target The target DD 
22462              * @param {Event} e The event object
22463              * @param {String} id The id of the dropped element
22464              * @method afterInvalidDrop
22465              */
22466             this.afterValidDrop(target, e, id);
22467         }
22468     },
22469
22470     // private
22471     getRepairXY : function(e, data){
22472         return this.el.getXY();  
22473     },
22474
22475     // private
22476     onInvalidDrop : function(target, e, id){
22477         this.beforeInvalidDrop(target, e, id);
22478         if(this.cachedTarget){
22479             if(this.cachedTarget.isNotifyTarget){
22480                 this.cachedTarget.notifyOut(this, e, this.dragData);
22481             }
22482             this.cacheTarget = null;
22483         }
22484         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
22485
22486         if(this.afterInvalidDrop){
22487             /**
22488              * An empty function by default, but provided so that you can perform a custom action
22489              * after an invalid drop has occurred by providing an implementation.
22490              * @param {Event} e The event object
22491              * @param {String} id The id of the dropped element
22492              * @method afterInvalidDrop
22493              */
22494             this.afterInvalidDrop(e, id);
22495         }
22496     },
22497
22498     // private
22499     afterRepair : function(){
22500         if(Roo.enableFx){
22501             this.el.highlight(this.hlColor || "c3daf9");
22502         }
22503         this.dragging = false;
22504     },
22505
22506     /**
22507      * An empty function by default, but provided so that you can perform a custom action after an invalid
22508      * drop has occurred.
22509      * @param {Roo.dd.DragDrop} target The drop target
22510      * @param {Event} e The event object
22511      * @param {String} id The id of the dragged element
22512      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
22513      */
22514     beforeInvalidDrop : function(target, e, id){
22515         return true;
22516     },
22517
22518     // private
22519     handleMouseDown : function(e){
22520         if(this.dragging) {
22521             return;
22522         }
22523         var data = this.getDragData(e);
22524         if(data && this.onBeforeDrag(data, e) !== false){
22525             this.dragData = data;
22526             this.proxy.stop();
22527             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
22528         } 
22529     },
22530
22531     /**
22532      * An empty function by default, but provided so that you can perform a custom action before the initial
22533      * drag event begins and optionally cancel it.
22534      * @param {Object} data An object containing arbitrary data to be shared with drop targets
22535      * @param {Event} e The event object
22536      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
22537      */
22538     onBeforeDrag : function(data, e){
22539         return true;
22540     },
22541
22542     /**
22543      * An empty function by default, but provided so that you can perform a custom action once the initial
22544      * drag event has begun.  The drag cannot be canceled from this function.
22545      * @param {Number} x The x position of the click on the dragged object
22546      * @param {Number} y The y position of the click on the dragged object
22547      */
22548     onStartDrag : Roo.emptyFn,
22549
22550     // private - YUI override
22551     startDrag : function(x, y){
22552         this.proxy.reset();
22553         this.dragging = true;
22554         this.proxy.update("");
22555         this.onInitDrag(x, y);
22556         this.proxy.show();
22557     },
22558
22559     // private
22560     onInitDrag : function(x, y){
22561         var clone = this.el.dom.cloneNode(true);
22562         clone.id = Roo.id(); // prevent duplicate ids
22563         this.proxy.update(clone);
22564         this.onStartDrag(x, y);
22565         return true;
22566     },
22567
22568     /**
22569      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
22570      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
22571      */
22572     getProxy : function(){
22573         return this.proxy;  
22574     },
22575
22576     /**
22577      * Hides the drag source's {@link Roo.dd.StatusProxy}
22578      */
22579     hideProxy : function(){
22580         this.proxy.hide();  
22581         this.proxy.reset(true);
22582         this.dragging = false;
22583     },
22584
22585     // private
22586     triggerCacheRefresh : function(){
22587         Roo.dd.DDM.refreshCache(this.groups);
22588     },
22589
22590     // private - override to prevent hiding
22591     b4EndDrag: function(e) {
22592     },
22593
22594     // private - override to prevent moving
22595     endDrag : function(e){
22596         this.onEndDrag(this.dragData, e);
22597     },
22598
22599     // private
22600     onEndDrag : function(data, e){
22601     },
22602     
22603     // private - pin to cursor
22604     autoOffset : function(x, y) {
22605         this.setDelta(-12, -20);
22606     }    
22607 });/*
22608  * Based on:
22609  * Ext JS Library 1.1.1
22610  * Copyright(c) 2006-2007, Ext JS, LLC.
22611  *
22612  * Originally Released Under LGPL - original licence link has changed is not relivant.
22613  *
22614  * Fork - LGPL
22615  * <script type="text/javascript">
22616  */
22617
22618
22619 /**
22620  * @class Roo.dd.DropTarget
22621  * @extends Roo.dd.DDTarget
22622  * A simple class that provides the basic implementation needed to make any element a drop target that can have
22623  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
22624  * @constructor
22625  * @param {String/HTMLElement/Element} el The container element
22626  * @param {Object} config
22627  */
22628 Roo.dd.DropTarget = function(el, config){
22629     this.el = Roo.get(el);
22630     
22631     var listeners = false; ;
22632     if (config && config.listeners) {
22633         listeners= config.listeners;
22634         delete config.listeners;
22635     }
22636     Roo.apply(this, config);
22637     
22638     if(this.containerScroll){
22639         Roo.dd.ScrollManager.register(this.el);
22640     }
22641     this.addEvents( {
22642          /**
22643          * @scope Roo.dd.DropTarget
22644          */
22645          
22646          /**
22647          * @event enter
22648          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
22649          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
22650          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
22651          * 
22652          * IMPORTANT : it should set  this.valid to true|false
22653          * 
22654          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22655          * @param {Event} e The event
22656          * @param {Object} data An object containing arbitrary data supplied by the drag source
22657          */
22658         "enter" : true,
22659         
22660          /**
22661          * @event over
22662          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
22663          * This method will be called on every mouse movement while the drag source is over the drop target.
22664          * This default implementation simply returns the dropAllowed config value.
22665          * 
22666          * IMPORTANT : it should set  this.valid to true|false
22667          * 
22668          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22669          * @param {Event} e The event
22670          * @param {Object} data An object containing arbitrary data supplied by the drag source
22671          
22672          */
22673         "over" : true,
22674         /**
22675          * @event out
22676          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
22677          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
22678          * overClass (if any) from the drop element.
22679          * 
22680          * 
22681          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22682          * @param {Event} e The event
22683          * @param {Object} data An object containing arbitrary data supplied by the drag source
22684          */
22685          "out" : true,
22686          
22687         /**
22688          * @event drop
22689          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
22690          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
22691          * implementation that does something to process the drop event and returns true so that the drag source's
22692          * repair action does not run.
22693          * 
22694          * IMPORTANT : it should set this.success
22695          * 
22696          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
22697          * @param {Event} e The event
22698          * @param {Object} data An object containing arbitrary data supplied by the drag source
22699         */
22700          "drop" : true
22701     });
22702             
22703      
22704     Roo.dd.DropTarget.superclass.constructor.call(  this, 
22705         this.el.dom, 
22706         this.ddGroup || this.group,
22707         {
22708             isTarget: true,
22709             listeners : listeners || {} 
22710            
22711         
22712         }
22713     );
22714
22715 };
22716
22717 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
22718     /**
22719      * @cfg {String} overClass
22720      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
22721      */
22722      /**
22723      * @cfg {String} ddGroup
22724      * The drag drop group to handle drop events for
22725      */
22726      
22727     /**
22728      * @cfg {String} dropAllowed
22729      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
22730      */
22731     dropAllowed : "x-dd-drop-ok",
22732     /**
22733      * @cfg {String} dropNotAllowed
22734      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
22735      */
22736     dropNotAllowed : "x-dd-drop-nodrop",
22737     /**
22738      * @cfg {boolean} success
22739      * set this after drop listener.. 
22740      */
22741     success : false,
22742     /**
22743      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
22744      * if the drop point is valid for over/enter..
22745      */
22746     valid : false,
22747     // private
22748     isTarget : true,
22749
22750     // private
22751     isNotifyTarget : true,
22752     
22753     /**
22754      * @hide
22755      */
22756     notifyEnter : function(dd, e, data)
22757     {
22758         this.valid = true;
22759         this.fireEvent('enter', dd, e, data);
22760         if(this.overClass){
22761             this.el.addClass(this.overClass);
22762         }
22763         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22764             this.valid ? this.dropAllowed : this.dropNotAllowed
22765         );
22766     },
22767
22768     /**
22769      * @hide
22770      */
22771     notifyOver : function(dd, e, data)
22772     {
22773         this.valid = true;
22774         this.fireEvent('over', dd, e, data);
22775         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
22776             this.valid ? this.dropAllowed : this.dropNotAllowed
22777         );
22778     },
22779
22780     /**
22781      * @hide
22782      */
22783     notifyOut : function(dd, e, data)
22784     {
22785         this.fireEvent('out', dd, e, data);
22786         if(this.overClass){
22787             this.el.removeClass(this.overClass);
22788         }
22789     },
22790
22791     /**
22792      * @hide
22793      */
22794     notifyDrop : function(dd, e, data)
22795     {
22796         this.success = false;
22797         this.fireEvent('drop', dd, e, data);
22798         return this.success;
22799     }
22800 });/*
22801  * Based on:
22802  * Ext JS Library 1.1.1
22803  * Copyright(c) 2006-2007, Ext JS, LLC.
22804  *
22805  * Originally Released Under LGPL - original licence link has changed is not relivant.
22806  *
22807  * Fork - LGPL
22808  * <script type="text/javascript">
22809  */
22810
22811
22812 /**
22813  * @class Roo.dd.DragZone
22814  * @extends Roo.dd.DragSource
22815  * This class provides a container DD instance that proxies for multiple child node sources.<br />
22816  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
22817  * @constructor
22818  * @param {String/HTMLElement/Element} el The container element
22819  * @param {Object} config
22820  */
22821 Roo.dd.DragZone = function(el, config){
22822     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
22823     if(this.containerScroll){
22824         Roo.dd.ScrollManager.register(this.el);
22825     }
22826 };
22827
22828 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
22829     /**
22830      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
22831      * for auto scrolling during drag operations.
22832      */
22833     /**
22834      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
22835      * method after a failed drop (defaults to "c3daf9" - light blue)
22836      */
22837
22838     /**
22839      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
22840      * for a valid target to drag based on the mouse down. Override this method
22841      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
22842      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
22843      * @param {EventObject} e The mouse down event
22844      * @return {Object} The dragData
22845      */
22846     getDragData : function(e){
22847         return Roo.dd.Registry.getHandleFromEvent(e);
22848     },
22849     
22850     /**
22851      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
22852      * this.dragData.ddel
22853      * @param {Number} x The x position of the click on the dragged object
22854      * @param {Number} y The y position of the click on the dragged object
22855      * @return {Boolean} true to continue the drag, false to cancel
22856      */
22857     onInitDrag : function(x, y){
22858         this.proxy.update(this.dragData.ddel.cloneNode(true));
22859         this.onStartDrag(x, y);
22860         return true;
22861     },
22862     
22863     /**
22864      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
22865      */
22866     afterRepair : function(){
22867         if(Roo.enableFx){
22868             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
22869         }
22870         this.dragging = false;
22871     },
22872
22873     /**
22874      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
22875      * the XY of this.dragData.ddel
22876      * @param {EventObject} e The mouse up event
22877      * @return {Array} The xy location (e.g. [100, 200])
22878      */
22879     getRepairXY : function(e){
22880         return Roo.Element.fly(this.dragData.ddel).getXY();  
22881     }
22882 });/*
22883  * Based on:
22884  * Ext JS Library 1.1.1
22885  * Copyright(c) 2006-2007, Ext JS, LLC.
22886  *
22887  * Originally Released Under LGPL - original licence link has changed is not relivant.
22888  *
22889  * Fork - LGPL
22890  * <script type="text/javascript">
22891  */
22892 /**
22893  * @class Roo.dd.DropZone
22894  * @extends Roo.dd.DropTarget
22895  * This class provides a container DD instance that proxies for multiple child node targets.<br />
22896  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
22897  * @constructor
22898  * @param {String/HTMLElement/Element} el The container element
22899  * @param {Object} config
22900  */
22901 Roo.dd.DropZone = function(el, config){
22902     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
22903 };
22904
22905 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
22906     /**
22907      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
22908      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
22909      * provide your own custom lookup.
22910      * @param {Event} e The event
22911      * @return {Object} data The custom data
22912      */
22913     getTargetFromEvent : function(e){
22914         return Roo.dd.Registry.getTargetFromEvent(e);
22915     },
22916
22917     /**
22918      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
22919      * that it has registered.  This method has no default implementation and should be overridden to provide
22920      * node-specific processing if necessary.
22921      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
22922      * {@link #getTargetFromEvent} for this node)
22923      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22924      * @param {Event} e The event
22925      * @param {Object} data An object containing arbitrary data supplied by the drag source
22926      */
22927     onNodeEnter : function(n, dd, e, data){
22928         
22929     },
22930
22931     /**
22932      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
22933      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
22934      * overridden to provide the proper feedback.
22935      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22936      * {@link #getTargetFromEvent} for this node)
22937      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22938      * @param {Event} e The event
22939      * @param {Object} data An object containing arbitrary data supplied by the drag source
22940      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22941      * underlying {@link Roo.dd.StatusProxy} can be updated
22942      */
22943     onNodeOver : function(n, dd, e, data){
22944         return this.dropAllowed;
22945     },
22946
22947     /**
22948      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
22949      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
22950      * node-specific processing if necessary.
22951      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22952      * {@link #getTargetFromEvent} for this node)
22953      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22954      * @param {Event} e The event
22955      * @param {Object} data An object containing arbitrary data supplied by the drag source
22956      */
22957     onNodeOut : function(n, dd, e, data){
22958         
22959     },
22960
22961     /**
22962      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
22963      * the drop node.  The default implementation returns false, so it should be overridden to provide the
22964      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
22965      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
22966      * {@link #getTargetFromEvent} for this node)
22967      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22968      * @param {Event} e The event
22969      * @param {Object} data An object containing arbitrary data supplied by the drag source
22970      * @return {Boolean} True if the drop was valid, else false
22971      */
22972     onNodeDrop : function(n, dd, e, data){
22973         return false;
22974     },
22975
22976     /**
22977      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
22978      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
22979      * it should be overridden to provide the proper feedback if necessary.
22980      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22981      * @param {Event} e The event
22982      * @param {Object} data An object containing arbitrary data supplied by the drag source
22983      * @return {String} status The CSS class that communicates the drop status back to the source so that the
22984      * underlying {@link Roo.dd.StatusProxy} can be updated
22985      */
22986     onContainerOver : function(dd, e, data){
22987         return this.dropNotAllowed;
22988     },
22989
22990     /**
22991      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
22992      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
22993      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
22994      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
22995      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
22996      * @param {Event} e The event
22997      * @param {Object} data An object containing arbitrary data supplied by the drag source
22998      * @return {Boolean} True if the drop was valid, else false
22999      */
23000     onContainerDrop : function(dd, e, data){
23001         return false;
23002     },
23003
23004     /**
23005      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
23006      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
23007      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
23008      * you should override this method and provide a custom implementation.
23009      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23010      * @param {Event} e The event
23011      * @param {Object} data An object containing arbitrary data supplied by the drag source
23012      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23013      * underlying {@link Roo.dd.StatusProxy} can be updated
23014      */
23015     notifyEnter : function(dd, e, data){
23016         return this.dropNotAllowed;
23017     },
23018
23019     /**
23020      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
23021      * This method will be called on every mouse movement while the drag source is over the drop zone.
23022      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
23023      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
23024      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
23025      * registered node, it will call {@link #onContainerOver}.
23026      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23027      * @param {Event} e The event
23028      * @param {Object} data An object containing arbitrary data supplied by the drag source
23029      * @return {String} status The CSS class that communicates the drop status back to the source so that the
23030      * underlying {@link Roo.dd.StatusProxy} can be updated
23031      */
23032     notifyOver : function(dd, e, data){
23033         var n = this.getTargetFromEvent(e);
23034         if(!n){ // not over valid drop target
23035             if(this.lastOverNode){
23036                 this.onNodeOut(this.lastOverNode, dd, e, data);
23037                 this.lastOverNode = null;
23038             }
23039             return this.onContainerOver(dd, e, data);
23040         }
23041         if(this.lastOverNode != n){
23042             if(this.lastOverNode){
23043                 this.onNodeOut(this.lastOverNode, dd, e, data);
23044             }
23045             this.onNodeEnter(n, dd, e, data);
23046             this.lastOverNode = n;
23047         }
23048         return this.onNodeOver(n, dd, e, data);
23049     },
23050
23051     /**
23052      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
23053      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
23054      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
23055      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
23056      * @param {Event} e The event
23057      * @param {Object} data An object containing arbitrary data supplied by the drag zone
23058      */
23059     notifyOut : function(dd, e, data){
23060         if(this.lastOverNode){
23061             this.onNodeOut(this.lastOverNode, dd, e, data);
23062             this.lastOverNode = null;
23063         }
23064     },
23065
23066     /**
23067      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
23068      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
23069      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
23070      * otherwise it will call {@link #onContainerDrop}.
23071      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
23072      * @param {Event} e The event
23073      * @param {Object} data An object containing arbitrary data supplied by the drag source
23074      * @return {Boolean} True if the drop was valid, else false
23075      */
23076     notifyDrop : function(dd, e, data){
23077         if(this.lastOverNode){
23078             this.onNodeOut(this.lastOverNode, dd, e, data);
23079             this.lastOverNode = null;
23080         }
23081         var n = this.getTargetFromEvent(e);
23082         return n ?
23083             this.onNodeDrop(n, dd, e, data) :
23084             this.onContainerDrop(dd, e, data);
23085     },
23086
23087     // private
23088     triggerCacheRefresh : function(){
23089         Roo.dd.DDM.refreshCache(this.groups);
23090     }  
23091 });