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

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: fcktoolbar.js
  12.  *  FCKToolbar Class: represents a toolbar. A toolbar is not the complete
  13.  *  toolbar set visible, but just a strip on it... a group of items.
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. var FCKToolbar = function()
  19. {
  20. this.Items = new Array() ;
  21. this.DOMTable = document.createElement( 'table' ) ;
  22. this.DOMTable.className = 'TB_Toolbar' ;
  23. with ( this.DOMTable )
  24. {
  25. // Sets the toolbar direction. IE uses "styleFloat" and Gecko uses "cssFloat".
  26. style.styleFloat = style.cssFloat = FCKLang.Dir == 'rtl' ? 'right' : 'left' ;
  27. cellPadding = 0 ;
  28. cellSpacing = 0 ;
  29. border = 0 ;
  30. }
  31. this.DOMRow = this.DOMTable.insertRow(-1) ;
  32. var oCell = this.DOMRow.insertCell(-1) ;
  33. oCell.className = 'TB_Start' ;
  34. oCell.innerHTML = '<img src="' + FCKConfig.SkinPath + 'images/toolbar.start.gif" width="7" height="21" style="VISIBILITY: hidden" onload="this.style.visibility = '';" unselectable="on">' ;
  35. FCKToolbarSet.DOMElement.appendChild( this.DOMTable ) ;
  36. }
  37. FCKToolbar.prototype.AddItem = function( toolbarItem )
  38. {
  39. this.Items[ this.Items.length ] = toolbarItem ;
  40. toolbarItem.CreateInstance( this ) ;
  41. }
  42. FCKToolbar.prototype.AddSeparator = function()
  43. {
  44. var oCell = this.DOMRow.insertCell(-1) ;
  45. oCell.unselectable = 'on' ;
  46. oCell.innerHTML = '<img src="' + FCKConfig.SkinPath + 'images/toolbar.separator.gif" width="5" height="21" style="VISIBILITY: hidden" onload="this.style.visibility = '';" unselectable="on">' ;
  47. }
  48. FCKToolbar.prototype.AddTerminator = function()
  49. {
  50. var oCell = this.DOMRow.insertCell(-1) ;
  51. oCell.className = 'TB_End' ;
  52. oCell.innerHTML = '<img src="' + FCKConfig.SkinPath + 'images/toolbar.end.gif" width="12" height="21" style="VISIBILITY: hidden" onload="this.style.visibility = '';" unselectable="on">' ;
  53. }