overlib_debug.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. //\/////
  2. //\ overLIB Debug 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-2003. All rights reserved.
  7. //\ Contributors are listed on the homepage.
  8. //\ See http://www.bosrup.com/web/overlib/ for details.
  9. // $Revision: 1.6 $ $Date: 2005/02/01 22:18:44 $
  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 Debug Plugin.');
  18. else {
  19. var olZindex;
  20. registerCommands('allowdebug');
  21. ////////
  22. // PLUGIN FUNCTIONS
  23. ////////
  24. // Parses Debug Parameters
  25. function parseDebugExtras(pf, i, ar) {
  26. var k = i, v;
  27. if (k < ar.length) {
  28. if (ar[k] == ALLOWDEBUG) { v = ar[k + 1]; if(typeof v == 'string') {v = ar[++k]; if (pf != 'ol_') setCanShowParm(v);} return k; }
  29. }
  30. return -1;
  31. }
  32. // Debug main routine
  33. function showProperties() {
  34. var args = showProperties.arguments, sho, shoObj, vis, lvl = 0, istrt = 0, theDiv = 'showProps', txt = '';
  35. if (args.length == 0) return;
  36. if (args.length % 2 && typeof args[0] == 'string') {
  37. istrt = 1;
  38. theDiv = args[0];
  39. }
  40. sho = createDivContainer(theDiv);
  41. if (olNs4) {
  42. shoObj = sho;
  43. txt += '<table cellpadding="1" cellspacing="0" border="0" bgcolor="#000000"><tr><td>';
  44. } else {
  45. with(sho.style) {
  46. backgroundColor = '#ffffcc';
  47. padding = '5px';
  48. border = '1px #000000 solid';
  49. }
  50. shoObj = sho.style;
  51. }
  52. lvl = getLayerLevel(theDiv);
  53. if(typeof sho.position == 'undefined') {
  54. sho.position = new Pagelocation(10 + lvl*20, 10, 1);
  55. if(typeof olZindex == 'undefined') olZindex = getDivZindex();
  56. shoObj.zIndex = olZindex + 1 + lvl;
  57. }
  58. txt += '<table cellpadding="5" border="0" cellspacing="0"' + (olNs4 ? ' bgcolor="#ffffcc"' : '') + '>';
  59. txt += '<tr><td><strong><A HREF="javascript:moveToBack(\'' + theDiv + '\');" title="Move to back">' + theDiv + '</A></strong></td><td align="RIGHT"><strong><a href="javascript:closeLayer(\'' + theDiv + '\');" TITLE="Close Layer' + (!olNs4 ? '" style="background-color: #CCCCCC; border:2px #333369 outset; padding: 2px;' : '') + '">X</a></strong></td></tr>';
  60. txt += '<tr><td style="text-decoration: underline;"><strong>Item</strong></td><td style="text-decoration: underline;"><strong>Value</strong></td></tr>';
  61. for (var i = istrt; i<args.length-1; i++)
  62. txt += '<tr><td align="right"><strong>' + args[i] + ':&nbsp;</strong></td><td>' + args[++i] + '</td></tr>';
  63. txt += '</table>' + (olNs4 ? '</td></tr></table>' : '');
  64. if (olNs4) {
  65. sho.document.open();
  66. sho.document.write(txt);
  67. sho.document.close();
  68. } else {
  69. if(olIe5&&isMac) sho.innerHTML = '';
  70. sho.innerHTML = txt;
  71. }
  72. showAllVisibleLayers();
  73. }
  74. function getLayerLevel(lyr) {
  75. var i = 0;
  76. if (typeof document.popups == 'undefined') {
  77. document.popups = new Array(lyr);
  78. } else {
  79. var l = document.popups;
  80. for (var i = 0; i<l.length; i++) if (lyr == l[i]) break;
  81. if(i == l.length) l[l.length++] = lyr;
  82. }
  83. return i;
  84. }
  85. function getDivZindex(id) {
  86. var obj;
  87. if(id == '' || id == null) id = 'overDiv';
  88. obj = layerReference(id);
  89. obj = (olNs4 ? obj : obj.style);
  90. return obj.zIndex;
  91. }
  92. function setCanShowParm(debugID) {
  93. var lyr, pLyr;
  94. if(typeof debugID != 'string') return;
  95. pLyr = debugID.split(',');
  96. for(var i = 0; i<pLyr.length; i++) {
  97. lyr = layerReference(pLyr[i]);
  98. if(lyr != null && typeof lyr.position != 'undefined') lyr.position.canShow = 1;
  99. }
  100. }
  101. function Pagelocation(x, y, canShow) {
  102. this.x = x;
  103. this.y = y;
  104. this.canShow = (canShow == null) ? 0 : canShow;
  105. }
  106. function showAllVisibleLayers(){
  107. var lyr, lyrObj, l = document.popups;
  108. for (var i = 0; i<l.length; i++) {
  109. lyr = layerReference(l[i]);
  110. lyrObj = (olNs4 ? lyr : lyr.style);
  111. if(lyr.position.canShow) {
  112. positionLayer(lyrObj, lyr.position.x, lyr.position.y);
  113. lyrObj.visibility = 'visible';
  114. }
  115. }
  116. }
  117. function positionLayer(Obj, x, y) { // Obj is obj.style for IE/NS6+ but obj for NS4
  118. Obj.left = x + (olIe4 ? eval(docRoot + '.scrollLeft') : window.pageXOffset) + (olNs4 ? 0 : 'px');
  119. Obj.top = y + (olIe4 ? eval(docRoot + '.scrollTop') : window.pageYOffset) + (olNs4 ? 0 : 'px');
  120. }
  121. function closeLayer(lyrID) {
  122. var lyr = layerReference(lyrID);
  123. lyr.position.canShow = 0;
  124. lyr = (olNs4 ? lyr : lyr.style);
  125. lyr.visibility = 'hidden';
  126. }
  127. function moveToBack(layer) {
  128. var l = document.popups, lyr, obj, i, x = 10, y = 10, dx = 20, z = olZindex + 1;
  129. if(l.length == 1) return;
  130. lyr = layerReference(layer);
  131. lyr.position.x = x;
  132. lyr.position.y = y;
  133. obj = (olNs4 ? lyr : lyr.style);
  134. obj.zIndex = z;
  135. for (i = 0; i<l.length; i++) {
  136. if (layer == l[i]) continue;
  137. lyr = layerReference(l[i]);
  138. if(lyr.position.canShow == 0) continue;
  139. obj = (olNs4 ? lyr : lyr.style);
  140. obj.zIndex += 1;
  141. lyr.position.x += dx;
  142. lyr.position.y = y;
  143. }
  144. showAllVisibleLayers();
  145. }
  146. function rawTxt(txt) {
  147. if (typeof txt != 'string') return;
  148. return txt.replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;");
  149. }
  150. ////////
  151. // PLUGIN REGISTRATIONS
  152. ////////
  153. registerCmdLineFunction(parseDebugExtras);
  154. }