fckdomrange_gecko.js
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:3k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2009 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.  * Class for working with a selection range, much like the W3C DOM Range, but
  22.  * it is not intended to be an implementation of the W3C interface.
  23.  * (Gecko Implementation)
  24.  */
  25. FCKDomRange.prototype.MoveToSelection = function()
  26. {
  27. this.Release( true ) ;
  28. var oSel = this.Window.getSelection() ;
  29. if ( oSel && oSel.rangeCount > 0 )
  30. {
  31. this._Range = FCKW3CRange.CreateFromRange( this.Window.document, oSel.getRangeAt(0) ) ;
  32. this._UpdateElementInfo() ;
  33. }
  34. else
  35. if ( this.Window.document )
  36. this.MoveToElementStart( this.Window.document.body ) ;
  37. }
  38. FCKDomRange.prototype.Select = function()
  39. {
  40. var oRange = this._Range ;
  41. if ( oRange )
  42. {
  43. var startContainer = oRange.startContainer ;
  44. // If we have a collapsed range, inside an empty element, we must add
  45. // something to it, otherwise the caret will not be visible.
  46. if ( oRange.collapsed && startContainer.nodeType == 1 && startContainer.childNodes.length == 0 )
  47. startContainer.appendChild( oRange._Document.createTextNode('') ) ;
  48. var oDocRange = this.Window.document.createRange() ;
  49. oDocRange.setStart( startContainer, oRange.startOffset ) ;
  50. try
  51. {
  52. oDocRange.setEnd( oRange.endContainer, oRange.endOffset ) ;
  53. }
  54. catch ( e )
  55. {
  56. // There is a bug in Firefox implementation (it would be too easy
  57. // otherwise). The new start can't be after the end (W3C says it can).
  58. // So, let's create a new range and collapse it to the desired point.
  59. if ( e.toString().Contains( 'NS_ERROR_ILLEGAL_VALUE' ) )
  60. {
  61. oRange.collapse( true ) ;
  62. oDocRange.setEnd( oRange.endContainer, oRange.endOffset ) ;
  63. }
  64. else
  65. throw( e ) ;
  66. }
  67. var oSel = this.Window.getSelection() ;
  68. oSel.removeAllRanges() ;
  69. // We must add a clone otherwise Firefox will have rendering issues.
  70. oSel.addRange( oDocRange ) ;
  71. }
  72. }
  73. // Not compatible with bookmark created with CreateBookmark2.
  74. // The bookmark nodes will be deleted from the document.
  75. FCKDomRange.prototype.SelectBookmark = function( bookmark )
  76. {
  77. var domRange = this.Window.document.createRange() ;
  78. var startNode = this.GetBookmarkNode( bookmark, true ) ;
  79. var endNode = this.GetBookmarkNode( bookmark, false ) ;
  80. domRange.setStart( startNode.parentNode, FCKDomTools.GetIndexOf( startNode ) ) ;
  81. FCKDomTools.RemoveNode( startNode ) ;
  82. if ( endNode )
  83. {
  84. domRange.setEnd( endNode.parentNode, FCKDomTools.GetIndexOf( endNode ) ) ;
  85. FCKDomTools.RemoveNode( endNode ) ;
  86. }
  87. var selection = this.Window.getSelection() ;
  88. selection.removeAllRanges() ;
  89. selection.addRange( domRange ) ;
  90. }