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

数据库编程

开发平台:

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.  * Creation and initialization of the "FCK" object. This is the main
  22.  * object that represents an editor instance.
  23.  * (Gecko specific implementations)
  24.  */
  25. FCK.Description = "FCKeditor for Gecko Browsers" ;
  26. FCK.InitializeBehaviors = function()
  27. {
  28. // When calling "SetData", the editing area IFRAME gets a fixed height. So we must recalculate it.
  29. if ( FCKBrowserInfo.IsGecko ) // Not for Safari/Opera.
  30. Window_OnResize() ;
  31. FCKFocusManager.AddWindow( this.EditorWindow ) ;
  32. this.ExecOnSelectionChange = function()
  33. {
  34. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  35. }
  36. this._ExecDrop = function( evt )
  37. {
  38. if ( FCK.MouseDownFlag )
  39. {
  40. FCK.MouseDownFlag = false ;
  41. return ;
  42. }
  43. if ( FCKConfig.ForcePasteAsPlainText )
  44. {
  45. if ( evt.dataTransfer )
  46. {
  47. var text = evt.dataTransfer.getData( 'Text' ) ;
  48. text = FCKTools.HTMLEncode( text ) ;
  49. text = FCKTools.ProcessLineBreaks( window, FCKConfig, text ) ;
  50. FCK.InsertHtml( text ) ;
  51. }
  52. else if ( FCKConfig.ShowDropDialog )
  53. FCK.PasteAsPlainText() ;
  54. }
  55. else if ( FCKConfig.ShowDropDialog )
  56. FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.Paste, 'dialog/fck_paste.html', 400, 330, 'Security' ) ;
  57. evt.preventDefault() ;
  58. evt.stopPropagation() ;
  59. }
  60. this._ExecCheckCaret = function( evt )
  61. {
  62. if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG )
  63. return ;
  64. if ( evt.type == 'keypress' )
  65. {
  66. var keyCode = evt.keyCode ;
  67. // ignore if positioning key is not pressed.
  68. // left or up arrow keys need to be processed as well, since <a> links can be expanded in Gecko's editor
  69. // when the caret moved left or up from another block element below.
  70. if ( keyCode < 33 || keyCode > 40 )
  71. return ;
  72. }
  73. var blockEmptyStop = function( node )
  74. {
  75. if ( node.nodeType != 1 )
  76. return false ;
  77. var tag = node.tagName.toLowerCase() ;
  78. return ( FCKListsLib.BlockElements[tag] || FCKListsLib.EmptyElements[tag] ) ;
  79. }
  80. var moveCursor = function()
  81. {
  82. var selection = FCK.EditorWindow.getSelection() ;
  83. var range = selection.getRangeAt(0) ;
  84. if ( ! range || ! range.collapsed )
  85. return ;
  86. var node = range.endContainer ;
  87. // only perform the patched behavior if we're at the end of a text node.
  88. if ( node.nodeType != 3 )
  89. return ;
  90. if ( node.nodeValue.length != range.endOffset )
  91. return ;
  92. // only perform the patched behavior if we're in an <a> tag, or the End key is pressed.
  93. var parentTag = node.parentNode.tagName.toLowerCase() ;
  94. if ( ! (  parentTag == 'a' ||
  95. ( ! ( FCKListsLib.BlockElements[parentTag] || FCKListsLib.NonEmptyBlockElements[parentTag] )
  96.   && keyCode == 35 ) ) )
  97. return ;
  98. // our caret has moved to just after the last character of a text node under an unknown tag, how to proceed?
  99. // first, see if there are other text nodes by DFS walking from this text node.
  100. //  - if the DFS has scanned all nodes under my parent, then go the next step.
  101. // - if there is a text node after me but still under my parent, then do nothing and return.
  102. var nextTextNode = FCKTools.GetNextTextNode( node, node.parentNode, blockEmptyStop ) ;
  103. if ( nextTextNode )
  104. return ;
  105. // we're pretty sure we need to move the caret forcefully from here.
  106. range = FCK.EditorDocument.createRange() ;
  107. nextTextNode = FCKTools.GetNextTextNode( node, node.parentNode.parentNode, blockEmptyStop ) ;
  108. if ( nextTextNode )
  109. {
  110. // Opera thinks the dummy empty text node we append beyond the end of <a> nodes occupies a caret
  111. // position. So if the user presses the left key and we reset the caret position here, the user
  112. // wouldn't be able to go back.
  113. if ( FCKBrowserInfo.IsOpera && keyCode == 37 )
  114. return ;
  115. // now we want to get out of our current parent node, adopt the next parent, and move the caret to
  116. // the appropriate text node under our new parent.
  117. // our new parent might be our current parent's siblings if we are lucky.
  118. range.setStart( nextTextNode, 0 ) ;
  119. range.setEnd( nextTextNode, 0 ) ;
  120. }
  121. else
  122. {
  123. // no suitable next siblings under our grandparent! what to do next?
  124. while ( node.parentNode
  125. && node.parentNode != FCK.EditorDocument.body
  126. && node.parentNode != FCK.EditorDocument.documentElement
  127. && node == node.parentNode.lastChild
  128. && ( ! FCKListsLib.BlockElements[node.parentNode.tagName.toLowerCase()] ) )
  129. node = node.parentNode ;
  130. if ( FCKListsLib.BlockElements[ parentTag ]
  131. || FCKListsLib.EmptyElements[ parentTag ]
  132. || node == FCK.EditorDocument.body )
  133. {
  134. // if our parent is a block node, move to the end of our parent.
  135. range.setStart( node, node.childNodes.length ) ;
  136. range.setEnd( node, node.childNodes.length ) ;
  137. }
  138. else
  139. {
  140. // things are a little bit more interesting if our parent is not a block node
  141. // due to the weired ways how Gecko's caret acts...
  142. var stopNode = node.nextSibling ;
  143. // find out the next block/empty element at our grandparent, we'll
  144. // move the caret just before it.
  145. while ( stopNode )
  146. {
  147. if ( stopNode.nodeType != 1 )
  148. {
  149. stopNode = stopNode.nextSibling ;
  150. continue ;
  151. }
  152. var stopTag = stopNode.tagName.toLowerCase() ;
  153. if ( FCKListsLib.BlockElements[stopTag] || FCKListsLib.EmptyElements[stopTag] )
  154. break ;
  155. stopNode = stopNode.nextSibling ;
  156. }
  157. // note that the dummy marker below is NEEDED, otherwise the caret's behavior will
  158. // be broken in Gecko.
  159. var marker = FCK.EditorDocument.createTextNode( '' ) ;
  160. if ( stopNode )
  161. node.parentNode.insertBefore( marker, stopNode ) ;
  162. else
  163. node.parentNode.appendChild( marker ) ;
  164. range.setStart( marker, 0 ) ;
  165. range.setEnd( marker, 0 ) ;
  166. }
  167. }
  168. selection.removeAllRanges() ;
  169. selection.addRange( range ) ;
  170. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  171. }
  172. setTimeout( moveCursor, 1 ) ;
  173. }
  174. this._FillEmptyBlock = function( emptyBlockNode )
  175. {
  176. if ( ! emptyBlockNode || emptyBlockNode.nodeType != 1 )
  177. return ;
  178. var nodeTag = emptyBlockNode.tagName.toLowerCase() ;
  179. if ( nodeTag != 'p' && nodeTag != 'div' )
  180. return ;
  181. if ( emptyBlockNode.firstChild )
  182. return ;
  183. FCKTools.AppendBogusBr( emptyBlockNode ) ;
  184. }
  185. this._ExecCheckEmptyBlock = function()
  186. {
  187. FCK._FillEmptyBlock( FCK.EditorDocument.body.firstChild ) ;
  188. var sel = FCK.EditorWindow.getSelection() ;
  189. if ( !sel || sel.rangeCount < 1 )
  190. return ;
  191. var range = sel.getRangeAt( 0 );
  192. FCK._FillEmptyBlock( range.startContainer ) ;
  193. }
  194. this.ExecOnSelectionChangeTimer = function()
  195. {
  196. if ( FCK.LastOnChangeTimer )
  197. window.clearTimeout( FCK.LastOnChangeTimer ) ;
  198. FCK.LastOnChangeTimer = window.setTimeout( FCK.ExecOnSelectionChange, 100 ) ;
  199. }
  200. this.EditorDocument.addEventListener( 'mouseup', this.ExecOnSelectionChange, false ) ;
  201. // On Gecko, firing the "OnSelectionChange" event on every key press started to be too much
  202. // slow. So, a timer has been implemented to solve performance issues when typing to quickly.
  203. this.EditorDocument.addEventListener( 'keyup', this.ExecOnSelectionChangeTimer, false ) ;
  204. this._DblClickListener = function( e )
  205. {
  206. FCK.OnDoubleClick( e.target ) ;
  207. e.stopPropagation() ;
  208. }
  209. this.EditorDocument.addEventListener( 'dblclick', this._DblClickListener, true ) ;
  210. // Record changes for the undo system when there are key down events.
  211. this.EditorDocument.addEventListener( 'keydown', this._KeyDownListener, false ) ;
  212. // Hooks for data object drops
  213. if ( FCKBrowserInfo.IsGecko )
  214. {
  215. this.EditorWindow.addEventListener( 'dragdrop', this._ExecDrop, true ) ;
  216. }
  217. else if ( FCKBrowserInfo.IsSafari )
  218. {
  219. var cancelHandler = function( evt ){ if ( ! FCK.MouseDownFlag ) evt.returnValue = false ; }
  220. this.EditorDocument.addEventListener( 'dragenter', cancelHandler, true ) ;
  221. this.EditorDocument.addEventListener( 'dragover', cancelHandler, true ) ;
  222. this.EditorDocument.addEventListener( 'drop', this._ExecDrop, true ) ;
  223. this.EditorDocument.addEventListener( 'mousedown',
  224. function( ev )
  225. {
  226. var element = ev.srcElement ;
  227. if ( element.nodeName.IEquals( 'IMG', 'HR', 'INPUT', 'TEXTAREA', 'SELECT' ) )
  228. {
  229. FCKSelection.SelectNode( element ) ;
  230. }
  231. }, true ) ;
  232. this.EditorDocument.addEventListener( 'mouseup',
  233. function( ev )
  234. {
  235. if ( ev.srcElement.nodeName.IEquals( 'INPUT', 'TEXTAREA', 'SELECT' ) )
  236. ev.preventDefault()
  237. }, true ) ;
  238. this.EditorDocument.addEventListener( 'click',
  239. function( ev )
  240. {
  241. if ( ev.srcElement.nodeName.IEquals( 'INPUT', 'TEXTAREA', 'SELECT' ) )
  242. ev.preventDefault()
  243. }, true ) ;
  244. }
  245. // Kludge for buggy Gecko caret positioning logic (Bug #393 and #1056)
  246. if ( FCKBrowserInfo.IsGecko || FCKBrowserInfo.IsOpera )
  247. {
  248. this.EditorDocument.addEventListener( 'keypress', this._ExecCheckCaret, false ) ;
  249. this.EditorDocument.addEventListener( 'click', this._ExecCheckCaret, false ) ;
  250. }
  251. if ( FCKBrowserInfo.IsGecko )
  252. this.AttachToOnSelectionChange( this._ExecCheckEmptyBlock ) ;
  253. // Reset the context menu.
  254. FCK.ContextMenu._InnerContextMenu.SetMouseClickWindow( FCK.EditorWindow ) ;
  255. FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument ) ;
  256. }
  257. FCK.MakeEditable = function()
  258. {
  259. this.EditingArea.MakeEditable() ;
  260. }
  261. // Disable the context menu in the editor (outside the editing area).
  262. function Document_OnContextMenu( e )
  263. {
  264. if ( !e.target._FCKShowContextMenu )
  265. e.preventDefault() ;
  266. }
  267. document.oncontextmenu = Document_OnContextMenu ;
  268. // GetNamedCommandState overload for Gecko.
  269. FCK._BaseGetNamedCommandState = FCK.GetNamedCommandState ;
  270. FCK.GetNamedCommandState = function( commandName )
  271. {
  272. switch ( commandName )
  273. {
  274. case 'Unlink' :
  275. return FCKSelection.HasAncestorNode('A') ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ;
  276. default :
  277. return FCK._BaseGetNamedCommandState( commandName ) ;
  278. }
  279. }
  280. // Named commands to be handled by this browsers specific implementation.
  281. FCK.RedirectNamedCommands =
  282. {
  283. Print : true,
  284. Paste : true,
  285. Cut : true,
  286. Copy : true
  287. } ;
  288. // ExecuteNamedCommand overload for Gecko.
  289. FCK.ExecuteRedirectedNamedCommand = function( commandName, commandParameter )
  290. {
  291. switch ( commandName )
  292. {
  293. case 'Print' :
  294. FCK.EditorWindow.print() ;
  295. break ;
  296. case 'Paste' :
  297. try
  298. {
  299. // Force the paste dialog for Safari (#50).
  300. if ( FCKBrowserInfo.IsSafari )
  301. throw '' ;
  302. if ( FCK.Paste() )
  303. FCK.ExecuteNamedCommand( 'Paste', null, true ) ;
  304. }
  305. catch (e) { FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.Paste, 'dialog/fck_paste.html', 400, 330, 'Security' ) ; }
  306. break ;
  307. case 'Cut' :
  308. try { FCK.ExecuteNamedCommand( 'Cut', null, true ) ; }
  309. catch (e) { alert(FCKLang.PasteErrorCut) ; }
  310. break ;
  311. case 'Copy' :
  312. try { FCK.ExecuteNamedCommand( 'Copy', null, true ) ; }
  313. catch (e) { alert(FCKLang.PasteErrorCopy) ; }
  314. break ;
  315. default :
  316. FCK.ExecuteNamedCommand( commandName, commandParameter ) ;
  317. }
  318. }
  319. FCK._ExecPaste = function()
  320. {
  321. // Save a snapshot for undo before actually paste the text
  322. FCKUndo.SaveUndoStep() ;
  323. if ( FCKConfig.ForcePasteAsPlainText )
  324. {
  325. FCK.PasteAsPlainText() ;
  326. return false ;
  327. }
  328. /* For now, the AutoDetectPasteFromWord feature is IE only. */
  329. return true ;
  330. }
  331. //**
  332. // FCK.InsertHtml: Inserts HTML at the current cursor location. Deletes the
  333. // selected content if any.
  334. FCK.InsertHtml = function( html )
  335. {
  336. html = FCKConfig.ProtectedSource.Protect( html ) ;
  337. html = FCK.ProtectEvents( html ) ;
  338. html = FCK.ProtectUrls( html ) ;
  339. html = FCK.ProtectTags( html ) ;
  340. // Save an undo snapshot first.
  341. FCKUndo.SaveUndoStep() ;
  342. // Insert the HTML code.
  343. this.EditorDocument.execCommand( 'inserthtml', false, html ) ;
  344. this.Focus() ;
  345. // For some strange reason the SaveUndoStep() call doesn't activate the undo button at the first InsertHtml() call.
  346. this.Events.FireEvent( "OnSelectionChange" ) ;
  347. }
  348. FCK.PasteAsPlainText = function()
  349. {
  350. // TODO: Implement the "Paste as Plain Text" code.
  351. // If the function is called immediately Firefox 2 does automatically paste the contents as soon as the new dialog is created
  352. // so we run it in a Timeout and the paste event can be cancelled
  353. FCKTools.RunFunction( FCKDialog.OpenDialog, FCKDialog, ['FCKDialog_Paste', FCKLang.PasteAsText, 'dialog/fck_paste.html', 400, 330, 'PlainText'] ) ;
  354. /*
  355. var sText = FCKTools.HTMLEncode( clipboardData.getData("Text") ) ;
  356. sText = sText.replace( /n/g, '<BR>' ) ;
  357. this.InsertHtml( sText ) ;
  358. */
  359. }
  360. /*
  361. FCK.PasteFromWord = function()
  362. {
  363. // TODO: Implement the "Paste as Plain Text" code.
  364. FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.PasteFromWord, 'dialog/fck_paste.html', 400, 330, 'Word' ) ;
  365. // FCK.CleanAndPaste( FCK.GetClipboardHTML() ) ;
  366. }
  367. */
  368. FCK.GetClipboardHTML = function()
  369. {
  370. return '' ;
  371. }
  372. FCK.CreateLink = function( url, noUndo )
  373. {
  374. // Creates the array that will be returned. It contains one or more created links (see #220).
  375. var aCreatedLinks = new Array() ;
  376. FCK.ExecuteNamedCommand( 'Unlink', null, false, !!noUndo ) ;
  377. if ( url.length > 0 )
  378. {
  379. // Generate a temporary name for the link.
  380. var sTempUrl = 'javascript:void(0);/*' + ( new Date().getTime() ) + '*/' ;
  381. // Use the internal "CreateLink" command to create the link.
  382. FCK.ExecuteNamedCommand( 'CreateLink', sTempUrl, false, !!noUndo ) ;
  383. // Retrieve the just created links using XPath.
  384. var oLinksInteractor = this.EditorDocument.evaluate("//a[@href='" + sTempUrl + "']", this.EditorDocument.body, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null) ;
  385. // Add all links to the returning array.
  386. for ( var i = 0 ; i < oLinksInteractor.snapshotLength ; i++ )
  387. {
  388. var oLink = oLinksInteractor.snapshotItem( i ) ;
  389. oLink.href = url ;
  390. aCreatedLinks.push( oLink ) ;
  391. }
  392. }
  393. return aCreatedLinks ;
  394. }