fckundo_ie.js
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * "Support Open Source software. What about a donation today?"
  12.  * 
  13.  * File Name: fckundo_ie.js
  14.  *  IE specific implementation for the Undo/Redo system.
  15.  * 
  16.  * File Authors:
  17.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  18.  */
  19. var FCKUndo = new Object() ;
  20. FCKUndo.SavedData = new Array() ;
  21. FCKUndo.CurrentIndex = -1 ;
  22. FCKUndo.TypesCount = FCKUndo.MaxTypes = 25 ;
  23. FCKUndo.Typing = false ;
  24. FCKUndo.SaveUndoStep = function()
  25. {
  26. if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG )
  27. return ;
  28. // Shrink the array to the current level.
  29. FCKUndo.SavedData = FCKUndo.SavedData.slice( 0, FCKUndo.CurrentIndex + 1 ) ;
  30. // Get the Actual HTML.
  31. var sHtml = FCK.EditorDocument.body.innerHTML ;
  32. // Cancel operation if the new step is identical to the previous one.
  33. if ( FCKUndo.CurrentIndex >= 0 && sHtml == FCKUndo.SavedData[ FCKUndo.CurrentIndex ][0] )
  34. return ;
  35. // If we reach the Maximun number of undo levels, we must remove the first
  36. // entry of the list shifting all elements.
  37. if ( FCKUndo.CurrentIndex + 1 >= FCKConfig.MaxUndoLevels )
  38. FCKUndo.SavedData.shift() ;
  39. else
  40. FCKUndo.CurrentIndex++ ;
  41. // Get the actual selection.
  42. var sBookmark ;
  43. if ( FCK.EditorDocument.selection.type == 'Text' )
  44. sBookmark = FCK.EditorDocument.selection.createRange().getBookmark() ;
  45. // Save the new level in front of the actual position.
  46. FCKUndo.SavedData[ FCKUndo.CurrentIndex ] = [ sHtml, sBookmark ] ;
  47. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  48. }
  49. FCKUndo.CheckUndoState = function()
  50. {
  51. return ( FCKUndo.Typing || FCKUndo.CurrentIndex > 0 ) ;
  52. }
  53. FCKUndo.CheckRedoState = function()
  54. {
  55. return ( !FCKUndo.Typing && FCKUndo.CurrentIndex < ( FCKUndo.SavedData.length - 1 ) ) ;
  56. }
  57. FCKUndo.Undo = function()
  58. {
  59. if ( FCKUndo.CheckUndoState() )
  60. {
  61. // If it is the first step.
  62. if ( FCKUndo.CurrentIndex == ( FCKUndo.SavedData.length - 1 ) )
  63. {
  64. // Save the actual state for a possible "Redo" call.
  65. FCKUndo.SaveUndoStep() ;
  66. }
  67. // Go a step back.
  68. FCKUndo._ApplyUndoLevel( --FCKUndo.CurrentIndex ) ;
  69. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  70. }
  71. }
  72. FCKUndo.Redo = function()
  73. {
  74. if ( FCKUndo.CheckRedoState() )
  75. {
  76. // Go a step forward.
  77. FCKUndo._ApplyUndoLevel( ++FCKUndo.CurrentIndex ) ;
  78. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  79. }
  80. }
  81. FCKUndo._ApplyUndoLevel = function(level)
  82. {
  83. var oData = FCKUndo.SavedData[ level ] ;
  84. if ( !oData )
  85. return ;
  86. // Update the editor contents with that step data.
  87. FCK.SetInnerHtml( oData[0] ) ;
  88. // FCK.EditorDocument.body.innerHTML = oData[0] ;
  89. if ( oData[1] ) 
  90. {
  91. var oRange = FCK.EditorDocument.selection.createRange() ;
  92. oRange.moveToBookmark( oData[1] ) ;
  93. oRange.select() ;
  94. }
  95. FCKUndo.TypesCount = 0 ; 
  96. FCKUndo.Typing = false ;
  97. }