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

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: fckmenublockpanel.js
  14.  *  This class is a menu block that behaves like a panel. It's a mix of the
  15.  *  FCKMenuBlock and FCKPanel classes.
  16.  * 
  17.  * File Authors:
  18.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  19.  */
  20. var FCKMenuBlockPanel = function()
  21. {
  22. // Call the "base" constructor.
  23. FCKMenuBlock.call( this ) ;
  24. }
  25. FCKMenuBlockPanel.prototype = new FCKMenuBlock() ;
  26. // Override the create method.
  27. FCKMenuBlockPanel.prototype.Create = function()
  28. {
  29. var oPanel = this.Panel = ( this.Parent && this.Parent.Panel ? this.Parent.Panel.CreateChildPanel() : new FCKPanel() ) ;
  30. oPanel.AppendStyleSheet( FCKConfig.SkinPath + 'fck_editor.css' ) ;
  31. // Call the "base" implementation.
  32. FCKMenuBlock.prototype.Create.call( this, oPanel.MainNode ) ;
  33. }
  34. FCKMenuBlockPanel.prototype.Show = function( x, y, relElement )
  35. {
  36. if ( !this.Panel.CheckIsOpened() )
  37. this.Panel.Show( x, y, relElement ) ;
  38. }
  39. FCKMenuBlockPanel.prototype.Hide = function()
  40. {
  41. if ( this.Panel.CheckIsOpened() )
  42. this.Panel.Hide() ;
  43. }