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

数据库编程

开发平台:

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.  * Component that creates floating panels. It is used by many
  22.  * other components, like the toolbar items, context menu, etc...
  23.  */
  24. var FCKPanel = function( parentWindow )
  25. {
  26. this.IsRTL = ( FCKLang.Dir == 'rtl' ) ;
  27. this.IsContextMenu = false ;
  28. this._LockCounter = 0 ;
  29. this._Window = parentWindow || window ;
  30. var oDocument ;
  31. if ( FCKBrowserInfo.IsIE )
  32. {
  33. // Create the Popup that will hold the panel.
  34. this._Popup = this._Window.createPopup() ;
  35. oDocument = this.Document = this._Popup.document ;
  36. FCK.IECleanup.AddItem( this, FCKPanel_Cleanup ) ;
  37. }
  38. else
  39. {
  40. var oIFrame = this._IFrame = this._Window.document.createElement('iframe') ;
  41. oIFrame.src = 'javascript:void(0)' ;
  42. oIFrame.allowTransparency = true ;
  43. oIFrame.frameBorder = '0' ;
  44. oIFrame.scrolling = 'no' ;
  45. oIFrame.width = oIFrame.height = 0 ;
  46. FCKDomTools.SetElementStyles( oIFrame,
  47. {
  48. position : 'absolute',
  49. zIndex : FCKConfig.FloatingPanelsZIndex
  50. } ) ;
  51. if ( this._Window == window.parent && window.frameElement )
  52. {
  53. var scrollPos = null ;
  54. if ( FCKBrowserInfo.IsGecko && FCK && FCK.EditorDocument )
  55. scrollPos = [ FCK.EditorDocument.body.scrollLeft, FCK.EditorDocument.body.scrollTop ] ;
  56. window.frameElement.parentNode.insertBefore( oIFrame, window.frameElement ) ;
  57. if ( scrollPos )
  58. {
  59. var restoreFunc = function()
  60. {
  61. FCK.EditorDocument.body.scrollLeft = scrollPos[0] ;
  62. FCK.EditorDocument.body.scrollTop = scrollPos[1] ;
  63. }
  64. setTimeout( restoreFunc, 500 ) ;
  65. }
  66. }
  67. else
  68. this._Window.document.body.appendChild( oIFrame ) ;
  69. var oIFrameWindow = oIFrame.contentWindow ;
  70. oDocument = this.Document = oIFrameWindow.document ;
  71. // Workaround for Safari 12256. Ticket #63
  72. var sBase = '' ;
  73. if ( FCKBrowserInfo.IsSafari )
  74. sBase = '<base href="' + window.document.location + '">' ;
  75. // Initialize the IFRAME document body.
  76. oDocument.open() ;
  77. oDocument.write( '<html><head>' + sBase + '</head><body style="margin:0px;padding:0px;"></body></html>' ) ;
  78. oDocument.close() ;
  79. FCKTools.AddEventListenerEx( oIFrameWindow, 'focus', FCKPanel_Window_OnFocus, this ) ;
  80. FCKTools.AddEventListenerEx( oIFrameWindow, 'blur', FCKPanel_Window_OnBlur, this ) ;
  81. }
  82. oDocument.dir = FCKLang.Dir ;
  83. FCKTools.AddEventListener( oDocument, 'contextmenu', FCKTools.CancelEvent ) ;
  84. // Create the main DIV that is used as the panel base.
  85. this.MainNode = oDocument.body.appendChild( oDocument.createElement('DIV') ) ;
  86. // The "float" property must be set so Firefox calculates the size correctly.
  87. this.MainNode.style.cssFloat = this.IsRTL ? 'right' : 'left' ;
  88. }
  89. FCKPanel.prototype.AppendStyleSheet = function( styleSheet )
  90. {
  91. FCKTools.AppendStyleSheet( this.Document, styleSheet ) ;
  92. }
  93. FCKPanel.prototype.Preload = function( x, y, relElement )
  94. {
  95. // The offsetWidth and offsetHeight properties are not available if the
  96. // element is not visible. So we must "show" the popup with no size to
  97. // be able to use that values in the second call (IE only).
  98. if ( this._Popup )
  99. this._Popup.show( x, y, 0, 0, relElement ) ;
  100. }
  101. FCKPanel.prototype.Show = function( x, y, relElement, width, height )
  102. {
  103. var iMainWidth ;
  104. var eMainNode = this.MainNode ;
  105. if ( this._Popup )
  106. {
  107. // The offsetWidth and offsetHeight properties are not available if the
  108. // element is not visible. So we must "show" the popup with no size to
  109. // be able to use that values in the second call.
  110. this._Popup.show( x, y, 0, 0, relElement ) ;
  111. // The following lines must be place after the above "show", otherwise it
  112. // doesn't has the desired effect.
  113. FCKDomTools.SetElementStyles( eMainNode,
  114. {
  115. width : width ? width + 'px' : '',
  116. height : height ? height + 'px' : ''
  117. } ) ;
  118. iMainWidth = eMainNode.offsetWidth ;
  119. if ( this.IsRTL )
  120. {
  121. if ( this.IsContextMenu )
  122. x  = x - iMainWidth + 1 ;
  123. else if ( relElement )
  124. x  = ( x * -1 ) + relElement.offsetWidth - iMainWidth ;
  125. }
  126. // Second call: Show the Popup at the specified location, with the correct size.
  127. this._Popup.show( x, y, iMainWidth, eMainNode.offsetHeight, relElement ) ;
  128. if ( this.OnHide )
  129. {
  130. if ( this._Timer )
  131. CheckPopupOnHide.call( this, true ) ;
  132. this._Timer = FCKTools.SetInterval( CheckPopupOnHide, 100, this ) ;
  133. }
  134. }
  135. else
  136. {
  137. // Do not fire OnBlur while the panel is opened.
  138. if ( typeof( FCK.ToolbarSet.CurrentInstance.FocusManager ) != 'undefined' )
  139. FCK.ToolbarSet.CurrentInstance.FocusManager.Lock() ;
  140. if ( this.ParentPanel )
  141. this.ParentPanel.Lock() ;
  142. FCKDomTools.SetElementStyles( eMainNode,
  143. {
  144. width : width ? width + 'px' : '',
  145. height : height ? height + 'px' : ''
  146. } ) ;
  147. iMainWidth = eMainNode.offsetWidth ;
  148. if ( !width ) this._IFrame.width = 1 ;
  149. if ( !height ) this._IFrame.height = 1 ;
  150. // This is weird... but with Firefox, we must get the offsetWidth before
  151. // setting the _IFrame size (which returns "0"), and then after that,
  152. // to return the correct width. Remove the first step and it will not
  153. // work when the editor is in RTL.
  154. //
  155. // The "|| eMainNode.firstChild.offsetWidth" part has been added
  156. // for Opera compatibility (see #570).
  157. iMainWidth = eMainNode.offsetWidth || eMainNode.firstChild.offsetWidth ;
  158. var oPos = FCKTools.GetElementPosition(
  159. relElement.nodeType == 9 ?
  160. ( FCKTools.IsStrictMode( relElement ) ? relElement.documentElement : relElement.body ) :
  161. relElement,
  162. this._Window ) ;
  163. if ( this.IsRTL && !this.IsContextMenu )
  164. x = ( x * -1 ) ;
  165. x += oPos.X ;
  166. y += oPos.Y ;
  167. if ( this.IsRTL )
  168. {
  169. if ( this.IsContextMenu )
  170. x  = x - iMainWidth + 1 ;
  171. else if ( relElement )
  172. x  = x + relElement.offsetWidth - iMainWidth ;
  173. }
  174. else
  175. {
  176. var oViewPaneSize = FCKTools.GetViewPaneSize( this._Window ) ;
  177. var oScrollPosition = FCKTools.GetScrollPosition( this._Window ) ;
  178. var iViewPaneHeight = oViewPaneSize.Height + oScrollPosition.Y ;
  179. var iViewPaneWidth = oViewPaneSize.Width + oScrollPosition.X ;
  180. if ( ( x + iMainWidth ) > iViewPaneWidth )
  181. x -= x + iMainWidth - iViewPaneWidth ;
  182. if ( ( y + eMainNode.offsetHeight ) > iViewPaneHeight )
  183. y -= y + eMainNode.offsetHeight - iViewPaneHeight ;
  184. }
  185. if ( x < 0 )
  186.  x = 0 ;
  187. // Set the context menu DIV in the specified location.
  188. FCKDomTools.SetElementStyles( this._IFrame,
  189. {
  190. left : x + 'px',
  191. top : y + 'px'
  192. } ) ;
  193. var iWidth = iMainWidth ;
  194. var iHeight = eMainNode.offsetHeight ;
  195. this._IFrame.width = iWidth ;
  196. this._IFrame.height = iHeight ;
  197. // Move the focus to the IFRAME so we catch the "onblur".
  198. this._IFrame.contentWindow.focus() ;
  199. }
  200. this._IsOpened = true ;
  201. FCKTools.RunFunction( this.OnShow, this ) ;
  202. }
  203. FCKPanel.prototype.Hide = function( ignoreOnHide )
  204. {
  205. if ( this._Popup )
  206. this._Popup.hide() ;
  207. else
  208. {
  209. if ( !this._IsOpened )
  210. return ;
  211. // Enable the editor to fire the "OnBlur".
  212. if ( typeof( FCKFocusManager ) != 'undefined' )
  213. FCKFocusManager.Unlock() ;
  214. // It is better to set the sizes to 0, otherwise Firefox would have
  215. // rendering problems.
  216. this._IFrame.width = this._IFrame.height = 0 ;
  217. this._IsOpened = false ;
  218. if ( this.ParentPanel )
  219. this.ParentPanel.Unlock() ;
  220. if ( !ignoreOnHide )
  221. FCKTools.RunFunction( this.OnHide, this ) ;
  222. }
  223. }
  224. FCKPanel.prototype.CheckIsOpened = function()
  225. {
  226. if ( this._Popup )
  227. return this._Popup.isOpen ;
  228. else
  229. return this._IsOpened ;
  230. }
  231. FCKPanel.prototype.CreateChildPanel = function()
  232. {
  233. var oWindow = this._Popup ? FCKTools.GetDocumentWindow( this.Document ) : this._Window ;
  234. var oChildPanel = new FCKPanel( oWindow ) ;
  235. oChildPanel.ParentPanel = this ;
  236. return oChildPanel ;
  237. }
  238. FCKPanel.prototype.Lock = function()
  239. {
  240. this._LockCounter++ ;
  241. }
  242. FCKPanel.prototype.Unlock = function()
  243. {
  244. if ( --this._LockCounter == 0 && !this.HasFocus )
  245. this.Hide() ;
  246. }
  247. /* Events */
  248. function FCKPanel_Window_OnFocus( e, panel )
  249. {
  250. panel.HasFocus = true ;
  251. }
  252. function FCKPanel_Window_OnBlur( e, panel )
  253. {
  254. panel.HasFocus = false ;
  255. if ( panel._LockCounter == 0 )
  256. FCKTools.RunFunction( panel.Hide, panel ) ;
  257. }
  258. function CheckPopupOnHide( forceHide )
  259. {
  260. if ( forceHide || !this._Popup.isOpen )
  261. {
  262. window.clearInterval( this._Timer ) ;
  263. this._Timer = null ;
  264. FCKTools.RunFunction( this.OnHide, this ) ;
  265. }
  266. }
  267. function FCKPanel_Cleanup()
  268. {
  269. this._Popup = null ;
  270. this._Window = null ;
  271. this.Document = null ;
  272. this.MainNode = null ;
  273. }