overlib_centerpopup.js 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. //\/////
  2. //\ overLIB Center Popup Plugin
  3. //\ This file requires overLIB 4.10 or later.
  4. //\
  5. //\ overLIB 4.10 - You may not remove or change this notice.
  6. //\ Copyright Erik Bosrup 1998-2003. All rights reserved.
  7. //\ Contributors are listed on the homepage.
  8. //\ See http://www.bosrup.com/web/overlib/ for details.
  9. // $Revision: 1.3 $ $Date: 2004/11/25 21:27:19 $
  10. //
  11. //\/////
  12. //\mini
  13. ////////
  14. // PRE-INIT
  15. // Ignore these lines, configuration is below.
  16. ////////
  17. if (typeof olInfo == 'undefined' || typeof olInfo.meets == 'undefined' || !olInfo.meets(4.10)) alert('overLIB 4.10 or later is required for the Center Popup Plugin.');
  18. else {
  19. registerCommands('centerpopup,centeroffset');
  20. ////////
  21. // DEFAULT CONFIGURATION
  22. // You don't have to change anything here if you don't want to. All of this can be
  23. // changed on your html page or through an overLIB call.
  24. ////////
  25. // Default value for centerpopup is to not center the popup
  26. if (typeof ol_centerpopup == 'undefined') var ol_centerpopup = 0;
  27. if (typeof ol_centeroffset == 'undefined') var ol_centeroffset = '0';
  28. ////////
  29. // END OF CONFIGURATION
  30. // Don't change anything below this line, all configuration is above.
  31. ////////
  32. ////////
  33. // INIT
  34. ////////
  35. // Runtime variables init. Don't change for config!
  36. var o3_centerpopup = 0;
  37. var o3_centeroffset = '0';
  38. ////////
  39. // PLUGIN FUNCTIONS
  40. ////////
  41. function setCenterPopupVariables() {
  42. o3_centerpopup = ol_centerpopup;
  43. o3_centeroffset = ol_centeroffset;
  44. }
  45. // Parses Shadow and Scroll commands
  46. function parseCenterPopupExtras(pf,i,ar) {
  47. var k = i,v;
  48. if (k < ar.length) {
  49. if (ar[k] == CENTERPOPUP) { eval(pf + 'centerpopup = (' + pf + 'centerpopup == 0) ? 1 : 0'); return k; }
  50. if (ar[k] == CENTEROFFSET) { k = opt_MULTIPLEARGS(++k,ar,(pf + 'centeroffset')); return k; }
  51. }
  52. return -1;
  53. }
  54. // Function which positions popup in Center of screen
  55. function centerPopupHorizontal(browserWidth, horizontalScrollAmount, widthFix) {
  56. if (!o3_centerpopup) return void(0);
  57. var vdisp = o3_centeroffset.split(',');
  58. var placeX, iwidth = browserWidth, winoffset = horizontalScrollAmount;
  59. var pWd = parseInt(o3_width);
  60. placeX = winoffset + Math.round((iwidth - widthFix - pWd)/2) + parseInt(vdisp[0]);
  61. if(typeof o3_followscroll != 'undefined' && o3_followscroll && o3_sticky) o3_relx = placeX;
  62. return placeX;
  63. }
  64. function centerPopupVertical(browserHeight,verticalScrollAmount) {
  65. if (!o3_centerpopup) return void(0);
  66. var placeY, iheight = browserHeight, scrolloffset = verticalScrollAmount;
  67. var vdisp = o3_centeroffset.split(',');
  68. var pHeight = (o3_aboveheight ? parseInt(o3_aboveheight) : (olNs4 ? over.clip.height : over.offsetHeight));
  69. placeY = scrolloffset + Math.round((iheight - pHeight)/2) + (vdisp.length > 1 ? parseInt(vdisp[1]) : 0);
  70. if(typeof o3_followscroll != 'undefined' && o3_followscroll && o3_sticky) o3_rely = placeY;
  71. return placeY;
  72. }
  73. ////////
  74. // PLUGIN REGISTRATIONS
  75. ////////
  76. registerRunTimeFunction(setCenterPopupVariables);
  77. registerCmdLineFunction(parseCenterPopupExtras);
  78. registerHook('horizontalPlacement',centerPopupHorizontal,FCHAIN);
  79. registerHook('verticalPlacement', centerPopupVertical, FCHAIN);
  80. if(olInfo.meets(4.10)) registerNoParameterCommands('centerpopup');
  81. }