Tip.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:5k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.Tip
  3.  * @extends Ext.Panel
  4.  * @xtype tip
  5.  * This is the base class for {@link Ext.QuickTip} and {@link Ext.Tooltip} that provides the basic layout and
  6.  * positioning that all tip-based classes require. This class can be used directly for simple, statically-positioned
  7.  * tips that are displayed programmatically, or it can be extended to provide custom tip implementations.
  8.  * @constructor
  9.  * Create a new Tip
  10.  * @param {Object} config The configuration options
  11.  */
  12. Ext.Tip = Ext.extend(Ext.Panel, {
  13.     /**
  14.      * @cfg {Boolean} closable True to render a close tool button into the tooltip header (defaults to false).
  15.      */
  16.     /**
  17.      * @cfg {Number} width
  18.      * Width in pixels of the tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
  19.      * {@link #minWidth} or {@link #maxWidth}.  The maximum supported value is 500.
  20.      */
  21.     /**
  22.      * @cfg {Number} minWidth The minimum width of the tip in pixels (defaults to 40).
  23.      */
  24.     minWidth : 40,
  25.     /**
  26.      * @cfg {Number} maxWidth The maximum width of the tip in pixels (defaults to 300).  The maximum supported value is 500.
  27.      */
  28.     maxWidth : 300,
  29.     /**
  30.      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
  31.      * for bottom-right shadow (defaults to "sides").
  32.      */
  33.     shadow : "sides",
  34.     /**
  35.      * @cfg {String} defaultAlign <b>Experimental</b>. The default {@link Ext.Element#alignTo} anchor position value
  36.      * for this tip relative to its element of origin (defaults to "tl-bl?").
  37.      */
  38.     defaultAlign : "tl-bl?",
  39.     autoRender: true,
  40.     quickShowInterval : 250,
  41.     // private panel overrides
  42.     frame:true,
  43.     hidden:true,
  44.     baseCls: 'x-tip',
  45.     floating:{shadow:true,shim:true,useDisplay:true,constrain:false},
  46.     autoHeight:true,
  47.     closeAction: 'hide',
  48.     // private
  49.     initComponent : function(){
  50.         Ext.Tip.superclass.initComponent.call(this);
  51.         if(this.closable && !this.title){
  52.             this.elements += ',header';
  53.         }
  54.     },
  55.     // private
  56.     afterRender : function(){
  57.         Ext.Tip.superclass.afterRender.call(this);
  58.         if(this.closable){
  59.             this.addTool({
  60.                 id: 'close',
  61.                 handler: this[this.closeAction],
  62.                 scope: this
  63.             });
  64.         }
  65.     },
  66.     /**
  67.      * Shows this tip at the specified XY position.  Example usage:
  68.      * <pre><code>
  69. // Show the tip at x:50 and y:100
  70. tip.showAt([50,100]);
  71. </code></pre>
  72.      * @param {Array} xy An array containing the x and y coordinates
  73.      */
  74.     showAt : function(xy){
  75.         Ext.Tip.superclass.show.call(this);
  76.         if(this.measureWidth !== false && (!this.initialConfig || typeof this.initialConfig.width != 'number')){
  77.             this.doAutoWidth();
  78.         }
  79.         if(this.constrainPosition){
  80.             xy = this.el.adjustForConstraints(xy);
  81.         }
  82.         this.setPagePosition(xy[0], xy[1]);
  83.     },
  84.     // protected
  85.     doAutoWidth : function(adjust){
  86.         adjust = adjust || 0;
  87.         var bw = this.body.getTextWidth();
  88.         if(this.title){
  89.             bw = Math.max(bw, this.header.child('span').getTextWidth(this.title));
  90.         }
  91.         bw += this.getFrameWidth() + (this.closable ? 20 : 0) + this.body.getPadding("lr") + adjust;
  92.         this.setWidth(bw.constrain(this.minWidth, this.maxWidth));
  93.         
  94.         // IE7 repaint bug on initial show
  95.         if(Ext.isIE7 && !this.repainted){
  96.             this.el.repaint();
  97.             this.repainted = true;
  98.         }
  99.     },
  100.     /**
  101.      * <b>Experimental</b>. Shows this tip at a position relative to another element using a standard {@link Ext.Element#alignTo}
  102.      * anchor position value.  Example usage:
  103.      * <pre><code>
  104. // Show the tip at the default position ('tl-br?')
  105. tip.showBy('my-el');
  106. // Show the tip's top-left corner anchored to the element's top-right corner
  107. tip.showBy('my-el', 'tl-tr');
  108. </code></pre>
  109.      * @param {Mixed} el An HTMLElement, Ext.Element or string id of the target element to align to
  110.      * @param {String} position (optional) A valid {@link Ext.Element#alignTo} anchor position (defaults to 'tl-br?' or
  111.      * {@link #defaultAlign} if specified).
  112.      */
  113.     showBy : function(el, pos){
  114.         if(!this.rendered){
  115.             this.render(Ext.getBody());
  116.         }
  117.         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign));
  118.     },
  119.     initDraggable : function(){
  120.         this.dd = new Ext.Tip.DD(this, typeof this.draggable == 'boolean' ? null : this.draggable);
  121.         this.header.addClass('x-tip-draggable');
  122.     }
  123. });
  124. Ext.reg('tip', Ext.Tip);
  125. // private - custom Tip DD implementation
  126. Ext.Tip.DD = function(tip, config){
  127.     Ext.apply(this, config);
  128.     this.tip = tip;
  129.     Ext.Tip.DD.superclass.constructor.call(this, tip.el.id, 'WindowDD-'+tip.id);
  130.     this.setHandleElId(tip.header.id);
  131.     this.scroll = false;
  132. };
  133. Ext.extend(Ext.Tip.DD, Ext.dd.DD, {
  134.     moveOnly:true,
  135.     scroll:false,
  136.     headerOffsets:[100, 25],
  137.     startDrag : function(){
  138.         this.tip.el.disableShadow();
  139.     },
  140.     endDrag : function(e){
  141.         this.tip.el.enableShadow(true);
  142.     }
  143. });