fck_contextmenu.js
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:10k
源码类别:

数据库编程

开发平台:

Visual C++

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2007 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. if ( bInsideLink )
  118. menu.AddItem( 'Link', FCKLang.EditLink , 34 ) ;
  119. menu.AddItem( 'Unlink' , FCKLang.RemoveLink , 35 ) ;
  120. }
  121. }} ;
  122. case 'Image' :
  123. return {
  124. AddItems : function( menu, tag, tagName )
  125. {
  126. if ( tagName == 'IMG' && !tag.getAttribute( '_fckfakelement' ) )
  127. {
  128. menu.AddSeparator() ;
  129. menu.AddItem( 'Image', FCKLang.ImageProperties, 37 ) ;
  130. }
  131. }} ;
  132. case 'Anchor' :
  133. return {
  134. AddItems : function( menu, tag, tagName )
  135. {
  136. // Go up to the anchor to test its properties
  137. var oLink = FCKSelection.MoveToAncestorNode( 'A' ) ;
  138. var bIsAnchor = ( oLink && oLink.name.length > 0 ) ;
  139. if ( bIsAnchor || ( tagName == 'IMG' && tag.getAttribute( '_fckanchor' ) ) )
  140. {
  141. menu.AddSeparator() ;
  142. menu.AddItem( 'Anchor', FCKLang.AnchorProp, 36 ) ;
  143. menu.AddItem( 'AnchorDelete', FCKLang.AnchorDelete ) ;
  144. }
  145. }} ;
  146. case 'Flash' :
  147. return {
  148. AddItems : function( menu, tag, tagName )
  149. {
  150. if ( tagName == 'IMG' && tag.getAttribute( '_fckflash' ) )
  151. {
  152. menu.AddSeparator() ;
  153. menu.AddItem( 'Flash', FCKLang.FlashProperties, 38 ) ;
  154. }
  155. }} ;
  156. case 'Form' :
  157. return {
  158. AddItems : function( menu, tag, tagName )
  159. {
  160. if ( FCKSelection.HasAncestorNode('FORM') )
  161. {
  162. menu.AddSeparator() ;
  163. menu.AddItem( 'Form', FCKLang.FormProp, 48 ) ;
  164. }
  165. }} ;
  166. case 'Checkbox' :
  167. return {
  168. AddItems : function( menu, tag, tagName )
  169. {
  170. if ( tagName == 'INPUT' && tag.type == 'checkbox' )
  171. {
  172. menu.AddSeparator() ;
  173. menu.AddItem( 'Checkbox', FCKLang.CheckboxProp, 49 ) ;
  174. }
  175. }} ;
  176. case 'Radio' :
  177. return {
  178. AddItems : function( menu, tag, tagName )
  179. {
  180. if ( tagName == 'INPUT' && tag.type == 'radio' )
  181. {
  182. menu.AddSeparator() ;
  183. menu.AddItem( 'Radio', FCKLang.RadioButtonProp, 50 ) ;
  184. }
  185. }} ;
  186. case 'TextField' :
  187. return {
  188. AddItems : function( menu, tag, tagName )
  189. {
  190. if ( tagName == 'INPUT' && ( tag.type == 'text' || tag.type == 'password' ) )
  191. {
  192. menu.AddSeparator() ;
  193. menu.AddItem( 'TextField', FCKLang.TextFieldProp, 51 ) ;
  194. }
  195. }} ;
  196. case 'HiddenField' :
  197. return {
  198. AddItems : function( menu, tag, tagName )
  199. {
  200. if ( tagName == 'IMG' && tag.getAttribute( '_fckinputhidden' ) )
  201. {
  202. menu.AddSeparator() ;
  203. menu.AddItem( 'HiddenField', FCKLang.HiddenFieldProp, 56 ) ;
  204. }
  205. }} ;
  206. case 'ImageButton' :
  207. return {
  208. AddItems : function( menu, tag, tagName )
  209. {
  210. if ( tagName == 'INPUT' && tag.type == 'image' )
  211. {
  212. menu.AddSeparator() ;
  213. menu.AddItem( 'ImageButton', FCKLang.ImageButtonProp, 55 ) ;
  214. }
  215. }} ;
  216. case 'Button' :
  217. return {
  218. AddItems : function( menu, tag, tagName )
  219. {
  220. if ( tagName == 'INPUT' && ( tag.type == 'button' || tag.type == 'submit' || tag.type == 'reset' ) )
  221. {
  222. menu.AddSeparator() ;
  223. menu.AddItem( 'Button', FCKLang.ButtonProp, 54 ) ;
  224. }
  225. }} ;
  226. case 'Select' :
  227. return {
  228. AddItems : function( menu, tag, tagName )
  229. {
  230. if ( tagName == 'SELECT' )
  231. {
  232. menu.AddSeparator() ;
  233. menu.AddItem( 'Select', FCKLang.SelectionFieldProp, 53 ) ;
  234. }
  235. }} ;
  236. case 'Textarea' :
  237. return {
  238. AddItems : function( menu, tag, tagName )
  239. {
  240. if ( tagName == 'TEXTAREA' )
  241. {
  242. menu.AddSeparator() ;
  243. menu.AddItem( 'Textarea', FCKLang.TextareaProp, 52 ) ;
  244. }
  245. }} ;
  246. case 'BulletedList' :
  247. return {
  248. AddItems : function( menu, tag, tagName )
  249. {
  250. if ( FCKSelection.HasAncestorNode('UL') )
  251. {
  252. menu.AddSeparator() ;
  253. menu.AddItem( 'BulletedList', FCKLang.BulletedListProp, 27 ) ;
  254. }
  255. }} ;
  256. case 'NumberedList' :
  257. return {
  258. AddItems : function( menu, tag, tagName )
  259. {
  260. if ( FCKSelection.HasAncestorNode('OL') )
  261. {
  262. menu.AddSeparator() ;
  263. menu.AddItem( 'NumberedList', FCKLang.NumberedListProp, 26 ) ;
  264. }
  265. }} ;
  266. }
  267. return null ;
  268. }
  269. function FCK_ContextMenu_OnBeforeOpen()
  270. {
  271. // Update the UI.
  272. FCK.Events.FireEvent( 'OnSelectionChange' ) ;
  273. // Get the actual selected tag (if any).
  274. var oTag, sTagName ;
  275. // The extra () is to avoid a warning with strict error checking. This is ok.
  276. if ( (oTag = FCKSelection.GetSelectedElement()) )
  277. sTagName = oTag.tagName ;
  278. // Cleanup the current menu items.
  279. var oMenu = FCK.ContextMenu._InnerContextMenu ;
  280. oMenu.RemoveAllItems() ;
  281. // Loop through the listeners.
  282. var aListeners = FCK.ContextMenu.Listeners ;
  283. for ( var i = 0 ; i < aListeners.length ; i++ )
  284. aListeners[i].AddItems( oMenu, oTag, sTagName ) ;
  285. }
  286. function FCK_ContextMenu_OnItemClick( item )
  287. {
  288. FCK.Focus() ;
  289. FCKCommands.GetCommand( item.Name ).Execute() ;
  290. }