TaskMenu.js
资源名称:a.rar [点击查看]
上传用户:aa118c
上传日期:2021-05-13
资源大小:4785k
文件大小:26k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

HTML/CSS

  1. //****************************************************
  2. //                TaskMenu 3.0
  3. //           http://www.865171.cn 
  4. //**************************************************** 
  5. /////////////////////////////////////////////////////////////////////////////////
  6. var INF_IS_IEXPLORER = (navigator.userAgent.indexOf("MSIE") == -1)? false : true;
  7. var INF_IS_MENU_BEHAVIOR_AUTO       = true;
  8. var INF_IS_SCROLLBAR_ENABLED        = false;
  9. ///////////////////////////////////////////////////////
  10. /////////////*** CONFIG ***////////////////////////////
  11. var CFG_FRAME_COUNT                 = 6;
  12. var CFG_DOCUMENT_MARGIN             = 12;
  13. var CFG_MENU_SPACING                = 15;
  14. var CFG_MENU_WIDTH                  = 185;
  15. var CFG_SCROLLBAR_WIDTH             = 17;
  16. var CFG_TITLEBAR_HEIGHT             = 25;
  17. var CFG_TITLEBAR_LEFT_WIDTH         = 13;
  18. var CFG_TITLEBAR_RIGHT_WIDTH        = 25;
  19. var CFG_TITLEBAR_MIDDLE_WIDTH = CFG_MENU_WIDTH - CFG_TITLEBAR_LEFT_WIDTH - CFG_TITLEBAR_RIGHT_WIDTH;
  20. var CFG_TITLEBAR_BORDER_WIDTH       = 0;
  21. var CFG_MENUBODY_PADDING            = 9;
  22. var CFG_MENUBODY_BORDER_WIDTH       = 1;
  23. var CFG_SLEEP_TIME_BEGIN            = 20;
  24. var CFG_SLEEP_TIME_END              = 60;
  25. var CFG_ALPHA_STEP = Math.ceil( 100 / (CFG_FRAME_COUNT) );
  26. var CFG_IS_SCROLLBAR_ENABLED        = true;
  27. var CFG_IS_SPECIAL_HEAD_NODE        = false;
  28. //////////////////////////////////////////////////////////
  29. //////////////////////////////////////////////////////////
  30. if(new Array().push == null)
  31. {
  32. //usage: array.push(Array); for ie5.0
  33. Array.prototype.push = function()
  34. {
  35. this[this.length] = arguments[0];
  36. return this.length;
  37. }
  38. }
  39. if(new Array().splice == null)
  40. {
  41. /// usage: array.splice(startPos,deleteCount,[item1,item2,...]);for ie5.0
  42. Array.prototype.splice = function()
  43. {
  44. if(arguments.length < 2 || arguments[1] < 0) 
  45. return new Array();
  46. var endPoint1 = arguments[0];
  47. if(endPoint1 < 0 && Math.abs(endPoint1) > this.length)
  48. endPoint1 = 0;
  49. var startPoint2 = (endPoint1 < 0)? (this.length + endPoint1 + arguments[1]) : (endPoint1 + arguments[1]);
  50. var bArray = this.slice(0,endPoint1);
  51. var dArray = this.slice(endPoint1,startPoint2);
  52. var eArray = this.slice(startPoint2);
  53. var nArray = new Array();
  54. for(var i = 2; i < arguments.length; i++)
  55. {
  56. nArray.push(arguments[i]);
  57. }
  58. var fArray = bArray.concat(nArray,eArray);
  59. for(var i = 0; i < fArray.length; i++)
  60. {
  61. this[i] = fArray[i];
  62. }
  63. this.length = fArray.length;
  64. return dArray;
  65. }
  66. }
  67. /////////////////////////////////////////////////////////////////
  68. function TaskMenuState(){}
  69. TaskMenuState.uninited      =  0;
  70. TaskMenuState.open          =  1;
  71. TaskMenuState.close         =  2;
  72. TaskMenuState.opening       =  4;
  73. TaskMenuState.closing       =  8;
  74. TaskMenuState.transforming  = 16;
  75. function TaskMenuItem(strLabel,strIcon,strCommand)
  76. {
  77. this.label      = strLabel;
  78. this.icon       = strIcon;
  79. this.command    = strCommand;
  80. this.hItem      = null;
  81. this.hLabel     = null;
  82. this.hIcon      = null;
  83. this.hLabelCell = null;
  84. this.container  = null;
  85. this.operTimer  = null;
  86. this.tranTimer  = null;
  87. this.operStep   = 0;
  88. this.tranStep   = 0;
  89. this.operCount  = 0;
  90. this.tranCount  = 0;
  91. this.init = function()
  92. {
  93. (this.hLabel = document.createElement("FONT")).reflectClass = this;
  94. with(this.hLabel)
  95. {
  96. reflectClass = this;
  97. }
  98. with(this.hItem = document.createElement("TABLE"))
  99. {
  100. cellPadding = 0;
  101. cellSpacing = 0;
  102. style.width = "100%";
  103. }
  104. (itemRow = this.hItem.insertRow(0)).className="MenuItemRow";
  105. with(blankCell = itemRow.insertCell(0))
  106. {
  107. style.width = (CFG_MENUBODY_PADDING - 2) +"px";
  108. }
  109. with(iconCell = itemRow.insertCell(1))
  110. {
  111. align  = "RIGHT";
  112. style.cssText = "width:18px;vertical-align:top;padding-top:3px";
  113. with(this.hIcon = iconCell.appendChild(document.createElement("DIV")))
  114. {
  115. className = "IconContainer";
  116. }
  117. }
  118. with(this.hLabelCell = itemRow.insertCell(2))
  119. {
  120. style.padding = "2px " + CFG_MENUBODY_PADDING +"px 2px 5px";
  121. appendChild(this.hLabel);
  122. }
  123. with(this)
  124. {
  125. setIcon(icon); setLabel(label); setCommand(command);
  126. }
  127. }
  128. this.getLabel = function()
  129. {
  130. return this.label;
  131. }
  132. this.setLabel = function(strLabel)
  133. {
  134. this.hLabel.innerHTML = this.label = strLabel;
  135. }
  136. this.getIcon = function()
  137. {
  138. return this.icon;
  139. }
  140. this.setIcon = function(strIcon)
  141. {
  142. this.icon = strIcon;
  143. while(this.hIcon.firstChild != null)
  144. {
  145. this.hIcon.removeChild(this.hIcon.firstChild);
  146. }
  147. if(this.icon != null)
  148. {
  149. with(this.hIcon)
  150. {
  151. style.width = "18px";
  152. parentNode.style.width = "18px";
  153. with(appendChild(new Image()))
  154. {
  155. src= this.icon;
  156. }
  157. }
  158. }
  159. else
  160. {
  161. this.hIcon.style.width = "0px";
  162. this.hIcon.parentNode.style.width = "0px";
  163. }
  164. }
  165. this.getCommand = function()
  166. {
  167. return this.command;
  168. }
  169. this.setCommand = function(strCommand)
  170. {
  171. if( (this.command = strCommand) != null)
  172. {
  173. JS.addListener(this.hLabel,"mouseover",TaskMenuItem.onMouseBehavior,false);
  174. JS.addListener(this.hLabel,"mouseout",TaskMenuItem.onMouseBehavior,false);
  175. JS.addListener(this.hLabel,"click",TaskMenuItem.onClick,false);
  176. this.hLabel.className = "MenuItemLabel";
  177. }
  178. else
  179. {
  180. JS.removeListener(this.hLabel,"mouseover",TaskMenuItem.onMouseBehavior,false);
  181. JS.removeListener(this.hLabel,"mouseout",TaskMenuItem.onMouseBehavior,false);
  182. JS.removeListener(this.hLabel,"click",TaskMenuItem.onClick,false);
  183. this.hLabel.className = "MenuItemLabelDisabled";
  184. }
  185. }
  186. this.runCommand = function()
  187. {
  188. try
  189. {
  190. eval(this.command);
  191. }
  192. catch(ex)
  193. {
  194. alert("Javascript Error:" + ex.description);
  195. }
  196. }
  197. this.cloneNode = function()
  198. {
  199. return new TaskMenuItem(this.label,this.icon,this.command);
  200. }
  201. this.init();
  202. }
  203. TaskMenuItem.onMouseBehavior = function()
  204. {
  205. with(JS.getSourceElement(arguments[0]))
  206. {
  207. if(arguments[0].type.toUpperCase() == "MOUSEOVER")
  208. className = "MenuItemLabelMouseOver";
  209. else
  210. className = "MenuItemLabel"; 
  211. }
  212. }
  213. TaskMenuItem.onClick = function()
  214. {
  215. var refClass = JS.getSourceElement(arguments[0]).reflectClass;
  216. if(refClass != null) refClass.runCommand();
  217. }
  218. function TaskMenu(strLabel,menuState)
  219. {
  220. this.menuID;
  221. this.label       = strLabel;
  222. this.state       = menuState;
  223. this.items       = [];
  224. this.hLabel      = null;
  225. this.hArrayCell  = null;
  226. this.titlebar    = null;
  227. this.menuBody    = null;
  228. this.previous    = null;
  229. this.next        = null;
  230. this.background  = null;
  231. this.operationTimer;
  232. this.transformTimer;
  233. this.invalidateTimer
  234. this.operationStep;
  235. this.transformStep;
  236. this.operationSleep;
  237. this.transformSleep;
  238. this._getAlphaOpacity = function()
  239. {
  240. try
  241. {
  242. if(INF_IS_IEXPLORER)
  243. return this.menuBody.filters.alpha.opacity;
  244. else
  245. return this.menuBody.style.MozOpacity * 100;
  246. }
  247. catch(ex)
  248. {
  249. return 100;
  250. }
  251. }
  252. this._setAlphaOpacity = function(n)
  253. {
  254. try
  255. {
  256. if(INF_IS_IEXPLORER)
  257. this.menuBody.filters.alpha.opacity = n;
  258. else
  259. this.menuBody.style.MozOpacity = n / 100;
  260. }
  261. catch(ex)
  262. {}
  263. }
  264. this._clearItem = function()
  265. {
  266. for(var i =0; i< this.items.length; i++)
  267. {
  268. this.items[i].container = null;
  269. }
  270. this.items = new Array();
  271. }
  272. this._clearMenu = function()
  273. {
  274. if(this.menuBody == null) return;
  275. while(this.menuBody.firstChild != null)
  276. this.menuBody.removeChild(this.menuBody.firstChild);
  277. }
  278. this._setMenuFixed = function(bFlag)
  279. {
  280. if(this.menuBody == null) return;
  281. if(bFlag == true)
  282. {
  283. this.menuBody.style.overflow = "hidden";
  284. }
  285. else
  286. {
  287. this.menuBody.style.overflow = "visible";
  288. this.menuBody.style.height   = "auto";
  289. }
  290. }
  291. this._setMenuHeight = function(height)
  292. {
  293. if(INF_IS_IEXPLORER)
  294. this.menuBody.style.height = height + "px";
  295. else
  296. this.menuBody.style.height = ( height - (2 * CFG_MENUBODY_PADDING + CFG_MENUBODY_BORDER_WIDTH) ) + "px";
  297. }
  298. this._getMenuHeight = function()
  299. {
  300. if(INF_IS_IEXPLORER)
  301. return this.menuBody.scrollHeight + CFG_MENUBODY_BORDER_WIDTH;
  302. else
  303. {
  304. var scrollHeight = 0;
  305. for(var i = 0; i < this.menuBody.childNodes.length; i++)
  306. {
  307. scrollHeight += this.menuBody.childNodes[i].offsetHeight;
  308. }
  309. return scrollHeight + CFG_MENUBODY_BORDER_WIDTH + 2 * CFG_MENUBODY_PADDING;
  310. }
  311. }
  312. this._getScrollWidth = function()
  313. {
  314. return (INF_IS_SCROLLBAR_ENABLED)? CFG_SCROLLBAR_WIDTH : 0
  315. }
  316. this._fixMenuWidth = function(value)
  317. {
  318. var titlebarWidth = ( CFG_MENU_WIDTH + ( (INF_IS_IEXPLORER)? 0 : ( -2 * CFG_TITLEBAR_BORDER_WIDTH ) ) );
  319. var menuBodyWidth = ( CFG_MENU_WIDTH + ( (INF_IS_IEXPLORER)? 0 : ( -2 * CFG_MENUBODY_BORDER_WIDTH ) ) );
  320. var labelCell = this.titlebar.firstChild.rows[0].cells[1];
  321. var scrollbarWidth = this._getScrollWidth();
  322. this.hLabel.style.width   = (CFG_TITLEBAR_MIDDLE_WIDTH - scrollbarWidth) + "px";
  323. labelCell.style.width     = (CFG_TITLEBAR_MIDDLE_WIDTH - scrollbarWidth) + "px";
  324. this.titlebar.style.width = (titlebarWidth - scrollbarWidth) + "px";
  325. this.menuBody.style.width = (menuBodyWidth - scrollbarWidth) + "px";
  326. this._invalidate(true);
  327. }
  328. this._fixedMenuPosWhileClose = function()
  329. {
  330. var scrollHeight = this._getMenuHeight();
  331. this._setMenuHeight(scrollHeight);
  332. this.menuBody.style.top = (this.titlebar.offsetTop + CFG_TITLEBAR_HEIGHT - scrollHeight) + "px";
  333. this.menuBody.style.clip = "rect(" + scrollHeight +" auto " + scrollHeight + " auto)";
  334. this._setAlphaOpacity(0);
  335. }
  336. this._attachState = function(state)
  337. {
  338. switch(state)
  339. {
  340. case TaskMenuState.open:
  341. case TaskMenuState.close:
  342. case TaskMenuState.opening:
  343. case TaskMenuState.closing:
  344. this.state >>= 4;
  345. this.state <<= 4;
  346. case TaskMenuState.transforming:
  347. this.state |= state;
  348. break;
  349. case TaskMenuState.uninited:
  350. this.state = state;
  351. break;
  352. }
  353. }
  354. this._removeState = function(state)
  355. {
  356. if(this.state & state) this.state ^= state;
  357. }
  358. this._invalidate = function(bForce)
  359. {
  360. if(INF_IS_MENU_BEHAVIOR_AUTO == true || bForce == true)
  361. {
  362. this.invalidate();
  363. }
  364. }
  365. this._extend = function()
  366. {
  367. if(this.state & TaskMenuState.close)
  368. {
  369. this._fixedMenuPosWhileClose();
  370. this._removeState(TaskMenuState.transforming);
  371. }
  372. else
  373. {
  374. if(this.menuBody.offsetHeight + this.transformStep < this._getMenuHeight())
  375. {
  376. this._setMenuHeight(this.menuBody.offsetHeight + this.transformStep);
  377. this.transformTimer = setTimeout("TaskMenu.collection[" + this.menuID + "]._extend()",this.transformSleep += 5);
  378. }
  379. else
  380. {
  381. this._setMenuHeight(this._getMenuHeight());
  382. this._removeState(TaskMenuState.transforming);
  383. }
  384. }
  385. if(this.next != null) this.next._moveTo();
  386. TaskMenu._refreshAll();
  387. }
  388. this._shorten = function()
  389. {
  390. if(this.state & TaskMenuState.close)
  391. {
  392. this._fixedMenuPosWhileClose();
  393. this._removeState(TaskMenuState.transforming);
  394. }
  395. else
  396. {
  397. if(this.menuBody.offsetHeight + this.transformStep > this._getMenuHeight())
  398. {
  399. this._setMenuHeight(this.menuBody.offsetHeight + this.transformStep);
  400. this.transformTimer = setTimeout("TaskMenu.collection[" + this.menuID + "]._shorten()",this.transformSleep += 5);
  401. }
  402. else
  403. {
  404. this._setMenuHeight(this._getMenuHeight());
  405. this._removeState(TaskMenuState.transforming);
  406. }
  407. }
  408. if(this.next != null) this.next._moveTo();
  409. TaskMenu._refreshAll();
  410. }
  411. this._appendItems = function()
  412. {
  413. if(this.menuBody == null || this.items.length == 0)return;
  414. for(var i = 0; i < this.items.length; i++)
  415. this.menuBody.appendChild(this.items[i].hItem);
  416. }
  417. this._isSpecialHeadNode = function()
  418. {
  419. return CFG_IS_SPECIAL_HEAD_NODE && this == TaskMenu.headNode;
  420. }
  421. this._open = function()
  422. {
  423. var titlebarBottom = this.titlebar.offsetTop + CFG_TITLEBAR_HEIGHT;
  424. if( (this.menuBody.offsetTop + this.operationStep) < titlebarBottom )
  425. {
  426. this.menuBody.style.top  = (this.menuBody.offsetTop + this.operationStep) + "px";
  427. this.menuBody.style.clip = "rect(" + (titlebarBottom - this.menuBody.offsetTop) + " auto " + (this.menuBody.offsetHeight - 1) + " auto)";
  428. this._setAlphaOpacity( this._getAlphaOpacity() + CFG_ALPHA_STEP );
  429. this.operationTimer = setTimeout("TaskMenu.collection[" + this.menuID + "]._open()",this.operationSleep);
  430. this.operationSleep += 5;
  431. }
  432. else
  433. {
  434. this.menuBody.style.top  = titlebarBottom + "px";
  435. this.menuBody.style.clip = "rect(auto auto auto auto)";
  436. this._attachState(TaskMenuState.open);
  437. this._setAlphaOpacity(100);
  438. }
  439. if(this.next) this.next._moveTo();
  440. TaskMenu._refreshAll();
  441. }
  442. this._close = function()
  443. {
  444. var menuBodyHeight = this._getMenuHeight();
  445. var menuBodyBottom = this.menuBody.offsetTop + menuBodyHeight;
  446. var titlebarBottom = this.titlebar.offsetTop + CFG_TITLEBAR_HEIGHT;
  447. if( (menuBodyBottom - this.operationStep) > titlebarBottom )
  448. {
  449. this.menuBody.style.top = (this.menuBody.offsetTop - this.operationStep) + "px";
  450. this._setAlphaOpacity( this._getAlphaOpacity() - CFG_ALPHA_STEP );
  451. this.operationTimer = setTimeout("TaskMenu.collection[" + this.menuID + "]._close()",this.operationSleep);
  452. this.operationSleep += 5;
  453. }
  454. else
  455. {
  456. this.menuBody.style.top = ( (titlebarBottom - menuBodyHeight) ) + "px";
  457. this._setAlphaOpacity(0);
  458. this._attachState(TaskMenuState.close);
  459. }
  460. this.menuBody.style.clip = "rect(" + (Math.abs(titlebarBottom - this.menuBody.offsetTop)) +" auto " + (this.menuBody.offsetHeight - 1) + " auto)";
  461. if(this.next) this.next._moveTo();
  462. TaskMenu._refreshAll();
  463. }
  464. this._moveBy = function(dist)
  465. {}
  466. this._moveTo = function()
  467. {
  468. var primTop   = this.titlebar.offsetTop;
  469. var safePoint = this.previous.titlebar.offsetTop + CFG_TITLEBAR_HEIGHT + CFG_MENU_SPACING;
  470. var dstiTop   = this.previous.menuBody.offsetTop + this.previous.menuBody.offsetHeight + CFG_MENU_SPACING;
  471. if(dstiTop >= safePoint)
  472. this.titlebar.style.top = dstiTop + "px";
  473. else
  474. this.titlebar.style.top = safePoint + "px";
  475. if(this.state & TaskMenuState.open)
  476. this.menuBody.style.top = ( this.titlebar.offsetTop + CFG_TITLEBAR_HEIGHT ) + "px";
  477. else if(this.state & TaskMenuState.close)
  478. this.menuBody.style.top = ( this.titlebar.offsetTop + CFG_TITLEBAR_HEIGHT - this.menuBody.offsetHeight) + "px";
  479. else if(this.state & TaskMenuState.opening || this.state & TaskMenuState.closing)
  480. this.menuBody.style.top = (this.menuBody.offsetTop + (dstiTop - primTop) ) + "px";
  481. if(this.next != null) this.next._moveTo();
  482. }
  483. this.init = function(initFlag)
  484. {
  485. if(initFlag != true && (this.titlebr != null || this.menuBody != null))return;
  486. this.state = (this.state == false)? TaskMenuState.close : TaskMenuState.open;
  487. this.label = (this.label == null )? new String() : this.label.toString();
  488. var fixString = (CFG_IS_SPECIAL_HEAD_NODE == true && TaskMenu.headNode == null)? "_Head" : "";
  489. with(this.titlebar = document.createElement("DIV"))
  490. {
  491. className    = "MenuTitlebar";
  492. style.top    = ((TaskMenu.headNode == null)? CFG_DOCUMENT_MARGIN : (TaskMenu.rearNode.menuBody.offsetTop + TaskMenu.rearNode.menuBody.offsetHeight + CFG_MENU_SPACING)) + "px";
  493. style.left   = CFG_DOCUMENT_MARGIN + "px";
  494. style.width  = (CFG_MENU_WIDTH + ( (INF_IS_IEXPLORER)? 0 : ( -2 * CFG_TITLEBAR_BORDER_WIDTH ) ) - this._getScrollWidth()) + "px";
  495. style.height = CFG_TITLEBAR_HEIGHT + "px";
  496. }
  497. with(titlebarContainer = document.createElement("TABLE"))
  498. {
  499. cellPadding = "0";
  500. cellSpacing = "0";
  501. }
  502. with(titlebarRow = titlebarContainer.insertRow(0))
  503. {
  504. style.width  = CFG_MENU_WIDTH      + "px";
  505. style.height = CFG_TITLEBAR_HEIGHT + "px";
  506. }
  507. JS.addListener(titlebarRow,"click",TaskMenu._onClick,false);
  508. JS.addListener(titlebarRow,"mouseover",TaskMenu._onMouseBehavior,false);
  509. JS.addListener(titlebarRow,"mouseout",TaskMenu._onMouseBehavior,false);
  510. with(leftCell = titlebarRow.insertCell(0))
  511. {
  512. className    = "MenuTitlebarLeft"      + fixString;
  513. style.width  = CFG_TITLEBAR_LEFT_WIDTH + "px";
  514. }
  515. leftCell.reflectClass = this;
  516. with(middleCell = titlebarRow.insertCell(1))
  517. {
  518. className    = "MenuTitlebarMiddle"      + fixString;
  519. style.width  = ( CFG_TITLEBAR_MIDDLE_WIDTH - this._getScrollWidth() ) + "px";
  520. with(this.hLabel = appendChild(document.createElement("DIV")))
  521. {
  522. className    = "MenuTitle" + fixString;
  523. style.width  = (CFG_TITLEBAR_MIDDLE_WIDTH - this._getScrollWidth()) + "px";
  524. style.height = (CFG_TITLEBAR_HEIGHT) + "px";
  525. style.lineHeight = (CFG_TITLEBAR_HEIGHT) + "px";
  526. }
  527. this.hLabel.reflectClass = this;
  528. }
  529. middleCell.reflectClass = this;
  530. with(this.hArrayCell = titlebarRow.insertCell(2))
  531. {
  532. className   = "MenuTitlebarRight" + ((this.state == TaskMenuState.close)? "_Close" : "_Open") + fixString;
  533. style.width = CFG_TITLEBAR_RIGHT_WIDTH + "px";
  534. }
  535. this.hArrayCell.reflectClass = this;
  536. this.setLabel(this.getLabel());
  537. this.titlebar.appendChild(titlebarContainer);
  538. document.body.appendChild(this.titlebar);
  539. with(this.menuBody = document.createElement("DIV"))
  540. {
  541. className     = "MenuBody"  + fixString;
  542. style.cssText = "border-width:0px " + CFG_MENUBODY_BORDER_WIDTH + "px " + CFG_MENUBODY_BORDER_WIDTH + "px " + CFG_MENUBODY_BORDER_WIDTH + "px; " + ( (this.background != null)? "background-image:url('" + this.background + "');" : "" );
  543. style.top     = ( parseInt(this.titlebar.style.top) + CFG_TITLEBAR_HEIGHT ) + "px";
  544. style.left    = CFG_DOCUMENT_MARGIN + "px";
  545. style.width   = ( CFG_MENU_WIDTH + ( (INF_IS_IEXPLORER)? 0 : - (2 * CFG_MENUBODY_BORDER_WIDTH)) - ((INF_IS_SCROLLBAR_ENABLED)? CFG_SCROLLBAR_WIDTH : 0) ) + "px";
  546. style.height  = "auto";
  547. style.padding = CFG_MENUBODY_PADDING + "px 0px";
  548. style.MozOpacity = 1.0;
  549. }
  550. document.body.appendChild(this.menuBody);
  551. if(TaskMenu.headNode == null)
  552. TaskMenu.headNode = this;
  553. else
  554. TaskMenu.rearNode.next = this;
  555. this.previous     = TaskMenu.rearNode;
  556. TaskMenu.rearNode = this;
  557. this.menuID = TaskMenu.collection.push(this) - 1;
  558. if(this.items.length > 0)
  559. {
  560. this._setMenuFixed(false);
  561. this._appendItems();
  562. this._setMenuFixed(true);
  563. }
  564. this._setMenuHeight(this._getMenuHeight());
  565. if(this.state == TaskMenuState.close)
  566. {
  567. this._fixedMenuPosWhileClose();
  568. }
  569. TaskMenu._refreshAll();
  570. }
  571. this.add  = function(taskMenuItems,iPosition)
  572. {
  573. var nItem = new Array();
  574. if(taskMenuItems instanceof Array)
  575. {
  576. for(var i = 0; i < taskMenuItems.length; i++)
  577. {
  578. if(taskMenuItems[i] instanceof TaskMenuItem)
  579. {
  580. (dstItem = (taskMenuItems[i].container == null)? taskMenuItems[i] : taskMenuItems[i].cloneNode()).container = this;
  581. nItem.push(dstItem);
  582. }
  583. }
  584. }
  585. else if(taskMenuItems instanceof TaskMenuItem)
  586. {
  587. (nItem[0] = (taskMenuItems.container == null)? taskMenuItems : taskMenuItems.cloneNode()).container = this;
  588. }
  589. else 
  590. return;
  591. if(iPosition == null || typeof iPosition != "number" || iPosition < 0 || iPosition > nItem.Length)
  592. {
  593. iPosition = this.items.length;
  594. }
  595. this.items = this.items.slice(0,iPosition).concat( nItem , this.items.slice(iPosition ) );
  596. this._setMenuFixed(true);
  597. this._clearMenu();
  598. this._appendItems();
  599. this._invalidate();
  600. }
  601. this.remove = function(arg1,arg2)
  602. {
  603. var deletedItems = new Array();
  604. if(arguments.length == 2 && typeof arg1 == "number" && typeof arg2 == "number")
  605. {
  606. deletedItems = this.items.splice(arg1,arg2);
  607. }
  608. else if(arguments.length == 1 && typeof arg1 == "number")
  609. {
  610. deletedItems = this.items.splice(arg1,1);
  611. }
  612. else if(arguments.length == 1 && arg1 instanceof TaskMenuItem)
  613. {
  614. for(var i = 0; i < this.items.length; i++)
  615. {
  616. if(this.items[i] == arg1)
  617. {
  618. deletedItems = this.items.splice(i,1);
  619. break;
  620. }
  621. }
  622. }
  623. else if(arguments.length == 0)
  624. {
  625. this.clear();
  626. }
  627. else
  628. {
  629. alert("Error at TaskMenu.remove");
  630. return;
  631. }
  632. for(var i = 0; i < deletedItems.length; i++)
  633. {
  634. deletedItems[i].container = null;
  635. }
  636. this._clearMenu();
  637. this._appendItems();
  638. this._invalidate();
  639. }
  640. this.item = function(n)
  641. {
  642. if(typeof n == "number")
  643. return this.items[n];
  644. }
  645. this.clear = function()
  646. {
  647. clearTimeout(this.transformTimer);
  648. this._removeState(TaskMenuState.transforming);
  649. this._clearItem();
  650. this._clearMenu();
  651. this._invalidate();
  652. }
  653. this.setLabel = function(label)
  654. {
  655. this.label = (label == null)? new String() : label.toString();
  656. with(this.hLabel)
  657. {
  658. (INF_IS_IEXPLORER)? innerText = this.label : textContent = this.label;
  659. }
  660. this.titlebar.title = this.label;
  661. }
  662. this.getLabel = function()
  663. {
  664. return this.label;
  665. }
  666. this.setBackground = function(srcImage)
  667. {
  668. this.background = srcImage;
  669. if(this.titlebar != null && this.menuBody != null)
  670. {
  671. if(srcImage != null)
  672. this.menuBody.style.backgroundImage = "url(" + srcImage + ")";
  673. else
  674. this.menuBody.style.backgroundImage = "url()";
  675. }
  676. }
  677. this.invalidate = function()
  678. {
  679. if(this.titlebar == null || this.menuBody == null) return;
  680. var nScrollHeight = this._getMenuHeight();
  681. var tfDistance    = nScrollHeight - this.menuBody.offsetHeight;
  682. if(tfDistance == 0) return;
  683. clearTimeout(this.transformTimer);
  684. clearTimeout(this.invalidateTimer);
  685. this._attachState(TaskMenuState.transforming);
  686. this.transformSleep = CFG_SLEEP_TIME_BEGIN;
  687. this.transformStep  = (tfDistance > 0)? Math.ceil(tfDistance / CFG_FRAME_COUNT) : Math.floor(tfDistance / CFG_FRAME_COUNT);
  688. if(this.state & TaskMenuState.closing)
  689. this.operationStep = Math.ceil(nScrollHeight / CFG_FRAME_COUNT);
  690. if(tfDistance > 0)
  691. this.invalidateTimer = setTimeout("TaskMenu.collection[" + this.menuID + "]._extend()",50);
  692. else
  693. this.invalidateTimer = setTimeout("TaskMenu.collection[" + this.menuID + "]._shorten()",50);
  694. }
  695. this.click = function()
  696. {
  697. clearTimeout(this.operationTimer);
  698. this.operationSleep = CFG_SLEEP_TIME_BEGIN;
  699. var nodeTypeFix = (this._isSpecialHeadNode())? "_Head" : "";
  700. this.operationStep = Math.ceil(this._getMenuHeight() / CFG_FRAME_COUNT);
  701. if(this.state & TaskMenuState.open || this.state & TaskMenuState.opening)
  702. {
  703. this._attachState(TaskMenuState.closing);
  704. this.hArrayCell.className = "MenuTitlebarRight_Close_MouseOver" + nodeTypeFix;
  705. this._close();
  706. }
  707. else if(this.state & TaskMenuState.close ||this.state & TaskMenuState.closing)
  708. {
  709. this._attachState(TaskMenuState.opening);
  710. this.hArrayCell.className = "MenuTitlebarRight_Open_MouseOver" + nodeTypeFix;
  711. this._open();
  712. }
  713. }
  714. }
  715. TaskMenu.headNode    = null;
  716. TaskMenu.rearNode    = null;
  717. TaskMenu.collection  = new Array();
  718. TaskMenu._isScrollbarEnabled = function()
  719. {
  720. return (TaskMenu.rearNode.menuBody.offsetTop + TaskMenu.rearNode.menuBody.offsetHeight) > document.body.clientHeight;
  721. }
  722. TaskMenu._isScrollbarChanged = function()
  723. {
  724. var currentScrollbarStatus;
  725. try
  726. {
  727. currentScrollbarStatus = TaskMenu._isScrollbarEnabled();
  728. return INF_IS_SCROLLBAR_ENABLED != currentScrollbarStatus;
  729. }
  730. catch(ex)
  731. {
  732. return false;
  733. }
  734. finally
  735. {
  736. INF_IS_SCROLLBAR_ENABLED = currentScrollbarStatus;
  737. }
  738. }
  739. TaskMenu._onClick = function()
  740. {
  741. var srcElement = JS.getSourceElement(arguments[0]);
  742. var srcMenu = srcElement.reflectClass;
  743. if(srcMenu != null)
  744. {
  745. srcMenu.click();
  746. }
  747. }
  748. TaskMenu._onMouseBehavior = function()
  749. {
  750. var refMenu = JS.getSourceElement(arguments[0]).reflectClass;
  751. var nodeTypeFix = (refMenu._isSpecialHeadNode())? "_Head" : "";
  752. var behaviorFix = (arguments[0].type.toUpperCase() == "MOUSEOVER")? "_MouseOver" : "";
  753. refMenu.hLabel.className = "MenuTitle" + behaviorFix + nodeTypeFix;
  754. if( (refMenu.state & TaskMenuState.open) || (refMenu.state & TaskMenuState.opening) )
  755. {
  756. refMenu.hArrayCell.className = "MenuTitlebarRight_Open" + behaviorFix + nodeTypeFix;
  757. }
  758. else if( (refMenu.state & TaskMenuState.close) || (refMenu.state & TaskMenuState.closing) )
  759. {
  760. refMenu.hArrayCell.className = "MenuTitlebarRight_Close" + behaviorFix + nodeTypeFix;
  761. }
  762. }
  763. TaskMenu._invalidateAll = function()
  764. {
  765. for(var i = 0; i < TaskMenu.collection.length; i++)
  766. {
  767. TaskMenu.collection[i]._fixMenuWidth();
  768. }
  769. }
  770. TaskMenu._refreshAll = function()
  771. {
  772. if( CFG_IS_SCROLLBAR_ENABLED )
  773. if(TaskMenu._isScrollbarChanged())
  774. {
  775. TaskMenu._invalidateAll();
  776. }
  777. }
  778. TaskMenu.setStyle = function(strCssFile)
  779. {
  780. var HeadElement = document.getElementsByTagName("HEAD")[0];
  781. var cssFileID   = "__TaskMenuCssFile__";
  782. while(document.getElementById("TaskMenuCssFile") != null)
  783. {
  784. try
  785. {
  786. HeadElement.removeChild(document.getElementById(cssFileID ));
  787. }
  788. catch(ex)
  789. {}
  790. }
  791. with(HeadElement.appendChild(document.createElement("LINK")))
  792. {
  793. id = cssFileID; href = strCssFile; rel = "stylesheet"; type = "text/css";
  794. }
  795. }
  796. TaskMenu.setAutoBehavior = function(value)
  797. {
  798. INF_IS_MENU_BEHAVIOR_AUTO = (value == false)? false : true;
  799. }
  800. TaskMenu.setHeadMenuSpecial = function(value)
  801. {
  802. CFG_IS_SPECIAL_HEAD_NODE = (value == true)? true : false;
  803. }
  804. TaskMenu.setScrollbarEnabled = function(value)
  805. {
  806. CFG_IS_SCROLLBAR_ENABLED = (value == false)? false : true;
  807. try
  808. {
  809. if(CFG_IS_SCROLLBAR_ENABLED)
  810. document.body.style.overflowY = "auto";
  811. else
  812. document.body.style.overflowY = "hidden";
  813. }
  814. catch(ex)
  815. {
  816. alert(ex.description);
  817. }
  818. }
  819. function JS()
  820. {}
  821. JS.getSourceElement = function(evt)
  822. {
  823. return (evt.target == null)? evt.srcElement : evt.target;
  824. }
  825. JS.addListener = function(obj,eventName,callbackFunction,flag)
  826. if(obj.attachEvent)
  827. obj.attachEvent("on" + eventName,callbackFunction);
  828. else if(obj.addEventListener)
  829. obj.addEventListener(eventName,callbackFunction,flag);
  830. else
  831. eval("obj.on" + eventName + "=" + callbackFunction);
  832. }
  833. JS.removeListener = function(obj,eventName,callbackFunction,flag)
  834. if(obj.detachEvent)
  835. obj.detachEvent("on" + eventName,callbackFunction);
  836. else if (obj.removeEventListener)
  837. obj.removeEventListener(eventName,callbackFunction,flag);
  838. else
  839. eval("obj.on" + eventName + "= new Function()");
  840. }
  841. JS.addListener(window,"resize",new Function("setTimeout("TaskMenu._refreshAll()",30);"),false);
  842. JS.addListener(window,"error",new Function("return true"),false);