fckundo_ie.js
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. var FCKUndo = new Object() ;
  2. FCKUndo.SavedData = new Array() ;
  3. FCKUndo.CurrentIndex = -1 ;
  4. FCKUndo.TypesCount = FCKUndo.MaxTypes = 25 ;
  5. FCKUndo.Typing = false ;
  6. FCKUndo.SaveUndoStep = function()
  7. {
  8. // Shrink the array to the current level.
  9. FCKUndo.SavedData = FCKUndo.SavedData.slice( 0, FCKUndo.CurrentIndex + 1 ) ;
  10. // Get the Actual HTML.
  11. var sHtml = FCK.EditorDocument.body.innerHTML ;
  12. // Cancel operation if the new step is identical to the previous one.
  13. if ( FCKUndo.CurrentIndex >= 0 && sHtml == FCKUndo.SavedData[ FCKUndo.CurrentIndex ][0] )
  14. return ;
  15. // If we reach the Maximun number of undo levels, we must remove the first
  16. // entry of the list shifting all elements.
  17. if ( FCKUndo.CurrentIndex + 1 >= FCKConfig.MaxUndoLevels )
  18. FCKUndo.SavedData.shift() ;
  19. else
  20. FCKUndo.CurrentIndex++ ;
  21. // Get the actual selection.
  22. var sBookmark ;
  23. if ( FCK.EditorDocument.selection.type == 'Text' )
  24. sBookmark = FCK.EditorDocument.selection.createRange().getBookmark() ;
  25. // Save the new level in front of the actual position.
  26. FCKUndo.SavedData[ FCKUndo.CurrentIndex ] = [ sHtml, sBookmark ] ;
  27. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  28. }
  29. FCKUndo.Undo = function()
  30. {
  31. if ( FCKUndo.CurrentIndex >= 0 )
  32. {
  33. // If it is the first step.
  34. if ( FCKUndo.CurrentIndex == ( FCKUndo.SavedData.length - 1 ) )
  35. {
  36. // Save the actual state for a possible "Redo" call.
  37. FCKUndo.SaveUndoStep() ;
  38. }
  39. // Go a step back.
  40. FCKUndo._ApplyUndoLevel( --FCKUndo.CurrentIndex ) ;
  41. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  42. }
  43. }
  44. FCKUndo.Redo = function()
  45. {
  46. if ( FCKUndo.CurrentIndex < ( FCKUndo.SavedData.length - 1 ) )
  47. {
  48. // Go a step forward.
  49. FCKUndo._ApplyUndoLevel( ++FCKUndo.CurrentIndex ) ;
  50. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  51. }
  52. }
  53. FCKUndo._ApplyUndoLevel = function(level)
  54. {
  55. var oData = FCKUndo.SavedData[ level ] ;
  56. // Update the editor contents with that step data.
  57. FCK.EditorDocument.body.innerHTML = oData[0] ;
  58. if ( oData[1] ) 
  59. {
  60. var oRange = FCK.EditorDocument.selection.createRange() ;
  61. oRange.moveToBookmark( oData[1] ) ;
  62. oRange.select() ;
  63. }
  64. FCKUndo.TypesCount = 0 ; 
  65. FCKUndo.Typing = false ;
  66. }