fcktoolbarpanelbutton.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.  * FCKToolbarPanelButton Class: represents a special button in the toolbar
  22.  * that shows a panel when pressed.
  23.  */
  24. var FCKToolbarPanelButton = function( commandName, label, tooltip, style, icon )
  25. {
  26. this.CommandName = commandName ;
  27. var oIcon ;
  28. if ( icon == null )
  29. oIcon = FCKConfig.SkinPath + 'toolbar/' + commandName.toLowerCase() + '.gif' ;
  30. else if ( typeof( icon ) == 'number' )
  31. oIcon = [ FCKConfig.SkinPath + 'fck_strip.gif', 16, icon ] ;
  32. var oUIButton = this._UIButton = new FCKToolbarButtonUI( commandName, label, tooltip, oIcon, style ) ;
  33. oUIButton._FCKToolbarPanelButton = this ;
  34. oUIButton.ShowArrow = true ;
  35. oUIButton.OnClick = FCKToolbarPanelButton_OnButtonClick ;
  36. }
  37. FCKToolbarPanelButton.prototype.TypeName = 'FCKToolbarPanelButton' ;
  38. FCKToolbarPanelButton.prototype.Create = function( parentElement )
  39. {
  40. parentElement.className += 'Menu' ;
  41. this._UIButton.Create( parentElement ) ;
  42. var oPanel = FCK.ToolbarSet.CurrentInstance.Commands.GetCommand( this.CommandName )._Panel ;
  43. this.RegisterPanel( oPanel ) ;
  44. }
  45. FCKToolbarPanelButton.prototype.RegisterPanel = function( oPanel )
  46. {
  47. if ( oPanel._FCKToolbarPanelButton )
  48. return ;
  49. oPanel._FCKToolbarPanelButton = this ;
  50. var eLineDiv = oPanel.Document.body.appendChild( oPanel.Document.createElement( 'div' ) ) ;
  51. eLineDiv.style.position = 'absolute' ;
  52. eLineDiv.style.top = '0px' ;
  53. var eLine = oPanel._FCKToolbarPanelButtonLineDiv = eLineDiv.appendChild( oPanel.Document.createElement( 'IMG' ) ) ;
  54. eLine.className = 'TB_ConnectionLine' ;
  55. eLine.style.position = 'absolute' ;
  56. // eLine.style.backgroundColor = 'Red' ;
  57. eLine.src = FCK_SPACER_PATH ;
  58. oPanel.OnHide = FCKToolbarPanelButton_OnPanelHide ;
  59. }
  60. /*
  61. Events
  62. */
  63. function FCKToolbarPanelButton_OnButtonClick( toolbarButton )
  64. {
  65. var oButton = this._FCKToolbarPanelButton ;
  66. var e = oButton._UIButton.MainElement ;
  67. oButton._UIButton.ChangeState( FCK_TRISTATE_ON ) ;
  68. // oButton.LineImg.style.width = ( e.offsetWidth - 2 ) + 'px' ;
  69. var oCommand = FCK.ToolbarSet.CurrentInstance.Commands.GetCommand( oButton.CommandName ) ;
  70. var oPanel = oCommand._Panel ;
  71. oPanel._FCKToolbarPanelButtonLineDiv.style.width = ( e.offsetWidth - 2 ) + 'px' ;
  72. oCommand.Execute( 0, e.offsetHeight - 1, e ) ; // -1 to be over the border
  73. }
  74. function FCKToolbarPanelButton_OnPanelHide()
  75. {
  76. var oMenuButton = this._FCKToolbarPanelButton ;
  77. oMenuButton._UIButton.ChangeState( FCK_TRISTATE_OFF ) ;
  78. }
  79. // The Panel Button works like a normal button so the refresh state functions
  80. // defined for the normal button can be reused here.
  81. FCKToolbarPanelButton.prototype.RefreshState = FCKToolbarButton.prototype.RefreshState ;
  82. FCKToolbarPanelButton.prototype.Enable = FCKToolbarButton.prototype.Enable ;
  83. FCKToolbarPanelButton.prototype.Disable = FCKToolbarButton.prototype.Disable ;