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

数据库编程

开发平台:

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.  * Creation and initialization of the "FCK" object. This is the main
  22.  * object that represents an editor instance.
  23.  * (IE specific implementations)
  24.  */
  25. FCK.Description = "FCKeditor for Internet Explorer 5.5+" ;
  26. FCK._GetBehaviorsStyle = function()
  27. {
  28. if ( !FCK._BehaviorsStyle )
  29. {
  30. var sBasePath = FCKConfig.FullBasePath ;
  31. var sTableBehavior = '' ;
  32. var sStyle ;
  33. // The behaviors should be pointed using the FullBasePath to avoid security
  34. // errors when using a different BaseHref.
  35. sStyle = '<style type="text/css" _fcktemp="true">' ;
  36. if ( FCKConfig.ShowBorders )
  37. sTableBehavior = 'url(' + sBasePath + 'css/behaviors/showtableborders.htc)' ;
  38. // Disable resize handlers.
  39. sStyle += 'INPUT,TEXTAREA,SELECT,.FCK__Anchor,.FCK__PageBreak,.FCK__InputHidden' ;
  40. if ( FCKConfig.DisableObjectResizing )
  41. {
  42. sStyle += ',IMG' ;
  43. sTableBehavior += ' url(' + sBasePath + 'css/behaviors/disablehandles.htc)' ;
  44. }
  45. sStyle += ' { behavior: url(' + sBasePath + 'css/behaviors/disablehandles.htc) ; }' ;
  46. if ( sTableBehavior.length > 0 )
  47. sStyle += 'TABLE { behavior: ' + sTableBehavior + ' ; }' ;
  48. sStyle += '</style>' ;
  49. FCK._BehaviorsStyle = sStyle ;
  50. }
  51. return FCK._BehaviorsStyle ;
  52. }
  53. function Doc_OnMouseUp()
  54. {
  55. if ( FCK.EditorWindow.event.srcElement.tagName == 'HTML' )
  56. {
  57. FCK.Focus() ;
  58. FCK.EditorWindow.event.cancelBubble = true ;
  59. FCK.EditorWindow.event.returnValue = false ;
  60. }
  61. }
  62. function Doc_OnPaste()
  63. {
  64. var body = FCK.EditorDocument.body ;
  65. body.detachEvent( 'onpaste', Doc_OnPaste ) ;
  66. var ret = FCK.Paste( !FCKConfig.ForcePasteAsPlainText && !FCKConfig.AutoDetectPasteFromWord ) ;
  67. body.attachEvent( 'onpaste', Doc_OnPaste ) ;
  68. return ret ;
  69. }
  70. function Doc_OnDblClick()
  71. {
  72. FCK.OnDoubleClick( FCK.EditorWindow.event.srcElement ) ;
  73. FCK.EditorWindow.event.cancelBubble = true ;
  74. }
  75. function Doc_OnSelectionChange()
  76. {
  77. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  78. }
  79. function Doc_OnDrop()
  80. {
  81. if ( FCK.MouseDownFlag )
  82. {
  83. FCK.MouseDownFlag = false ;
  84. return ;
  85. }
  86. var evt = FCK.EditorWindow.event ;
  87. if ( FCKConfig.ForcePasteAsPlainText )
  88. {
  89. if ( FCK._CheckIsPastingEnabled() || FCKConfig.ShowDropDialog )
  90. FCK.PasteAsPlainText( evt.dataTransfer.getData( 'Text' ) ) ;
  91. }
  92. else
  93. {
  94. if ( FCKConfig.ShowDropDialog ) 
  95. FCKTools.RunFunction( FCKDialog.OpenDialog, 
  96. FCKDialog, ['FCKDialog_Paste', FCKLang.Paste, 'dialog/fck_paste.html', 400, 330, 'Security'] ) ;
  97. }
  98. evt.returnValue = false ;
  99. evt.cancelBubble = true ;
  100. }
  101. FCK.InitializeBehaviors = function( dontReturn )
  102. {
  103. // Set the focus to the editable area when clicking in the document area.
  104. // TODO: The cursor must be positioned at the end.
  105. this.EditorDocument.attachEvent( 'onmouseup', Doc_OnMouseUp ) ;
  106. // Intercept pasting operations
  107. this.EditorDocument.body.attachEvent( 'onpaste', Doc_OnPaste ) ;
  108. // Intercept drop operations
  109. this.EditorDocument.body.attachEvent( 'ondrop', Doc_OnDrop ) ;
  110. // Reset the context menu.
  111. FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument.body ) ;
  112. this.EditorDocument.attachEvent("onkeydown", FCK._KeyDownListener ) ;
  113. this.EditorDocument.attachEvent("ondblclick", Doc_OnDblClick ) ;
  114. // Catch cursor selection changes.
  115. this.EditorDocument.attachEvent("onselectionchange", Doc_OnSelectionChange ) ;
  116. }
  117. FCK.InsertHtml = function( html )
  118. {
  119. html = FCKConfig.ProtectedSource.Protect( html ) ;
  120. html = FCK.ProtectEvents( html ) ;
  121. html = FCK.ProtectUrls( html ) ;
  122. html = FCK.ProtectTags( html ) ;
  123. // FCK.Focus() ;
  124. FCK.EditorWindow.focus() ;
  125. FCKUndo.SaveUndoStep() ;
  126. // Gets the actual selection.
  127. var oSel = FCK.EditorDocument.selection ;
  128. // Deletes the actual selection contents.
  129. if ( oSel.type.toLowerCase() == 'control' )
  130. oSel.clear() ;
  131. // Using the following trick, any comment in the beginning of the HTML will
  132. // be preserved.
  133. html = '<span id="__fakeFCKRemove__">&nbsp;</span>' + html ;
  134. // Insert the HTML.
  135. oSel.createRange().pasteHTML( html ) ;
  136. // Remove the fake node
  137. FCK.EditorDocument.getElementById('__fakeFCKRemove__').removeNode( true ) ;
  138. FCKDocumentProcessor.Process( FCK.EditorDocument ) ;
  139. // For some strange reason the SaveUndoStep() call doesn't activate the undo button at the first InsertHtml() call.
  140. this.Events.FireEvent( "OnSelectionChange" ) ;
  141. }
  142. FCK.SetInnerHtml = function( html ) // IE Only
  143. {
  144. var oDoc = FCK.EditorDocument ;
  145. // Using the following trick, any comment in the beginning of the HTML will
  146. // be preserved.
  147. oDoc.body.innerHTML = '<div id="__fakeFCKRemove__">&nbsp;</div>' + html ;
  148. oDoc.getElementById('__fakeFCKRemove__').removeNode( true ) ;
  149. }
  150. function FCK_PreloadImages()
  151. {
  152. var oPreloader = new FCKImagePreloader() ;
  153. // Add the configured images.
  154. oPreloader.AddImages( FCKConfig.PreloadImages ) ;
  155. // Add the skin icons strip.
  156. oPreloader.AddImages( FCKConfig.SkinPath + 'fck_strip.gif' ) ;
  157. oPreloader.OnComplete = LoadToolbarSetup ;
  158. oPreloader.Start() ;
  159. }
  160. // Disable the context menu in the editor (outside the editing area).
  161. function Document_OnContextMenu()
  162. {
  163. return ( event.srcElement._FCKShowContextMenu == true ) ;
  164. }
  165. document.oncontextmenu = Document_OnContextMenu ;
  166. function FCK_Cleanup()
  167. {
  168. this.LinkedField = null ;
  169. this.EditorWindow = null ;
  170. this.EditorDocument = null ;
  171. }
  172. FCK._ExecPaste = function()
  173. {
  174. // As we call ExecuteNamedCommand('Paste'), it would enter in a loop. So, let's use a semaphore.
  175. if ( FCK._PasteIsRunning )
  176. return true ;
  177. if ( FCKConfig.ForcePasteAsPlainText )
  178. {
  179. FCK.PasteAsPlainText() ;
  180. return false ;
  181. }
  182. var sHTML = FCK._CheckIsPastingEnabled( true ) ;
  183. if ( sHTML === false )
  184. FCKTools.RunFunction( FCKDialog.OpenDialog, FCKDialog, ['FCKDialog_Paste', FCKLang.Paste, 'dialog/fck_paste.html', 400, 330, 'Security'] ) ;
  185. else
  186. {
  187. if ( FCKConfig.AutoDetectPasteFromWord && sHTML.length > 0 )
  188. {
  189. var re = /<w[^>]*(( class="?MsoNormal"?)|(="mso-))/gi ;
  190. if ( re.test( sHTML ) )
  191. {
  192. if ( confirm( FCKLang.PasteWordConfirm ) )
  193. {
  194. FCK.PasteFromWord() ;
  195. return false ;
  196. }
  197. }
  198. }
  199. // Instead of inserting the retrieved HTML, let's leave the OS work for us,
  200. // by calling FCK.ExecuteNamedCommand( 'Paste' ). It could give better results.
  201. // Enable the semaphore to avoid a loop.
  202. FCK._PasteIsRunning = true ;
  203. FCK.ExecuteNamedCommand( 'Paste' ) ;
  204. // Removes the semaphore.
  205. delete FCK._PasteIsRunning ;
  206. }
  207. // Let's always make a custom implementation (return false), otherwise
  208. // the new Keyboard Handler may conflict with this code, and the CTRL+V code
  209. // could result in a simple "V" being pasted.
  210. return false ;
  211. }
  212. FCK.PasteAsPlainText = function( forceText )
  213. {
  214. if ( !FCK._CheckIsPastingEnabled() )
  215. {
  216. FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.PasteAsText, 'dialog/fck_paste.html', 400, 330, 'PlainText' ) ;
  217. return ;
  218. }
  219. // Get the data available in the clipboard in text format.
  220. var sText = null ;
  221. if ( ! forceText )
  222. sText = clipboardData.getData("Text") ;
  223. else 
  224. sText = forceText ;
  225. if ( sText && sText.length > 0 )
  226. {
  227. // Replace the carriage returns with <BR>
  228. sText = FCKTools.HTMLEncode( sText ) ;
  229. sText = FCKTools.ProcessLineBreaks( window, FCKConfig, sText ) ;
  230. // Insert the resulting data in the editor.
  231. this.InsertHtml( sText ) ;
  232. }
  233. }
  234. FCK._CheckIsPastingEnabled = function( returnContents )
  235. {
  236. // The following seams to be the only reliable way to check is script
  237. // pasting operations are enabled in the security settings of IE6 and IE7.
  238. // It adds a little bit of overhead to the check, but so far that's the
  239. // only way, mainly because of IE7.
  240. FCK._PasteIsEnabled = false ;
  241. document.body.attachEvent( 'onpaste', FCK_CheckPasting_Listener ) ;
  242. // The execCommand in GetClipboardHTML will fire the "onpaste", only if the
  243. // security settings are enabled.
  244. var oReturn = FCK.GetClipboardHTML() ;
  245. document.body.detachEvent( 'onpaste', FCK_CheckPasting_Listener ) ;
  246. if ( FCK._PasteIsEnabled )
  247. {
  248. if ( !returnContents )
  249. oReturn = true ;
  250. }
  251. else
  252. oReturn = false ;
  253. delete FCK._PasteIsEnabled ;
  254. return oReturn ;
  255. }
  256. function FCK_CheckPasting_Listener()
  257. {
  258. FCK._PasteIsEnabled = true ;
  259. }
  260. FCK.GetClipboardHTML = function()
  261. {
  262. var oDiv = document.getElementById( '___FCKHiddenDiv' ) ;
  263. if ( !oDiv )
  264. {
  265. oDiv = document.createElement( 'DIV' ) ;
  266. oDiv.id = '___FCKHiddenDiv' ;
  267. var oDivStyle = oDiv.style ;
  268. oDivStyle.position = 'absolute' ;
  269. oDivStyle.visibility = oDivStyle.overflow = 'hidden' ;
  270. oDivStyle.width = oDivStyle.height = 1 ;
  271. document.body.appendChild( oDiv ) ;
  272. }
  273. oDiv.innerHTML = '' ;
  274. var oTextRange = document.body.createTextRange() ;
  275. oTextRange.moveToElementText( oDiv ) ;
  276. oTextRange.execCommand( 'Paste' ) ;
  277. var sData = oDiv.innerHTML ;
  278. oDiv.innerHTML = '' ;
  279. return sData ;
  280. }
  281. FCK.CreateLink = function( url, noUndo )
  282. {
  283. // Creates the array that will be returned. It contains one or more created links (see #220).
  284. var aCreatedLinks = new Array() ;
  285. // Remove any existing link in the selection.
  286. FCK.ExecuteNamedCommand( 'Unlink', null, false, !!noUndo ) ;
  287. if ( url.length > 0 )
  288. {
  289. // If there are several images, and you try to link each one, all the images get inside the link:
  290. // <img><img> -> <a><img></a><img> -> <a><img><img></a> due to the call to 'CreateLink' (bug in IE)
  291. if (FCKSelection.GetType() == 'Control')
  292. {
  293. // Create a link
  294. var oLink = this.EditorDocument.createElement( 'A' ) ;
  295. oLink.href = url ;
  296. // Get the selected object
  297. var oControl = FCKSelection.GetSelectedElement() ;
  298. // Put the link just before the object
  299. oControl.parentNode.insertBefore(oLink, oControl) ;
  300. // Move the object inside the link
  301. oControl.parentNode.removeChild( oControl ) ;
  302. oLink.appendChild( oControl ) ;
  303. return [ oLink ] ;
  304. }
  305. // Generate a temporary name for the link.
  306. var sTempUrl = 'javascript:void(0);/*' + ( new Date().getTime() ) + '*/' ;
  307. // Use the internal "CreateLink" command to create the link.
  308. FCK.ExecuteNamedCommand( 'CreateLink', sTempUrl, false, !!noUndo ) ;
  309. // Look for the just create link.
  310. var oLinks = this.EditorDocument.links ;
  311. for ( i = 0 ; i < oLinks.length ; i++ )
  312. {
  313. var oLink = oLinks[i] ;
  314. // Check it this a newly created link.
  315. // getAttribute must be used. oLink.url may cause problems with IE7 (#555).
  316. if ( oLink.getAttribute( 'href', 2 ) == sTempUrl )
  317. {
  318. var sInnerHtml = oLink.innerHTML ; // Save the innerHTML (IE changes it if it is like an URL).
  319. oLink.href = url ;
  320. oLink.innerHTML = sInnerHtml ; // Restore the innerHTML.
  321. // If the last child is a <br> move it outside the link or it
  322. // will be too easy to select this link again #388.
  323. var oLastChild = oLink.lastChild ;
  324. if ( oLastChild && oLastChild.nodeName == 'BR' )
  325. {
  326. // Move the BR after the link.
  327. FCKDomTools.InsertAfterNode( oLink, oLink.removeChild( oLastChild ) ) ;
  328. }
  329. aCreatedLinks.push( oLink ) ;
  330. }
  331. }
  332. }
  333. return aCreatedLinks ;
  334. }