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

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: fcktoolbarfontformatcombo.js
  12.  *  FCKToolbarPanelButton Class: Handles the Fonts combo selector.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. var FCKToolbarFontFormatCombo = function()
  18. {
  19. this.Command =  FCKCommands.GetCommand( 'FontFormat' ) ;
  20. }
  21. // Inherit from FCKToolbarSpecialCombo.
  22. FCKToolbarFontFormatCombo.prototype = new FCKToolbarSpecialCombo ;
  23. FCKToolbarFontFormatCombo.prototype.GetLabel = function()
  24. {
  25. return FCKLang.FontFormat ;
  26. }
  27. FCKToolbarFontFormatCombo.prototype.CreateItems = function( targetSpecialCombo )
  28. {
  29. // Get the format names from the language file.
  30. var aNames = FCKLang['FontFormats'].split(';') ;
  31. var oNames = {
  32. p : aNames[0],
  33. pre : aNames[1],
  34. address : aNames[2],
  35. h1 : aNames[3],
  36. h2 : aNames[4],
  37. h3 : aNames[5],
  38. h4 : aNames[6],
  39. h5 : aNames[7],
  40. h6 : aNames[8],
  41. div : aNames[9]
  42. } ;
  43. // Get the available formats from the configuration file.
  44. var aTags = FCKConfig.FontFormats.split(';') ;
  45. for ( var i = 0 ; i < aTags.length ; i++ )
  46. {
  47. if ( aTags[i] == 'div' && FCKBrowserInfo.IsGecko )
  48. continue ;
  49. this._Combo.AddItem( aTags[i], '<' + aTags[i] + '>' + oNames[aTags[i]] + '</' + aTags[i] + '>', oNames[aTags[i]] ) ;
  50. }
  51. }