fcktextcolorcommand.js
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:5k
源码类别:

OA系统

开发平台:

C#

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