All Classes Namespaces Files Functions Variables
navtree.js
Go to the documentation of this file.
1 var NAVTREE =
2 [
3  [ "Main Page", "index.html", [
4  [ "Namespaces", null, [
5  [ "Namespace List", "namespaces.html", "namespaces" ]
6  ] ],
7  [ "Classes", null, [
8  [ "Class List", "annotated.html", "annotated" ],
9  [ "Class Index", "classes.html", null ],
10  [ "Class Hierarchy", "hierarchy.html", "hierarchy" ],
11  [ "Class Members", "functions.html", [
12  [ "All", "functions.html", null ],
13  [ "Functions", "functions_func.html", null ],
14  [ "Variables", "functions_vars.html", null ]
15  ] ]
16  ] ],
17  [ "Files", null, [
18  [ "File List", "files.html", "files" ],
19  [ "File Members", "globals.html", [
20  [ "All", "globals.html", null ],
21  [ "Functions", "globals_func.html", null ]
22  ] ]
23  ] ]
24  ] ]
25 ];
26 
28 [
29 "ComboBoxChooser_8java.html"
30 ];
31 
32 var SYNCONMSG = 'click to disable panel synchronisation';
33 var SYNCOFFMSG = 'click to enable panel synchronisation';
34 var navTreeSubIndices = new Array();
35 
36 function getData(varName)
37 {
38  var i = varName.lastIndexOf('/');
39  var n = i>=0 ? varName.substring(i+1) : varName;
40  return eval(n.replace(/\-/g,'_'));
41 }
42 
43 function stripPath(uri)
44 {
45  return uri.substring(uri.lastIndexOf('/')+1);
46 }
47 
48 function stripPath2(uri)
49 {
50  var i = uri.lastIndexOf('/');
51  var s = uri.substring(i+1);
52  var m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/);
53  return m ? uri.substring(i-6) : s;
54 }
55 
57 {
58  try {
59  return 'localStorage' in window && window['localStorage'] !== null && window.localStorage.getItem;
60  }
61  catch(e) {
62  return false;
63  }
64 }
65 
66 
67 function storeLink(link)
68 {
69  if (!$("#nav-sync").hasClass('sync') && localStorageSupported()) {
70  window.localStorage.setItem('navpath',link);
71  }
72 }
73 
74 function deleteLink()
75 {
76  if (localStorageSupported()) {
77  window.localStorage.setItem('navpath','');
78  }
79 }
80 
81 function cachedLink()
82 {
83  if (localStorageSupported()) {
84  return window.localStorage.getItem('navpath');
85  } else {
86  return '';
87  }
88 }
89 
90 function getScript(scriptName,func,show)
91 {
92  var head = document.getElementsByTagName("head")[0];
93  var script = document.createElement('script');
94  script.id = scriptName;
95  script.type = 'text/javascript';
96  script.onload = func;
97  script.src = scriptName+'.js';
98  if ($.browser.msie && $.browser.version<=8) {
99  // script.onload does not work with older versions of IE
100  script.onreadystatechange = function() {
101  if (script.readyState=='complete' || script.readyState=='loaded') {
102  func(); if (show) showRoot();
103  }
104  }
105  }
106  head.appendChild(script);
107 }
108 
109 function createIndent(o,domNode,node,level)
110 {
111  var level=-1;
112  var n = node;
113  while (n.parentNode) { level++; n=n.parentNode; }
114  var imgNode = document.createElement("img");
115  imgNode.style.paddingLeft=(16*level).toString()+'px';
116  imgNode.width = 16;
117  imgNode.height = 22;
118  imgNode.border = 0;
119  if (node.childrenData) {
120  node.plus_img = imgNode;
121  node.expandToggle = document.createElement("a");
122  node.expandToggle.href = "javascript:void(0)";
123  node.expandToggle.onclick = function() {
124  if (node.expanded) {
125  $(node.getChildrenUL()).slideUp("fast");
126  node.plus_img.src = node.relpath+"ftv2pnode.png";
127  node.expanded = false;
128  } else {
129  expandNode(o, node, false, false);
130  }
131  }
132  node.expandToggle.appendChild(imgNode);
133  domNode.appendChild(node.expandToggle);
134  imgNode.src = node.relpath+"ftv2pnode.png";
135  } else {
136  imgNode.src = node.relpath+"ftv2node.png";
137  domNode.appendChild(imgNode);
138  }
139 }
140 
142 
143 function gotoAnchor(anchor,aname,updateLocation)
144 {
145  var pos, docContent = $('#doc-content');
146  if (anchor.parent().attr('class')=='memItemLeft' ||
147  anchor.parent().attr('class')=='fieldtype' ||
148  anchor.parent().is(':header'))
149  {
150  pos = anchor.parent().position().top;
151  } else if (anchor.position()) {
152  pos = anchor.position().top;
153  }
154  if (pos) {
155  var dist = Math.abs(Math.min(
156  pos-docContent.offset().top,
157  docContent[0].scrollHeight-
158  docContent.height()-docContent.scrollTop()));
159  animationInProgress=true;
160  docContent.animate({
161  scrollTop: pos + docContent.scrollTop() - docContent.offset().top
162  },Math.max(50,Math.min(500,dist)),function(){
163  if (updateLocation) window.location.href=aname;
164  animationInProgress=false;
165  });
166  }
167 }
168 
169 function newNode(o, po, text, link, childrenData, lastNode)
170 {
171  var node = new Object();
172  node.children = Array();
173  node.childrenData = childrenData;
174  node.depth = po.depth + 1;
175  node.relpath = po.relpath;
176  node.isLast = lastNode;
177 
178  node.li = document.createElement("li");
179  po.getChildrenUL().appendChild(node.li);
180  node.parentNode = po;
181 
182  node.itemDiv = document.createElement("div");
183  node.itemDiv.className = "item";
184 
185  node.labelSpan = document.createElement("span");
186  node.labelSpan.className = "label";
187 
188  createIndent(o,node.itemDiv,node,0);
189  node.itemDiv.appendChild(node.labelSpan);
190  node.li.appendChild(node.itemDiv);
191 
192  var a = document.createElement("a");
193  node.labelSpan.appendChild(a);
194  node.label = document.createTextNode(text);
195  node.expanded = false;
196  a.appendChild(node.label);
197  if (link) {
198  var url;
199  if (link.substring(0,1)=='^') {
200  url = link.substring(1);
201  link = url;
202  } else {
203  url = node.relpath+link;
204  }
205  a.className = stripPath(link.replace('#',':'));
206  if (link.indexOf('#')!=-1) {
207  var aname = '#'+link.split('#')[1];
208  var srcPage = stripPath($(location).attr('pathname'));
209  var targetPage = stripPath(link.split('#')[0]);
210  a.href = srcPage!=targetPage ? url : "javascript:void(0)";
211  a.onclick = function(){
212  storeLink(link);
213  if (!$(a).parent().parent().hasClass('selected'))
214  {
215  $('.item').removeClass('selected');
216  $('.item').removeAttr('id');
217  $(a).parent().parent().addClass('selected');
218  $(a).parent().parent().attr('id','selected');
219  }
220  var anchor = $(aname);
221  gotoAnchor(anchor,aname,true);
222  };
223  } else {
224  a.href = url;
225  a.onclick = function() { storeLink(link); }
226  }
227  } else {
228  if (childrenData != null)
229  {
230  a.className = "nolink";
231  a.href = "javascript:void(0)";
232  a.onclick = node.expandToggle.onclick;
233  }
234  }
235 
236  node.childrenUL = null;
237  node.getChildrenUL = function() {
238  if (!node.childrenUL) {
239  node.childrenUL = document.createElement("ul");
240  node.childrenUL.className = "children_ul";
241  node.childrenUL.style.display = "none";
242  node.li.appendChild(node.childrenUL);
243  }
244  return node.childrenUL;
245  };
246 
247  return node;
248 }
249 
250 function showRoot()
251 {
252  var headerHeight = $("#top").height();
253  var footerHeight = $("#nav-path").height();
254  var windowHeight = $(window).height() - headerHeight - footerHeight;
255  (function (){ // retry until we can scroll to the selected item
256  try {
257  var navtree=$('#nav-tree');
258  navtree.scrollTo('#selected',0,{offset:-windowHeight/2});
259  } catch (err) {
260  setTimeout(arguments.callee, 0);
261  }
262  })();
263 }
264 
265 function expandNode(o, node, imm, showRoot)
266 {
267  if (node.childrenData && !node.expanded) {
268  if (typeof(node.childrenData)==='string') {
269  var varName = node.childrenData;
270  getScript(node.relpath+varName,function(){
271  node.childrenData = getData(varName);
272  expandNode(o, node, imm, showRoot);
273  }, showRoot);
274  } else {
275  if (!node.childrenVisited) {
276  getNode(o, node);
277  } if (imm || ($.browser.msie && $.browser.version>8)) {
278  // somehow slideDown jumps to the start of tree for IE9 :-(
279  $(node.getChildrenUL()).show();
280  } else {
281  $(node.getChildrenUL()).slideDown("fast");
282  }
283  if (node.isLast) {
284  node.plus_img.src = node.relpath+"ftv2mlastnode.png";
285  } else {
286  node.plus_img.src = node.relpath+"ftv2mnode.png";
287  }
288  node.expanded = true;
289  }
290  }
291 }
292 
293 function glowEffect(n,duration)
294 {
295  n.addClass('glow').delay(duration).queue(function(next){
296  $(this).removeClass('glow');next();
297  });
298 }
299 
300 function highlightAnchor()
301 {
302  var aname = $(location).attr('hash');
303  var anchor = $(aname);
304  if (anchor.parent().attr('class')=='memItemLeft'){
305  var rows = $('.memberdecls tr[class$="'+
306  window.location.hash.substring(1)+'"]');
307  glowEffect(rows.children(),300); // member without details
308  } else if (anchor.parents().slice(2).prop('tagName')=='TR') {
309  glowEffect(anchor.parents('div.memitem'),1000); // enum value
310  } else if (anchor.parent().attr('class')=='fieldtype'){
311  glowEffect(anchor.parent().parent(),1000); // struct field
312  } else if (anchor.parent().is(":header")) {
313  glowEffect(anchor.parent(),1000); // section header
314  } else {
315  glowEffect(anchor.next(),1000); // normal member
316  }
317  gotoAnchor(anchor,aname,false);
318 }
319 
320 function selectAndHighlight(hash,n)
321 {
322  var a;
323  if (hash) {
324  var link=stripPath($(location).attr('pathname'))+':'+hash.substring(1);
325  a=$('.item a[class$="'+link+'"]');
326  }
327  if (a && a.length) {
328  a.parent().parent().addClass('selected');
329  a.parent().parent().attr('id','selected');
330  highlightAnchor();
331  } else if (n) {
332  $(n.itemDiv).addClass('selected');
333  $(n.itemDiv).attr('id','selected');
334  }
335  if ($('#nav-tree-contents .item:first').hasClass('selected')) {
336  $('#nav-sync').css('top','30px');
337  } else {
338  $('#nav-sync').css('top','5px');
339  }
340  showRoot();
341 }
342 
343 function showNode(o, node, index, hash)
344 {
345  if (node && node.childrenData) {
346  if (typeof(node.childrenData)==='string') {
347  var varName = node.childrenData;
348  getScript(node.relpath+varName,function(){
349  node.childrenData = getData(varName);
350  showNode(o,node,index,hash);
351  },true);
352  } else {
353  if (!node.childrenVisited) {
354  getNode(o, node);
355  }
356  $(node.getChildrenUL()).show();
357  if (node.isLast) {
358  node.plus_img.src = node.relpath+"ftv2mlastnode.png";
359  } else {
360  node.plus_img.src = node.relpath+"ftv2mnode.png";
361  }
362  node.expanded = true;
363  var n = node.children[o.breadcrumbs[index]];
364  if (index+1<o.breadcrumbs.length) {
365  showNode(o,n,index+1,hash);
366  } else {
367  if (typeof(n.childrenData)==='string') {
368  var varName = n.childrenData;
369  getScript(n.relpath+varName,function(){
370  n.childrenData = getData(varName);
371  node.expanded=false;
372  showNode(o,node,index,hash); // retry with child node expanded
373  },true);
374  } else {
375  var rootBase = stripPath(o.toroot.replace(/\..+$/, ''));
376  if (rootBase=="index" || rootBase=="pages" || rootBase=="search") {
377  expandNode(o, n, true, true);
378  }
379  selectAndHighlight(hash,n);
380  }
381  }
382  }
383  } else {
384  selectAndHighlight(hash);
385  }
386 }
387 
388 function getNode(o, po)
389 {
390  po.childrenVisited = true;
391  var l = po.childrenData.length-1;
392  for (var i in po.childrenData) {
393  var nodeData = po.childrenData[i];
394  po.children[i] = newNode(o, po, nodeData[0], nodeData[1], nodeData[2],
395  i==l);
396  }
397 }
398 
399 function gotoNode(o,subIndex,root,hash,relpath)
400 {
401  var nti = navTreeSubIndices[subIndex][root+hash];
402  o.breadcrumbs = $.extend(true, [], nti ? nti : navTreeSubIndices[subIndex][root]);
403  if (!o.breadcrumbs && root!=NAVTREE[0][1]) { // fallback: show index
404  navTo(o,NAVTREE[0][1],"",relpath);
405  $('.item').removeClass('selected');
406  $('.item').removeAttr('id');
407  }
408  if (o.breadcrumbs) {
409  o.breadcrumbs.unshift(0); // add 0 for root node
410  showNode(o, o.node, 0, hash);
411  }
412 }
413 
414 function navTo(o,root,hash,relpath)
415 {
416  var link = cachedLink();
417  if (link) {
418  var parts = link.split('#');
419  root = parts[0];
420  if (parts.length>1) hash = '#'+parts[1];
421  else hash='';
422  }
423  if (hash.match(/^#l\d+$/)) {
424  var anchor=$('a[name='+hash.substring(1)+']');
425  glowEffect(anchor.parent(),1000); // line number
426  hash=''; // strip line number anchors
427  //root=root.replace(/_source\./,'.'); // source link to doc link
428  }
429  var url=root+hash;
430  var i=-1;
431  while (NAVTREEINDEX[i+1]<=url) i++;
432  if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index
433  if (navTreeSubIndices[i]) {
434  gotoNode(o,i,root,hash,relpath)
435  } else {
436  getScript(relpath+'navtreeindex'+i,function(){
437  navTreeSubIndices[i] = eval('NAVTREEINDEX'+i);
438  if (navTreeSubIndices[i]) {
439  gotoNode(o,i,root,hash,relpath);
440  }
441  },true);
442  }
443 }
444 
445 function showSyncOff(n,relpath)
446 {
447  n.html('<img src="'+relpath+'sync_off.png" title="'+SYNCOFFMSG+'"/>');
448 }
449 
450 function showSyncOn(n,relpath)
451 {
452  n.html('<img src="'+relpath+'sync_on.png" title="'+SYNCONMSG+'"/>');
453 }
454 
455 function toggleSyncButton(relpath)
456 {
457  var navSync = $('#nav-sync');
458  if (navSync.hasClass('sync')) {
459  navSync.removeClass('sync');
460  showSyncOff(navSync,relpath);
461  storeLink(stripPath2($(location).attr('pathname'))+$(location).attr('hash'));
462  } else {
463  navSync.addClass('sync');
464  showSyncOn(navSync,relpath);
465  deleteLink();
466  }
467 }
468 
469 function initNavTree(toroot,relpath)
470 {
471  var o = new Object();
472  o.toroot = toroot;
473  o.node = new Object();
474  o.node.li = document.getElementById("nav-tree-contents");
475  o.node.childrenData = NAVTREE;
476  o.node.children = new Array();
477  o.node.childrenUL = document.createElement("ul");
478  o.node.getChildrenUL = function() { return o.node.childrenUL; };
479  o.node.li.appendChild(o.node.childrenUL);
480  o.node.depth = 0;
481  o.node.relpath = relpath;
482  o.node.expanded = false;
483  o.node.isLast = true;
484  o.node.plus_img = document.createElement("img");
485  o.node.plus_img.src = relpath+"ftv2pnode.png";
486  o.node.plus_img.width = 16;
487  o.node.plus_img.height = 22;
488 
489  if (localStorageSupported()) {
490  var navSync = $('#nav-sync');
491  if (cachedLink()) {
492  showSyncOff(navSync,relpath);
493  navSync.removeClass('sync');
494  } else {
495  showSyncOn(navSync,relpath);
496  }
497  navSync.click(function(){ toggleSyncButton(relpath); });
498  }
499 
500  navTo(o,toroot,window.location.hash,relpath);
501 
502  $(window).bind('hashchange', function(){
503  if (window.location.hash && window.location.hash.length>1){
504  var a;
505  if ($(location).attr('hash')){
506  var clslink=stripPath($(location).attr('pathname'))+':'+
507  $(location).attr('hash').substring(1);
508  a=$('.item a[class$="'+clslink+'"]');
509  }
510  if (a==null || !$(a).parent().parent().hasClass('selected')){
511  $('.item').removeClass('selected');
512  $('.item').removeAttr('id');
513  }
514  var link=stripPath2($(location).attr('pathname'));
515  navTo(o,link,$(location).attr('hash'),relpath);
516  } else if (!animationInProgress) {
517  $('#doc-content').scrollTop(0);
518  $('.item').removeClass('selected');
519  $('.item').removeAttr('id');
520  navTo(o,toroot,window.location.hash,relpath);
521  }
522  })
523 
524  $(window).load(showRoot);
525 }
526