fckfitwindow.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.  * Stretch the editor to full window size and back.
  22.  */
  23. var FCKFitWindow = function()
  24. {
  25. this.Name = 'FitWindow' ;
  26. }
  27. FCKFitWindow.prototype.Execute = function()
  28. {
  29. var eEditorFrame = window.frameElement ;
  30. var eEditorFrameStyle = eEditorFrame.style ;
  31. var eMainWindow = parent ;
  32. var eDocEl = eMainWindow.document.documentElement ;
  33. var eBody = eMainWindow.document.body ;
  34. var eBodyStyle = eBody.style ;
  35. var eParent ;
  36. // No original style properties known? Go fullscreen.
  37. if ( !this.IsMaximized )
  38. {
  39. // Registering an event handler when the window gets resized.
  40. if( FCKBrowserInfo.IsIE )
  41. eMainWindow.attachEvent( 'onresize', FCKFitWindow_Resize ) ;
  42. else
  43. eMainWindow.addEventListener( 'resize', FCKFitWindow_Resize, true ) ;
  44. // Save the scrollbars position.
  45. this._ScrollPos = FCKTools.GetScrollPosition( eMainWindow ) ;
  46. // Save and reset the styles for the entire node tree. They could interfere in the result.
  47. eParent = eEditorFrame ;
  48. // The extra () is to avoid a warning with strict error checking. This is ok.
  49. while( (eParent = eParent.parentNode) )
  50. {
  51. if ( eParent.nodeType == 1 )
  52. {
  53. eParent._fckSavedStyles = FCKTools.SaveStyles( eParent ) ;
  54. eParent.style.zIndex = FCKConfig.FloatingPanelsZIndex - 1 ;
  55. }
  56. }
  57. // Hide IE scrollbars (in strict mode).
  58. if ( FCKBrowserInfo.IsIE )
  59. {
  60. this.documentElementOverflow = eDocEl.style.overflow ;
  61. eDocEl.style.overflow = 'hidden' ;
  62. eBodyStyle.overflow = 'hidden' ;
  63. }
  64. else
  65. {
  66. // Hide the scroolbars in Firefox.
  67. eBodyStyle.overflow = 'hidden' ;
  68. eBodyStyle.width = '0px' ;
  69. eBodyStyle.height = '0px' ;
  70. }
  71. // Save the IFRAME styles.
  72. this._EditorFrameStyles = FCKTools.SaveStyles( eEditorFrame ) ;
  73. // Resize.
  74. var oViewPaneSize = FCKTools.GetViewPaneSize( eMainWindow ) ;
  75. eEditorFrameStyle.position = "absolute";
  76. eEditorFrameStyle.zIndex = FCKConfig.FloatingPanelsZIndex - 1;
  77. eEditorFrameStyle.left = "0px";
  78. eEditorFrameStyle.top = "0px";
  79. eEditorFrameStyle.width = oViewPaneSize.Width + "px";
  80. eEditorFrameStyle.height = oViewPaneSize.Height + "px";
  81. // Giving the frame some (huge) borders on his right and bottom
  82. // side to hide the background that would otherwise show when the
  83. // editor is in fullsize mode and the window is increased in size
  84. // not for IE, because IE immediately adapts the editor on resize,
  85. // without showing any of the background oddly in firefox, the
  86. // editor seems not to fill the whole frame, so just setting the
  87. // background of it to white to cover the page laying behind it anyway.
  88. if ( !FCKBrowserInfo.IsIE )
  89. {
  90. eEditorFrameStyle.borderRight = eEditorFrameStyle.borderBottom = "9999px solid white" ;
  91. eEditorFrameStyle.backgroundColor = "white";
  92. }
  93. // Scroll to top left.
  94. eMainWindow.scrollTo(0, 0);
  95. // Is the editor still not on the top left? Let's find out and fix that as well. (Bug #174)
  96. var editorPos = FCKTools.GetWindowPosition( eMainWindow, eEditorFrame ) ;
  97. if ( editorPos.x != 0 )
  98. eEditorFrameStyle.left = ( -1 * editorPos.x ) + "px" ;
  99. if ( editorPos.y != 0 )
  100. eEditorFrameStyle.top = ( -1 * editorPos.y ) + "px" ;
  101. this.IsMaximized = true ;
  102. }
  103. else // Resize to original size.
  104. {
  105. // Remove the event handler of window resizing.
  106. if( FCKBrowserInfo.IsIE )
  107. eMainWindow.detachEvent( "onresize", FCKFitWindow_Resize ) ;
  108. else
  109. eMainWindow.removeEventListener( "resize", FCKFitWindow_Resize, true ) ;
  110. // Restore the CSS position for the entire node tree.
  111. eParent = eEditorFrame ;
  112. // The extra () is to avoid a warning with strict error checking. This is ok.
  113. while( (eParent = eParent.parentNode) )
  114. {
  115. if ( eParent._fckSavedStyles )
  116. {
  117. FCKTools.RestoreStyles( eParent, eParent._fckSavedStyles ) ;
  118. eParent._fckSavedStyles = null ;
  119. }
  120. }
  121. // Restore IE scrollbars
  122. if ( FCKBrowserInfo.IsIE )
  123. eDocEl.style.overflow = this.documentElementOverflow ;
  124. // Restore original size
  125. FCKTools.RestoreStyles( eEditorFrame, this._EditorFrameStyles ) ;
  126. // Restore the window scroll position.
  127. eMainWindow.scrollTo( this._ScrollPos.X, this._ScrollPos.Y ) ;
  128. this.IsMaximized = false ;
  129. }
  130. FCKToolbarItems.GetItem('FitWindow').RefreshState() ;
  131. // It seams that Firefox restarts the editing area when making this changes.
  132. // On FF 1.0.x, the area is not anymore editable. On FF 1.5+, the special
  133. //configuration, like DisableFFTableHandles and DisableObjectResizing get
  134. //lost, so we must reset it. Also, the cursor position and selection are
  135. //also lost, even if you comment the following line (MakeEditable).
  136. // if ( FCKBrowserInfo.IsGecko10 ) // Initially I thought it was a FF 1.0 only problem.
  137. if ( FCK.EditMode == FCK_EDITMODE_WYSIWYG ) 
  138. FCK.EditingArea.MakeEditable() ;
  139. FCK.Focus() ;
  140. }
  141. FCKFitWindow.prototype.GetState = function()
  142. {
  143. if ( FCKConfig.ToolbarLocation != 'In' )
  144. return FCK_TRISTATE_DISABLED ;
  145. else
  146. return ( this.IsMaximized ? FCK_TRISTATE_ON : FCK_TRISTATE_OFF );
  147. }
  148. function FCKFitWindow_Resize()
  149. {
  150. var oViewPaneSize = FCKTools.GetViewPaneSize( parent ) ;
  151. var eEditorFrameStyle = window.frameElement.style ;
  152. eEditorFrameStyle.width = oViewPaneSize.Width + 'px' ;
  153. eEditorFrameStyle.height = oViewPaneSize.Height + 'px' ;
  154. }