overlib_exclusive.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //\/////
  2. //\ overLIB Exclusive Plugin
  3. //\ This file requires overLIB 4.10 or later.
  4. //\
  5. //\ overLIB 4.05 - You may not remove or change this notice.
  6. //\ Copyright Erik Bosrup 1998-2004. All rights reserved.
  7. //\ Contributors are listed on the homepage.
  8. //\ See http://www.bosrup.com/web/overlib/ for details.
  9. // $Revision: 1.7 $ $Date: 2004/11/25 21:27:19 $
  10. //\/////
  11. //\mini
  12. ////////
  13. // PRE-INIT
  14. // Ignore these lines, configuration is below.
  15. ////////
  16. if (typeof olInfo == 'undefined' || typeof olInfo.meets == 'undefined' || !olInfo.meets(4.10)) alert('overLIB 4.10 or later is required for the Debug Plugin.');
  17. else {
  18. registerCommands('exclusive,exclusivestatus,exclusiveoverride');
  19. var olOverrideIsSet; // variable which tells if override is set
  20. ////////
  21. // DEFAULT CONFIGURATION
  22. // Settings you want everywhere are set here. All of this can also be
  23. // changed on your html page or through an overLIB call.
  24. ////////
  25. if (typeof ol_exclusive == 'undefined') var ol_exclusive = 0;
  26. if (typeof ol_exclusivestatus == 'undefined') var ol_exclusivestatus = 'Please close open popup first.';
  27. ////////
  28. // END OF CONFIGURATION
  29. // Don't change anything below this line, all configuration is above.
  30. ////////
  31. ////////
  32. // INIT
  33. ////////
  34. // Runtime variables init. Don't change for config!
  35. var o3_exclusive = 0;
  36. var o3_exclusivestatus = '';
  37. ////////
  38. // PLUGIN FUNCTIONS
  39. ////////
  40. // Set runtime variables
  41. function setExclusiveVariables() {
  42. o3_exclusive = ol_exclusive;
  43. o3_exclusivestatus = ol_exclusivestatus;
  44. }
  45. // Parses Exclusive Parameters
  46. function parseExclusiveExtras(pf,i,ar) {
  47. var k = i,v;
  48. olOverrideIsSet = false; // a global variable
  49. if (k < ar.length) {
  50. if (ar[k] == EXCLUSIVEOVERRIDE) { if(pf != 'ol_') olOverrideIsSet = true; return k; }
  51. if (ar[k] == EXCLUSIVE) { eval(pf + 'exclusive = (' + pf + 'exclusive == 0) ? 1 : 0'); return k; }
  52. if (ar[k] == EXCLUSIVESTATUS) { eval(pf + "exclusivestatus = '" + escSglQuote(ar[++k]) + "'"); return k; }
  53. }
  54. return -1;
  55. }
  56. ///////
  57. // HELPER FUNCTIONS
  58. ///////
  59. // set status message and indicate whether popup is exclusive
  60. function isExclusive(args) {
  61. var rtnVal = false;
  62. if(args != null) rtnVal = hasCommand(args, EXCLUSIVEOVERRIDE);
  63. if(rtnVal) return false;
  64. else {
  65. self.status = (o3_exclusive) ? o3_exclusivestatus : '';
  66. return o3_exclusive;
  67. }
  68. }
  69. // checks overlib argument list to see if it has a COMMAND argument
  70. function hasCommand(args, COMMAND) {
  71. var rtnFlag = false;
  72. for (var i=0; i<args.length; i++) {
  73. if (typeof args[i] == 'number' && args[i] == COMMAND) {
  74. rtnFlag = true;
  75. break;
  76. }
  77. }
  78. return rtnFlag;
  79. }
  80. // makes sure exclusive setting is off
  81. function clearExclusive() {
  82. o3_exclusive = 0;
  83. }
  84. function setExclusive() {
  85. o3_exclusive = (o3_showingsticky && o3_exclusive);
  86. }
  87. function chkForExclusive() {
  88. if (olOverrideIsSet) o3_exclusive = 0; // turn it off in case it's been set.
  89. return true;
  90. }
  91. ////////
  92. // PLUGIN REGISTRATIONS
  93. ////////
  94. registerRunTimeFunction(setExclusiveVariables);
  95. registerCmdLineFunction(parseExclusiveExtras);
  96. registerPostParseFunction(chkForExclusive);
  97. registerHook("createPopup",setExclusive,FBEFORE);
  98. registerHook("hideObject",clearExclusive,FAFTER);
  99. if (olInfo.meets(4.10)) registerNoParameterCommands('exclusive');
  100. }