blob: 016fa4e49d74fd906c25bab5990061295855f22a [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001var resizePackagesNav;
2var classesNav;
3var devdocNav;
4var sidenav;
5var content;
6var HEADER_HEIGHT = 117;
Scott Main1043da92009-05-20 17:16:35 -07007var cookie_namespace = 'android_developer';
The Android Open Source Project88b60792009-03-03 19:28:42 -08008var NAV_PREF_TREE = "tree";
9var NAV_PREF_PANELS = "panels";
10var nav_pref;
11var toRoot;
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -070012var isMobile = false; // true if mobile, so we can adjust some layout
The Android Open Source Project88b60792009-03-03 19:28:42 -080013
14function addLoadEvent(newfun) {
15 var current = window.onload;
16 if (typeof window.onload != 'function') {
17 window.onload = newfun;
18 } else {
19 window.onload = function() {
20 current();
21 newfun();
22 }
23 }
24}
25
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -070026var agent = navigator['userAgent'];
27if ((agent.indexOf("Mobile") != -1) ||
28 (agent.indexOf("BlackBerry") != -1) ||
29 (agent.indexOf("Mini") != -1)) {
30 isMobile = true;
31 addLoadEvent(mobileSetup);
32}
33
The Android Open Source Project88b60792009-03-03 19:28:42 -080034window.onresize = resizeAll;
35
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -070036function mobileSetup() {
37 $("body").css({'overflow':'auto'});
38 $("html").css({'overflow':'auto'});
39 $("#body-content").css({'position':'relative', 'top':'0'});
40 $("#doc-content").css({'overflow':'visible', 'border-left':'3px solid #DDD'});
41 $("#side-nav").css({'padding':'0'});
42 $("#nav-tree").css({'overflow-y': 'auto'});
43}
44
The Android Open Source Project88b60792009-03-03 19:28:42 -080045function setToRoot(root) {
46 toRoot = root;
47 // note: toRoot also used by carousel.js
48}
49
50function restoreWidth(navWidth) {
51 var windowWidth = $(window).width() + "px";
52 content.css({marginLeft:parseInt(navWidth) + 6 + "px", //account for 6px-wide handle-bar
53 width:parseInt(windowWidth) - parseInt(navWidth) - 6 + "px"});
54 sidenav.css({width:navWidth});
55 resizePackagesNav.css({width:navWidth});
56 classesNav.css({width:navWidth});
57 $("#packages-nav").css({width:navWidth});
58}
59
60function restoreHeight(packageHeight) {
61 var windowHeight = ($(window).height() - HEADER_HEIGHT);
62 var swapperHeight = windowHeight - 13;
63 $("#swapper").css({height:swapperHeight + "px"});
64 sidenav.css({height:windowHeight + "px"});
65 content.css({height:windowHeight + "px"});
66 resizePackagesNav.css({maxHeight:swapperHeight + "px", height:packageHeight});
67 classesNav.css({height:swapperHeight - parseInt(packageHeight) + "px"});
68 $("#packages-nav").css({height:parseInt(packageHeight) - 6 + "px"}); //move 6px to give space for the resize handle
69 devdocNav.css({height:sidenav.css("height")});
70 $("#nav-tree").css({height:swapperHeight + "px"});
71}
72
Scott Main1043da92009-05-20 17:16:35 -070073function readCookie(cookie) {
74 var myCookie = cookie_namespace+"_"+cookie+"=";
The Android Open Source Project88b60792009-03-03 19:28:42 -080075 if (document.cookie) {
76 var index = document.cookie.indexOf(myCookie);
77 if (index != -1) {
78 var valStart = index + myCookie.length;
79 var valEnd = document.cookie.indexOf(";", valStart);
80 if (valEnd == -1) {
81 valEnd = document.cookie.length;
82 }
83 var val = document.cookie.substring(valStart, valEnd);
84 return val;
85 }
86 }
87 return 0;
88}
89
Scott Main1043da92009-05-20 17:16:35 -070090function writeCookie(cookie, val, section, expiration) {
The Android Open Source Project88b60792009-03-03 19:28:42 -080091 if (!val) return;
Scott Main1043da92009-05-20 17:16:35 -070092 section = section == null ? "_" : "_"+section+"_";
93 if (expiration == null) {
94 var date = new Date();
95 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
96 expiration = date.toGMTString();
The Android Open Source Project88b60792009-03-03 19:28:42 -080097 }
Scott Main1043da92009-05-20 17:16:35 -070098 document.cookie = cookie_namespace+section+cookie+"="+val+"; expires="+expiration+"; path=/";
The Android Open Source Project88b60792009-03-03 19:28:42 -080099}
100
101function init() {
The Android Open Source Project88b60792009-03-03 19:28:42 -0800102 $("#side-nav").css({position:"absolute",left:0});
103 content = $("#doc-content");
104 resizePackagesNav = $("#resize-packages-nav");
105 classesNav = $("#classes-nav");
106 sidenav = $("#side-nav");
107 devdocNav = $("#devdoc-nav");
108
109 if (location.href.indexOf("/reference/") != -1) {
110 var cookiePath = "reference_";
111 } else if (location.href.indexOf("/guide/") != -1) {
112 var cookiePath = "guide_";
113 }
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700114
115 if (!isMobile) {
116 $("#resize-packages-nav").resizable({handles: "s", resize: function(e, ui) { resizeHeight(); } });
117 $(".side-nav-resizable").resizable({handles: "e", resize: function(e, ui) { resizeWidth(); } });
Scott Main1043da92009-05-20 17:16:35 -0700118 var cookieWidth = readCookie(cookiePath+'width');
119 var cookieHeight = readCookie(cookiePath+'height');
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700120 if (cookieWidth) {
121 restoreWidth(cookieWidth);
122 } else if ($(".side-nav-resizable").length) {
123 resizeWidth();
124 }
125 if (cookieHeight) {
126 restoreHeight(cookieHeight);
127 } else {
128 resizeHeight();
129 }
The Android Open Source Project88b60792009-03-03 19:28:42 -0800130 }
131
132 if (devdocNav.length) { // only dev guide and sdk
133 highlightNav(location.href);
134 }
135}
136
137function highlightNav(fullPageName) {
138 var lastSlashPos = fullPageName.lastIndexOf("/");
139 var firstSlashPos = (fullPageName.indexOf("/guide/") != -1) ?
140 fullPageName.indexOf("/guide/") :
141 fullPageName.indexOf("/sdk/"); // first slash after /guide or /sdk
142 if (lastSlashPos == (fullPageName.length - 1)) { // if the url ends in slash (add 'index.html')
143 fullPageName = fullPageName + "index.html";
144 }
145 var htmlPos = fullPageName.lastIndexOf(".html", fullPageName.length);
146 var pathPageName = fullPageName.slice(firstSlashPos, htmlPos + 5);
147 var link = $("#devdoc-nav a[href$='"+ pathPageName+"']");
148 if ((link.length == 0) && ((fullPageName.indexOf("/guide/") != -1) || (fullPageName.indexOf("/sdk/") != -1))) {
149// if there's no match, then let's backstep through the directory until we find an index.html page that matches our ancestor directories (only for dev guide and sdk)
150 lastBackstep = pathPageName.lastIndexOf("/");
151 while (link.length == 0) {
152 backstepDirectory = pathPageName.lastIndexOf("/", lastBackstep);
153 link = $("#devdoc-nav a[href$='"+ pathPageName.slice(0, backstepDirectory + 1)+"index.html']");
154 lastBackstep = pathPageName.lastIndexOf("/", lastBackstep - 1);
155 if (lastBackstep == 0) break;
156 }
157 }
158 link.parent().addClass('selected');
159 if (link.parent().parent().is(':hidden')) {
160 toggle(link.parent().parent().parent(), false);
161 } else if (link.parent().parent().hasClass('toggle-list')) {
162 toggle(link.parent().parent(), false);
163 }
164}
165
166function resizeHeight() {
167 var windowHeight = ($(window).height() - HEADER_HEIGHT);
168 var swapperHeight = windowHeight - 13;
169 $("#swapper").css({height:swapperHeight + "px"});
170 sidenav.css({height:windowHeight + "px"});
171 content.css({height:windowHeight + "px"});
172 resizePackagesNav.css({maxHeight:swapperHeight + "px"});
173 classesNav.css({height:swapperHeight - parseInt(resizePackagesNav.css("height")) + "px"});
174 $("#packages-nav").css({height:parseInt(resizePackagesNav.css("height")) - 6 + "px"}); //move 6px for handle
175 devdocNav.css({height:sidenav.css("height")});
176 $("#nav-tree").css({height:swapperHeight + "px"});
Scott Main1043da92009-05-20 17:16:35 -0700177
178 var section = location.pathname.substring(1,location.pathname.indexOf("/",1));
179 writeCookie("height", resizePackagesNav.css("height"), section, null);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800180}
181
182function resizeWidth() {
183 var windowWidth = $(window).width() + "px";
184 if (sidenav.length) {
185 var sidenavWidth = sidenav.css("width");
186 } else {
187 var sidenavWidth = 0;
188 }
189 content.css({marginLeft:parseInt(sidenavWidth) + 6 + "px", //account for 6px-wide handle-bar
190 width:parseInt(windowWidth) - parseInt(sidenavWidth) - 6 + "px"});
191 resizePackagesNav.css({width:sidenavWidth});
192 classesNav.css({width:sidenavWidth});
193 $("#packages-nav").css({width:sidenavWidth});
Scott Main1043da92009-05-20 17:16:35 -0700194
195 var section = location.pathname.substring(1,location.pathname.indexOf("/",1));
196 writeCookie("width", sidenavWidth, section, null);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800197}
198
199function resizeAll() {
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700200 if (!isMobile) {
201 resizeHeight();
202 if ($(".side-nav-resizable").length) {
203 resizeWidth();
204 }
The Android Open Source Project88b60792009-03-03 19:28:42 -0800205 }
206}
207
208function loadLast(cookiePath) {
209 var location = window.location.href;
210 if (location.indexOf("/"+cookiePath+"/") != -1) {
211 return true;
212 }
Scott Main1043da92009-05-20 17:16:35 -0700213 var lastPage = readCookie(cookiePath + "_lastpage");
The Android Open Source Project88b60792009-03-03 19:28:42 -0800214 if (lastPage) {
215 window.location = lastPage;
216 return false;
217 }
218 return true;
219}
220
221$(window).unload(function(){
Scott Main1043da92009-05-20 17:16:35 -0700222 var path = location.pathname;
223 if (path.indexOf("/reference/") != -1) {
224 writeCookie("lastpage", path, "reference", null);
225 } else if (path.indexOf("/guide/") != -1) {
226 writeCookie("lastpage", path, "guide", null);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800227 }
228});
229
230
231
232function toggle(obj, slide) {
233 var ul = $("ul", obj);
234 var li = ul.parent();
235 if (li.hasClass("closed")) {
236 if (slide) {
237 ul.slideDown("fast");
238 } else {
239 ul.show();
240 }
241 li.removeClass("closed");
242 li.addClass("open");
243 $(".toggle-img", li).attr("title", "hide pages");
244 } else {
245 ul.slideUp("fast");
246 li.removeClass("open");
247 li.addClass("closed");
248 $(".toggle-img", li).attr("title", "show pages");
249 }
250}
251
252
253
254function buildToggleLists() {
255 $(".toggle-list").each(
256 function(i) {
257 $("div", this).append("<a class='toggle-img' href='#' title='show pages' onClick='toggle(this.parentNode.parentNode, true); return false;'></a>");
258 $(this).addClass("closed");
259 });
260}
261
262function getNavPref() {
Scott Main1043da92009-05-20 17:16:35 -0700263 var v = readCookie('reference_nav');
The Android Open Source Project88b60792009-03-03 19:28:42 -0800264 if (v != NAV_PREF_TREE) {
265 v = NAV_PREF_PANELS;
266 }
267 return v;
268}
269
270function chooseDefaultNav() {
271 nav_pref = getNavPref();
272 if (nav_pref == NAV_PREF_TREE) {
273 $("#nav-panels").toggle();
274 $("#panel-link").toggle();
275 $("#nav-tree").toggle();
276 $("#tree-link").toggle();
277 }
278}
279
280function swapNav() {
281 if (nav_pref == NAV_PREF_TREE) {
282 nav_pref = NAV_PREF_PANELS;
283 } else {
284 nav_pref = NAV_PREF_TREE;
285 init_navtree("nav-tree", toRoot, NAVTREE_DATA);
286 }
287 var date = new Date();
288 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years
Scott Main1043da92009-05-20 17:16:35 -0700289 writeCookie("nav", nav_pref, null, date.toGMTString());
The Android Open Source Project88b60792009-03-03 19:28:42 -0800290
291 $("#nav-panels").toggle();
292 $("#panel-link").toggle();
293 $("#nav-tree").toggle();
294 $("#tree-link").toggle();
295
296 if ($("#nav-tree").is(':visible')) scrollIntoView("nav-tree");
297 else {
298 scrollIntoView("packages-nav");
299 scrollIntoView("classes-nav");
300 }
301}
302
303function scrollIntoView(nav) {
304 var navObj = $("#"+nav);
305 if (navObj.is(':visible')) {
306 var selected = $(".selected", navObj);
307 if (selected.length == 0) return;
308 if (selected.is("div")) selected = selected.parent();
309
310 var scrolling = document.getElementById(nav);
311 var navHeight = navObj.height();
312 var offsetTop = selected.position().top;
313 if (selected.parent().parent().is(".toggle-list")) offsetTop += selected.parent().parent().position().top;
314 if(offsetTop > navHeight - 92) {
315 scrolling.scrollTop = offsetTop - navHeight + 92;
316 }
317 }
318}
319
320function toggleAllInherited(linkObj, expand) {
321 var a = $(linkObj);
322 var table = $(a.parent().parent().parent());
323 var expandos = $(".jd-expando-trigger", table);
324 if ( (expand == null && a.text() == "[Expand]") || expand ) {
325 expandos.each(function(i) {
326 toggleInherited(this, true);
327 });
328 a.text("[Collapse]");
329 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
330 expandos.each(function(i) {
331 toggleInherited(this, false);
332 });
333 a.text("[Expand]");
334 }
335 return false;
336}
337
338function toggleAllSummaryInherited(linkObj) {
339 var a = $(linkObj);
340 var content = $(a.parent().parent().parent());
341 var toggles = $(".toggle-all", content);
342 if (a.text() == "[Expand All]") {
343 toggles.each(function(i) {
344 toggleAllInherited(this, true);
345 });
346 a.text("[Collapse All]");
347 } else {
348 toggles.each(function(i) {
349 toggleAllInherited(this, false);
350 });
351 a.text("[Expand All]");
352 }
353 return false;
354}
Scott Main1043da92009-05-20 17:16:35 -0700355
356
357function changeTabLang(lang) {
358 var nodes = $("#header-tabs").find("."+lang);
359 for (i=0; i < nodes.length; i++) { // for each node in this language
360 var node = $(nodes[i]);
361 node.siblings().css("display","none"); // hide all siblings
362 if (node.not(":empty").length != 0) { //if this languages node has a translation, show it
363 node.css("display","inline");
364 } else { //otherwise, show English instead
365 node.css("display","none");
366 node.siblings().filter(".en").css("display","inline");
367 }
368 }
369}
370
371function changeNavLang(lang) {
372 var nodes = $("#side-nav").find("."+lang);
373 for (i=0; i < nodes.length; i++) { // for each node in this language
374 var node = $(nodes[i]);
375 node.siblings().css("display","none"); // hide all siblings
376 if (node.not(":empty").length != 0) { // if this languages node has a translation, show it
377 node.css("display","inline");
378 } else { // otherwise, show English instead
379 node.css("display","none");
380 node.siblings().filter(".en").css("display","inline");
381 }
382 }
383}
384
385function changeDocLang(lang) {
386 changeTabLang(lang);
387 changeNavLang(lang);
388}
389
390function changeLangPref(lang) {
391 var date = new Date();
392 date.setTime(date.getTime()+(50*365*24*60*60*1000)); // keep this for 50 years
393 writeCookie("pref_lang", lang, null, date);
394
395 changeDocLang(lang);
396}
397
398function loadLangPref() {
399 var lang = readCookie("pref_lang");
400 if (lang != 0) {
401 $("#language").find("option[value='"+lang+"']").attr("selected",true);
402 }
403}
404
405function getLangPref() {
406 return $("#language").find(":selected").attr("value");
407}
408