overlib_hideform.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. //\/////
  2. //\ overLIB Hide Form Plugin
  3. //\
  4. //\ Uses an iframe shim to mask system controls for IE v5.5 or higher as suggested in
  5. //\ http://dotnetjunkies.com/weblog/jking/posts/488.aspx
  6. //\ This file requires overLIB 4.10 or later.
  7. //\
  8. //\ overLIB 4.05 - You may not remove or change this notice.
  9. //\ Copyright Erik Bosrup 1998-2004. All rights reserved.
  10. //\ Contributors are listed on the homepage.
  11. //\ See http://www.bosrup.com/web/overlib/ for details.
  12. // $Revision: 1.20 $ $Date: 2004/11/25 21:27:19 $
  13. //\/////
  14. //\mini
  15. if (typeof olInfo == 'undefined' || typeof olInfo.meets == 'undefined' || !olInfo.meets(4.10)) alert('overLIB 4.10 or later is required for the HideForm Plugin.');
  16. else {
  17. // Function which generates the popup with an IFRAME shim
  18. function generatePopUp(content) {
  19. if(!olIe4||olOp||!olIe55||(typeof o3_shadow != 'undefined' && o3_shadow)||(typeof o3_bubble != 'undefined' && o3_bubble)) return;
  20. var wd,ht,txt, zIdx = 0;
  21. wd = parseInt(o3_width);
  22. ht = over.offsetHeight;
  23. txt = backDropSource(wd,ht,zIdx++);
  24. txt += '<div style="position: absolute; top: 0; left: 0; width: '+ wd+'px; z-index: ' + zIdx + ';">' + content + '</div>';
  25. layerWrite(txt);
  26. }
  27. // Code for the IFRAME which is used in other places
  28. function backDropSource(width, height, Z) {
  29. return '<iframe frameborder="0" scrolling="no" src="javascript:false;" width="' + width + '" height="' + height + '" style="z-index: ' + Z + '; filter: Beta(Style=0,Opacity=0);"></iframe>';
  30. }
  31. // Hides SELECT boxes that will be under the popup
  32. // Checking Gecko version number to try to include other browsers based on the Gecko engine
  33. function hideSelectBox() {
  34. if(olNs4 || olOp || olIe55) return;
  35. var px, py, pw, ph, sx, sw, sy, sh, selEl, v;
  36. if(olIe4) v = 0;
  37. else {
  38. v = navigator.userAgent.match(/Gecko\/(\d{8})/i);
  39. if(!v) return; // return if no string match
  40. v = parseInt(v[1]);
  41. }
  42. if (v < 20030624) { // versions less than June 24, 2003 were earlier Netscape browsers
  43. px = parseInt(over.style.left);
  44. py = parseInt(over.style.top);
  45. pw = o3_width;
  46. ph = (o3_aboveheight ? parseInt(o3_aboveheight) : over.offsetHeight);
  47. selEl = (olIe4) ? o3_frame.document.all.tags("SELECT") : o3_frame.document.getElementsByTagName("SELECT");
  48. for (var i=0; i<selEl.length; i++) {
  49. if(!olIe4 && selEl[i].size < 2) continue; // Not IE and SELECT size is 1 or not specified
  50. sx = pageLocation(selEl[i],'Left');
  51. sy = pageLocation(selEl[i],'Top');
  52. sw = selEl[i].offsetWidth;
  53. sh = selEl[i].offsetHeight;
  54. if((px+pw) < sx || px > (sx+sw) || (py+ph) < sy || py > (sy+sh)) continue;
  55. selEl[i].isHidden = 1;
  56. selEl[i].style.visibility = 'hidden';
  57. }
  58. }
  59. }
  60. // Shows previously hidden SELECT Boxes
  61. function showSelectBox() {
  62. if(olNs4 || olOp || olIe55) return;
  63. var selEl, v;
  64. if(olIe4) v = 0;
  65. else {
  66. v = navigator.userAgent.match(/Gecko\/(\d{8})/i);
  67. if(!v) return;
  68. v = parseInt(v[1]);
  69. }
  70. if(v < 20030624) {
  71. selEl = (olIe4) ? o3_frame.document.all.tags("SELECT") : o3_frame.document.getElementsByTagName("SELECT");
  72. for (var i=0; i<selEl.length; i++) {
  73. if(typeof selEl[i].isHidden != 'undefined' && selEl[i].isHidden) {
  74. selEl[i].isHidden = 0;
  75. selEl[i].style.visibility = 'visible';
  76. }
  77. }
  78. }
  79. }
  80. // function gets the total offset properties of an element
  81. // this same function occurs in overlib_mark.js.
  82. function pageLocation(o,t){
  83. var x = 0
  84. while(o.offsetParent){
  85. x += o['offset'+t]
  86. o = o.offsetParent
  87. }
  88. x += o['offset'+t]
  89. return x
  90. }
  91. // reset mouse move routine for NS7 but not NS7.1,Opera, or IE5.5+
  92. // It also bypasses Netscape 6 since the modifications mess up the display of popups
  93. // and don't work anyways.
  94. // Modify mouse move routine while loading so that hideSelectBox()
  95. // can be called from the correct location
  96. if (!(olNs4 || olOp || olIe55 || navigator.userAgent.indexOf('Netscape6') != -1)) {
  97. var MMStr = olMouseMove.toString();
  98. var strRe = /(if\s*\(o3_allowmove\s*==\s*1.*\)\s*)/;
  99. var f = MMStr.match(strRe);
  100. if (f) {
  101. var ls = MMStr.search(strRe);
  102. ls += f[1].length;
  103. var le = MMStr.substring(ls).search(/[;|}]\n/);
  104. MMStr = MMStr.substring(0,ls) + ' { runHook("placeLayer",FREPLACE); if(olHideForm) hideSelectBox(); ' + MMStr.substring(ls + (le != -1 ? le+3 : 0));
  105. document.writeln('<script type="text/javascript">\n<!--\n' + MMStr + '\n//-->\n</' + 'script>');
  106. }
  107. f = capExtent.onmousemove.toString().match(/function[ ]+(\w*)\(/);
  108. if (f&&f[1] != 'anonymous') capExtent.onmousemove = olMouseMove;
  109. }
  110. ////////
  111. // PLUGIN REGISTRATIONS
  112. ////////
  113. registerHook("createPopup",generatePopUp,FAFTER);
  114. registerHook("hideObject",showSelectBox,FAFTER);
  115. olHideForm=1;
  116. }