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

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 the FCK.ContextMenu object that is responsible for all
  22.  * Context Menu operations in the editing area.
  23.  */
  24. FCK.ContextMenu = new Object() ;
  25. FCK.ContextMenu.Listeners = new Array() ;
  26. FCK.ContextMenu.RegisterListener = function( listener )
  27. {
  28. if ( listener )
  29. this.Listeners.push( listener ) ;
  30. }
  31. function FCK_ContextMenu_Init()
  32. {
  33. var oInnerContextMenu = FCK.ContextMenu._InnerContextMenu = new FCKContextMenu( FCKBrowserInfo.IsIE ? window : window.parent, FCKLang.Dir ) ;
  34. oInnerContextMenu.CtrlDisable = FCKConfig.BrowserContextMenuOnCtrl ;
  35. oInnerContextMenu.OnBeforeOpen = FCK_ContextMenu_OnBeforeOpen ;
  36. oInnerContextMenu.OnItemClick = FCK_ContextMenu_OnItemClick ;
  37. // Get the registering function.
  38. var oMenu = FCK.ContextMenu ;
  39. // Register all configured context menu listeners.
  40. for ( var i = 0 ; i < FCKConfig.ContextMenu.length ; i++ )
  41. oMenu.RegisterListener( FCK_ContextMenu_GetListener( FCKConfig.ContextMenu[i] ) ) ;
  42. }
  43. function FCK_ContextMenu_GetListener( listenerName )
  44. {
  45. switch ( listenerName )
  46. {
  47. case 'Generic' :
  48. return {
  49. AddItems : function( menu, tag, tagName )
  50. {
  51. menu.AddItem( 'Cut' , FCKLang.Cut , 7, FCKCommands.GetCommand( 'Cut' ).GetState() == FCK_TRISTATE_DISABLED ) ;
  52. menu.AddItem( 'Copy' , FCKLang.Copy , 8, FCKCommands.GetCommand( 'Copy' ).GetState() == FCK_TRISTATE_DISABLED ) ;
  53. menu.AddItem( 'Paste' , FCKLang.Paste , 9, FCKCommands.GetCommand( 'Paste' ).GetState() == FCK_TRISTATE_DISABLED ) ;
  54. }} ;
  55. case 'Table' :
  56. return {
  57. AddItems : function( menu, tag, tagName )
  58. {
  59. var bIsTable = ( tagName == 'TABLE' ) ;
  60. var bIsCell = ( !bIsTable && FCKSelection.HasAncestorNode( 'TABLE' ) ) ;
  61. if ( bIsCell )
  62. {
  63. menu.AddSeparator() ;
  64. var oItem = menu.AddItem( 'Cell' , FCKLang.CellCM ) ;
  65. oItem.AddItem( 'TableInsertCellBefore' , FCKLang.InsertCellBefore, 69 ) ;
  66. oItem.AddItem( 'TableInsertCellAfter' , FCKLang.InsertCellAfter, 58 ) ;
  67. oItem.AddItem( 'TableDeleteCells' , FCKLang.DeleteCells, 59 ) ;
  68. if ( FCKBrowserInfo.IsGecko )
  69. oItem.AddItem( 'TableMergeCells' , FCKLang.MergeCells, 60,
  70. FCKCommands.GetCommand( 'TableMergeCells' ).GetState() == FCK_TRISTATE_DISABLED ) ;
  71. else
  72. {
  73. oItem.AddItem( 'TableMergeRight' , FCKLang.MergeRight, 60,
  74. FCKCommands.GetCommand( 'TableMergeRight' ).GetState() == FCK_TRISTATE_DISABLED ) ;
  75. oItem.AddItem( 'TableMergeDown' , FCKLang.MergeDown, 60,
  76. FCKCommands.GetCommand( 'TableMergeDown' ).GetState() == FCK_TRISTATE_DISABLED ) ;
  77. }
  78. oItem.AddItem( 'TableHorizontalSplitCell' , FCKLang.HorizontalSplitCell, 61,
  79. FCKCommands.GetCommand( 'TableHorizontalSplitCell' ).GetState() == FCK_TRISTATE_DISABLED ) ;
  80. oItem.AddItem( 'TableVerticalSplitCell' , FCKLang.VerticalSplitCell, 61,
  81. FCKCommands.GetCommand( 'TableVerticalSplitCell' ).GetState() == FCK_TRISTATE_DISABLED ) ;
  82. oItem.AddSeparator() ;
  83. oItem.AddItem( 'TableCellProp' , FCKLang.CellProperties, 57,
  84. FCKCommands.GetCommand( 'TableCellProp' ).GetState() == FCK_TRISTATE_DISABLED ) ;
  85. menu.AddSeparator() ;
  86. oItem = menu.AddItem( 'Row' , FCKLang.RowCM ) ;
  87. oItem.AddItem( 'TableInsertRowBefore' , FCKLang.InsertRowBefore, 70 ) ;
  88. oItem.AddItem( 'TableInsertRowAfter' , FCKLang.InsertRowAfter, 62 ) ;
  89. oItem.AddItem( 'TableDeleteRows' , FCKLang.DeleteRows, 63 ) ;
  90. menu.AddSeparator() ;
  91. oItem = menu.AddItem( 'Column' , FCKLang.ColumnCM ) ;
  92. oItem.AddItem( 'TableInsertColumnBefore', FCKLang.InsertColumnBefore, 71 ) ;
  93. oItem.AddItem( 'TableInsertColumnAfter' , FCKLang.InsertColumnAfter, 64 ) ;
  94. oItem.AddItem( 'TableDeleteColumns' , FCKLang.DeleteColumns, 65 ) ;
  95. }
  96. if ( bIsTable || bIsCell )
  97. {
  98. menu.AddSeparator() ;
  99. menu.AddItem( 'TableDelete' , FCKLang.TableDelete ) ;
  100. menu.AddItem( 'TableProp' , FCKLang.TableProperties, 39 ) ;
  101. }
  102. }} ;
  103. case 'Link' :
  104. return {
  105. AddItems : function( menu, tag, tagName )
  106. {
  107. var bInsideLink = ( tagName == 'A' || FCKSelection.HasAncestorNode( 'A' ) ) ;
  108. if ( bInsideLink || FCK.GetNamedCommandState( 'Unlink' ) != FCK_TRISTATE_DISABLED )
  109. {
  110. // Go up to the anchor to test its properties
  111. var oLink = FCKSelection.MoveToAncestorNode( 'A' ) ;
  112. var bIsAnchor = ( oLink && oLink.name.length > 0 && oLink.href.length == 0 ) ;
  113. // If it isn't a link then don't add the Link context menu
  114. if ( bIsAnchor )
  115. return ;
  116. menu.AddSeparator() ;
  117. menu.AddItem( 'VisitLink', FCKLang.VisitLink ) ;
  118. menu.AddSeparator() ;
  119. if ( bInsideLink )
  120. menu.AddItem( 'Link', FCKLang.EditLink , 34 ) ;
  121. menu.AddItem( 'Unlink' , FCKLang.RemoveLink , 35 ) ;
  122. }
  123. }} ;
  124. case 'Image' :
  125. return {
  126. AddItems : function( menu, tag, tagName )
  127. {
  128. if ( tagName == 'IMG' && !tag.getAttribute( '_fckfakelement' ) )
  129. {
  130. menu.AddSeparator() ;
  131. menu.AddItem( 'Image', FCKLang.ImageProperties, 37 ) ;
  132. }
  133. }} ;
  134. case 'Anchor' :
  135. return {
  136. AddItems : function( menu, tag, tagName )
  137. {
  138. // Go up to the anchor to test its properties
  139. var oLink = FCKSelection.MoveToAncestorNode( 'A' ) ;
  140. var bIsAnchor = ( oLink && oLink.name.length > 0 ) ;
  141. if ( bIsAnchor || ( tagName == 'IMG' && tag.getAttribute( '_fckanchor' ) ) )
  142. {
  143. menu.AddSeparator() ;
  144. menu.AddItem( 'Anchor', FCKLang.AnchorProp, 36 ) ;
  145. menu.AddItem( 'AnchorDelete', FCKLang.AnchorDelete ) ;
  146. }
  147. }} ;
  148. case 'Flash' :
  149. return {
  150. AddItems : function( menu, tag, tagName )
  151. {
  152. if ( tagName == 'IMG' && tag.getAttribute( '_fckflash' ) )
  153. {
  154. menu.AddSeparator() ;
  155. menu.AddItem( 'Flash', FCKLang.FlashProperties, 38 ) ;
  156. }
  157. }} ;
  158. case 'Form' :
  159. return {
  160. AddItems : function( menu, tag, tagName )
  161. {
  162. if ( FCKSelection.HasAncestorNode('FORM') )
  163. {
  164. menu.AddSeparator() ;
  165. menu.AddItem( 'Form', FCKLang.FormProp, 48 ) ;
  166. }
  167. }} ;
  168. case 'Checkbox' :
  169. return {
  170. AddItems : function( menu, tag, tagName )
  171. {
  172. if ( tagName == 'INPUT' && tag.type == 'checkbox' )
  173. {
  174. menu.AddSeparator() ;
  175. menu.AddItem( 'Checkbox', FCKLang.CheckboxProp, 49 ) ;
  176. }
  177. }} ;
  178. case 'Radio' :
  179. return {
  180. AddItems : function( menu, tag, tagName )
  181. {
  182. if ( tagName == 'INPUT' && tag.type == 'radio' )
  183. {
  184. menu.AddSeparator() ;
  185. menu.AddItem( 'Radio', FCKLang.RadioButtonProp, 50 ) ;
  186. }
  187. }} ;
  188. case 'TextField' :
  189. return {
  190. AddItems : function( menu, tag, tagName )
  191. {
  192. if ( tagName == 'INPUT' && ( tag.type == 'text' || tag.type == 'password' ) )
  193. {
  194. menu.AddSeparator() ;
  195. menu.AddItem( 'TextField', FCKLang.TextFieldProp, 51 ) ;
  196. }
  197. }} ;
  198. case 'HiddenField' :
  199. return {
  200. AddItems : function( menu, tag, tagName )
  201. {
  202. if ( tagName == 'IMG' && tag.getAttribute( '_fckinputhidden' ) )
  203. {
  204. menu.AddSeparator() ;
  205. menu.AddItem( 'HiddenField', FCKLang.HiddenFieldProp, 56 ) ;
  206. }
  207. }} ;
  208. case 'ImageButton' :
  209. return {
  210. AddItems : function( menu, tag, tagName )
  211. {
  212. if ( tagName == 'INPUT' && tag.type == 'image' )
  213. {
  214. menu.AddSeparator() ;
  215. menu.AddItem( 'ImageButton', FCKLang.ImageButtonProp, 55 ) ;
  216. }
  217. }} ;
  218. case 'Button' :
  219. return {
  220. AddItems : function( menu, tag, tagName )
  221. {
  222. if ( tagName == 'INPUT' && ( tag.type == 'button' || tag.type == 'submit' || tag.type == 'reset' ) )
  223. {
  224. menu.AddSeparator() ;
  225. menu.AddItem( 'Button', FCKLang.ButtonProp, 54 ) ;
  226. }
  227. }} ;
  228. case 'Select' :
  229. return {
  230. AddItems : function( menu, tag, tagName )
  231. {
  232. if ( tagName == 'SELECT' )
  233. {
  234. menu.AddSeparator() ;
  235. menu.AddItem( 'Select', FCKLang.SelectionFieldProp, 53 ) ;
  236. }
  237. }} ;
  238. case 'Textarea' :
  239. return {
  240. AddItems : function( menu, tag, tagName )
  241. {
  242. if ( tagName == 'TEXTAREA' )
  243. {
  244. menu.AddSeparator() ;
  245. menu.AddItem( 'Textarea', FCKLang.TextareaProp, 52 ) ;
  246. }
  247. }} ;
  248. case 'BulletedList' :
  249. return {
  250. AddItems : function( menu, tag, tagName )
  251. {
  252. if ( FCKSelection.HasAncestorNode('UL') )
  253. {
  254. menu.AddSeparator() ;
  255. menu.AddItem( 'BulletedList', FCKLang.BulletedListProp, 27 ) ;
  256. }
  257. }} ;
  258. case 'NumberedList' :
  259. return {
  260. AddItems : function( menu, tag, tagName )
  261. {
  262. if ( FCKSelection.HasAncestorNode('OL') )
  263. {
  264. menu.AddSeparator() ;
  265. menu.AddItem( 'NumberedList', FCKLang.NumberedListProp, 26 ) ;
  266. }
  267. }} ;
  268. case 'DivContainer':
  269. return {
  270. AddItems : function( menu, tag, tagName )
  271. {
  272. var currentBlocks = FCKDomTools.GetSelectedDivContainers() ;
  273. if ( currentBlocks.length > 0 )
  274. {
  275. menu.AddSeparator() ;
  276. menu.AddItem( 'EditDiv', FCKLang.EditDiv, 75 ) ;
  277. menu.AddItem( 'DeleteDiv', FCKLang.DeleteDiv, 76 ) ;
  278. }
  279. }} ;
  280. }
  281. return null ;
  282. }
  283. function FCK_ContextMenu_OnBeforeOpen()
  284. {
  285. // Update the UI.
  286. FCK.Events.FireEvent( 'OnSelectionChange' ) ;
  287. // Get the actual selected tag (if any).
  288. var oTag, sTagName ;
  289. // The extra () is to avoid a warning with strict error checking. This is ok.
  290. if ( (oTag = FCKSelection.GetSelectedElement()) )
  291. sTagName = oTag.tagName ;
  292. // Cleanup the current menu items.
  293. var oMenu = FCK.ContextMenu._InnerContextMenu ;
  294. oMenu.RemoveAllItems() ;
  295. // Loop through the listeners.
  296. var aListeners = FCK.ContextMenu.Listeners ;
  297. for ( var i = 0 ; i < aListeners.length ; i++ )
  298. aListeners[i].AddItems( oMenu, oTag, sTagName ) ;
  299. }
  300. function FCK_ContextMenu_OnItemClick( item )
  301. {
  302. // IE might work incorrectly if we refocus the editor #798
  303. if ( !FCKBrowserInfo.IsIE )
  304. FCK.Focus() ;
  305. FCKCommands.GetCommand( item.Name ).Execute( item.CustomData ) ;
  306. }