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

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