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

JavaScript

开发平台:

JavaScript

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