mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
143 lines
5.4 KiB
XML
143 lines
5.4 KiB
XML
<?xml version="1.0"?>
|
|
<!-- ***** BEGIN LICENSE BLOCK *****
|
|
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
http://www.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
for the specific language governing rights and limitations under the
|
|
License.
|
|
|
|
The Original Code is Mozilla Communicator client code, released
|
|
March 31, 1998.
|
|
|
|
The Initial Developer of the Original Code is
|
|
Netscape Communications Corporation.
|
|
Portions created by the Initial Developer are Copyright (C) 1998-1999
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Joe Hewitt <hewitt@netscape.com>
|
|
Ian Neal <bugzilla@arlen.demon.co.uk>
|
|
|
|
Alternatively, the contents of this file may be used under the terms of
|
|
either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
in which case the provisions of the GPL or the LGPL are applicable instead
|
|
of those above. If you wish to allow use of your version of this file only
|
|
under the terms of either the GPL or the LGPL, and not to allow others to
|
|
use your version of this file under the terms of the MPL, indicate your
|
|
decision by deleting the provisions above and replace them with the notice
|
|
and other provisions required by the GPL or the LGPL. If you do not delete
|
|
the provisions above, a recipient may use your version of this file under
|
|
the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
***** END LICENSE BLOCK ***** -->
|
|
|
|
<!DOCTYPE dialog SYSTEM "chrome://communicator/locale/pref/pref-smart_browsing.dtd" >
|
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://communicator/skin/prefpanels.css" type="text/css"?>
|
|
|
|
<dialog id="pref-smart_browsing-ac" title="&autoCompleteAdvanced.title;"
|
|
buttons="accept,cancel,help"
|
|
ondialogaccept="return onAccept();"
|
|
ondialoghelp="doHelpButton();"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
|
|
<script type="application/x-javascript"><![CDATA[
|
|
|
|
var gShowSearchLocked;
|
|
|
|
window.onload = function()
|
|
{
|
|
setCheck("cbxAutoFill", window.arguments[0], window.arguments[4]);
|
|
setCheck("cbxShowPopup", window.arguments[1], window.arguments[5]);
|
|
setCheck("cbxShowSearch", window.arguments[2], window.arguments[6]);
|
|
setCheck("cbxMatchOnlyTyped", window.arguments[3], window.arguments[7]);
|
|
gShowSearchLocked = (window.arguments[6] == "true");
|
|
|
|
updateImage("AutoFill");
|
|
updateImage("ShowPopup");
|
|
updateImage("ShowSearch");
|
|
|
|
updateShowPopup();
|
|
}
|
|
|
|
function onAccept()
|
|
{
|
|
window.opener.receiveACPrefs(getCheck("cbxAutoFill"),
|
|
getCheck("cbxShowPopup"),
|
|
getCheck("cbxShowSearch"),
|
|
getCheck("cbxMatchOnlyTyped"));
|
|
|
|
return true;
|
|
}
|
|
|
|
function getCheck(aName)
|
|
{
|
|
return document.getElementById(aName).checked;
|
|
}
|
|
|
|
function setCheck(aName, aTruth, aDisabled)
|
|
{
|
|
document.getElementById(aName).checked = (aTruth == "true");
|
|
document.getElementById(aName).disabled = (aDisabled == "true");
|
|
}
|
|
|
|
function updateImage(aImg)
|
|
{
|
|
var img = document.getElementById("img"+aImg);
|
|
var checked = document.getElementById("cbx"+aImg).checked;
|
|
if (aImg == "AutoFill") {
|
|
img.setAttribute("src", "chrome://communicator/locale/pref/autocomplete-autofill-"+(checked?"on":"off")+".gif");
|
|
} else if (aImg == "ShowPopup") {
|
|
img.setAttribute("hidden", !checked);
|
|
updateImage("ShowSearch");
|
|
} else if (aImg == "ShowSearch") {
|
|
var checked2 = document.getElementById("cbxShowPopup").checked;
|
|
img.setAttribute("hidden", !checked2 || !checked);
|
|
}
|
|
}
|
|
|
|
function updateShowPopup()
|
|
{
|
|
var spChecked = document.getElementById("cbxShowPopup").checked;
|
|
var showSearch = document.getElementById("cbxShowSearch");
|
|
showSearch.disabled = !spChecked || gShowSearchLocked;
|
|
}
|
|
|
|
function doHelpButton() {
|
|
openHelp('navigator_pref_autocomplete-adv');
|
|
}
|
|
|
|
]]></script>
|
|
|
|
<groupbox>
|
|
<caption label="&autoCompleteAdvanced.title;"/>
|
|
<vbox>
|
|
<checkbox id="cbxAutoFill" label="&autoCompleteAutoFill.label;"
|
|
oncommand="updateImage('AutoFill')"/>
|
|
<checkbox id="cbxShowPopup" label="&autoCompleteShowPopup.label;"
|
|
oncommand="updateShowPopup(); updateImage('ShowPopup')"/>
|
|
<checkbox id="cbxShowSearch" label="&autoCompleteShowSearch.label;"
|
|
oncommand="updateImage('ShowSearch')"/>
|
|
<checkbox id="cbxMatchOnlyTyped" label="&autoCompleteMatchOnlyTyped.label;"/>
|
|
</vbox>
|
|
</groupbox>
|
|
|
|
<label value="&autocompletePreview.label;"/>
|
|
<dialogheader>
|
|
<vbox height="159">
|
|
<image id="imgAutoFill" style="min-width: 401px;"/>
|
|
<image id="imgShowPopup" src="chrome://communicator/locale/pref/autocomplete-showpopup.gif"/>
|
|
<image id="imgShowSearch" src="chrome://communicator/locale/pref/autocomplete-showsearch.gif"/>
|
|
</vbox>
|
|
</dialogheader>
|
|
</dialog>
|