overlib_cssstyle.js 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. //\/////
  2. //\ overLIB CSS Style 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.11 $ $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 CSS Style Plugin.');
  17. else {
  18. registerCommands('cssstyle,padunit,heightunit,widthunit,textsizeunit,textdecoration,textstyle,textweight,captionsizeunit,captiondecoration,captionstyle,captionweight,closesizeunit,closedecoration,closestyle,closeweight');
  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_padunit=='undefined') var ol_padunit="px";
  25. if (typeof ol_heightunit=='undefined') var ol_heightunit="px";
  26. if (typeof ol_widthunit=='undefined') var ol_widthunit="px";
  27. if (typeof ol_textsizeunit=='undefined') var ol_textsizeunit="px";
  28. if (typeof ol_textdecoration=='undefined') var ol_textdecoration="none";
  29. if (typeof ol_textstyle=='undefined') var ol_textstyle="normal";
  30. if (typeof ol_textweight=='undefined') var ol_textweight="normal";
  31. if (typeof ol_captionsizeunit=='undefined') var ol_captionsizeunit="px";
  32. if (typeof ol_captiondecoration=='undefined') var ol_captiondecoration="none";
  33. if (typeof ol_captionstyle=='undefined') var ol_captionstyle="normal";
  34. if (typeof ol_captionweight=='undefined') var ol_captionweight="bold";
  35. if (typeof ol_closesizeunit=='undefined') var ol_closesizeunit="px";
  36. if (typeof ol_closedecoration=='undefined') var ol_closedecoration="none";
  37. if (typeof ol_closestyle=='undefined') var ol_closestyle="normal";
  38. if (typeof ol_closeweight=='undefined') var ol_closeweight="normal";
  39. ////////
  40. // END OF CONFIGURATION
  41. // Don't change anything below this line, all configuration is above.
  42. ////////
  43. ////////
  44. // INIT
  45. ////////
  46. // Runtime variables init. Don't change for config!
  47. var o3_padunit="px";
  48. var o3_heightunit="px";
  49. var o3_widthunit="px";
  50. var o3_textsizeunit="px";
  51. var o3_textdecoration="";
  52. var o3_textstyle="";
  53. var o3_textweight="";
  54. var o3_captionsizeunit="px";
  55. var o3_captiondecoration="";
  56. var o3_captionstyle="";
  57. var o3_captionweight="";
  58. var o3_closesizeunit="px";
  59. var o3_closedecoration="";
  60. var o3_closestyle="";
  61. var o3_closeweight="";
  62. ////////
  63. // PLUGIN FUNCTIONS
  64. ////////
  65. // Function which sets runtime variables to their default values
  66. function setCSSStyleVariables() {
  67. o3_padunit=ol_padunit;
  68. o3_heightunit=ol_heightunit;
  69. o3_widthunit=ol_widthunit;
  70. o3_textsizeunit=ol_textsizeunit;
  71. o3_textdecoration=ol_textdecoration;
  72. o3_textstyle=ol_textstyle;
  73. o3_textweight=ol_textweight;
  74. o3_captionsizeunit=ol_captionsizeunit;
  75. o3_captiondecoration=ol_captiondecoration;
  76. o3_captionstyle=ol_captionstyle;
  77. o3_captionweight=ol_captionweight;
  78. o3_closesizeunit=ol_closesizeunit;
  79. o3_closedecoration=ol_closedecoration;
  80. o3_closestyle=ol_closestyle;
  81. o3_closeweight=ol_closeweight;
  82. }
  83. // Parses CSS Style commands.
  84. function parseCSSStyleExtras(pf, i, ar) {
  85. var k = i;
  86. if (k < ar.length) {
  87. if (ar[k]==CSSSTYLE) { eval(pf+'css='+ar[k]); return k; }
  88. if (ar[k]==PADUNIT) { eval(pf+'padunit="'+ar[++k]+'"'); return k; }
  89. if (ar[k]==HEIGHTUNIT) { eval(pf+'heightunit="'+ar[++k]+'"'); return k; }
  90. if (ar[k]==WIDTHUNIT) { eval(pf+'widthunit="'+ar[++k]+'"'); return k; }
  91. if (ar[k]==TEXTSIZEUNIT) { eval(pf+'textsizeunit="'+ar[++k]+'"'); return k; }
  92. if (ar[k]==TEXTDECORATION) { eval(pf+'textdecoration="'+ar[++k]+'"'); return k; }
  93. if (ar[k]==TEXTSTYLE) { eval(pf+'textstyle="'+ar[++k]+'"'); return k; }
  94. if (ar[k]==TEXTWEIGHT) { eval(pf+'textweight="'+ar[++k]+'"'); return k; }
  95. if (ar[k]==CAPTIONSIZEUNIT) { eval(pf+'captionsizeunit="'+ar[++k]+'"'); return k; }
  96. if (ar[k]==CAPTIONDECORATION) { eval(pf+'captiondecoration="'+ar[++k]+'"'); return k; }
  97. if (ar[k]==CAPTIONSTYLE) { eval(pf+'captionstyle="'+ar[++k]+'"'); return k; }
  98. if (ar[k]==CAPTIONWEIGHT) { eval(pf+'captionweight="'+ar[++k]+'"'); return k; }
  99. if (ar[k]==CLOSESIZEUNIT) { eval(pf+'closesizeunit="'+ar[++k]+'"'); return k; }
  100. if (ar[k]==CLOSEDECORATION) { eval(pf+'closedecoration="'+ar[++k]+'"'); return k; }
  101. if (ar[k]==CLOSESTYLE) { eval(pf+'closestyle="'+ar[++k]+'"'); return k; }
  102. if (ar[k]==CLOSEWEIGHT) { eval(pf+'closeweight="'+ar[++k]+'"'); return k; }
  103. }
  104. return -1;
  105. }
  106. ////////
  107. // LAYER GENERATION FUNCTIONS
  108. ////////
  109. // Makes simple table without caption
  110. function ol_content_simple_cssstyle(text) {
  111. txt = '<table width="'+o3_width+ '" border="0" cellpadding="'+o3_border+'" cellspacing="0" style="background-color: '+o3_bgcolor+'; height: '+o3_height+o3_heightunit+';"><tr><td><table width="100%" border="0" cellpadding="' + o3_cellpad + '" cellspacing="0" style="color: '+o3_fgcolor+'; background-color: '+o3_fgcolor+'; height: '+o3_height+o3_heightunit+';"><tr><td valign="TOP"><font style="font-family: '+o3_textfont+'; color: '+o3_textcolor+'; font-size: '+o3_textsize+o3_textsizeunit+'; text-decoration: '+o3_textdecoration+'; font-weight: '+o3_textweight+'; font-style:'+o3_textstyle+'">'+text+'</font></td></tr></table></td></tr></table>';
  112. set_background("");
  113. return txt;
  114. }
  115. // Makes table with caption and optional close link
  116. function ol_content_caption_cssstyle(text, title, close) {
  117. var nameId;
  118. closing = "";
  119. closeevent = "onMouseOver";
  120. if (o3_closeclick == 1) closeevent= (o3_closetitle ? "title='" + o3_closetitle +"'" : "") + " onClick";
  121. if (o3_capicon!="") {
  122. nameId=' hspace=\"5\"'+' align=\"middle\" alt=\"\"';
  123. if (typeof o3_dragimg != 'undefined' && o3_dragimg) nameId = ' hspace=\"5\"'+' name=\"'+o3_dragimg+'\" id=\"'+o3_dragimg+'\" align=\"middle\" alt=\"Drag Enabled\" title=\"Drag Enabled\"';
  124. o3_capicon = '<img src=\"'+o3_capicon+'\"'+nameId+' />';
  125. }
  126. if (close != "") {
  127. closing = '<td align="RIGHT"><a href="javascript:return '+fnRef+'cClick();" '+closeevent+'="return '+fnRef+'cClick();" style="color: '+o3_closecolor+'; font-family: '+o3_closefont+'; font-size: '+o3_closesize+o3_closesizeunit+'; text-decoration: '+o3_closedecoration+'; font-weight: '+o3_closeweight+'; font-style:'+o3_closestyle+';">'+close+'</a></td>';
  128. }
  129. txt = '<table width="'+o3_width+ '" border="0" cellpadding="'+o3_border+'" cellspacing="0" style="background-color: '+o3_bgcolor+'; background-image: url('+o3_bgbackground+'); height: '+o3_height+o3_heightunit+';"><tr><td><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td><font style="font-family: '+o3_captionfont+'; color: '+o3_capcolor+'; font-size: '+o3_captionsize+o3_captionsizeunit+'; font-weight: '+o3_captionweight+'; font-style: '+o3_captionstyle+'; text-decoration: '+o3_captiondecoration+';">'+o3_capicon+title+'</font></td>'+closing+'</tr></table><table width="100%" border="0" cellpadding="' + o3_cellpad + '" cellspacing="0" style="color: '+o3_fgcolor+'; background-color: '+o3_fgcolor+'; height: '+o3_height+o3_heightunit+';"><tr><td valign="TOP"><font style="font-family: '+o3_textfont+'; color: '+o3_textcolor+'; font-size: '+o3_textsize+o3_textsizeunit+'; text-decoration: '+o3_textdecoration+'; font-weight: '+o3_textweight+'; font-style:'+o3_textstyle+'">'+text+'</font></td></tr></table></td></tr></table>';
  130. set_background("");
  131. return txt;
  132. }
  133. // Sets the background picture, padding and lots more. :)
  134. function ol_content_background_cssstyle(text, picture, hasfullhtml) {
  135. if (hasfullhtml) {
  136. txt = text;
  137. } else {
  138. var pU, hU, wU;
  139. pU = (o3_padunit == '%' ? '%' : '');
  140. hU = (o3_heightunit == '%' ? '%' : '');
  141. wU = (o3_widthunit == '%' ? '%' : '');
  142. txt = '<table width="'+o3_width+wu+'" border="0" cellpadding="0" cellspacing="0" height="'+o3_height+hu+'"><tr><td colspan="3" height="'+o3_padyt+pu+'"></td></tr><tr><td width="'+o3_padxl+pu+'"></td><td valign="TOP" width="'+(o3_width-o3_padxl-o3_padxr)+pu+'"><font style="font-family: '+o3_textfont+'; color: '+o3_textcolor+'; font-size: '+o3_textsize+o3_textsizeunit+';">'+text+'</font></td><td width="'+o3_padxr+pu+'"></td></tr><tr><td colspan="3" height="'+o3_padyb+pu+'"></td></tr></table>';
  143. }
  144. set_background(picture);
  145. return txt;
  146. }
  147. ////////
  148. // PLUGIN REGISTRATIONS
  149. ////////
  150. registerRunTimeFunction(setCSSStyleVariables);
  151. registerCmdLineFunction(parseCSSStyleExtras);
  152. registerHook("ol_content_simple", ol_content_simple_cssstyle, FALTERNATE, CSSSTYLE);
  153. registerHook("ol_content_caption", ol_content_caption_cssstyle, FALTERNATE, CSSSTYLE);
  154. registerHook("ol_content_background", ol_content_background_cssstyle, FALTERNATE, CSSSTYLE);
  155. }