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

数据库编程

开发平台:

Visual C++

  1. var FCKDragTableHandler =
  2. {
  3. "_DragState" : 0,
  4. "_LeftCell" : null,
  5. "_RightCell" : null,
  6. "_MouseMoveMode" : 0, // 0 - find candidate cells for resizing, 1 - drag to resize
  7. "_ResizeBar" : null,
  8. "_OriginalX" : null,
  9. "_MinimumX" : null,
  10. "_MaximumX" : null,
  11. "_LastX" : null,
  12. "_TableMap" : null,
  13. "_IsInsideNode" : function( w, domNode, pos )
  14. {
  15. var myCoords = FCKTools.GetWindowPosition( w, domNode ) ;
  16. var xMin = myCoords.x ;
  17. var yMin = myCoords.y ;
  18. var xMax = parseInt( xMin, 10 ) + parseInt( domNode.offsetWidth, 10 ) ;
  19. var yMax = parseInt( yMin, 10 ) + parseInt( domNode.offsetHeight, 10 ) ;
  20. if ( pos.x >= xMin && pos.x <= xMax && pos.y >= yMin && pos.y <= yMax )
  21. return true;
  22. return false;
  23. },
  24. "_GetBorderCells" : function( w, tableNode, tableMap, mouse )
  25. {
  26. // Enumerate all the cells in the table.
  27. var cells = [] ;
  28. for ( var i = 0 ; i < tableNode.rows.length ; i++ )
  29. {
  30. var r = tableNode.rows[i] ;
  31. for ( var j = 0 ; j < r.cells.length ; j++ )
  32. cells.push( r.cells[j] ) ;
  33. }
  34. if ( cells.length < 1 )
  35. return null ;
  36. // Get the cells whose right or left border is nearest to the mouse cursor's x coordinate.
  37. var minRxDist = null ;
  38. var lxDist = null ;
  39. var minYDist = null ;
  40. var rbCell = null ;
  41. var lbCell = null ;
  42. for ( var i = 0 ; i < cells.length ; i++ )
  43. {
  44. var pos = FCKTools.GetWindowPosition( w, cells[i] ) ;
  45. var rightX = pos.x + parseInt( cells[i].clientWidth, 10 ) ;
  46. var rxDist = mouse.x - rightX ;
  47. var yDist = mouse.y - ( pos.y + ( cells[i].clientHeight / 2 ) ) ;
  48. if ( minRxDist == null ||
  49. ( Math.abs( rxDist ) <= Math.abs( minRxDist ) &&
  50.   ( minYDist == null || Math.abs( yDist ) <= Math.abs( minYDist ) ) ) )
  51. {
  52. minRxDist = rxDist ;
  53. minYDist = yDist ;
  54. rbCell = cells[i] ;
  55. }
  56. }
  57. /*
  58. var rowNode = FCKTools.GetElementAscensor( rbCell, "tr" ) ;
  59. var cellIndex = rbCell.cellIndex + 1 ;
  60. if ( cellIndex >= rowNode.cells.length )
  61. return null ;
  62. lbCell = rowNode.cells.item( cellIndex ) ;
  63. */
  64. var rowIdx = rbCell.parentNode.rowIndex ;
  65. var colIdx = FCKTableHandler._GetCellIndexSpan( tableMap, rowIdx, rbCell ) ;
  66. var colSpan = isNaN( rbCell.colSpan ) ? 1 : rbCell.colSpan ;
  67. lbCell = tableMap[rowIdx][colIdx + colSpan] ;
  68. if ( ! lbCell )
  69. return null ;
  70. // Abort if too far from the border.
  71. lxDist = mouse.x - FCKTools.GetWindowPosition( w, lbCell ).x ;
  72. if ( lxDist < 0 && minRxDist < 0 && minRxDist < -2 )
  73. return null ;
  74. if ( lxDist > 0 && minRxDist > 0 && lxDist > 3 )
  75. return null ;
  76. return { "leftCell" : rbCell, "rightCell" : lbCell } ;
  77. },
  78. "_GetResizeBarPosition" : function()
  79. {
  80. var row = FCKTools.GetElementAscensor( this._RightCell, "tr" ) ;
  81. return FCKTableHandler._GetCellIndexSpan( this._TableMap, row.rowIndex, this._RightCell ) ;
  82. },
  83. "_ResizeBarMouseDownListener" : function( evt )
  84. {
  85. if ( ! evt )
  86. evt = window.event ;
  87. if ( FCKDragTableHandler._LeftCell )
  88. FCKDragTableHandler._MouseMoveMode = 1 ;
  89. if ( FCKBrowserInfo.IsIE )
  90. FCKDragTableHandler._ResizeBar.filters.item("DXImageTransform.Microsoft.Alpha").opacity = 50 ;
  91. else
  92. FCKDragTableHandler._ResizeBar.style.opacity = 0.5 ;
  93. FCKDragTableHandler._OriginalX = evt.clientX ;
  94. // Calculate maximum and minimum x-coordinate delta.
  95. var borderIndex = FCKDragTableHandler._GetResizeBarPosition() ;
  96. var offset = FCKTools.GetDocumentPosition( window, FCK.EditingArea.IFrame ) ;
  97. var table = FCKTools.GetElementAscensor( FCKDragTableHandler._LeftCell, "table" );
  98. var minX = null ;
  99. var maxX = null ;
  100. for ( var r = 0 ; r < FCKDragTableHandler._TableMap.length ; r++ )
  101. {
  102. var leftCell = FCKDragTableHandler._TableMap[r][borderIndex - 1] ;
  103. var rightCell = FCKDragTableHandler._TableMap[r][borderIndex] ;
  104. var leftPosition = FCKTools.GetWindowPosition( FCK.EditorWindow, leftCell ) ;
  105. var rightPosition = FCKTools.GetWindowPosition( FCK.EditorWindow, rightCell ) ;
  106. var leftPadding = FCKDragTableHandler._GetCellPadding( table, leftCell ) ;
  107. var rightPadding = FCKDragTableHandler._GetCellPadding( table, rightCell ) ;
  108. if ( minX == null || leftPosition.x + leftPadding > minX )
  109. minX = leftPosition.x + leftPadding ;
  110. if ( maxX == null || rightPosition.x + rightCell.clientWidth - rightPadding < maxX )
  111. maxX = rightPosition.x + rightCell.clientWidth - rightPadding ;
  112. }
  113. FCKDragTableHandler._MinimumX = minX + offset.x ;
  114. FCKDragTableHandler._MaximumX = maxX + offset.x ;
  115. FCKDragTableHandler._LastX = null ;
  116. },
  117. "_ResizeBarMouseUpListener" : function( evt )
  118. {
  119. if ( ! evt )
  120. evt = window.event ;
  121. FCKDragTableHandler._MouseMoveMode = 0 ;
  122. FCKDragTableHandler._HideResizeBar() ;
  123. if ( FCKDragTableHandler._LastX == null )
  124. return ;
  125. // Calculate the delta value.
  126. var deltaX = FCKDragTableHandler._LastX - FCKDragTableHandler._OriginalX ;
  127. // Then, build an array of current column width values.
  128. // This algorithm can be very slow if the cells have insane colSpan values. (e.g. colSpan=1000).
  129. var table = FCKTools.GetElementAscensor( FCKDragTableHandler._LeftCell, "table" ) ;
  130. var colArray = [] ;
  131. var tableMap = FCKDragTableHandler._TableMap ;
  132. for ( var i = 0 ; i < tableMap.length ; i++ )
  133. {
  134. for ( var j = 0 ; j < tableMap[i].length ; j++ )
  135. {
  136. var cell = tableMap[i][j] ;
  137. var width = FCKDragTableHandler._GetCellWidth( table, cell ) ;
  138. var colSpan = isNaN( cell.colSpan) ? 1 : cell.colSpan ;
  139. if ( colArray.length <= j )
  140. colArray.push( { width : width / colSpan, colSpan : colSpan } ) ;
  141. else
  142. {
  143. var guessItem = colArray[j] ;
  144. if ( guessItem.colSpan > colSpan )
  145. {
  146. guessItem.width = width / colSpan ;
  147. guessItem.colSpan = colSpan ;
  148. }
  149. }
  150. }
  151. }
  152. // Find out the equivalent column index of the two cells selected for resizing.
  153. colIndex = FCKDragTableHandler._GetResizeBarPosition() ;
  154. // Note that colIndex must be at least 1 here, so it's safe to subtract 1 from it.
  155. colIndex-- ;
  156. // Modify the widths in the colArray according to the mouse coordinate delta value.
  157. colArray[colIndex].width += deltaX ;
  158. colArray[colIndex + 1].width -= deltaX ;
  159. // Clear all cell widths, delete all <col> elements from the table.
  160. for ( var r = 0 ; r < table.rows.length ; r++ )
  161. {
  162. var row = table.rows.item( r ) ;
  163. for ( var c = 0 ; c < row.cells.length ; c++ )
  164. {
  165. var cell = row.cells.item( c ) ;
  166. cell.width = "" ;
  167. cell.style.width = "" ;
  168. }
  169. }
  170. var colElements = table.getElementsByTagName( "col" ) ;
  171. for ( var i = colElements.length - 1 ; i >= 0 ; i-- )
  172. colElements[i].parentNode.removeChild( colElements[i] ) ;
  173. // Set new cell widths.
  174. var processedCells = [] ;
  175. for ( var i = 0 ; i < tableMap.length ; i++ )
  176. {
  177. for ( var j = 0 ; j < tableMap[i].length ; j++ )
  178. {
  179. var cell = tableMap[i][j] ;
  180. if ( cell._Processed )
  181. continue ;
  182. if ( tableMap[i][j-1] != cell )
  183. cell.width = colArray[j].width ;
  184. else
  185. cell.width = parseInt( cell.width, 10 ) + parseInt( colArray[j].width, 10 ) ;
  186. if ( tableMap[i][j+1] != cell )
  187. {
  188. processedCells.push( cell ) ;
  189. cell._Processed = true ;
  190. }
  191. }
  192. }
  193. for ( var i = 0 ; i < processedCells.length ; i++ )
  194. {
  195. if ( FCKBrowserInfo.IsIE )
  196. processedCells[i].removeAttribute( '_Processed' ) ;
  197. else
  198. delete processedCells[i]._Processed ;
  199. }
  200. FCKDragTableHandler._LastX = null ;
  201. },
  202. "_ResizeBarMouseMoveListener" : function( evt )
  203. {
  204. if ( ! evt )
  205. evt = window.event ;
  206. if ( FCKDragTableHandler._MouseMoveMode == 0 )
  207. return FCKDragTableHandler._MouseFindHandler( FCK, evt ) ;
  208. else
  209. return FCKDragTableHandler._MouseDragHandler( FCK, evt ) ;
  210. },
  211. // Calculate the padding of a table cell.
  212. // It returns the value of paddingLeft + paddingRight of a table cell.
  213. // This function is used, in part, to calculate the width parameter that should be used for setting cell widths.
  214. // The equation in question is clientWidth = paddingLeft + paddingRight + width.
  215. // So that width = clientWidth - paddingLeft - paddingRight.
  216. // The return value of this function must be pixel accurate acorss all supported browsers, so be careful if you need to modify it.
  217. "_GetCellPadding" : function( table, cell )
  218. {
  219. var attrGuess = parseInt( table.cellPadding, 10 ) * 2 ;
  220. var cssGuess = null ;
  221. if ( typeof( window.getComputedStyle ) == "function" )
  222. {
  223. var styleObj = window.getComputedStyle( cell, null ) ;
  224. cssGuess = parseInt( styleObj.getPropertyValue( "padding-left" ), 10 ) +
  225. parseInt( styleObj.getPropertyValue( "padding-right" ), 10 ) ;
  226. }
  227. else
  228. cssGuess = parseInt( cell.currentStyle.paddingLeft, 10 ) + parseInt (cell.currentStyle.paddingRight, 10 ) ;
  229. var cssRuntime = cell.style.padding ;
  230. if ( isFinite( cssRuntime ) )
  231. cssGuess = parseInt( cssRuntime, 10 ) * 2 ;
  232. else
  233. {
  234. cssRuntime = cell.style.paddingLeft ;
  235. if ( isFinite( cssRuntime ) )
  236. cssGuess = parseInt( cssRuntime, 10 ) ;
  237. cssRuntime = cell.style.paddingRight ;
  238. if ( isFinite( cssRuntime ) )
  239. cssGuess += parseInt( cssRuntime, 10 ) ;
  240. }
  241. attrGuess = parseInt( attrGuess, 10 ) ;
  242. cssGuess = parseInt( cssGuess, 10 ) ;
  243. if ( isNaN( attrGuess ) )
  244. attrGuess = 0 ;
  245. if ( isNaN( cssGuess ) )
  246. cssGuess = 0 ;
  247. return Math.max( attrGuess, cssGuess ) ;
  248. },
  249. // Calculate the real width of the table cell.
  250. // The real width of the table cell is the pixel width that you can set to the width attribute of the table cell and after
  251. // that, the table cell should be of exactly the same width as before.
  252. // The real width of a table cell can be calculated as:
  253. // width = clientWidth - paddingLeft - paddingRight.
  254. "_GetCellWidth" : function( table, cell )
  255. {
  256. var clientWidth = cell.clientWidth ;
  257. if ( isNaN( clientWidth ) )
  258. clientWidth = 0 ;
  259. return clientWidth - this._GetCellPadding( table, cell ) ;
  260. },
  261. "MouseMoveListener" : function( FCK, evt )
  262. {
  263. if ( FCKDragTableHandler._MouseMoveMode == 0 )
  264. return FCKDragTableHandler._MouseFindHandler( FCK, evt ) ;
  265. else
  266. return FCKDragTableHandler._MouseDragHandler( FCK, evt ) ;
  267. },
  268. "_MouseFindHandler" : function( FCK, evt )
  269. {
  270. if ( FCK.MouseDownFlag )
  271. return ;
  272. var node = evt.srcElement || evt.target ;
  273. try
  274. {
  275. if ( ! node || node.nodeType != 1 )
  276. {
  277. this._HideResizeBar() ;
  278. return ;
  279. }
  280. }
  281. catch ( e )
  282. {
  283. this._HideResizeBar() ;
  284. return ;
  285. }
  286. // Since this function might be called from the editing area iframe or the outer fckeditor iframe,
  287. // the mouse point coordinates from evt.clientX/Y can have different reference points.
  288. // We need to resolve the mouse pointer position relative to the editing area iframe.
  289. var mouseX = evt.clientX ;
  290. var mouseY = evt.clientY ;
  291. if ( node.ownerDocument == document )
  292. {
  293. var offset = FCKTools.GetDocumentPosition( window, FCK.EditingArea.IFrame ) ;
  294. mouseX -= offset.x ;
  295. mouseY -= offset.y ;
  296. }
  297. if ( this._ResizeBar && this._LeftCell )
  298. {
  299. var leftPos = FCKTools.GetWindowPosition( FCK.EditorWindow, this._LeftCell ) ;
  300. var rightPos = FCKTools.GetWindowPosition( FCK.EditorWindow, this._RightCell ) ;
  301. var rxDist = mouseX - ( leftPos.x + this._LeftCell.clientWidth ) ;
  302. var lxDist = mouseX - rightPos.x ;
  303. var inRangeFlag = false ;
  304. if ( lxDist >= 0 && rxDist <= 0 )
  305. inRangeFlag = true ;
  306. else if ( rxDist > 0 && lxDist <= 3 )
  307. inRangeFlag = true ;
  308. else if ( lxDist < 0 && rxDist >= -2 )
  309. inRangeFlag = true ;
  310. if ( inRangeFlag )
  311. {
  312. this._ShowResizeBar( FCK.EditorWindow,
  313. FCKTools.GetElementAscensor( this._LeftCell, "table" ),
  314. { "x" : mouseX, "y" : mouseY } ) ;
  315. return ;
  316. }
  317. }
  318. var tagName = node.tagName.toLowerCase() ;
  319. if ( tagName != "table" && tagName != "td" && tagName != "th" )
  320. {
  321. if ( this._LeftCell )
  322. this._LeftCell = this._RightCell = this._TableMap = null ;
  323. this._HideResizeBar() ;
  324. return ;
  325. }
  326. node = FCKTools.GetElementAscensor( node, "table" ) ;
  327. var tableMap = FCKTableHandler._CreateTableMap( node ) ;
  328. var cellTuple = this._GetBorderCells( FCK.EditorWindow, node, tableMap, { "x" : mouseX, "y" : mouseY } ) ;
  329. if ( cellTuple == null )
  330. {
  331. if ( this._LeftCell )
  332. this._LeftCell = this._RightCell = this._TableMap = null ;
  333. this._HideResizeBar() ;
  334. }
  335. else
  336. {
  337. this._LeftCell = cellTuple["leftCell"] ;
  338. this._RightCell = cellTuple["rightCell"] ;
  339. this._TableMap = tableMap ;
  340. this._ShowResizeBar( FCK.EditorWindow,
  341. FCKTools.GetElementAscensor( this._LeftCell, "table" ),
  342. { "x" : mouseX, "y" : mouseY } ) ;
  343. }
  344. },
  345. "_MouseDragHandler" : function( FCK, evt )
  346. {
  347. var mouse = { "x" : evt.clientX, "y" : evt.clientY } ;
  348. // Convert mouse coordinates in reference to the outer iframe.
  349. var node = evt.srcElement || evt.target ;
  350. if ( node.ownerDocument == FCK.EditorDocument )
  351. {
  352. var offset = FCKTools.GetDocumentPosition( window, FCK.EditingArea.IFrame ) ;
  353. mouse.x += offset.x ;
  354. mouse.y += offset.y ;
  355. }
  356. // Calculate the mouse position delta and see if we've gone out of range.
  357. if ( mouse.x >= this._MaximumX - 5 )
  358. mouse.x = this._MaximumX - 5 ;
  359. if ( mouse.x <= this._MinimumX + 5 )
  360. mouse.x = this._MinimumX + 5 ;
  361. var docX = mouse.x + FCKTools.GetScrollPosition( window ).X ;
  362. this._ResizeBar.style.left = ( docX - this._ResizeBar.offsetWidth / 2 ) + "px" ;
  363. this._LastX = mouse.x ;
  364. },
  365. "_ShowResizeBar" : function( w, table, mouse )
  366. {
  367. if ( this._ResizeBar == null )
  368. {
  369. this._ResizeBar = document.createElement( "div" ) ;
  370. var paddingBar = this._ResizeBar ;
  371. var paddingStyles = { 'position' : 'absolute', 'cursor' : 'e-resize' } ;
  372. if ( FCKBrowserInfo.IsIE )
  373. paddingStyles.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity=10,enabled=true)" ;
  374. else
  375. paddingStyles.opacity = 0.10 ;
  376. FCKDomTools.SetElementStyles( paddingBar, paddingStyles ) ;
  377. document.body.appendChild( paddingBar ) ;
  378. FCKTools.AddEventListener( paddingBar, "mousemove", this._ResizeBarMouseMoveListener ) ;
  379. FCKTools.AddEventListener( paddingBar, "mousedown", this._ResizeBarMouseDownListener ) ;
  380. FCKTools.AddEventListener( document, "mouseup", this._ResizeBarMouseUpListener ) ;
  381. FCKTools.AddEventListener( FCK.EditorDocument, "mouseup", this._ResizeBarMouseUpListener ) ;
  382. // IE doesn't let the tranparent part of the padding block to receive mouse events unless there's something inside.
  383. // So we need to create a spacer image to fill the block up.
  384. var filler = document.createElement( "img" ) ;
  385. filler.border = 0 ;
  386. filler.src = FCKConfig.BasePath + "images/spacer.gif" ;
  387. filler.style.position = "absolute" ;
  388. paddingBar.appendChild( filler ) ;
  389. // Disable drag and drop, and selection for the filler image.
  390. var disabledListener = function( evt )
  391. {
  392. if ( ! evt )
  393. evt = window.event ;
  394. if ( evt.preventDefault )
  395. evt.preventDefault() ;
  396. else
  397. evt.returnValue = false ;
  398. }
  399. FCKTools.AddEventListener( filler, "dragstart", disabledListener ) ;
  400. FCKTools.AddEventListener( filler, "selectstart", disabledListener ) ;
  401. }
  402. var paddingBar = this._ResizeBar ;
  403. var offset = FCKTools.GetDocumentPosition( window, FCK.EditingArea.IFrame ) ;
  404. var tablePos = FCKTools.GetWindowPosition( w, table ) ;
  405. var barHeight = table.offsetHeight ;
  406. var barTop = offset.y + tablePos.y ;
  407. // Do not let the resize bar intrude into the toolbar area.
  408. if ( tablePos.y < 0 )
  409. {
  410. barHeight += tablePos.y ;
  411. barTop -= tablePos.y ;
  412. }
  413. var bw = parseInt( table.border, 10 ) ;
  414. if ( isNaN( bw ) )
  415. bw = 0 ;
  416. var cs = parseInt( table.cellSpacing, 10 ) ;
  417. if ( isNaN( cs ) )
  418. cs = 0 ;
  419. var barWidth = Math.max( bw+100, cs+100 ) ;
  420. var paddingStyles =
  421. {
  422. 'top' : barTop + 'px',
  423. 'height' : barHeight + 'px',
  424. 'width' : barWidth + 'px',
  425. 'left' : ( offset.x + mouse.x + FCKTools.GetScrollPosition( w ).X - barWidth / 2 ) + 'px'
  426. } ;
  427. if ( FCKBrowserInfo.IsIE )
  428. paddingBar.filters.item("DXImageTransform.Microsoft.Alpha").opacity = 10 ;
  429. else
  430. paddingStyles.opacity = 0.1 ;
  431. FCKDomTools.SetElementStyles( paddingBar, paddingStyles ) ;
  432. var filler = paddingBar.getElementsByTagName( "img" )[0] ;
  433. FCKDomTools.SetElementStyles( filler,
  434. {
  435. width : paddingBar.offsetWidth + 'px',
  436. height : barHeight + 'px'
  437. } ) ;
  438. barWidth = Math.max( bw, cs, 3 ) ;
  439. var visibleBar = null ;
  440. if ( paddingBar.getElementsByTagName( "div" ).length < 1 )
  441. {
  442. visibleBar = document.createElement( "div" ) ;
  443. paddingBar.appendChild( visibleBar ) ;
  444. }
  445. else
  446. visibleBar = paddingBar.getElementsByTagName( "div" )[0] ;
  447. FCKDomTools.SetElementStyles( visibleBar,
  448. {
  449. position : 'absolute',
  450. backgroundColor : 'blue',
  451. width : barWidth + 'px',
  452. height : barHeight + 'px',
  453. left : '50px',
  454. top : '0px'
  455. } ) ;
  456. },
  457. "_HideResizeBar" : function()
  458. {
  459. if ( this._ResizeBar )
  460. // IE bug: display : none does not hide the resize bar for some reason.
  461. // so set the position to somewhere invisible.
  462. FCKDomTools.SetElementStyles( this._ResizeBar,
  463. {
  464. top : '-100000px',
  465. left : '-100000px'
  466. } ) ;
  467. }
  468. };
  469. FCK.Events.AttachEvent( "OnMouseMove", FCKDragTableHandler.MouseMoveListener ) ;