Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / src / widgets / tips / QuickTip.js
1 /*!
2  * Ext JS Library 3.0.3
3  * Copyright(c) 2006-2009 Ext JS, LLC
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /**\r
8  * @class Ext.QuickTip\r
9  * @extends Ext.ToolTip\r
10  * @xtype quicktip\r
11  * A specialized tooltip class for tooltips that can be specified in markup and automatically managed by the global\r
12  * {@link Ext.QuickTips} instance.  See the QuickTips class header for additional usage details and examples.\r
13  * @constructor\r
14  * Create a new Tip\r
15  * @param {Object} config The configuration options\r
16  */\r
17 Ext.QuickTip = Ext.extend(Ext.ToolTip, {\r
18     /**\r
19      * @cfg {Mixed} target The target HTMLElement, Ext.Element or id to associate with this quicktip (defaults to the document).\r
20      */\r
21     /**\r
22      * @cfg {Boolean} interceptTitles True to automatically use the element's DOM title value if available (defaults to false).\r
23      */\r
24     interceptTitles : false,\r
25 \r
26     // private\r
27     tagConfig : {\r
28         namespace : "ext",\r
29         attribute : "qtip",\r
30         width : "qwidth",\r
31         target : "target",\r
32         title : "qtitle",\r
33         hide : "hide",\r
34         cls : "qclass",\r
35         align : "qalign",\r
36         anchor : "anchor"\r
37     },\r
38 \r
39     // private\r
40     initComponent : function(){\r
41         this.target = this.target || Ext.getDoc();\r
42         this.targets = this.targets || {};\r
43         Ext.QuickTip.superclass.initComponent.call(this);\r
44     },\r
45 \r
46     /**\r
47      * Configures a new quick tip instance and assigns it to a target element.  The following config values are\r
48      * supported (for example usage, see the {@link Ext.QuickTips} class header):\r
49      * <div class="mdetail-params"><ul>\r
50      * <li>autoHide</li>\r
51      * <li>cls</li>\r
52      * <li>dismissDelay (overrides the singleton value)</li>\r
53      * <li>target (required)</li>\r
54      * <li>text (required)</li>\r
55      * <li>title</li>\r
56      * <li>width</li></ul></div>\r
57      * @param {Object} config The config object\r
58      */\r
59     register : function(config){\r
60         var cs = Ext.isArray(config) ? config : arguments;\r
61         for(var i = 0, len = cs.length; i < len; i++){\r
62             var c = cs[i];\r
63             var target = c.target;\r
64             if(target){\r
65                 if(Ext.isArray(target)){\r
66                     for(var j = 0, jlen = target.length; j < jlen; j++){\r
67                         this.targets[Ext.id(target[j])] = c;\r
68                     }\r
69                 } else{\r
70                     this.targets[Ext.id(target)] = c;\r
71                 }\r
72             }\r
73         }\r
74     },\r
75 \r
76     /**\r
77      * Removes this quick tip from its element and destroys it.\r
78      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.\r
79      */\r
80     unregister : function(el){\r
81         delete this.targets[Ext.id(el)];\r
82     },\r
83     \r
84     /**\r
85      * Hides a visible tip or cancels an impending show for a particular element.\r
86      * @param {String/HTMLElement/Element} el The element that is the target of the tip.\r
87      */\r
88     cancelShow: function(el){\r
89         var at = this.activeTarget;\r
90         el = Ext.get(el).dom;\r
91         if(this.isVisible()){\r
92             if(at && at.el == el){\r
93                 this.hide();\r
94             }\r
95         }else if(at && at.el == el){\r
96             this.clearTimer('show');\r
97         }\r
98     },\r
99 \r
100     // private\r
101     getTipCfg: function(e) {\r
102         var t = e.getTarget(), \r
103             ttp, \r
104             cfg;\r
105         if(this.interceptTitles && t.title){\r
106             ttp = t.title;\r
107             t.qtip = ttp;\r
108             t.removeAttribute("title");\r
109             e.preventDefault();\r
110         }else{\r
111             cfg = this.tagConfig;\r
112             ttp = t.qtip || Ext.fly(t).getAttribute(cfg.attribute, cfg.namespace);\r
113         }\r
114         return ttp;\r
115     },\r
116 \r
117     // private\r
118     onTargetOver : function(e){\r
119         if(this.disabled){\r
120             return;\r
121         }\r
122         this.targetXY = e.getXY();\r
123         var t = e.getTarget();\r
124         if(!t || t.nodeType !== 1 || t == document || t == document.body){\r
125             return;\r
126         }\r
127         if(this.activeTarget && ((t == this.activeTarget.el) || Ext.fly(this.activeTarget.el).contains(t))){\r
128             this.clearTimer('hide');\r
129             this.show();\r
130             return;\r
131         }\r
132         if(t && this.targets[t.id]){\r
133             this.activeTarget = this.targets[t.id];\r
134             this.activeTarget.el = t;\r
135             this.anchor = this.activeTarget.anchor;\r
136             if(this.anchor){\r
137                 this.anchorTarget = t;\r
138             }\r
139             this.delayShow();\r
140             return;\r
141         }\r
142         var ttp, et = Ext.fly(t), cfg = this.tagConfig, ns = cfg.namespace;\r
143         if(ttp = this.getTipCfg(e)){\r
144             var autoHide = et.getAttribute(cfg.hide, ns);\r
145             this.activeTarget = {\r
146                 el: t,\r
147                 text: ttp,\r
148                 width: et.getAttribute(cfg.width, ns),\r
149                 autoHide: autoHide != "user" && autoHide !== 'false',\r
150                 title: et.getAttribute(cfg.title, ns),\r
151                 cls: et.getAttribute(cfg.cls, ns),\r
152                 align: et.getAttribute(cfg.align, ns)\r
153                 \r
154             };\r
155             this.anchor = et.getAttribute(cfg.anchor, ns);\r
156             if(this.anchor){\r
157                 this.anchorTarget = t;\r
158             }\r
159             this.delayShow();\r
160         }\r
161     },\r
162 \r
163     // private\r
164     onTargetOut : function(e){\r
165 \r
166         // If moving within the current target, and it does not have a new tip, ignore the mouseout\r
167         if (this.activeTarget && e.within(this.activeTarget.el) && !this.getTipCfg(e)) {\r
168             return;\r
169         }\r
170 \r
171         this.clearTimer('show');\r
172         if(this.autoHide !== false){\r
173             this.delayHide();\r
174         }\r
175     },\r
176 \r
177     // inherit docs\r
178     showAt : function(xy){\r
179         var t = this.activeTarget;\r
180         if(t){\r
181             if(!this.rendered){\r
182                 this.render(Ext.getBody());\r
183                 this.activeTarget = t;\r
184             }\r
185             if(t.width){\r
186                 this.setWidth(t.width);\r
187                 this.body.setWidth(this.adjustBodyWidth(t.width - this.getFrameWidth()));\r
188                 this.measureWidth = false;\r
189             } else{\r
190                 this.measureWidth = true;\r
191             }\r
192             this.setTitle(t.title || '');\r
193             this.body.update(t.text);\r
194             this.autoHide = t.autoHide;\r
195             this.dismissDelay = t.dismissDelay || this.dismissDelay;\r
196             if(this.lastCls){\r
197                 this.el.removeClass(this.lastCls);\r
198                 delete this.lastCls;\r
199             }\r
200             if(t.cls){\r
201                 this.el.addClass(t.cls);\r
202                 this.lastCls = t.cls;\r
203             }\r
204             if(this.anchor){\r
205                 this.constrainPosition = false;\r
206             }else if(t.align){ // TODO: this doesn't seem to work consistently\r
207                 xy = this.el.getAlignToXY(t.el, t.align);\r
208                 this.constrainPosition = false;\r
209             }else{\r
210                 this.constrainPosition = true;\r
211             }\r
212         }\r
213         Ext.QuickTip.superclass.showAt.call(this, xy);\r
214     },\r
215 \r
216     // inherit docs\r
217     hide: function(){\r
218         delete this.activeTarget;\r
219         Ext.QuickTip.superclass.hide.call(this);\r
220     }\r
221 });\r
222 Ext.reg('quicktip', Ext.QuickTip);