context_menu.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. var MenuWidth = 120;
  2. var ItemHeight = 17;
  3. var ItemNumber = 0;
  4. ContextMenu.intializeContextMenu=function()
  5. {
  6. document.body.insertAdjacentHTML("BeforeEnd", '<iframe src="#" scrolling="no" class="WebFX-ContextMenu" marginwidth="0" marginheight="0" frameborder="0" style="position:absolute;display:none;z-index:50000000;" id="WebFX_PopUp"></iframe>');
  7. WebFX_PopUp = self.frames["WebFX_PopUp"]
  8. WebFX_PopUpcss = document.getElementById("WebFX_PopUp")
  9. document.body.attachEvent("onmousedown",function(){WebFX_PopUpcss.style.display="none"})
  10. WebFX_PopUpcss.onfocus = function(){WebFX_PopUpcss.style.display="inline"};
  11. WebFX_PopUpcss.onblur = function(){WebFX_PopUpcss.style.display="none"};
  12. self.attachEvent("onblur",function(){WebFX_PopUpcss.style.display="none"})
  13. }
  14. function ContextSeperator(){}
  15. function ContextMenu(){}
  16. ContextMenu.showPopup=function(x,y)
  17. {
  18. WebFX_PopUpcss.style.display = "block"
  19. }
  20. ContextMenu.display=function(popupoptions,h)
  21. {
  22. var eobj,x,y;
  23. eobj = window.event;
  24. x = eobj.x;
  25. y = eobj.y
  26. /*
  27. not really sure why I had to pass window here
  28. it appears that an iframe inside a frames page
  29. will think that its parent is the frameset as
  30. opposed to the page it was created in...
  31. */
  32. ContextMenu.populatePopup(popupoptions,window)
  33. ContextMenu.showPopup(x,y);
  34. ContextMenu.fixSize();
  35. ContextMenu.fixPos(x,y);
  36. eobj.cancelBubble = true;
  37. eobj.returnValue = false;
  38. }
  39. //TODO
  40. ContextMenu.getScrollTop=function()
  41. {
  42. return document.body.scrollTop;
  43. //window.pageXOffset and window.pageYOffset for moz
  44. }
  45. ContextMenu.getScrollLeft=function()
  46. {
  47. return document.body.scrollLeft;
  48. }
  49. ContextMenu.fixPos=function(x,y)
  50. {
  51. var docheight,docwidth,dh,dw;
  52. docheight = document.body.clientHeight;
  53. docwidth = document.body.clientWidth;
  54. dh = (WebFX_PopUpcss.offsetHeight+y) - docheight;
  55. dw = (WebFX_PopUpcss.offsetWidth+x) - docwidth;
  56. if(dw>0)
  57. { WebFX_PopUpcss.style.left = (x - dw) + ContextMenu.getScrollLeft() + "px"; }
  58. else
  59. { WebFX_PopUpcss.style.left = x + ContextMenu.getScrollLeft(); }
  60. //
  61. if(dh>0)
  62. { WebFX_PopUpcss.style.top = (y - dh) + ContextMenu.getScrollTop() + "px" }
  63. else
  64. { WebFX_PopUpcss.style.top = y + ContextMenu.getScrollTop(); }
  65. }
  66. ContextMenu.fixSize=function()
  67. {
  68. //var body;
  69. //WebFX_PopUpcss.style.width = "120px";
  70. //body = WebFX_PopUp.document.body;
  71. //var dummy = WebFX_PopUpcss.offsetHeight + " dummy";
  72. //h = body.scrollHeight + WebFX_PopUpcss.offsetHeight - body.clientHeight;
  73. //w = body.scrollWidth + WebFX_PopUpcss.offsetWidth - body.clientWidth;
  74. WebFX_PopUpcss.style.height = ItemHeight * ItemNember + "px";
  75. WebFX_PopUpcss.style.width = MenuWidth + "px";
  76. ItemNember = 0;
  77. }
  78. ContextMenu.populatePopup=function(arr,win)
  79. {
  80. var alen,i,tmpobj,doc,height,htmstr;
  81. alen = arr.length;
  82. ItemNember = alen;
  83. doc = WebFX_PopUp.document;
  84. doc.body.innerHTML = ""
  85. if (doc.getElementsByTagName("LINK").length == 0) {
  86. doc.open();
  87. doc.write('<html><head><link rel="StyleSheet" type="text/css" href="../data/rightmenu/contextmenu.css"></head><body></body></html>');
  88. doc.close();
  89. }
  90. for(i=0;i<alen;i++)
  91. {
  92. if(arr[i].constructor==ContextItem)
  93. {
  94. tmpobj=doc.createElement("DIV");
  95. tmpobj.noWrap = true;
  96. tmpobj.className = "WebFX-ContextMenu-Item";
  97. if(arr[i].disabled)
  98. {
  99. htmstr = '<span class="WebFX-ContextMenu-DisabledContainer">'
  100. htmstr += arr[i].text+'</span>'
  101. tmpobj.innerHTML = htmstr
  102. tmpobj.className = "WebFX-ContextMenu-Disabled";
  103. tmpobj.onmouseover = function(){this.className="WebFX-ContextMenu-Disabled-Over"}
  104. tmpobj.onmouseout = function(){this.className="WebFX-ContextMenu-Disabled"}
  105. }
  106. else
  107. {
  108. tmpobj.innerHTML = arr[i].text;
  109. tmpobj.onclick = (function (f)
  110. {
  111. return function () {
  112. win.WebFX_PopUpcss.style.display='none'
  113. if (typeof(f)=="function"){ f(); }
  114. };
  115. })(arr[i].action);
  116. tmpobj.onmouseover = function(){this.className="WebFX-ContextMenu-Over"}
  117. tmpobj.onmouseout = function(){this.className="WebFX-ContextMenu-Item"}
  118. }
  119. doc.body.appendChild(tmpobj);
  120. }
  121. else
  122. {
  123. doc.body.appendChild(doc.createElement("DIV")).className = "WebFX-ContextMenu-Separator";
  124. }
  125. }
  126. doc.body.className = "WebFX-ContextMenu-Body" ;
  127. doc.body.onselectstart = function(){return false;}
  128. }
  129. function ContextItem(str,fnc,disabled)
  130. {
  131. this.text = str;
  132. this.action = fnc;
  133. this.disabled = disabled || false;
  134. }