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

数据库编程

开发平台:

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.  * 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. this.MoveToElementStart( this.Window.document.body ) ;
  36. }
  37. FCKDomRange.prototype.Select = function()
  38. {
  39. var oRange = this._Range ;
  40. if ( oRange )
  41. {
  42. var startContainer = oRange.startContainer ;
  43. // If we have a collapsed range, inside an empty element, we must add
  44. // something to it, otherwise the caret will not be visible.
  45. if ( oRange.collapsed && startContainer.nodeType == 1 && startContainer.childNodes.length == 0 )
  46. startContainer.appendChild( oRange._Document.createTextNode('') ) ;
  47. var oDocRange = this.Window.document.createRange() ;
  48. oDocRange.setStart( startContainer, oRange.startOffset ) ;
  49. try
  50. {
  51. oDocRange.setEnd( oRange.endContainer, oRange.endOffset ) ;
  52. }
  53. catch ( e )
  54. {
  55. // There is a bug in Firefox implementation (it would be too easy
  56. // otherwise). The new start can't be after the end (W3C says it can).
  57. // So, let's create a new range and collapse it to the desired point.
  58. if ( e.toString().Contains( 'NS_ERROR_ILLEGAL_VALUE' ) )
  59. {
  60. oRange.collapse( true ) ;
  61. oDocRange.setEnd( oRange.endContainer, oRange.endOffset ) ;
  62. }
  63. else
  64. throw( e ) ;
  65. }
  66. var oSel = this.Window.getSelection() ;
  67. oSel.removeAllRanges() ;
  68. // We must add a clone otherwise Firefox will have rendering issues.
  69. oSel.addRange( oDocRange ) ;
  70. }
  71. }
  72. // Not compatible with bookmark created with CreateBookmark2.
  73. // The bookmark nodes will be deleted from the document.
  74. FCKDomRange.prototype.SelectBookmark = function( bookmark )
  75. {
  76. var domRange = this.Window.document.createRange() ;
  77. var startNode = this.GetBookmarkNode( bookmark, true ) ;
  78. var endNode = this.GetBookmarkNode( bookmark, false ) ;
  79. domRange.setStart( startNode.parentNode, FCKDomTools.GetIndexOf( startNode ) ) ;
  80. FCKDomTools.RemoveNode( startNode ) ;
  81. if ( endNode )
  82. {
  83. domRange.setEnd( endNode.parentNode, FCKDomTools.GetIndexOf( endNode ) ) ;
  84. FCKDomTools.RemoveNode( endNode ) ;
  85. }
  86. var selection = this.Window.getSelection() ;
  87. selection.removeAllRanges() ;
  88. selection.addRange( domRange ) ;
  89. }