home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 October / Chip_2001-10_cd1.bin / tema / paladix / images_soubory / menu_soubory / ftiens4.js next >
Text File  |  2001-09-06  |  13KB  |  474 lines

  1. //**************************************************************** 
  2. // You are free to copy the "Folder-Tree" script as long as you  
  3. // keep this copyright notice: 
  4. // Author: Marcelino Alves Martins (martins@hks.com) December '97. 
  5. // Modified: Patrick Hess (hess@dland.de) March 2000
  6. //           changed: global variables define the path to the
  7. //                    .gif files (classPath), the names of the
  8. //              images (ftv2folderopen, ftv2*, ...) and the
  9. //              destination frame (basefrm)
  10. //
  11. // For PALADIX: Petr Pazour, november 2000
  12. //**************************************************************** 
  13.  
  14. // Definition of class Folder 
  15. // ***************************************************************** 
  16.  
  17. function Folder(folderDescription, hreference, act) //constructor 
  18.   //constant data 
  19.   this.desc = folderDescription 
  20.   this.hreference = hreference 
  21.   this.act = act
  22.   this.id = -1   
  23.   this.navObj = 0  
  24.   this.iconImg = 0  
  25.   this.nodeImg = 0  
  26.   this.isLastNode = 0 
  27.  
  28.   //dynamic data 
  29.   this.isOpen = true 
  30.   this.iconSrc = classPath+"/"+ftv2folderopen   
  31.   this.children = new Array 
  32.   this.nChildren = 0 
  33.  
  34.   //methods 
  35.   this.initialize = initializeFolder 
  36.   this.setState = setStateFolder 
  37.   this.addChild = addChild 
  38.   this.createIndex = createEntryIndex 
  39.   this.hide = hideFolder 
  40.   this.display = display 
  41.   this.renderOb = drawFolder 
  42.   this.totalHeight = totalHeight 
  43.   this.subEntries = folderSubEntries 
  44.   this.outputLink = outputFolderLink 
  45.  
  46. function setStateFolder(isOpen) 
  47.   var subEntries 
  48.   var totalHeight 
  49.   var fIt = 0 
  50.   var i=0 
  51.  
  52.   if (isOpen == this.isOpen) 
  53.     return 
  54.  
  55.   if (browserVersion == 2)  
  56.   { 
  57.     totalHeight = 0 
  58.     for (i=0; i < this.nChildren; i++) 
  59.       totalHeight = totalHeight + this.children[i].navObj.clip.height 
  60.       subEntries = this.subEntries() 
  61.     if (this.isOpen) 
  62.       totalHeight = 0 - totalHeight 
  63.     for (fIt = this.id + subEntries + 1; fIt < nEntries; fIt++) 
  64.       indexOfEntries[fIt].navObj.moveBy(0, totalHeight) 
  65.   }  
  66.   this.isOpen = isOpen 
  67.   propagateChangesInState(this) 
  68.  
  69. function propagateChangesInState(folder) 
  70. {   
  71.   var i=0 
  72.  
  73.   if (folder.isOpen) 
  74.   { 
  75.     if (folder.nodeImg) 
  76.       if (folder.isLastNode) 
  77.         folder.nodeImg.src = classPath+"/"+ftv2mlastnode 
  78.       else 
  79.       folder.nodeImg.src = classPath+"/"+ftv2mnode
  80.     folder.iconImg.src = classPath+"/"+ftv2folderopen
  81.     for (i=0; i<folder.nChildren; i++) 
  82.       folder.children[i].display() 
  83.   } 
  84.   else 
  85.   { 
  86.     if (folder.nodeImg) 
  87.       if (folder.isLastNode) 
  88.         folder.nodeImg.src = classPath+"/"+ftv2plastnode 
  89.       else 
  90.       folder.nodeImg.src = classPath+"/"+ftv2pnode
  91.     folder.iconImg.src = classPath+"/"+ftv2folderclosed 
  92.     for (i=0; i<folder.nChildren; i++) 
  93.       folder.children[i].hide() 
  94.   }  
  95.  
  96. function hideFolder() 
  97.   if (browserVersion == 1) { 
  98.     if (this.navObj.style.display == "none") 
  99.       return 
  100.     this.navObj.style.display = "none" 
  101.   } else { 
  102.     if (this.navObj.visibility == "hiden") 
  103.       return 
  104.     this.navObj.visibility = "hiden" 
  105.   } 
  106.    
  107.   this.setState(0) 
  108.  
  109. function initializeFolder(level, lastNode, leftSide) 
  110. var j=0 
  111. var i=0 
  112. var numberOfFolders 
  113. var numberOfDocs 
  114. var nc 
  115.       
  116.   nc = this.nChildren 
  117.    
  118.   this.createIndex() 
  119.  
  120.   var auxEv = "" 
  121.  
  122.   if (browserVersion > 0) 
  123.     auxEv = "<a href='javascript:clickOnNode("+this.id+")'>" 
  124.   else 
  125.     auxEv = "<a>" 
  126.  
  127.   if (level>0) 
  128.     if (lastNode) //the last 'brother' in the children array 
  129.     { 
  130.       this.renderOb(leftSide + auxEv + "<img name='nodeIcon" + this.id + "' src='"+classPath+"/"+ftv2mlastnode+"' width=16 height=22 border=0></a>") 
  131.       leftSide = leftSide + "<img src='"+classPath+"/"+ftv2blank+"' width=16 height=22>"  
  132.       this.isLastNode = 1 
  133.     } 
  134.     else 
  135.     { 
  136.       this.renderOb(leftSide + auxEv + "<img name='nodeIcon" + this.id + "' src='"+classPath+"/"+ftv2mnode+"' width=16 height=22 border=0></a>") 
  137.       leftSide = leftSide + "<img src='"+classPath+"/"+ftv2vertline+"' width=16 height=22>" 
  138.       this.isLastNode = 0 
  139.     } 
  140.   else 
  141.     this.renderOb("") 
  142.    
  143.   if (nc > 0) 
  144.   { 
  145.     level = level + 1 
  146.     for (i=0 ; i < this.nChildren; i++)  
  147.     { 
  148.       if (i == this.nChildren-1) 
  149.         this.children[i].initialize(level, 1, leftSide) 
  150.       else 
  151.         this.children[i].initialize(level, 0, leftSide) 
  152.       } 
  153.   } 
  154.  
  155. function drawFolder(leftSide) 
  156.   if (browserVersion == 2) { 
  157.     if (!doc.yPos) 
  158.       doc.yPos=8 
  159.     doc.write("<layer id='folder" + this.id + "' top=" + doc.yPos + " visibility=hiden>") 
  160.   } 
  161.    
  162.   doc.write("<table ") 
  163.   if (browserVersion == 1) 
  164.     doc.write(" id='folder" + this.id + "' style='position:block;' ") 
  165.   doc.write(" border=0 cellspacing=0 cellpadding=0>") 
  166.   doc.write("<tr><td>") 
  167.   doc.write(leftSide) 
  168.   this.outputLink() 
  169.   doc.write("<img name='folderIcon" + this.id + "' ") 
  170.   doc.write("src='" + this.iconSrc+"' border=0></a>") 
  171. //  doc.write("</td><td valign=middle nowrap class=small>") 
  172.   doc.write("</td><td valign=middle class=small>") 
  173.   if (USETEXTLINKS) 
  174.   { 
  175.     this.outputLink() 
  176.     if(this.act ==1) {
  177.         doc.write("<b>" + this.desc + "</b></a>")
  178.     } else {
  179.         doc.write(this.desc + "</a>")    
  180.     }
  181.   } 
  182.   else 
  183.     doc.write(this.desc) 
  184.   doc.write("</td>")  
  185.   doc.write("</table>") 
  186.    
  187.   if (browserVersion == 2) { 
  188.     doc.write("</layer>") 
  189.   } 
  190.  
  191.   if (browserVersion == 1) { 
  192.     this.navObj = doc.all["folder"+this.id] 
  193.     this.iconImg = doc.all["folderIcon"+this.id] 
  194.     this.nodeImg = doc.all["nodeIcon"+this.id] 
  195.   } else if (browserVersion == 2) { 
  196.     this.navObj = doc.layers["folder"+this.id] 
  197.     this.iconImg = this.navObj.document.images["folderIcon"+this.id] 
  198.     this.nodeImg = this.navObj.document.images["nodeIcon"+this.id] 
  199.     doc.yPos=doc.yPos+this.navObj.clip.height 
  200.   } 
  201.  
  202. function outputFolderLink() 
  203. /*
  204.   if (this.hreference) 
  205.   { 
  206.     doc.write("<a href='" + this.hreference + "' TARGET=\""+basefrm+"\" ") 
  207.     if (browserVersion > 0) 
  208.       doc.write("onClick='javascript:clickOnFolder("+this.id+")'") 
  209.     doc.write(">") 
  210.   } 
  211.   else 
  212. */
  213.     doc.write("<a href='javascript:clickOnNode("+this.id+")'>") 
  214.  
  215. function addChild(childNode) 
  216.   this.children[this.nChildren] = childNode 
  217.   this.nChildren++ 
  218.   return childNode 
  219.  
  220. function folderSubEntries() 
  221.   var i = 0 
  222.   var se = this.nChildren 
  223.  
  224.   for (i=0; i < this.nChildren; i++){ 
  225.     if (this.children[i].children) //is a folder 
  226.       se = se + this.children[i].subEntries() 
  227.   } 
  228.  
  229.   return se 
  230.  
  231.  
  232. // Definition of class Item (a document or link inside a Folder) 
  233. // ************************************************************* 
  234.  
  235. function Item(itemDescription, itemLink, itemAct) // Constructor 
  236.   // constant data 
  237.   this.desc = itemDescription 
  238.   this.link = itemLink 
  239.   this.act = itemAct
  240.   this.id = -1 //initialized in initalize() 
  241.   this.navObj = 0 //initialized in render() 
  242.   this.iconImg = 0 //initialized in render() 
  243.   this.iconSrc = classPath+"/"+ftv2doc 
  244.  
  245.   // methods 
  246.   this.initialize = initializeItem 
  247.   this.createIndex = createEntryIndex 
  248.   this.hide = hideItem 
  249.   this.display = display 
  250.   this.renderOb = drawItem 
  251.   this.totalHeight = totalHeight 
  252.  
  253. function hideItem() 
  254.   if (browserVersion == 1) { 
  255.     if (this.navObj.style.display == "none") 
  256.       return 
  257.     this.navObj.style.display = "none" 
  258.   } else { 
  259.     if (this.navObj.visibility == "hiden") 
  260.       return 
  261.     this.navObj.visibility = "hiden" 
  262.   }     
  263.  
  264. function initializeItem(level, lastNode, leftSide) 
  265. {  
  266.   this.createIndex() 
  267.  
  268.   if (level>0) 
  269.     if (lastNode) //the last 'brother' in the children array 
  270.     { 
  271.       this.renderOb(leftSide + "<img src='"+classPath+"/"+ftv2lastnode+"' width=16 height=22>") 
  272.       leftSide = leftSide + "<img src='"+classPath+"/"+ftv2blank+"' width=16 height=22>"  
  273.     } 
  274.     else 
  275.     { 
  276.       this.renderOb(leftSide + "<img src='"+classPath+"/"+ftv2node+"' width=16 height=22>") 
  277.       leftSide = leftSide + "<img src='"+classPath+"/"+ftv2vertline+"' width=16 height=22>" 
  278.     } 
  279.   else 
  280.     this.renderOb("")   
  281.  
  282. function drawItem(leftSide) 
  283.   if (browserVersion == 2) 
  284.     doc.write("<layer id='item" + this.id + "' top=" + doc.yPos + " visibility=hiden>") 
  285.      
  286.   doc.write("<table ") 
  287.   if (browserVersion == 1) 
  288.     doc.write(" id='item" + this.id + "' style='position:block;' ") 
  289.   doc.write(" border=0 cellspacing=0 cellpadding=0>") 
  290.   doc.write("<tr><td>") 
  291.   doc.write(leftSide) 
  292.   doc.write("<a href=" + this.link + ">") 
  293.   doc.write("<img id='itemIcon"+this.id+"' ") 
  294.   doc.write("src='"+this.iconSrc+"' border=0>") 
  295.   doc.write("</a>") 
  296. //  doc.write("</td><td valign=middle nowrap class=small>") 
  297.   doc.write("</td><td valign=middle class=small>") 
  298.   if (USETEXTLINKS) 
  299.     if(this.act ==1) {
  300.         doc.write("<a href=" + this.link + "><b>" + this.desc + "</b></a>") 
  301.     } else {
  302.         doc.write("<a href=" + this.link + ">" + this.desc + "</a>")     
  303.     }
  304.   else 
  305.     doc.write(this.desc) 
  306.   doc.write("</table>") 
  307.    
  308.   if (browserVersion == 2) 
  309.     doc.write("</layer>") 
  310.  
  311.   if (browserVersion == 1) { 
  312.     this.navObj = doc.all["item"+this.id] 
  313.     this.iconImg = doc.all["itemIcon"+this.id] 
  314.   } else if (browserVersion == 2) { 
  315.     this.navObj = doc.layers["item"+this.id] 
  316.     this.iconImg = this.navObj.document.images["itemIcon"+this.id] 
  317.     doc.yPos=doc.yPos+this.navObj.clip.height 
  318.   } 
  319.  
  320.  
  321. // Methods common to both objects (pseudo-inheritance) 
  322. // ******************************************************** 
  323.  
  324. function display() 
  325.   if (browserVersion == 1) 
  326.     this.navObj.style.display = "block" 
  327.   else 
  328.     this.navObj.visibility = "show" 
  329.  
  330. function createEntryIndex() 
  331.   this.id = nEntries 
  332.   indexOfEntries[nEntries] = this 
  333.   nEntries++ 
  334.  
  335. // total height of subEntries open 
  336. function totalHeight() //used with browserVersion == 2 
  337.   var h = this.navObj.clip.height 
  338.   var i = 0 
  339.    
  340.   if (this.isOpen) //is a folder and _is_ open 
  341.     for (i=0 ; i < this.nChildren; i++)  
  342.       h = h + this.children[i].totalHeight() 
  343.  
  344.   return h 
  345.  
  346.  
  347. // Events 
  348. // ********************************************************* 
  349.  
  350. function clickOnFolder(folderId) 
  351.   var clicked = indexOfEntries[folderId] 
  352.  
  353.   if (!clicked.isOpen) 
  354.     clickOnNode(folderId) 
  355.  
  356.   return  
  357.  
  358.   if (clicked.isSelected) 
  359.     return 
  360.  
  361. function clickOnNode(folderId) 
  362.   var clickedFolder = 0 
  363.   var state = 0 
  364.  
  365.   clickedFolder = indexOfEntries[folderId] 
  366.   state = clickedFolder.isOpen 
  367.  
  368.   clickedFolder.setState(!state) //open<->close  
  369.  
  370. function initializeDocument() 
  371.   if (doc.all) 
  372.     browserVersion = 1 //IE4   
  373.   else 
  374.     if (doc.layers) 
  375.       browserVersion = 2 //NS4 
  376.     else 
  377.       browserVersion = 0 //other 
  378.  
  379.   foldersTree.initialize(0, 1, "") 
  380.   foldersTree.display()
  381.   
  382.   if (browserVersion > 0) 
  383.   { 
  384.     doc.write("<layer top="+indexOfEntries[nEntries-1].navObj.top+"> </layer>") 
  385.  
  386.     // close the whole tree 
  387.     clickOnNode(0) 
  388.     // open the root folder 
  389.     clickOnNode(0) 
  390.   } 
  391.  
  392. // Auxiliary Functions for Folder-Treee backward compatibility 
  393. // ********************************************************* 
  394.  
  395. function gFld(description, hreference, act) 
  396.   folder = new Folder(description, hreference, act) 
  397.   return folder 
  398.  
  399. function gLnk(target, description, linkData, act) 
  400.     myRe=/^http:\/\//i;
  401.  
  402.     if(isNaN(linkData)) {
  403.         if(myRe.test("linkData")) {
  404.             fullLink = "'"+linkData+"' target=\"_new\""
  405.         } else {
  406.             fullLink = "'"+linkData+"' target=\""+basefrm+"\""
  407.         }
  408.     } else {
  409.         fullLink = "'obchod.htmzbozi.php?idr="+linkData+"' target=\""+basefrm+"\""
  410.     }    
  411. //  fullLink = linkData
  412.   linkItem = new Item(description, fullLink, act)   
  413.   return linkItem 
  414.  
  415. function insFld(parentFolder, childFolder) 
  416.   return parentFolder.addChild(childFolder) 
  417.  
  418. function insDoc(parentFolder, document) 
  419.   parentFolder.addChild(document) 
  420.  
  421. // Global variables 
  422. // **************** 
  423.  
  424. USETEXTLINKS = 1
  425. indexOfEntries = new Array 
  426. nEntries = 0
  427. doc = document 
  428. browserVersion = 2
  429. selectedFolder=1
  430.