fckcontextmenu.js
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * "Support Open Source software. What about a donation today?"
  12.  * 
  13.  * File Name: fckcontextmenu.js
  14.  *  FCKContextMenu Class: renders an control a context menu.
  15.  * 
  16.  * File Authors:
  17.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  18.  */
  19. var FCKContextMenu = function( parentWindow, mouseClickWindow, langDir )
  20. {
  21. var oPanel = this._Panel = new FCKPanel( parentWindow, true ) ;
  22. oPanel.AppendStyleSheet( FCKConfig.SkinPath + 'fck_editor.css' ) ;
  23. oPanel.IsContextMenu = true ;
  24. var oMenuBlock = this._MenuBlock = new FCKMenuBlock() ;
  25. oMenuBlock.Panel = oPanel ;
  26. oMenuBlock.OnClick = FCKTools.CreateEventListener( FCKContextMenu_MenuBlock_OnClick, this ) ;
  27. this._Redraw = true ;
  28. this.SetMouseClickWindow( mouseClickWindow || parentWindow ) ;
  29. }
  30. FCKContextMenu.prototype.SetMouseClickWindow = function( mouseClickWindow )
  31. {
  32. if ( !FCKBrowserInfo.IsIE )
  33. {
  34. this._Document = mouseClickWindow.document ;
  35. this._Document.addEventListener( 'contextmenu', FCKContextMenu_Document_OnContextMenu, false ) ;
  36. }
  37. }
  38. FCKContextMenu.prototype.AddItem = function( name, label, iconPathOrStripInfoArrayOrIndex, isDisabled )
  39. {
  40. var oItem = this._MenuBlock.AddItem( name, label, iconPathOrStripInfoArrayOrIndex, isDisabled) ;
  41. this._Redraw = true ;
  42. return oItem ;
  43. }
  44. FCKContextMenu.prototype.AddSeparator = function()
  45. {
  46. this._MenuBlock.AddSeparator() ;
  47. this._Redraw = true ;
  48. }
  49. FCKContextMenu.prototype.RemoveAllItems = function()
  50. {
  51. this._MenuBlock.RemoveAllItems() ;
  52. this._Redraw = true ;
  53. }
  54. FCKContextMenu.prototype.AttachToElement = function( element )
  55. {
  56. if ( FCKBrowserInfo.IsIE )
  57. FCKTools.AddEventListenerEx( element, 'contextmenu', FCKContextMenu_AttachedElement_OnContextMenu, this ) ;
  58. else
  59. element._FCKContextMenu = this ;
  60. // element.onmouseup = FCKContextMenu_AttachedElement_OnMouseUp ;
  61. }
  62. function FCKContextMenu_Document_OnContextMenu( e )
  63. {
  64. var el = e.target ;
  65. while ( el )
  66. {
  67. if ( el._FCKContextMenu )
  68. {
  69. FCKTools.CancelEvent( e ) ;
  70. FCKContextMenu_AttachedElement_OnContextMenu( e, el._FCKContextMenu, el ) ;
  71. }
  72. el = el.parentNode ;
  73. }
  74. }
  75. function FCKContextMenu_AttachedElement_OnContextMenu( ev, fckContextMenu, el )
  76. {
  77. // var iButton = e ? e.which - 1 : event.button ;
  78. // if ( iButton != 2 )
  79. // return ;
  80. var eTarget = el || this ;
  81. if ( fckContextMenu.OnBeforeOpen )
  82. fckContextMenu.OnBeforeOpen.call( fckContextMenu, eTarget ) ;
  83. if ( fckContextMenu._MenuBlock.Count() == 0 )
  84. return false ;
  85. if ( fckContextMenu._Redraw )
  86. {
  87. fckContextMenu._MenuBlock.Create( fckContextMenu._Panel.MainNode ) ;
  88. fckContextMenu._Redraw = false ;
  89. }
  90. fckContextMenu._Panel.Show( 
  91. ev.pageX || ev.screenX, 
  92. ev.pageY || ev.screenY, 
  93. ev.currentTarget || null
  94. ) ;
  95. return false ;
  96. }
  97. function FCKContextMenu_MenuBlock_OnClick( menuItem, contextMenu )
  98. {
  99. contextMenu._Panel.Hide() ;
  100. FCKTools.RunFunction( contextMenu.OnItemClick, contextMenu, menuItem ) ;
  101. }