BaseItem.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:5k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.0.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.menu.BaseItem
  9.  * @extends Ext.Component
  10.  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
  11.  * management and base configuration options shared by all menu components.
  12.  * @constructor
  13.  * Creates a new BaseItem
  14.  * @param {Object} config Configuration options
  15.  * @xtype menubaseitem
  16.  */
  17. Ext.menu.BaseItem = function(config){
  18.     Ext.menu.BaseItem.superclass.constructor.call(this, config);
  19.     this.addEvents(
  20.         /**
  21.          * @event click
  22.          * Fires when this item is clicked
  23.          * @param {Ext.menu.BaseItem} this
  24.          * @param {Ext.EventObject} e
  25.          */
  26.         'click',
  27.         /**
  28.          * @event activate
  29.          * Fires when this item is activated
  30.          * @param {Ext.menu.BaseItem} this
  31.          */
  32.         'activate',
  33.         /**
  34.          * @event deactivate
  35.          * Fires when this item is deactivated
  36.          * @param {Ext.menu.BaseItem} this
  37.          */
  38.         'deactivate'
  39.     );
  40.     if(this.handler){
  41.         this.on("click", this.handler, this.scope);
  42.     }
  43. };
  44. Ext.extend(Ext.menu.BaseItem, Ext.Component, {
  45.     /**
  46.      * @property parentMenu
  47.      * @type Ext.menu.Menu
  48.      * The parent Menu of this Item.
  49.      */
  50.     /**
  51.      * @cfg {Function} handler
  52.      * A function that will handle the click event of this menu item (optional).
  53.      * The handler is passed the following parameters:<div class="mdetail-params"><ul>
  54.      * <li><code>b</code> : Item<div class="sub-desc">This menu Item.</div></li>
  55.      * <li><code>e</code> : EventObject<div class="sub-desc">The click event.</div></li>
  56.      * </ul></div>
  57.      */
  58.     /**
  59.      * @cfg {Object} scope
  60.      * The scope (<tt><b>this</b></tt> reference) in which the handler function will be called.
  61.      */
  62.     /**
  63.      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
  64.      */
  65.     canActivate : false,
  66.     /**
  67.      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
  68.      */
  69.     activeClass : "x-menu-item-active",
  70.     /**
  71.      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
  72.      */
  73.     hideOnClick : true,
  74.     /**
  75.      * @cfg {Number} clickHideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
  76.      */
  77.     clickHideDelay : 1,
  78.     // private
  79.     ctype : "Ext.menu.BaseItem",
  80.     // private
  81.     actionMode : "container",
  82.     // private
  83.     onRender : function(container, position){
  84.         Ext.menu.BaseItem.superclass.onRender.apply(this, arguments);
  85.         if(this.ownerCt && this.ownerCt instanceof Ext.menu.Menu){
  86.             this.parentMenu = this.ownerCt;
  87.         }else{
  88.             this.container.addClass('x-menu-list-item');
  89.             this.mon(this.el, 'click', this.onClick, this);
  90.             this.mon(this.el, 'mouseenter', this.activate, this);
  91.             this.mon(this.el, 'mouseleave', this.deactivate, this);
  92.         }
  93.     },
  94.     /**
  95.      * Sets the function that will handle click events for this item (equivalent to passing in the {@link #handler}
  96.      * config property).  If an existing handler is already registered, it will be unregistered for you.
  97.      * @param {Function} handler The function that should be called on click
  98.      * @param {Object} scope The scope that should be passed to the handler
  99.      */
  100.     setHandler : function(handler, scope){
  101.         if(this.handler){
  102.             this.un("click", this.handler, this.scope);
  103.         }
  104.         this.on("click", this.handler = handler, this.scope = scope);
  105.     },
  106.     // private
  107.     onClick : function(e){
  108.         if(!this.disabled && this.fireEvent("click", this, e) !== false
  109.                 && (this.parentMenu && this.parentMenu.fireEvent("itemclick", this, e) !== false)){
  110.             this.handleClick(e);
  111.         }else{
  112.             e.stopEvent();
  113.         }
  114.     },
  115.     // private
  116.     activate : function(){
  117.         if(this.disabled){
  118.             return false;
  119.         }
  120.         var li = this.container;
  121.         li.addClass(this.activeClass);
  122.         this.region = li.getRegion().adjust(2, 2, -2, -2);
  123.         this.fireEvent("activate", this);
  124.         return true;
  125.     },
  126.     // private
  127.     deactivate : function(){
  128.         this.container.removeClass(this.activeClass);
  129.         this.fireEvent("deactivate", this);
  130.     },
  131.     // private
  132.     shouldDeactivate : function(e){
  133.         return !this.region || !this.region.contains(e.getPoint());
  134.     },
  135.     // private
  136.     handleClick : function(e){
  137.         if(this.hideOnClick){
  138.             this.parentMenu.hide.defer(this.clickHideDelay, this.parentMenu, [true]);
  139.         }
  140.     },
  141.     // private. Do nothing
  142.     expandMenu : Ext.emptyFn,
  143.     // private. Do nothing
  144.     hideMenu : Ext.emptyFn
  145. });
  146. Ext.reg('menubaseitem', Ext.menu.BaseItem);