3 [
"Main Page",
"index.html", [
4 [
"Namespaces", null, [
5 [
"Namespace List",
"namespaces.html",
"namespaces" ]
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 ]
18 [
"File List",
"files.html",
"files" ],
19 [
"File Members",
"globals.html", [
20 [
"All",
"globals.html", null ],
21 [
"Functions",
"globals_func.html", null ]
29 "ComboBoxChooser_8java.html"
32 var
SYNCONMSG =
'click to disable panel synchronisation';
33 var
SYNCOFFMSG =
'click to enable panel synchronisation';
38 var
i = varName.lastIndexOf(
'/');
39 var n = i>=0 ? varName.substring(i+1) : varName;
40 return eval(n.replace(/\-/g,
'_'));
45 return uri.substring(uri.lastIndexOf(
'/')+1);
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;
59 return 'localStorage' in window && window[
'localStorage'] !== null && window.localStorage.getItem;
70 window.localStorage.setItem(
'navpath',link);
77 window.localStorage.setItem(
'navpath',
'');
84 return window.localStorage.getItem(
'navpath');
92 var head = document.getElementsByTagName(
"head")[0];
93 var script = document.createElement(
'script');
94 script.id = scriptName;
95 script.type =
'text/javascript';
97 script.src = scriptName+
'.js';
98 if ($.browser.msie && $.browser.version<=8) {
100 script.onreadystatechange =
function() {
101 if (script.readyState==
'complete' || script.readyState==
'loaded') {
106 head.appendChild(script);
113 while (n.parentNode) { level++; n=n.parentNode; }
114 var imgNode = document.createElement(
"img");
115 imgNode.style.paddingLeft=(16*level).toString()+
'px';
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() {
125 $(node.getChildrenUL()).slideUp(
"fast");
126 node.plus_img.src = node.relpath+
"ftv2pnode.png";
127 node.expanded =
false;
132 node.expandToggle.appendChild(imgNode);
133 domNode.appendChild(node.expandToggle);
134 imgNode.src = node.relpath+
"ftv2pnode.png";
136 imgNode.src = node.relpath+
"ftv2node.png";
137 domNode.appendChild(imgNode);
145 var pos, docContent = $(
'#doc-content');
146 if (anchor.parent().attr(
'class')==
'memItemLeft' ||
147 anchor.parent().attr(
'class')==
'fieldtype' ||
148 anchor.parent().is(
':header'))
150 pos = anchor.parent().position().top;
151 }
else if (anchor.position()) {
152 pos = anchor.position().top;
155 var dist = Math.abs(Math.min(
156 pos-docContent.offset().top,
157 docContent[0].scrollHeight-
158 docContent.height()-docContent.scrollTop()));
161 scrollTop: pos + docContent.scrollTop() - docContent.offset().top
162 },Math.max(50,Math.min(500,dist)),
function(){
163 if (updateLocation) window.location.href=aname;
169 function newNode(
o, po, text, link, childrenData, lastNode)
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;
178 node.li = document.createElement(
"li");
179 po.getChildrenUL().appendChild(node.li);
180 node.parentNode = po;
182 node.itemDiv = document.createElement(
"div");
183 node.itemDiv.className =
"item";
185 node.labelSpan = document.createElement(
"span");
186 node.labelSpan.className =
"label";
189 node.itemDiv.appendChild(node.labelSpan);
190 node.li.appendChild(node.itemDiv);
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);
199 if (link.substring(0,1)==
'^') {
200 url = link.substring(1);
203 url = node.relpath+link;
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(){
213 if (!$(a).parent().parent().hasClass(
'selected'))
215 $(
'.item').removeClass(
'selected');
216 $(
'.item').removeAttr(
'id');
217 $(
a).parent().parent().addClass(
'selected');
218 $(
a).parent().parent().attr(
'id',
'selected');
220 var anchor = $(aname);
225 a.onclick =
function() {
storeLink(link); }
228 if (childrenData != null)
230 a.className =
"nolink";
231 a.href =
"javascript:void(0)";
232 a.onclick = node.expandToggle.onclick;
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);
244 return node.childrenUL;
252 var headerHeight = $(
"#top").height();
253 var footerHeight = $(
"#nav-path").height();
254 var windowHeight = $(window).height() - headerHeight - footerHeight;
258 navtree.scrollTo(
'#selected',0,{offset:-windowHeight/2});
260 setTimeout(arguments.callee, 0);
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);
275 if (!node.childrenVisited) {
277 }
if (imm || ($.browser.msie && $.browser.version>8)) {
279 $(node.getChildrenUL()).
show();
281 $(node.getChildrenUL()).slideDown(
"fast");
284 node.plus_img.src = node.relpath+
"ftv2mlastnode.png";
286 node.plus_img.src = node.relpath+
"ftv2mnode.png";
288 node.expanded =
true;
295 n.addClass(
'glow').delay(duration).queue(
function(next){
296 $(
this).removeClass(
'glow');next();
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)+
'"]');
308 }
else if (anchor.parents().slice(2).prop(
'tagName')==
'TR') {
309 glowEffect(anchor.parents(
'div.memitem'),1000);
310 }
else if (anchor.parent().attr(
'class')==
'fieldtype'){
312 }
else if (anchor.parent().is(
":header")) {
324 var link=
stripPath($(location).attr(
'pathname'))+
':'+hash.substring(1);
325 a=$(
'.item a[class$="'+link+
'"]');
328 a.parent().parent().addClass(
'selected');
329 a.parent().parent().attr(
'id',
'selected');
332 $(n.itemDiv).addClass(
'selected');
333 $(n.itemDiv).attr(
'id',
'selected');
335 if ($(
'#nav-tree-contents .item:first').hasClass(
'selected')) {
336 $(
'#nav-sync').css(
'top',
'30px');
338 $(
'#nav-sync').css(
'top',
'5px');
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);
353 if (!node.childrenVisited) {
356 $(node.getChildrenUL()).
show();
358 node.plus_img.src = node.relpath+
"ftv2mlastnode.png";
360 node.plus_img.src = node.relpath+
"ftv2mnode.png";
362 node.expanded =
true;
363 var n = node.children[
o.breadcrumbs[index]];
364 if (index+1<
o.breadcrumbs.length) {
367 if (typeof(n.childrenData)===
'string') {
368 var varName = n.childrenData;
370 n.childrenData =
getData(varName);
375 var rootBase =
stripPath(
o.toroot.replace(/\..+$/,
''));
376 if (rootBase==
"index" || rootBase==
"pages" || rootBase==
"search") {
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],
403 if (!
o.breadcrumbs && root!=
NAVTREE[0][1]) {
405 $(
'.item').removeClass(
'selected');
406 $(
'.item').removeAttr(
'id');
409 o.breadcrumbs.unshift(0);
418 var parts = link.split(
'#');
420 if (parts.length>1) hash =
'#'+parts[1];
423 if (hash.match(/^#l\d+$/)) {
424 var anchor=$(
'a[name='+hash.substring(1)+
']');
432 if (i==-1) { i=0; root=
NAVTREE[0][1]; }
436 getScript(relpath+
'navtreeindex'+i,
function(){
447 n.html(
'<img src="'+relpath+
'sync_off.png" title="'+
SYNCOFFMSG+
'"/>');
452 n.html(
'<img src="'+relpath+
'sync_on.png" title="'+
SYNCONMSG+
'"/>');
457 var navSync = $(
'#nav-sync');
458 if (navSync.hasClass(
'sync')) {
459 navSync.removeClass(
'sync');
463 navSync.addClass(
'sync');
471 var
o =
new Object();
473 o.node =
new Object();
474 o.node.li = document.getElementById(
"nav-tree-contents");
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);
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;
490 var navSync = $(
'#nav-sync');
493 navSync.removeClass(
'sync');
500 navTo(o,toroot,window.location.hash,relpath);
502 $(window).bind(
'hashchange',
function(){
503 if (window.location.hash && window.location.hash.length>1){
505 if ($(location).attr(
'hash')){
506 var clslink=
stripPath($(location).attr(
'pathname'))+
':'+
507 $(location).attr(
'hash').substring(1);
508 a=$(
'.item a[class$="'+clslink+
'"]');
510 if (a==null || !$(a).parent().parent().hasClass(
'selected')){
511 $(
'.item').removeClass(
'selected');
512 $(
'.item').removeAttr(
'id');
514 var link=
stripPath2($(location).attr(
'pathname'));
515 navTo(o,link,$(location).attr(
'hash'),relpath);
517 $(
'#doc-content').scrollTop(0);
518 $(
'.item').removeClass(
'selected');
519 $(
'.item').removeAttr(
'id');
520 navTo(o,toroot,window.location.hash,relpath);