fckmenuitem.js
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:4k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2009 Frederico Caldeira Knabben
  4.  *
  5.  * == BEGIN LICENSE ==
  6.  *
  7.  * Licensed under the terms of any of the following licenses at your
  8.  * choice:
  9.  *
  10.  *  - GNU General Public License Version 2 or later (the "GPL")
  11.  *    http://www.gnu.org/licenses/gpl.html
  12.  *
  13.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  *    http://www.gnu.org/licenses/lgpl.html
  15.  *
  16.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  *
  19.  * == END LICENSE ==
  20.  *
  21.  * Defines and renders a menu items in a menu block.
  22.  */
  23. var FCKMenuItem = function( parentMenuBlock, name, label, iconPathOrStripInfoArray, isDisabled, customData )
  24. {
  25. this.Name = name ;
  26. this.Label = label || name ;
  27. this.IsDisabled = isDisabled ;
  28. this.Icon = new FCKIcon( iconPathOrStripInfoArray ) ;
  29. this.SubMenu = new FCKMenuBlockPanel() ;
  30. this.SubMenu.Parent = parentMenuBlock ;
  31. this.SubMenu.OnClick = FCKTools.CreateEventListener( FCKMenuItem_SubMenu_OnClick, this ) ;
  32. this.CustomData = customData ;
  33. if ( FCK.IECleanup )
  34. FCK.IECleanup.AddItem( this, FCKMenuItem_Cleanup ) ;
  35. }
  36. FCKMenuItem.prototype.AddItem = function( name, label, iconPathOrStripInfoArrayOrIndex, isDisabled, customData )
  37. {
  38. this.HasSubMenu = true ;
  39. return this.SubMenu.AddItem( name, label, iconPathOrStripInfoArrayOrIndex, isDisabled, customData ) ;
  40. }
  41. FCKMenuItem.prototype.AddSeparator = function()
  42. {
  43. this.SubMenu.AddSeparator() ;
  44. }
  45. FCKMenuItem.prototype.Create = function( parentTable )
  46. {
  47. var bHasSubMenu = this.HasSubMenu ;
  48. var oDoc = FCKTools.GetElementDocument( parentTable ) ;
  49. // Add a row in the table to hold the menu item.
  50. var r = this.MainElement = parentTable.insertRow(-1) ;
  51. r.className = this.IsDisabled ? 'MN_Item_Disabled' : 'MN_Item' ;
  52. // Set the row behavior.
  53. if ( !this.IsDisabled )
  54. {
  55. FCKTools.AddEventListenerEx( r, 'mouseover', FCKMenuItem_OnMouseOver, [ this ] ) ;
  56. FCKTools.AddEventListenerEx( r, 'click', FCKMenuItem_OnClick, [ this ] ) ;
  57. if ( !bHasSubMenu )
  58. FCKTools.AddEventListenerEx( r, 'mouseout', FCKMenuItem_OnMouseOut, [ this ] ) ;
  59. }
  60. // Create the icon cell.
  61. var eCell = r.insertCell(-1) ;
  62. eCell.className = 'MN_Icon' ;
  63. eCell.appendChild( this.Icon.CreateIconElement( oDoc ) ) ;
  64. // Create the label cell.
  65. eCell = r.insertCell(-1) ;
  66. eCell.className = 'MN_Label' ;
  67. eCell.noWrap = true ;
  68. eCell.appendChild( oDoc.createTextNode( this.Label ) ) ;
  69. // Create the arrow cell and setup the sub menu panel (if needed).
  70. eCell = r.insertCell(-1) ;
  71. if ( bHasSubMenu )
  72. {
  73. eCell.className = 'MN_Arrow' ;
  74. // The arrow is a fixed size image.
  75. var eArrowImg = eCell.appendChild( oDoc.createElement( 'IMG' ) ) ;
  76. eArrowImg.src = FCK_IMAGES_PATH + 'arrow_' + FCKLang.Dir + '.gif' ;
  77. eArrowImg.width  = 4 ;
  78. eArrowImg.height = 7 ;
  79. this.SubMenu.Create() ;
  80. this.SubMenu.Panel.OnHide = FCKTools.CreateEventListener( FCKMenuItem_SubMenu_OnHide, this ) ;
  81. }
  82. }
  83. FCKMenuItem.prototype.Activate = function()
  84. {
  85. this.MainElement.className = 'MN_Item_Over' ;
  86. if ( this.HasSubMenu )
  87. {
  88. // Show the child menu block. The ( +2, -2 ) correction is done because
  89. // of the padding in the skin. It is not a good solution because one
  90. // could change the skin and so the final result would not be accurate.
  91. // For now it is ok because we are controlling the skin.
  92. this.SubMenu.Show( this.MainElement.offsetWidth + 2, -2, this.MainElement ) ;
  93. }
  94. FCKTools.RunFunction( this.OnActivate, this ) ;
  95. }
  96. FCKMenuItem.prototype.Deactivate = function()
  97. {
  98. this.MainElement.className = 'MN_Item' ;
  99. if ( this.HasSubMenu )
  100. this.SubMenu.Hide() ;
  101. }
  102. /* Events */
  103. function FCKMenuItem_SubMenu_OnClick( clickedItem, listeningItem )
  104. {
  105. FCKTools.RunFunction( listeningItem.OnClick, listeningItem, [ clickedItem ] ) ;
  106. }
  107. function FCKMenuItem_SubMenu_OnHide( menuItem )
  108. {
  109. menuItem.Deactivate() ;
  110. }
  111. function FCKMenuItem_OnClick( ev, menuItem )
  112. {
  113. if ( menuItem.HasSubMenu )
  114. menuItem.Activate() ;
  115. else
  116. {
  117. menuItem.Deactivate() ;
  118. FCKTools.RunFunction( menuItem.OnClick, menuItem, [ menuItem ] ) ;
  119. }
  120. }
  121. function FCKMenuItem_OnMouseOver( ev, menuItem )
  122. {
  123. menuItem.Activate() ;
  124. }
  125. function FCKMenuItem_OnMouseOut( ev, menuItem )
  126. {
  127. menuItem.Deactivate() ;
  128. }
  129. function FCKMenuItem_Cleanup()
  130. {
  131. this.MainElement = null ;
  132. }