fcktoolbarstylecombo.js
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:3k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 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.  * File Name: fcktoolbarstylecombo.js
  12.  *  FCKToolbarPanelButton Class: Handles the Fonts combo selector.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. var FCKToolbarStyleCombo = function()
  18. {
  19. this.Command = FCKCommands.GetCommand( 'Style' ) ;
  20. }
  21. // Inherit from FCKToolbarSpecialCombo.
  22. FCKToolbarStyleCombo.prototype = new FCKToolbarSpecialCombo ;
  23. FCKToolbarStyleCombo.prototype.GetLabel = function()
  24. {
  25. return FCKLang.Style ;
  26. }
  27. FCKToolbarStyleCombo.prototype.CreateItems = function( targetSpecialCombo )
  28. {
  29. // Add the Editor Area CSS to the Styles panel so the style classes are previewed correctly.
  30. FCKTools.AppendStyleSheet( targetSpecialCombo._Panel.Document, FCKConfig.EditorAreaCSS ) ;
  31. // For some reason Gecko is blocking inside the "RefreshVisibleItems" function.
  32. if ( ! FCKBrowserInfo.IsGecko )
  33. targetSpecialCombo.OnBeforeClick = this.RefreshVisibleItems ;
  34. // Add the styles to the special combo.
  35. for ( var s in this.Command.Styles )
  36. {
  37. var oStyle = this.Command.Styles[s] ;
  38. if ( oStyle.IsObjectElement )
  39. var oItem = targetSpecialCombo.AddItem( s, s ) ;
  40. else
  41. var oItem = targetSpecialCombo.AddItem( s, oStyle.GetOpenerTag() + s + oStyle.GetCloserTag() ) ;
  42. oItem.Style = oStyle ;
  43. }
  44. }
  45. FCKToolbarStyleCombo.prototype.RefreshActiveItems = function( targetSpecialCombo )
  46. {
  47. // Clear the actual selection.
  48. targetSpecialCombo.DeselectAll() ;
  49. // Get the active styles.
  50. var aStyles = this.Command.GetActiveStyles() ;
  51. if ( aStyles.length > 0 )
  52. {
  53. // Select the active styles in the combo.
  54. for ( var i = 0 ; i < aStyles.length ; i++ )
  55. targetSpecialCombo.SelectItem( aStyles[i].Name ) ;
  56. // Set the combo label to the first style in the collection.
  57. targetSpecialCombo.SetLabelById( aStyles[0].Name ) ;
  58. }
  59. else
  60. targetSpecialCombo.SetLabel('') ;
  61. }
  62. FCKToolbarStyleCombo.prototype.RefreshVisibleItems = function( targetSpecialCombo )
  63. {
  64. if ( FCKSelection.GetType() == 'Control' )
  65. var sTagName = FCKSelection.GetSelectedElement().tagName ;
  66. for ( var i in targetSpecialCombo.Items )
  67. {
  68. var oItem = targetSpecialCombo.Items[i] ;
  69. if ( ( sTagName && oItem.Style.Element == sTagName ) || ( ! sTagName && ! oItem.Style.IsObjectElement ) )
  70. oItem.style.display = '' ;
  71. else
  72. oItem.style.display = 'none' ; // For some reason Gecko is blocking here.
  73. }
  74. }