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

数据库编程

开发平台:

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.  * FCKToolbarPanelButton Class: Handles the Fonts combo selector.
  22.  */
  23. var FCKToolbarFontSizeCombo = function( tooltip, style )
  24. {
  25. this.CommandName = 'FontSize' ;
  26. this.Label = this.GetLabel() ;
  27. this.Tooltip = tooltip ? tooltip : this.Label ;
  28. this.Style = style ? style : FCK_TOOLBARITEM_ICONTEXT ;
  29. this.DefaultLabel = FCKConfig.DefaultFontSizeLabel || '' ;
  30. this.FieldWidth = 70 ;
  31. }
  32. // Inherit from FCKToolbarSpecialCombo.
  33. FCKToolbarFontSizeCombo.prototype = new FCKToolbarFontFormatCombo( false ) ;
  34. FCKToolbarFontSizeCombo.prototype.GetLabel = function()
  35. {
  36. return FCKLang.FontSize ;
  37. }
  38. FCKToolbarFontSizeCombo.prototype.GetStyles = function()
  39. {
  40. var baseStyle = FCKStyles.GetStyle( '_FCK_Size' ) ;
  41. if ( !baseStyle )
  42. {
  43. alert( "The FCKConfig.CoreStyles['FontFace'] setting was not found. Please check the fckconfig.js file" ) ;
  44. return {} ;
  45. }
  46. var styles = {} ;
  47. var fonts = FCKConfig.FontSizes.split(';') ;
  48. for ( var i = 0 ; i < fonts.length ; i++ )
  49. {
  50. var fontParts = fonts[i].split('/') ;
  51. var font = fontParts[0] ;
  52. var caption = fontParts[1] || font ;
  53. var style = FCKTools.CloneObject( baseStyle ) ;
  54. style.SetVariable( 'Size', font ) ;
  55. style.Label = caption ;
  56. styles[ caption ] = style ;
  57. }
  58. return styles ;
  59. }
  60. FCKToolbarFontSizeCombo.prototype.RefreshActiveItems = FCKToolbarStyleCombo.prototype.RefreshActiveItems ;
  61. FCKToolbarFontSizeCombo.prototype.StyleCombo_OnBeforeClick = FCKToolbarFontsCombo.prototype.StyleCombo_OnBeforeClick ;