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

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: fcktextcolorcommand.js
  12.  *  FCKTextColorCommand Class: represents the text color comand. It shows the
  13.  *  color selection panel.
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. // FCKTextColorCommand Contructor
  19. // type: can be 'ForeColor' or 'BackColor'.
  20. var FCKTextColorCommand = function( type )
  21. {
  22. this.Name = type == 'ForeColor' ? 'TextColor' : 'BGColor' ;
  23. this.Type = type ;
  24. /* BEGIN ###
  25. The panel should be created in the "Execute" method for best
  26. memory use, but it not works in Gecko in that way.
  27. */
  28. this._Panel = new FCKPanel() ;
  29. this._Panel.StyleSheet = FCKConfig.SkinPath + 'fck_contextmenu.css' ;
  30. this._Panel.Create() ;
  31. this._CreatePanelBody( this._Panel.Document, this._Panel.PanelDiv ) ;
  32. // END ###
  33. }
  34. FCKTextColorCommand.prototype.Execute = function( panelX, panelY, relElement )
  35. {
  36. /*
  37. BEGIN ###
  38. This is the right code to create the panel, but it is not
  39. working well with Gecko, so it has been moved to the 
  40. class contructor.
  41. // Create the Color Panel if needed.
  42. if ( ! this._Panel )
  43. {
  44. this._Panel = new FCKPanel() ;
  45. this._Panel.StyleSheet = FCKConfig.SkinPath + 'fck_contextmenu.css' ;
  46. this._Panel.Create() ;
  47. this._CreatePanelBody( this._Panel.Document, this._Panel.PanelDiv ) ;
  48. }
  49. END ###
  50. */
  51. // We must "cache" the actual panel type to be used in the SetColor method.
  52. FCK._ActiveColorPanelType = this.Type ;
  53. // Show the Color Panel at the desired position.
  54. this._Panel.Show( panelX, panelY, relElement ) ;
  55. }
  56. FCKTextColorCommand.prototype.SetColor = function( color )
  57. {
  58. if ( FCK._ActiveColorPanelType == 'ForeColor' )
  59. FCK.ExecuteNamedCommand( 'ForeColor', color ) ;
  60. else if ( FCKBrowserInfo.IsGecko )
  61. FCK.ExecuteNamedCommand( 'hilitecolor', color ) ;
  62. else
  63. FCK.ExecuteNamedCommand( 'BackColor', color ) ;
  64. // Delete the "cached" active panel type.
  65. delete FCK._ActiveColorPanelType ;
  66. }
  67. FCKTextColorCommand.prototype.GetState = function()
  68. {
  69. return FCK_TRISTATE_OFF ;
  70. }
  71. function FCKTextColorCommand_OnMouseOver() { this.className='ColorSelected' ; }
  72. function FCKTextColorCommand_OnMouseOut() { this.className='ColorDeselected' ; }
  73. function FCKTextColorCommand_OnClick()
  74. {
  75. this.className = 'ColorDeselected' ;
  76. this.Command.SetColor( '#' + this.Color ) ;
  77. this.Command._Panel.Hide() ;
  78. }
  79. function FCKTextColorCommand_AutoOnClick()
  80. {
  81. this.className = 'ColorDeselected' ;
  82. this.Command.SetColor( '' ) ;
  83. this.Command._Panel.Hide() ;
  84. }
  85. function FCKTextColorCommand_MoreOnClick()
  86. {
  87. this.className = 'ColorDeselected' ;
  88. this.Command._Panel.Hide() ;
  89. FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 400, 330, this.Command.SetColor ) ;
  90. }
  91. FCKTextColorCommand.prototype._CreatePanelBody = function( targetDocument, targetDiv )
  92. {
  93. function CreateSelectionDiv()
  94. {
  95. var oDiv = targetDocument.createElement( "DIV" ) ;
  96. oDiv.className = 'ColorDeselected' ;
  97. oDiv.onmouseover = FCKTextColorCommand_OnMouseOver ;
  98. oDiv.onmouseout = FCKTextColorCommand_OnMouseOut ;
  99. return oDiv ;
  100. }
  101. // Create the Table that will hold all colors.
  102. var oTable = targetDiv.appendChild( targetDocument.createElement( "TABLE" ) ) ;
  103. oTable.style.tableLayout = 'fixed' ;
  104. oTable.cellPadding = 0 ;
  105. oTable.cellSpacing = 0 ;
  106. oTable.border = 0 ;
  107. oTable.width = 150 ;
  108. var oCell = oTable.insertRow(-1).insertCell(-1) ;
  109. oCell.colSpan = 8 ;
  110. // Create the Button for the "Automatic" color selection.
  111. var oDiv = oCell.appendChild( CreateSelectionDiv() ) ;
  112. oDiv.innerHTML = 
  113. '<table cellspacing="0" cellpadding="0" width="100%" border="0">
  114. <tr>
  115. <td><div class="ColorBoxBorder"><div class="ColorBox" style="background-color: #000000"></div></div></td>
  116. <td nowrap width="100%" align="center" unselectable="on">' + FCKLang.ColorAutomatic + '</td>
  117. </tr>
  118. </table>' ;
  119. oDiv.Command = this ;
  120. oDiv.onclick = FCKTextColorCommand_AutoOnClick ;
  121. // Create an array of colors based on the configuration file.
  122. var aColors = FCKConfig.FontColors.toString().split(',') ;
  123. // Create the colors table based on the array.
  124. var iCounter = 0 ;
  125. while ( iCounter < aColors.length )
  126. {
  127. var oRow = oTable.insertRow(-1) ;
  128. for ( var i = 0 ; i < 8 && iCounter < aColors.length ; i++, iCounter++ )
  129. {
  130. var oDiv = oRow.insertCell(-1).appendChild( CreateSelectionDiv() ) ;
  131. oDiv.Color = aColors[iCounter] ;
  132. oDiv.innerHTML = '<div class="ColorBoxBorder"><div class="ColorBox" style="background-color: #' + aColors[iCounter] + '"></div></div>' ;
  133. oDiv.Command = this ;
  134. oDiv.onclick = FCKTextColorCommand_OnClick ;
  135. }
  136. }
  137. // Create the Row and the Cell for the "More Colors..." button.
  138. var oCell = oTable.insertRow(-1).insertCell(-1) ;
  139. oCell.colSpan = 8 ;
  140. var oDiv = oCell.appendChild( CreateSelectionDiv() ) ;
  141. oDiv.innerHTML = '<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td nowrap align="center">' + FCKLang.ColorMoreColors + '</td></tr></table>' ;
  142. oDiv.Command = this ;
  143. oDiv.onclick = FCKTextColorCommand_MoreOnClick ;
  144. }