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

数据库编程

开发平台:

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.  * FCKTextColorCommand Class: represents the text color comand. It shows the
  22.  * color selection panel.
  23.  */
  24. // FCKTextColorCommand Constructor
  25. // type: can be 'ForeColor' or 'BackColor'.
  26. var FCKTextColorCommand = function( type )
  27. {
  28. this.Name = type == 'ForeColor' ? 'TextColor' : 'BGColor' ;
  29. this.Type = type ;
  30. var oWindow ;
  31. if ( FCKBrowserInfo.IsIE )
  32. oWindow = window ;
  33. else if ( FCK.ToolbarSet._IFrame )
  34. oWindow = FCKTools.GetElementWindow( FCK.ToolbarSet._IFrame ) ;
  35. else
  36. oWindow = window.parent ;
  37. this._Panel = new FCKPanel( oWindow ) ;
  38. this._Panel.AppendStyleSheet( FCKConfig.SkinPath + 'fck_editor.css' ) ;
  39. this._Panel.MainNode.className = 'FCK_Panel' ;
  40. this._CreatePanelBody( this._Panel.Document, this._Panel.MainNode ) ;
  41. FCKTools.DisableSelection( this._Panel.Document.body ) ;
  42. }
  43. FCKTextColorCommand.prototype.Execute = function( panelX, panelY, relElement )
  44. {
  45. // Show the Color Panel at the desired position.
  46. this._Panel.Show( panelX, panelY, relElement ) ;
  47. }
  48. FCKTextColorCommand.prototype.SetColor = function( color )
  49. {
  50. var style = FCKStyles.GetStyle( '_FCK_' +
  51. ( this.Type == 'ForeColor' ? 'Color' : 'BackColor' ) ) ;
  52. if ( !color || color.length == 0 )
  53. FCK.Styles.RemoveStyle( style ) ;
  54. else
  55. {
  56. style.SetVariable( 'Color', color ) ;
  57. FCKStyles.ApplyStyle( style ) ;
  58. }
  59. FCK.Focus() ;
  60. FCK.Events.FireEvent( 'OnSelectionChange' ) ;
  61. }
  62. FCKTextColorCommand.prototype.GetState = function()
  63. {
  64. return FCK_TRISTATE_OFF ;
  65. }
  66. function FCKTextColorCommand_OnMouseOver()
  67. {
  68. this.className = 'ColorSelected' ;
  69. }
  70. function FCKTextColorCommand_OnMouseOut()
  71. {
  72. this.className = 'ColorDeselected' ;
  73. }
  74. function FCKTextColorCommand_OnClick( ev, command, color )
  75. {
  76. this.className = 'ColorDeselected' ;
  77. command.SetColor( color ) ;
  78. command._Panel.Hide() ;
  79. }
  80. function FCKTextColorCommand_AutoOnClick( ev, command )
  81. {
  82. this.className = 'ColorDeselected' ;
  83. command.SetColor( '' ) ;
  84. command._Panel.Hide() ;
  85. }
  86. function FCKTextColorCommand_MoreOnClick( ev, command )
  87. {
  88. this.className = 'ColorDeselected' ;
  89. command._Panel.Hide() ;
  90. FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 400, 330, FCKTools.Hitch(command, 'SetColor') ) ;
  91. }
  92. FCKTextColorCommand.prototype._CreatePanelBody = function( targetDocument, targetDiv )
  93. {
  94. function CreateSelectionDiv()
  95. {
  96. var oDiv = targetDocument.createElement( "DIV" ) ;
  97. oDiv.className = 'ColorDeselected' ;
  98. FCKTools.AddEventListenerEx( oDiv, 'mouseover', FCKTextColorCommand_OnMouseOver ) ;
  99. FCKTools.AddEventListenerEx( oDiv, 'mouseout', FCKTextColorCommand_OnMouseOut ) ;
  100. return oDiv ;
  101. }
  102. // Create the Table that will hold all colors.
  103. var oTable = targetDiv.appendChild( targetDocument.createElement( "TABLE" ) ) ;
  104. oTable.className = 'ForceBaseFont' ; // Firefox 1.5 Bug.
  105. oTable.style.tableLayout = 'fixed' ;
  106. oTable.cellPadding = 0 ;
  107. oTable.cellSpacing = 0 ;
  108. oTable.border = 0 ;
  109. oTable.width = 150 ;
  110. var oCell = oTable.insertRow(-1).insertCell(-1) ;
  111. oCell.colSpan = 8 ;
  112. // Create the Button for the "Automatic" color selection.
  113. var oDiv = oCell.appendChild( CreateSelectionDiv() ) ;
  114. oDiv.innerHTML =
  115. '<table cellspacing="0" cellpadding="0" width="100%" border="0">
  116. <tr>
  117. <td><div class="ColorBoxBorder"><div class="ColorBox" style="background-color: #000000"></div></div></td>
  118. <td nowrap width="100%" align="center">' + FCKLang.ColorAutomatic + '</td>
  119. </tr>
  120. </table>' ;
  121. FCKTools.AddEventListenerEx( oDiv, 'click', FCKTextColorCommand_AutoOnClick, this ) ;
  122. if ( FCKBrowserInfo.IsSafari )
  123. oDiv.style.width = '96%' ;
  124. // Create an array of colors based on the configuration file.
  125. var aColors = FCKConfig.FontColors.toString().split(',') ;
  126. // Create the colors table based on the array.
  127. var iCounter = 0 ;
  128. while ( iCounter < aColors.length )
  129. {
  130. var oRow = oTable.insertRow(-1) ;
  131. for ( var i = 0 ; i < 8 && iCounter < aColors.length ; i++, iCounter++ )
  132. {
  133. var colorParts = aColors[iCounter].split('/') ;
  134. var colorValue = '#' + colorParts[0] ;
  135. var colorName = colorParts[1] || colorValue ;
  136. oDiv = oRow.insertCell(-1).appendChild( CreateSelectionDiv() ) ;
  137. oDiv.innerHTML = '<div class="ColorBoxBorder"><div class="ColorBox" style="background-color: ' + colorValue + '"></div></div>' ;
  138. FCKTools.AddEventListenerEx( oDiv, 'click', FCKTextColorCommand_OnClick, [ this, colorName ] ) ;
  139. }
  140. }
  141. // Create the Row and the Cell for the "More Colors..." button.
  142. if ( FCKConfig.EnableMoreFontColors )
  143. {
  144. oCell = oTable.insertRow(-1).insertCell(-1) ;
  145. oCell.colSpan = 8 ;
  146. oDiv = oCell.appendChild( CreateSelectionDiv() ) ;
  147. oDiv.innerHTML = '<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td nowrap align="center">' + FCKLang.ColorMoreColors + '</td></tr></table>' ;
  148. FCKTools.AddEventListenerEx( oDiv, 'click', FCKTextColorCommand_MoreOnClick, this ) ;
  149. }
  150. if ( FCKBrowserInfo.IsSafari )
  151. oDiv.style.width = '96%' ;
  152. }