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

数据库编程

开发平台:

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. var FCKUndo = new Object() ;
  22. FCKUndo.SavedData = new Array() ;
  23. FCKUndo.CurrentIndex = -1 ;
  24. FCKUndo.TypesCount = 0 ;
  25. FCKUndo.Changed = false ; // Is the document changed in respect to its initial image?
  26. FCKUndo.MaxTypes = 25 ;
  27. FCKUndo.Typing = false ;
  28. FCKUndo._GetBookmark = function()
  29. {
  30. var range = new FCKDomRange( FCK.EditorWindow ) ;
  31. try
  32. {
  33. // There are some tricky cases where this might fail (e.g. having a lone empty table in IE)
  34. range.MoveToSelection() ;
  35. }
  36. catch ( e )
  37. {
  38. return null ;
  39. }
  40. if ( FCKBrowserInfo.IsIE )
  41. {
  42. var bookmark = range.CreateBookmark() ;
  43. var dirtyHtml = FCK.EditorDocument.body.innerHTML ;
  44. range.MoveToBookmark( bookmark ) ;
  45. return [ bookmark, dirtyHtml ] ;
  46. }
  47. return range.CreateBookmark2() ;
  48. }
  49. FCKUndo._SelectBookmark = function( bookmark )
  50. {
  51. if ( ! bookmark )
  52. return ;
  53. var range = new FCKDomRange( FCK.EditorWindow ) ;
  54. if ( bookmark instanceof Object )
  55. {
  56. if ( FCKBrowserInfo.IsIE )
  57. range.MoveToBookmark( bookmark[0] ) ;
  58. else
  59. range.MoveToBookmark2( bookmark ) ;
  60. try
  61. {
  62. // this does not always succeed, there are still some tricky cases where it fails
  63. // e.g. add a special character at end of document, undo, redo -> error
  64. range.Select() ;
  65. }
  66. catch ( e )
  67. {
  68. // if select restore fails, put the caret at the end of the document
  69. range.MoveToPosition( FCK.EditorDocument.body, 4 ) ;
  70. range.Select() ;
  71. }
  72. }
  73. }
  74. FCKUndo._CompareCursors = function( cursor1, cursor2 )
  75. {
  76. for ( var i = 0 ; i < Math.min( cursor1.length, cursor2.length ) ; i++ )
  77. {
  78. if ( cursor1[i] < cursor2[i] )
  79. return -1;
  80. else if (cursor1[i] > cursor2[i] )
  81. return 1;
  82. }
  83. if ( cursor1.length < cursor2.length )
  84. return -1;
  85. else if (cursor1.length > cursor2.length )
  86. return 1;
  87. return 0;
  88. }
  89. FCKUndo._CheckIsBookmarksEqual = function( bookmark1, bookmark2 )
  90. {
  91. if ( ! ( bookmark1 && bookmark2 ) )
  92. return false ;
  93. if ( FCKBrowserInfo.IsIE )
  94. {
  95. var startOffset1 = bookmark1[1].search( bookmark1[0].StartId ) ;
  96. var startOffset2 = bookmark2[1].search( bookmark2[0].StartId ) ;
  97. var endOffset1 = bookmark1[1].search( bookmark1[0].EndId ) ;
  98. var endOffset2 = bookmark2[1].search( bookmark2[0].EndId ) ;
  99. return startOffset1 == startOffset2 && endOffset1 == endOffset2 ;
  100. }
  101. else
  102. {
  103. return this._CompareCursors( bookmark1.Start, bookmark2.Start ) == 0 
  104. && this._CompareCursors( bookmark1.End, bookmark2.End ) == 0 ;
  105. }
  106. }
  107. FCKUndo.SaveUndoStep = function()
  108. {
  109. if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG )
  110. return ;
  111. // Assume the editor content is changed when SaveUndoStep() is called after the first time.
  112. // This also enables the undo button in toolbar.
  113. if ( this.SavedData.length )
  114. this.Changed = true ;
  115. // Get the HTML content.
  116. var sHtml = FCK.EditorDocument.body.innerHTML ;
  117. var bookmark = this._GetBookmark() ;
  118. // Shrink the array to the current level.
  119. this.SavedData = this.SavedData.slice( 0, this.CurrentIndex + 1 ) ;
  120. // Cancel operation if the new step is identical to the previous one.
  121. if ( this.CurrentIndex > 0 
  122. && sHtml == this.SavedData[ this.CurrentIndex ][0] 
  123. && this._CheckIsBookmarksEqual( bookmark, this.SavedData[ this.CurrentIndex ][1] ) )
  124. return ;
  125. // Save the selection and caret position in the first undo level for the first change.
  126. else if ( this.CurrentIndex == 0 && this.SavedData.length && sHtml == this.SavedData[0][0] )
  127. {
  128. this.SavedData[0][1] = bookmark ;
  129. return ;
  130. }
  131. // If we reach the Maximum number of undo levels, we must remove the first
  132. // entry of the list shifting all elements.
  133. if ( this.CurrentIndex + 1 >= FCKConfig.MaxUndoLevels )
  134. this.SavedData.shift() ;
  135. else
  136. this.CurrentIndex++ ;
  137. // Save the new level in front of the actual position.
  138. this.SavedData[ this.CurrentIndex ] = [ sHtml, bookmark ] ;
  139. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  140. }
  141. FCKUndo.CheckUndoState = function()
  142. {
  143. return ( this.Changed || this.CurrentIndex > 0 ) ;
  144. }
  145. FCKUndo.CheckRedoState = function()
  146. {
  147. return ( this.CurrentIndex < ( this.SavedData.length - 1 ) ) ;
  148. }
  149. FCKUndo.Undo = function()
  150. {
  151. if ( this.CheckUndoState() )
  152. {
  153. // If it is the first step.
  154. if ( this.CurrentIndex == ( this.SavedData.length - 1 ) )
  155. {
  156. // Save the actual state for a possible "Redo" call.
  157. this.SaveUndoStep() ;
  158. }
  159. // Go a step back.
  160. this._ApplyUndoLevel( --this.CurrentIndex ) ;
  161. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  162. }
  163. }
  164. FCKUndo.Redo = function()
  165. {
  166. if ( this.CheckRedoState() )
  167. {
  168. // Go a step forward.
  169. this._ApplyUndoLevel( ++this.CurrentIndex ) ;
  170. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  171. }
  172. }
  173. FCKUndo._ApplyUndoLevel = function( level )
  174. {
  175. var oData = this.SavedData[ level ] ;
  176. if ( !oData )
  177. return ;
  178. // Update the editor contents with that step data.
  179. if ( FCKBrowserInfo.IsIE )
  180. {
  181. if ( oData[1] && oData[1][1] )
  182. FCK.SetInnerHtml( oData[1][1] ) ;
  183. else
  184. FCK.SetInnerHtml( oData[0] ) ;
  185. }
  186. else
  187. FCK.EditorDocument.body.innerHTML = oData[0] ;
  188. // Restore the selection
  189. this._SelectBookmark( oData[1] ) ;
  190. this.TypesCount = 0 ;
  191. this.Changed = false ;
  192. this.Typing = false ;
  193. }