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

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: fck_constants.js
  12.  *  Defines some constants used by the editor. These constants are also 
  13.  *  globally available in the page where the editor is placed.
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. // Editor Instance Status.
  19. FCK_STATUS_NOTLOADED = window.parent.FCK_STATUS_NOTLOADED = 0 ;
  20. FCK_STATUS_ACTIVE = window.parent.FCK_STATUS_ACTIVE = 1 ;
  21. FCK_STATUS_COMPLETE = window.parent.FCK_STATUS_COMPLETE = 2 ;
  22. // Tristate Operations.
  23. FCK_TRISTATE_OFF = window.parent.FCK_TRISTATE_OFF = 0 ;
  24. FCK_TRISTATE_ON = window.parent.FCK_TRISTATE_ON = 1 ;
  25. FCK_TRISTATE_DISABLED = window.parent.FCK_TRISTATE_DISABLED = -1 ;
  26. // For unknown values.
  27. FCK_UNKNOWN = window.parent.FCK_UNKNOWN = -1000 ;
  28. // Toolbar Items Style.
  29. FCK_TOOLBARITEM_ONLYICON = window.parent.FCK_TOOLBARITEM_ONLYTEXT = 0 ;
  30. FCK_TOOLBARITEM_ONLYTEXT = window.parent.FCK_TOOLBARITEM_ONLYTEXT = 1 ;
  31. FCK_TOOLBARITEM_ICONTEXT = window.parent.FCK_TOOLBARITEM_ONLYTEXT = 2 ;
  32. // Edit Mode
  33. FCK_EDITMODE_WYSIWYG = window.parent.FCK_EDITMODE_WYSIWYG = 0 ;
  34. FCK_EDITMODE_SOURCE = window.parent.FCK_EDITMODE_SOURCE = 1 ;