fcktextcolorcommand.js
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:6k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2009 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.SkinEditorCSS ) ;
  39. this._Panel.MainNode.className = 'FCK_Panel' ;
  40. this._CreatePanelBody( this._Panel.Document, this._Panel.MainNode ) ;
  41. FCK.ToolbarSet.ToolbarItems.GetItem( this.Name ).RegisterPanel( this._Panel ) ;
  42. FCKTools.DisableSelection( this._Panel.Document.body ) ;
  43. }
  44. FCKTextColorCommand.prototype.Execute = function( panelX, panelY, relElement )
  45. {
  46. // Show the Color Panel at the desired position.
  47. this._Panel.Show( panelX, panelY, relElement ) ;
  48. }
  49. FCKTextColorCommand.prototype.SetColor = function( color )
  50. {
  51. FCKUndo.SaveUndoStep() ;
  52. var style = FCKStyles.GetStyle( '_FCK_' +
  53. ( this.Type == 'ForeColor' ? 'Color' : 'BackColor' ) ) ;
  54. if ( !color || color.length == 0 )
  55. FCK.Styles.RemoveStyle( style ) ;
  56. else
  57. {
  58. style.SetVariable( 'Color', color ) ;
  59. FCKStyles.ApplyStyle( style ) ;
  60. }
  61. FCKUndo.SaveUndoStep() ;
  62. FCK.Focus() ;
  63. FCK.Events.FireEvent( 'OnSelectionChange' ) ;
  64. }
  65. FCKTextColorCommand.prototype.GetState = function()
  66. {
  67. if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG )
  68. return FCK_TRISTATE_DISABLED ;
  69. return FCK_TRISTATE_OFF ;
  70. }
  71. function FCKTextColorCommand_OnMouseOver()
  72. {
  73. this.className = 'ColorSelected' ;
  74. }
  75. function FCKTextColorCommand_OnMouseOut()
  76. {
  77. this.className = 'ColorDeselected' ;
  78. }
  79. function FCKTextColorCommand_OnClick( ev, command, color )
  80. {
  81. this.className = 'ColorDeselected' ;
  82. command.SetColor( color ) ;
  83. command._Panel.Hide() ;
  84. }
  85. function FCKTextColorCommand_AutoOnClick( ev, command )
  86. {
  87. this.className = 'ColorDeselected' ;
  88. command.SetColor( '' ) ;
  89. command._Panel.Hide() ;
  90. }
  91. function FCKTextColorCommand_MoreOnClick( ev, command )
  92. {
  93. this.className = 'ColorDeselected' ;
  94. command._Panel.Hide() ;
  95. FCKDialog.OpenDialog( 'FCKDialog_Color', FCKLang.DlgColorTitle, 'dialog/fck_colorselector.html', 410, 320,
  96. FCKTools.Bind( command, command.SetColor ) ) ;
  97. }
  98. FCKTextColorCommand.prototype._CreatePanelBody = function( targetDocument, targetDiv )
  99. {
  100. function CreateSelectionDiv()
  101. {
  102. var oDiv = targetDocument.createElement( "DIV" ) ;
  103. oDiv.className = 'ColorDeselected' ;
  104. FCKTools.AddEventListenerEx( oDiv, 'mouseover', FCKTextColorCommand_OnMouseOver ) ;
  105. FCKTools.AddEventListenerEx( oDiv, 'mouseout', FCKTextColorCommand_OnMouseOut ) ;
  106. return oDiv ;
  107. }
  108. // Create the Table that will hold all colors.
  109. var oTable = targetDiv.appendChild( targetDocument.createElement( "TABLE" ) ) ;
  110. oTable.className = 'ForceBaseFont' ; // Firefox 1.5 Bug.
  111. oTable.style.tableLayout = 'fixed' ;
  112. oTable.cellPadding = 0 ;
  113. oTable.cellSpacing = 0 ;
  114. oTable.border = 0 ;
  115. oTable.width = 150 ;
  116. var oCell = oTable.insertRow(-1).insertCell(-1) ;
  117. oCell.colSpan = 8 ;
  118. // Create the Button for the "Automatic" color selection.
  119. var oDiv = oCell.appendChild( CreateSelectionDiv() ) ;
  120. oDiv.innerHTML =
  121. '<table cellspacing="0" cellpadding="0" width="100%" border="0">
  122. <tr>
  123. <td><div class="ColorBoxBorder"><div class="ColorBox" style="background-color: #000000"></div></div></td>
  124. <td nowrap width="100%" align="center">' + FCKLang.ColorAutomatic + '</td>
  125. </tr>
  126. </table>' ;
  127. FCKTools.AddEventListenerEx( oDiv, 'click', FCKTextColorCommand_AutoOnClick, this ) ;
  128. // Dirty hack for Opera, Safari and Firefox 3.
  129. if ( !FCKBrowserInfo.IsIE )
  130. oDiv.style.width = '96%' ;
  131. // Create an array of colors based on the configuration file.
  132. var aColors = FCKConfig.FontColors.toString().split(',') ;
  133. // Create the colors table based on the array.
  134. var iCounter = 0 ;
  135. while ( iCounter < aColors.length )
  136. {
  137. var oRow = oTable.insertRow(-1) ;
  138. for ( var i = 0 ; i < 8 ; i++, iCounter++ )
  139. {
  140. // The div will be created even if no more colors are available.
  141. // Extra divs will be hidden later in the code. (#1597)
  142. if ( iCounter < aColors.length )
  143. {
  144. var colorParts = aColors[iCounter].split('/') ;
  145. var colorValue = '#' + colorParts[0] ;
  146. var colorName = colorParts[1] || colorValue ;
  147. }
  148. oDiv = oRow.insertCell(-1).appendChild( CreateSelectionDiv() ) ;
  149. oDiv.innerHTML = '<div class="ColorBoxBorder"><div class="ColorBox" style="background-color: ' + colorValue + '"></div></div>' ;
  150. if ( iCounter >= aColors.length )
  151. oDiv.style.visibility = 'hidden' ;
  152. else
  153. FCKTools.AddEventListenerEx( oDiv, 'click', FCKTextColorCommand_OnClick, [ this, colorName ] ) ;
  154. }
  155. }
  156. // Create the Row and the Cell for the "More Colors..." button.
  157. if ( FCKConfig.EnableMoreFontColors )
  158. {
  159. oCell = oTable.insertRow(-1).insertCell(-1) ;
  160. oCell.colSpan = 8 ;
  161. oDiv = oCell.appendChild( CreateSelectionDiv() ) ;
  162. oDiv.innerHTML = '<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td nowrap align="center">' + FCKLang.ColorMoreColors + '</td></tr></table>' ;
  163. FCKTools.AddEventListenerEx( oDiv, 'click', FCKTextColorCommand_MoreOnClick, this ) ;
  164. }
  165. // Dirty hack for Opera, Safari and Firefox 3.
  166. if ( !FCKBrowserInfo.IsIE )
  167. oDiv.style.width = '96%' ;
  168. }