mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
86 lines
1.7 KiB
JavaScript
86 lines
1.7 KiB
JavaScript
|
|
var gSearchStr = "";
|
|
|
|
function loadPage(thePage, searchStr)
|
|
{
|
|
var content="", results="";
|
|
var tabName="";
|
|
|
|
gSearchStr = "";
|
|
|
|
if (thePage == "find")
|
|
{
|
|
tabName="findTab";
|
|
content="chrome://search/content/find.xul";
|
|
results="chrome://search/content/findresults.xul";
|
|
}
|
|
else if (thePage == "internet")
|
|
{
|
|
tabName="internetTab";
|
|
content="chrome://search/content/internet.xul";
|
|
results="chrome://search/content/internetresults.xul";
|
|
|
|
if ((searchStr) && (searchStr != null))
|
|
{
|
|
gSearchStr = searchStr;
|
|
}
|
|
}
|
|
else if (thePage == "mail")
|
|
{
|
|
tabName="mailnewsTab";
|
|
content="about:blank";
|
|
results="about:blank";
|
|
}
|
|
else if (thePage == "addressbook")
|
|
{
|
|
tabName="addressbookTab";
|
|
content="about:blank";
|
|
results="about:blank";
|
|
}
|
|
|
|
if ((content != "") && (results != ""))
|
|
{
|
|
var contentFrame = document.getElementById("content");
|
|
if (contentFrame)
|
|
{
|
|
contentFrame.setAttribute("src", content);
|
|
}
|
|
var resultsFrame = document.getElementById("results");
|
|
if (resultsFrame)
|
|
{
|
|
resultsFrame.setAttribute("src", results);
|
|
}
|
|
var theTab = document.getElementById(tabName);
|
|
if (theTab)
|
|
{
|
|
theTab.setAttribute("selected", "true");
|
|
}
|
|
}
|
|
return(true);
|
|
}
|
|
|
|
|
|
|
|
function getSearchText()
|
|
{
|
|
return(gSearchStr);
|
|
}
|
|
|
|
|
|
|
|
function doUnload()
|
|
{
|
|
// Get the current window position/size.
|
|
var x = window.screenX;
|
|
var y = window.screenY;
|
|
var h = window.outerHeight;
|
|
var w = window.outerWidth;
|
|
|
|
// Store these into the window attributes (for persistence).
|
|
var win = document.getElementById( "search-window" );
|
|
win.setAttribute( "x", x );
|
|
win.setAttribute( "y", y );
|
|
win.setAttribute( "height", h );
|
|
win.setAttribute( "width", w );
|
|
}
|