fcktoolbarfontscombo.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 FCKToolbarFontsCombo = function( tooltip, style )
  24. {
  25. this.CommandName = 'FontName' ;
  26. this.Label = this.GetLabel() ;
  27. this.Tooltip = tooltip ? tooltip : this.Label ;
  28. this.Style = style ? style : FCK_TOOLBARITEM_ICONTEXT ;
  29. this.DefaultLabel = FCKConfig.DefaultFontLabel || '' ;
  30. }
  31. // Inherit from FCKToolbarSpecialCombo.
  32. FCKToolbarFontsCombo.prototype = new FCKToolbarFontFormatCombo( false ) ;
  33. FCKToolbarFontsCombo.prototype.GetLabel = function()
  34. {
  35. return FCKLang.Font ;
  36. }
  37. FCKToolbarFontsCombo.prototype.GetStyles = function()
  38. {
  39. var baseStyle = FCKStyles.GetStyle( '_FCK_FontFace' ) ;
  40. if ( !baseStyle )
  41. {
  42. alert( "The FCKConfig.CoreStyles['Size'] setting was not found. Please check the fckconfig.js file" ) ;
  43. return {} ;
  44. }
  45. var styles = {} ;
  46. var fonts = FCKConfig.FontNames.split(';') ;
  47. for ( var i = 0 ; i < fonts.length ; i++ )
  48. {
  49. var fontParts = fonts[i].split('/') ;
  50. var font = fontParts[0] ;
  51. var caption = fontParts[1] || font ;
  52. var style = FCKTools.CloneObject( baseStyle ) ;
  53. style.SetVariable( 'Font', font ) ;
  54. style.Label = caption ;
  55. styles[ caption ] = style ;
  56. }
  57. return styles ;
  58. }
  59. FCKToolbarFontsCombo.prototype.RefreshActiveItems = FCKToolbarStyleCombo.prototype.RefreshActiveItems ;
  60. FCKToolbarFontsCombo.prototype.StyleCombo_OnBeforeClick = function( targetSpecialCombo )
  61. {
  62. // Clear the current selection.
  63. targetSpecialCombo.DeselectAll() ;
  64. var startElement = FCKSelection.GetBoundaryParentElement( true ) ;
  65. if ( startElement )
  66. {
  67. var path = new FCKElementPath( startElement ) ;
  68. for ( var i in targetSpecialCombo.Items )
  69. {
  70. var item = targetSpecialCombo.Items[i] ;
  71. var style = item.Style ;
  72. if ( style.CheckActive( path ) )
  73. {
  74. targetSpecialCombo.SelectItem( item ) ;
  75. return ;
  76. }
  77. }
  78. }
  79. }