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

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_1_ie.js
  12.  *  This is the first part of the "FCK" object creation. This is the main
  13.  *  object that represents an editor instance.
  14.  *  (IE specific implementations)
  15.  * 
  16.  * File Authors:
  17.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  18.  */
  19. FCK.Description = "FCKeditor for Internet Explorer 5.5+" ;
  20. // The behaviors should be pointed using the FullBasePath to avoid security
  21. // errors when using a differente BaseHref.
  22. FCK._BehaviorsStyle =
  23. '<style type="text/css" _fcktemp="true"> 
  24. INPUT { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/hiddenfield.htc) ; } 
  25. INPUT { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; } 
  26. TEXTAREA { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; } 
  27. SELECT { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; }' ;
  28. if ( FCKConfig.ShowBorders )
  29. FCK._BehaviorsStyle += 'TABLE { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/showtableborders.htc) ; }' ;
  30. if ( FCKConfig.DisableImageHandles )
  31. FCK._BehaviorsStyle += 'IMG { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; }' ;
  32. if ( FCKConfig.DisableTableHandles )
  33. FCK._BehaviorsStyle += 'TABLE { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; }' ;
  34. // Disable anchors handles
  35. FCK._BehaviorsStyle += '.FCK__Anchor { behavior: url(' + FCKConfig.FullBasePath + 'css/behaviors/disablehandles.htc) ; }' ;
  36. FCK._BehaviorsStyle += '</style>' ;
  37. function Doc_OnMouseDown()
  38. {
  39. FCK.Focus() ;
  40. FCK.EditorWindow.event.cancelBubble = true ;
  41. FCK.EditorWindow.event.returnValue = false ;
  42. }
  43. function Doc_OnPaste()
  44. {
  45. if ( FCK.Status == FCK_STATUS_COMPLETE )
  46. return FCK.Events.FireEvent( "OnPaste" ) ;
  47. else
  48. return false ;
  49. }
  50. function Doc_OnContextMenu()
  51. {
  52. var e = FCK.EditorWindow.event ;
  53. FCK.ShowContextMenu( e.screenX, e.screenY ) ;
  54. return false ;
  55. }
  56. function Doc_OnKeyDown()
  57. {
  58. var e = FCK.EditorWindow.event ;
  59. if ( e.keyCode == 13 && FCKConfig.UseBROnCarriageReturn ) // ENTER
  60. {
  61. if ( (e.ctrlKey || e.altKey || e.shiftKey) )
  62. return true ;
  63. else
  64. {
  65. // We must ignore it if we are inside a List.
  66. if ( FCK.EditorDocument.queryCommandState( 'InsertOrderedList' ) || FCK.EditorDocument.queryCommandState( 'InsertUnorderedList' ) )
  67. return true ;
  68. // Insert the <BR> (The &nbsp; must be also inserted to make it work)
  69. FCK.InsertHtml("<br>&nbsp;") ;
  70. // Remove the &nbsp;
  71. var oRange = FCK.EditorDocument.selection.createRange() ;
  72. oRange.moveStart('character',-1) ;
  73. oRange.select() ;
  74. FCK.EditorDocument.selection.clear() ;
  75. return false ;
  76. }
  77. }
  78. else if ( e.keyCode == 9 && FCKConfig.TabSpaces > 0 && !(e.ctrlKey || e.altKey || e.shiftKey) ) // TAB
  79. {
  80. FCK.InsertHtml( window.FCKTabHTML ) ;
  81. return false ;
  82. }
  83. return true ;
  84. }
  85. function Doc_OnKeyDownUndo()
  86. {
  87. if ( !FCKUndo.Typing )
  88. {
  89. FCKUndo.SaveUndoStep() ;
  90. FCKUndo.Typing = true ;
  91. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  92. }
  93. FCKUndo.TypesCount++ ;
  94. if ( FCKUndo.TypesCount > FCKUndo.MaxTypes )
  95. {
  96. FCKUndo.TypesCount = 0 ;
  97. FCKUndo.SaveUndoStep() ;
  98. }
  99. }
  100. function Doc_OnDblClick()
  101. {
  102. FCK.OnDoubleClick( FCK.EditorWindow.event.srcElement ) ;
  103. FCK.EditorWindow.event.cancelBubble = true ;
  104. }
  105. function Doc_OnSelectionChange()
  106. {
  107. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  108. }
  109. FCK.InitializeBehaviors = function( dontReturn )
  110. {
  111. // Set the focus to the editable area when clicking in the document area.
  112. // TODO: The cursor must be positioned at the end.
  113. this.EditorDocument.attachEvent( 'onmousedown', Doc_OnMouseDown ) ;
  114. this.EditorDocument.attachEvent( 'onmouseup', Doc_OnMouseDown ) ;
  115. // Intercept pasting operations
  116. this.EditorDocument.body.attachEvent( 'onpaste', Doc_OnPaste ) ;
  117. // Disable Right-Click and shows the context menu.
  118. this.EditorDocument.attachEvent('oncontextmenu', Doc_OnContextMenu ) ;
  119. // Check if key strokes must be monitored.
  120. if ( FCKConfig.UseBROnCarriageReturn || FCKConfig.TabSpaces > 0 )
  121. {
  122. // Build the "TAB" key replacement.
  123. if ( FCKConfig.TabSpaces > 0 )
  124. {
  125. window.FCKTabHTML = '' ;
  126. for ( i = 0 ; i < FCKConfig.TabSpaces ; i++ )
  127. window.FCKTabHTML += "&nbsp;" ;
  128. }
  129. this.EditorDocument.attachEvent("onkeydown", Doc_OnKeyDown ) ;
  130. }
  131. this.EditorDocument.attachEvent("onkeydown", Doc_OnKeyDownUndo ) ;
  132. this.EditorDocument.attachEvent("ondblclick", Doc_OnDblClick ) ;
  133. // Catch cursor movements
  134. this.EditorDocument.attachEvent("onselectionchange", Doc_OnSelectionChange ) ;
  135. //Enable editing
  136. // this.EditorDocument.body.contentEditable = true ;
  137. }
  138. FCK.Focus = function()
  139. {
  140. try
  141. {
  142. if ( FCK.EditMode == FCK_EDITMODE_WYSIWYG )
  143. FCK.EditorDocument.body.focus() ;
  144. else
  145. document.getElementById('eSourceField').focus() ;
  146. }
  147. catch(e) {}
  148. }
  149. FCK.SetHTML = function( html, forceWYSIWYG )
  150. {
  151. if ( forceWYSIWYG || FCK.EditMode == FCK_EDITMODE_WYSIWYG )
  152. {
  153. // TODO: Wait stable version and remove the following commented lines.
  154. // In IE, if you do document.body.innerHTML = '<p><hr></p>' it throws a "Unknow runtime error".
  155. // To solve it we must add a fake (safe) tag before it, and then remove it.
  156. // this.EditorDocument.body.innerHTML = '<div id="__fakeFCKRemove__">&nbsp;</div>' + html.replace( FCKRegexLib.AposEntity, '&#39;' ) ;
  157. // this.EditorDocument.getElementById('__fakeFCKRemove__').removeNode(true) ;
  158. var sHtml ;
  159. if ( FCKConfig.FullPage )
  160. {
  161. var sHtml =
  162. FCK._BehaviorsStyle +
  163. '<link href="' + FCKConfig.FullBasePath + 'css/fck_internal.css' + '" rel="stylesheet" type="text/css" _fcktemp="true" />' ;
  164. if ( FCK.TempBaseTag.length > 0 && !FCKRegexLib.HasBaseTag.test( html ) )
  165. sHtml += FCK.TempBaseTag ;
  166. sHtml = html.replace( FCKRegexLib.HeadCloser, sHtml + '</head>' ) ;
  167. }
  168. else
  169. {
  170. sHtml =
  171. FCKConfig.DocType +
  172. '<html dir="' + FCKConfig.ContentLangDirection + '"' ;
  173. if ( FCKConfig.IEForceVScroll )
  174. sHtml += ' style="overflow-y: scroll"' ;
  175. sHtml +=
  176. '><head><title></title>' +
  177. '<link href="' + FCKConfig.EditorAreaCSS + '" rel="stylesheet" type="text/css" />' +
  178. '<link href="' + FCKConfig.FullBasePath + 'css/fck_internal.css' + '" rel="stylesheet" type="text/css" _fcktemp="true" />' ;
  179. sHtml += FCK._BehaviorsStyle ;
  180. sHtml += FCK.TempBaseTag ;
  181. sHtml += '</head><body>' + html  + '</body></html>' ;
  182. }
  183. this.EditorDocument.open( '', '_self', '', true ) ;
  184. this.EditorDocument.write( sHtml ) ;
  185. this.EditorDocument.close() ;
  186. this.InitializeBehaviors() ;
  187. this.EditorDocument.body.contentEditable = true ;
  188. FCK.OnAfterSetHTML() ;
  189. // TODO: Wait stable version and remove the following commented lines.
  190. // this.EditorDocument.body.innerHTML = '' ;
  191. // if ( html && html.length > 0 )
  192. // this.EditorDocument.write( html ) ;
  193. // this.EditorDocument.dir = FCKConfig.ContentLangDirection ;
  194. }
  195. else
  196. document.getElementById('eSourceField').value = html ;
  197. }
  198. FCK.InsertHtml = function( html )
  199. {
  200. FCK.Focus() ;
  201. FCKUndo.SaveUndoStep() ;
  202. // Gets the actual selection.
  203. var oSel = FCK.EditorDocument.selection ;
  204. // Deletes the actual selection contents.
  205. if ( oSel.type.toLowerCase() != "none" )
  206. oSel.clear() ;
  207. // Inset the HTML.
  208. oSel.createRange().pasteHTML( html ) ;
  209. }