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

数据库编程

开发平台:

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.  * 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._LastValue = null ;
  35. }
  36. FCKToolbarSpecialCombo.prototype.DefaultLabel = '' ;
  37. function FCKToolbarSpecialCombo_OnSelect( itemId, item )
  38. {
  39. FCK.ToolbarSet.CurrentInstance.Commands.GetCommand( this.CommandName ).Execute( itemId, item ) ;
  40. }
  41. FCKToolbarSpecialCombo.prototype.Create = function( targetElement )
  42. {
  43. this._Combo = new FCKSpecialCombo( this.GetLabel(), this.FieldWidth, this.PanelWidth, this.PanelMaxHeight, FCKBrowserInfo.IsIE ? window : FCKTools.GetElementWindow( targetElement ).parent ) ;
  44. /*
  45. this._Combo.FieldWidth = this.FieldWidth != null ? this.FieldWidth : 100 ;
  46. this._Combo.PanelWidth = this.PanelWidth != null ? this.PanelWidth : 150 ;
  47. this._Combo.PanelMaxHeight = this.PanelMaxHeight != null ? this.PanelMaxHeight : 150 ;
  48. */
  49. //this._Combo.Command.Name = this.Command.Name;
  50. // this._Combo.Label = this.Label ;
  51. this._Combo.Tooltip = this.Tooltip ;
  52. this._Combo.Style = this.Style ;
  53. this.CreateItems( this._Combo ) ;
  54. this._Combo.Create( targetElement ) ;
  55. this._Combo.CommandName = this.CommandName ;
  56. this._Combo.OnSelect = FCKToolbarSpecialCombo_OnSelect ;
  57. }
  58. function FCKToolbarSpecialCombo_RefreshActiveItems( combo, value )
  59. {
  60. combo.DeselectAll() ;
  61. combo.SelectItem( value ) ;
  62. combo.SetLabelById( value ) ;
  63. }
  64. FCKToolbarSpecialCombo.prototype.RefreshState = function()
  65. {
  66. // Gets the actual state.
  67. var eState ;
  68. // if ( FCK.EditMode == FCK_EDITMODE_SOURCE && ! this.SourceView )
  69. // eState = FCK_TRISTATE_DISABLED ;
  70. // else
  71. // {
  72. var sValue = FCK.ToolbarSet.CurrentInstance.Commands.GetCommand( this.CommandName ).GetState() ;
  73. // FCKDebug.Output( 'RefreshState of Special Combo "' + this.TypeOf + '" - State: ' + sValue ) ;
  74. if ( sValue != FCK_TRISTATE_DISABLED )
  75. {
  76. eState = FCK_TRISTATE_ON ;
  77. if ( this.RefreshActiveItems )
  78. this.RefreshActiveItems( this._Combo, sValue ) ;
  79. else
  80. {
  81. if ( this._LastValue !== sValue)
  82. {
  83. this._LastValue = sValue ;
  84. if ( !sValue || sValue.length == 0 )
  85. {
  86. this._Combo.DeselectAll() ;
  87. this._Combo.SetLabel( this.DefaultLabel ) ;
  88. }
  89. else
  90. FCKToolbarSpecialCombo_RefreshActiveItems( this._Combo, sValue ) ;
  91. }
  92. }
  93. }
  94. else
  95. eState = FCK_TRISTATE_DISABLED ;
  96. // }
  97. // If there are no state changes then do nothing and return.
  98. if ( eState == this.State ) return ;
  99. if ( eState == FCK_TRISTATE_DISABLED )
  100. {
  101. this._Combo.DeselectAll() ;
  102. this._Combo.SetLabel( '' ) ;
  103. }
  104. // Sets the actual state.
  105. this.State = eState ;
  106. // Updates the graphical state.
  107. this._Combo.SetEnabled( eState != FCK_TRISTATE_DISABLED ) ;
  108. }
  109. FCKToolbarSpecialCombo.prototype.Enable = function()
  110. {
  111. this.RefreshState() ;
  112. }
  113. FCKToolbarSpecialCombo.prototype.Disable = function()
  114. {
  115. this.State = FCK_TRISTATE_DISABLED ;
  116. this._Combo.DeselectAll() ;
  117. this._Combo.SetLabel( '' ) ;
  118. this._Combo.SetEnabled( false ) ;
  119. }