fcktoolbarspecialcombo.js
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:4k
源码类别:

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.  * FCKToolbarSpecialCombo Class: This is a "abstract" base class to be used
  22.  * by the special combo toolbar elements like font name, font size, paragraph format, etc...
  23.  *
  24.  * The following properties and methods must be implemented when inheriting from
  25.  * this class:
  26.  *  - Property: CommandName [ The command name to be executed ]
  27.  *  - Method: GetLabel() [ Returns the label ]
  28.  *  - CreateItems( targetSpecialCombo ) [ Add all items in the special combo ]
  29.  */
  30. var FCKToolbarSpecialCombo = function()
  31. {
  32. this.SourceView = false ;
  33. this.ContextSensitive = true ;
  34. this.FieldWidth = null ;
  35. this.PanelWidth = null ;
  36. this.PanelMaxHeight = null ;
  37. //this._LastValue = null ;
  38. }
  39. FCKToolbarSpecialCombo.prototype.DefaultLabel = '' ;
  40. function FCKToolbarSpecialCombo_OnSelect( itemId, item )
  41. {
  42. FCK.ToolbarSet.CurrentInstance.Commands.GetCommand( this.CommandName ).Execute( itemId, item ) ;
  43. }
  44. FCKToolbarSpecialCombo.prototype.Create = function( targetElement )
  45. {
  46. this._Combo = new FCKSpecialCombo( this.GetLabel(), this.FieldWidth, this.PanelWidth, this.PanelMaxHeight, FCKBrowserInfo.IsIE ? window : FCKTools.GetElementWindow( targetElement ).parent ) ;
  47. /*
  48. this._Combo.FieldWidth = this.FieldWidth != null ? this.FieldWidth : 100 ;
  49. this._Combo.PanelWidth = this.PanelWidth != null ? this.PanelWidth : 150 ;
  50. this._Combo.PanelMaxHeight = this.PanelMaxHeight != null ? this.PanelMaxHeight : 150 ;
  51. */
  52. //this._Combo.Command.Name = this.Command.Name;
  53. // this._Combo.Label = this.Label ;
  54. this._Combo.Tooltip = this.Tooltip ;
  55. this._Combo.Style = this.Style ;
  56. this.CreateItems( this._Combo ) ;
  57. this._Combo.Create( targetElement ) ;
  58. this._Combo.CommandName = this.CommandName ;
  59. this._Combo.OnSelect = FCKToolbarSpecialCombo_OnSelect ;
  60. }
  61. function FCKToolbarSpecialCombo_RefreshActiveItems( combo, value )
  62. {
  63. combo.DeselectAll() ;
  64. combo.SelectItem( value ) ;
  65. combo.SetLabelById( value ) ;
  66. }
  67. FCKToolbarSpecialCombo.prototype.RefreshState = function()
  68. {
  69. // Gets the actual state.
  70. var eState ;
  71. // if ( FCK.EditMode == FCK_EDITMODE_SOURCE && ! this.SourceView )
  72. // eState = FCK_TRISTATE_DISABLED ;
  73. // else
  74. // {
  75. var sValue = FCK.ToolbarSet.CurrentInstance.Commands.GetCommand( this.CommandName ).GetState() ;
  76. // FCKDebug.Output( 'RefreshState of Special Combo "' + this.TypeOf + '" - State: ' + sValue ) ;
  77. if ( sValue != FCK_TRISTATE_DISABLED )
  78. {
  79. eState = FCK_TRISTATE_ON ;
  80. if ( this.RefreshActiveItems )
  81. this.RefreshActiveItems( this._Combo, sValue ) ;
  82. else
  83. {
  84. if ( this._LastValue !== sValue)
  85. {
  86. this._LastValue = sValue ;
  87. if ( !sValue || sValue.length == 0 )
  88. {
  89. this._Combo.DeselectAll() ;
  90. this._Combo.SetLabel( this.DefaultLabel ) ;
  91. }
  92. else
  93. FCKToolbarSpecialCombo_RefreshActiveItems( this._Combo, sValue ) ;
  94. }
  95. }
  96. }
  97. else
  98. eState = FCK_TRISTATE_DISABLED ;
  99. // }
  100. // If there are no state changes then do nothing and return.
  101. if ( eState == this.State ) return ;
  102. if ( eState == FCK_TRISTATE_DISABLED )
  103. {
  104. this._Combo.DeselectAll() ;
  105. this._Combo.SetLabel( '' ) ;
  106. }
  107. // Sets the actual state.
  108. this.State = eState ;
  109. // Updates the graphical state.
  110. this._Combo.SetEnabled( eState != FCK_TRISTATE_DISABLED ) ;
  111. }
  112. FCKToolbarSpecialCombo.prototype.Enable = function()
  113. {
  114. this.RefreshState() ;
  115. }
  116. FCKToolbarSpecialCombo.prototype.Disable = function()
  117. {
  118. this.State = FCK_TRISTATE_DISABLED ;
  119. this._Combo.DeselectAll() ;
  120. this._Combo.SetLabel( '' ) ;
  121. this._Combo.SetEnabled( false ) ;
  122. }