fcktoolbarfontformatcombo.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.  * FCKToolbarPanelButton Class: Handles the Fonts combo selector.
  22.  */
  23. var FCKToolbarFontFormatCombo = function( tooltip, style )
  24. {
  25. if ( tooltip === false )
  26. return ;
  27. this.CommandName = 'FontFormat' ;
  28. this.Label = this.GetLabel() ;
  29. this.Tooltip = tooltip ? tooltip : this.Label ;
  30. this.Style = style ? style : FCK_TOOLBARITEM_ICONTEXT ;
  31. this.NormalLabel = 'Normal' ;
  32. this.PanelWidth = 190 ;
  33. this.DefaultLabel = FCKConfig.DefaultFontFormatLabel || '' ;
  34. }
  35. // Inherit from FCKToolbarSpecialCombo.
  36. FCKToolbarFontFormatCombo.prototype = new FCKToolbarStyleCombo( false ) ;
  37. FCKToolbarFontFormatCombo.prototype.GetLabel = function()
  38. {
  39. return FCKLang.FontFormat ;
  40. }
  41. FCKToolbarFontFormatCombo.prototype.GetStyles = function()
  42. {
  43. var styles = {} ;
  44. // Get the format names from the language file.
  45. var aNames = FCKLang['FontFormats'].split(';') ;
  46. var oNames = {
  47. p : aNames[0],
  48. pre : aNames[1],
  49. address : aNames[2],
  50. h1 : aNames[3],
  51. h2 : aNames[4],
  52. h3 : aNames[5],
  53. h4 : aNames[6],
  54. h5 : aNames[7],
  55. h6 : aNames[8],
  56. div : aNames[9] || ( aNames[0] + ' (DIV)')
  57. } ;
  58. // Get the available formats from the configuration file.
  59. var elements = FCKConfig.FontFormats.split(';') ;
  60. for ( var i = 0 ; i < elements.length ; i++ )
  61. {
  62. var elementName = elements[ i ] ;
  63. var style = FCKStyles.GetStyle( '_FCK_' + elementName ) ;
  64. if ( style )
  65. {
  66. style.Label = oNames[ elementName ] ;
  67. styles[ '_FCK_' + elementName ] = style ;
  68. }
  69. else
  70. alert( "The FCKConfig.CoreStyles['" + elementName + "'] setting was not found. Please check the fckconfig.js file" ) ;
  71. }
  72. return styles ;
  73. }
  74. FCKToolbarFontFormatCombo.prototype.RefreshActiveItems = function( targetSpecialCombo )
  75. {
  76. var startElement = FCK.ToolbarSet.CurrentInstance.Selection.GetBoundaryParentElement( true ) ;
  77. if ( startElement )
  78. {
  79. var path = new FCKElementPath( startElement ) ;
  80. var blockElement = path.Block ;
  81. if ( blockElement )
  82. {
  83. for ( var i in targetSpecialCombo.Items )
  84. {
  85. var item = targetSpecialCombo.Items[i] ;
  86. var style = item.Style ;
  87. if ( style.CheckElementRemovable( blockElement ) )
  88. {
  89. targetSpecialCombo.SetLabel( style.Label ) ;
  90. return ;
  91. }
  92. }
  93. }
  94. }
  95. targetSpecialCombo.SetLabel( this.DefaultLabel ) ;
  96. }
  97. FCKToolbarFontFormatCombo.prototype.StyleCombo_OnBeforeClick = function( targetSpecialCombo )
  98. {
  99. // Clear the current selection.
  100. targetSpecialCombo.DeselectAll() ;
  101. var startElement = FCK.ToolbarSet.CurrentInstance.Selection.GetBoundaryParentElement( true ) ;
  102. if ( startElement )
  103. {
  104. var path = new FCKElementPath( startElement ) ;
  105. var blockElement = path.Block ;
  106. for ( var i in targetSpecialCombo.Items )
  107. {
  108. var item = targetSpecialCombo.Items[i] ;
  109. var style = item.Style ;
  110. if ( style.CheckElementRemovable( blockElement ) )
  111. {
  112. targetSpecialCombo.SelectItem( item ) ;
  113. return ;
  114. }
  115. }
  116. }
  117. }