overlib_anchor.js 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. //\/////
  2. //\ overLIB Anchor 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-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 Anchor Plugin.');
  17. else {
  18. registerCommands('anchor,anchorx,anchory,noanchorwarn,anchoralign');
  19. ////////
  20. // DEFAULT CONFIGURATION
  21. // Settings you want everywhere are set here. All of this can also be
  22. // changed on your html page or through an overLIB call.
  23. ////////
  24. if (typeof ol_anchor == 'undefined') var ol_anchor = '';
  25. if (typeof ol_anchorx == 'undefined') var ol_anchorx = 0;
  26. if (typeof ol_anchory == 'undefined') var ol_anchory = 0;
  27. if (typeof ol_noanchorwarn == 'undefined') var ol_noanchorwarn = 1;
  28. if (typeof ol_anchoralign == 'undefined') var ol_anchoralign = 'UL';
  29. ////////
  30. // END OF CONFIGURATION
  31. // Don't change anything below this line, all configuration is above.
  32. ////////
  33. ////////
  34. // INIT
  35. ////////
  36. // Runtime variables init. Don't change for config!
  37. var o3_anchor = "";
  38. var o3_anchorx = 0;
  39. var o3_anchory = 0;
  40. var o3_noanchorwarn = 1;
  41. var o3_anchoralign = 'UL';
  42. var mrkObj, rmrkPosition; //reference mark object, reference mark position, an array;
  43. ////////
  44. // PLUGIN FUNCTIONS
  45. ////////
  46. function setAnchorVariables() {
  47. o3_anchor = ol_anchor;
  48. o3_anchorx = ol_anchorx;
  49. o3_anchory = ol_anchory;
  50. o3_noanchorwarn = ol_noanchorwarn;
  51. o3_anchoralign = ol_anchoralign;
  52. mrkObj = null; // initialize this variable
  53. }
  54. // Parses Reference Mark commands
  55. function parseAnchorExtras(pf,i,ar) {
  56. var v, k=i;
  57. if (k < ar.length) {
  58. if (ar[k] == ANCHOR) { eval(pf + "anchor = '" + escSglQuote(ar[++k]) + "'"); return k; }
  59. if (ar[k] == ANCHORX) { eval(pf + 'anchorx = ' + ar[++k]); return k; }
  60. if (ar[k] == ANCHORY) { eval(pf + 'anchory = ' + ar[++k]); return k; }
  61. if (ar[k] == NOANCHORWARN) { eval(pf + 'noanchorwarn = (' + pf + 'noanchorwarn==1) ? 0 : 1'); return k; }
  62. if (ar[k] == ANCHORALIGN) { k = opt_MULTIPLEARGS(++k, ar, (pf + 'anchoralign')); return k; }
  63. }
  64. return -1;
  65. }
  66. ///////
  67. // FUNCTION WHICH CHECKS FOR THE EXISTENCE OF A REFERENCE MARKER
  68. ///////
  69. function checkAnchorObject() {
  70. var w = o3_anchor;
  71. if (w) {
  72. if (!(mrkObj = getAnchorObjectRef(w))) {
  73. if (o3_noanchorwarn) {
  74. alert('WARNING! Reference mark "' + w + '" not found.');
  75. return false;
  76. } else w = '';
  77. }
  78. }
  79. return true;
  80. }
  81. ///////
  82. // EXTERNAL SUPPORT FUNCTIONS TO HANDLE ANCHOR PROPERTIES
  83. ///////
  84. // Horizontal placement routine with anchors
  85. function anchorHorizontal(browserWidth, horizontalScrollAmount, widthFix) {
  86. var hasAnchor = (typeof o3_anchor != 'undefined' && o3_anchor);
  87. if (!hasAnchor) return void(0);
  88. // set o3_relx for follow scroll if defined
  89. if (typeof o3_followscroll != 'undefined' && o3_followscroll && o3_sticky) o3_relx = rmrkPosition[0];
  90. return rmrkPosition[0];
  91. }
  92. // Vertical placement routine with anchors
  93. function anchorVertical(browserHeight,verticalScrollAmount) {
  94. var hasAnchor = (typeof o3_anchor != 'undefined' && o3_anchor);
  95. if (!hasAnchor) return void(0);
  96. // set o3_rely for follow scroll if defined
  97. if (typeof o3_followscroll != 'undefined' && o3_followscroll && o3_sticky) o3_rely = rmrkPosition[1];
  98. return rmrkPosition[1];
  99. }
  100. // Stub function for the runHook routine
  101. function anchorPreface() {
  102. if (!mrkObj) return;
  103. rmrkPosition = getAnchorLocation(mrkObj);
  104. }
  105. // Get Reference Mark object
  106. function getAnchorObjectRef(aObj) {
  107. return getRefById(aObj, o3_frame.document) || getRefByName(aObj, o3_frame.document)
  108. }
  109. // Adapted to overlib from jwin by Jason Anderson -- http://www.jwinlib.com
  110. function getAnchorLocation(objRef){
  111. var mkObj, of, offsets, mlyr
  112. mkObj = mlyr = objRef
  113. offsets = [o3_anchorx, o3_anchory]
  114. if (document.layers){
  115. if (typeof mlyr.length != 'undefined' && mlyr.length > 1) {
  116. mkObj = mlyr[0]
  117. offsets[0] += mlyr[0].x + mlyr[1].pageX
  118. offsets[1] += mlyr[0].y + mlyr[1].pageY
  119. } else {
  120. if(mlyr.toString().indexOf('Image') != -1 || mlyr.toString().indexOf('Anchor') != -1){
  121. offsets[0] += mlyr.x
  122. offsets[1] += mlyr.y
  123. } else {
  124. offsets[0] += mlyr.pageX
  125. offsets[1] += mlyr.pageY
  126. }
  127. }
  128. } else {
  129. offsets[0] += pageLocation(mlyr, 'Left')
  130. offsets[1] += pageLocation(mlyr, 'Top')
  131. }
  132. of = getAnchorOffsets(mkObj)
  133. if (typeof o3_dragimg != 'undefined' && o3_dragimg) {
  134. olImgLeft = offsets[0];
  135. olImgTop = offsets[1];
  136. }
  137. offsets[0] += of[0]
  138. offsets[1] += of[1]
  139. if (typeof o3_dragimg != 'undefined' && o3_dragimg) {
  140. olImgRight = offsets[0];
  141. olImgBottom = offsets[1];
  142. return;
  143. }
  144. return offsets;
  145. }
  146. // Adapted to overlib from jwin by Jason Anderson -- http://www.jwinlib.com
  147. function getAnchorOffsets(mkObj){
  148. var fx = fy = 0, mp, puc, mkAry, sx = sy = 0, w = o3_anchoralign
  149. var mW = mH = pW = pH = 0
  150. var off = [0, 0]
  151. mkAry = w.split(',');
  152. if (mkAry.length < 3) {
  153. mp = mkAry[0].toUpperCase();
  154. puc = (mkAry.length == 1) ? mp : mkAry[1].toUpperCase();
  155. } else if (mkAry.length == 3) {
  156. if (!isNaN(mkAry[0])) {
  157. mp = mkAry.slice(0, 2);
  158. puc = mkAry[2].toUpperCase();
  159. } else {
  160. mp = mkAry[0].toUpperCase();
  161. puc = mkAry.slice(1);
  162. }
  163. } else {
  164. mp = mkAry.slice(0, 2);
  165. puc = mkAry.slice(2);
  166. }
  167. var shdwPresent = typeof o3_shadow != 'undefined' && o3_shadow
  168. if (shdwPresent) {
  169. sx = Math.abs(o3_shadowx);
  170. sy = Math.abs(o3_shadowy);
  171. }
  172. pW = (shdwPresent ? parseInt(o3_width) : (olNs4 ? over.clip.width : over.offsetWidth))
  173. pH = (shdwPresent ? parseInt(o3_aboveheight) : (olNs4 ? over.clip.height : over.offsetHeight))
  174. if (olOp && o3_wrap) {
  175. pW = (shdwPresent ? parseInt(o3_width) : (olNs4 ? over.clip.width : over.offsetWidth))
  176. pH = (shdwPresent ? parseInt(o3_aboveheight) : (olNs4 ? over.clip.height : over.offsetHeight))
  177. }
  178. if (!olOp && mkObj.toString().indexOf('Image') != -1){
  179. mW = mkObj.width
  180. mH = mkObj.height
  181. } else if (!olOp && mkObj.toString().indexOf('Anchor') != -1) { // enforced only for NS4
  182. mp = 'UL'
  183. } else {
  184. mW = (olNs4) ? mkObj.clip.width : mkObj.offsetWidth
  185. mH = (olNs4) ? mkObj.clip.height : mkObj.offsetHeight
  186. }
  187. if (!isNaN(mp) || typeof mp == 'object') {
  188. if (typeof mp == 'object') {
  189. fx = parseFloat(mp[0]);
  190. fy = parseFloat(mp[1]);
  191. } else
  192. fx = fy = parseFloat(mp);
  193. off = [Math.round(fx*mW), Math.round(fy*mH)];
  194. } else {
  195. if (mp == 'UR') off = [mW, 0]
  196. else if (mp == 'LL') off = [0, mH]
  197. else if (mp == 'LR') off = [mW, mH]
  198. }
  199. if (typeof o3_dragimg != 'undefined' && o3_dragimg) return off;
  200. else {
  201. if (!isNaN(puc) || typeof puc == 'object' ) {
  202. if (typeof puc == 'object') {
  203. fx = parseFloat(puc[0]);
  204. fy = parseFloat(puc[1]);
  205. } else
  206. fx = fy = parseFloat(puc);
  207. off[0] -= Math.round(fx*(pW - sx));
  208. off[1] -= Math.round(fy*(pH - sy));
  209. } else {
  210. if (puc == 'UR') {
  211. off[0] -= (pW - sx);
  212. off[1] -= sy
  213. } else if (puc == 'LL') {
  214. off[0] -= sx;
  215. off[1] -= (pH - sy)
  216. } else if (puc == 'LR') {
  217. off[0] -= (pW-sx);
  218. off[1] -= (pH - sy)
  219. }
  220. }
  221. return off
  222. }
  223. }
  224. // Adapted to overlib from jwin by Jason Anderson -- http://www.jwinlib.com
  225. function pageLocation(o, t){
  226. var x = 0
  227. while(o.offsetParent){
  228. x += o['offset' + t]
  229. o = o.offsetParent
  230. }
  231. x += o['offset' + t]
  232. return x
  233. }
  234. // Adapted to overlib from jwin by Jason Anderson -- http://www.jwinlib.com
  235. function getRefById(l, d){
  236. var r = "", j
  237. d = (d || document)
  238. if (d.all) return d.all[l]
  239. else if (d.getElementById) return d.getElementById(l)
  240. else if (d.layers && d.layers.length > 0) {
  241. if (d.layers[l]) return d.layers[l]
  242. for (j=0; j < d.layers.length; j++) {
  243. r = getRefById(l, d.layers[j].document)
  244. if(r) return r
  245. }
  246. }
  247. return false
  248. }
  249. // Adapted to overlib from jwin by Jason Anderson -- http://www.jwinlib.com
  250. function getRefByName(l, d) {
  251. var r = null, j
  252. d = (d || document)
  253. if (d.images[l]) return d.images[l]
  254. else if (d.anchors[l]) return d.anchors[l];
  255. else if (d.layers && d.layers.length > 0) {
  256. for (j=0; j < d.layers.length; j++) {
  257. r = getRefByName(l, d.layers[j].document)
  258. if (r && r.length > 0) return r
  259. else if (r) return [r, d.layers[j]]
  260. }
  261. }
  262. return null
  263. }
  264. ////////
  265. // PLUGIN REGISTRATIONS
  266. ////////
  267. registerRunTimeFunction(setAnchorVariables);
  268. registerCmdLineFunction(parseAnchorExtras);
  269. registerPostParseFunction(checkAnchorObject);
  270. registerHook("createPopup", anchorPreface, FAFTER);
  271. registerHook("horizontalPlacement", anchorHorizontal, FCHAIN);
  272. registerHook("verticalPlacement", anchorVertical, FCHAIN);
  273. if(olInfo.meets(4.10)) registerNoParameterCommands('noanchorwarn');
  274. }