/* RSence * Copyright 2010 Riassence Inc. * http://riassence.com/ * * You should have received a copy of the GNU General Public License along * with this software package. If not, contact licensing@riassence.com */ /*** = Description ** Menu item for the HMiniMenu component. ***/ var//RSence.Menus HMiniMenuItem = HRadioButton.extend({ componentName: 'minimenuitem', defaultEvents: { click: true, mouseUp: true, mouseDown: true }, _activateParentParent: function(){ var _parentParent = this.parent.options.logicParent; EVENT.changeActiveControl(_parentParent); }, // gainedActiveStatus: function( _prevActive ){ // console.log('menuitem gained active status',_prevActive === this.parent.options.logicParent); // this.base( _prevActive ); // }, lostActiveStatus: function( _newActive ){ this.parent.options.logicParent.menuHide(); this.base( _newActive ); }, _parentLastActivation: 0, click: function(){ var _now = new Date().getTime(); if( _now - this._parentLastActivation > 200 ){ this.base(); this._parentLastActivation = _now; this._activateParentParent(); } return true; }, mouseDown: function(){ this.base(); this.click(); return true; }, mouseUp: function(){ this.base(); this.click(); return true; } });