mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
112 lines
4.2 KiB
XML
Executable File
112 lines
4.2 KiB
XML
Executable File
<?xml version="1.0"?>
|
|
<!--
|
|
The contents of this file are subject to the Netscape 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/NPL/
|
|
|
|
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 Netscape are
|
|
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
Rights Reserved.
|
|
|
|
Contributor(s): Robert John Churchill (rjc@netscape.com)
|
|
-->
|
|
|
|
<?xml-stylesheet href="chrome://pref/skin/" type="text/css"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://pref/locale/pref-search.dtd" >
|
|
<window debug="false" xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
class="dialog"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="if( parent.handle ) parent.handle.onpageload( 'pref-search' ); else parent.queuedTag = 'pref-search'; InitSingleEngineList(); " title="&title.label;"
|
|
orient="vertical">
|
|
|
|
<html:script language="javascript" src="chrome://pref/content/pref-search.js"/>
|
|
|
|
<box class="header" orient="horizontal">
|
|
<titledbutton class="left-header-text" value="&lHeader;"/>
|
|
<spring class="header-spring" flex="1"/>
|
|
<titledbutton class="right-header-text" value="&rHeader;"/>
|
|
</box>
|
|
|
|
|
|
<box orient="vertical">
|
|
<titledbox orient="vertical" flex="1">
|
|
<title><text value="&legendHeader;"/></title>
|
|
|
|
<html:div>
|
|
<html:input name="powermode" type="radio" id="browserSearchPowermode0"
|
|
pref="true" preftype="int" prefindex="0" prefstring="browser.search.powermode"/>
|
|
<html:label for="browserSearchPowermode0" accesskey="t" tabindex="0">
|
|
&browserSearchButtonText.label;
|
|
</html:label>
|
|
|
|
<html:select id="engineList" ref="NC:SearchEngineRoot"
|
|
datasources="rdf:internetsearch"
|
|
sortResource="http://home.netscape.com/NC-rdf#Name" sortDirection="ascending"
|
|
onchange="return setDefaultSearchEngine(this)" >
|
|
|
|
<html:option value="" selected="true">
|
|
&defaultengine.label;
|
|
</html:option>
|
|
|
|
<template>
|
|
<html:option uri="..." value="..." >
|
|
<text value="rdf:http://home.netscape.com/NC-rdf#Name" />
|
|
</html:option>
|
|
</template>
|
|
|
|
</html:select>
|
|
|
|
</html:div>
|
|
|
|
<!-- <html:div>
|
|
<html:input name="powermode" type="radio" id="browserSearchPowermode1"
|
|
pref="true" preftype="int" prefindex="1" prefstring="browser.search.powermode"/>
|
|
<html:label for="browserSearchPowermode1" accesskey="t" tabindex="1">
|
|
&enablePowerSearch.label;
|
|
</html:label>
|
|
</html:div -->
|
|
</titledbox>
|
|
|
|
<titledbox orient="vertical">
|
|
<title><text value="&searchResults.label;"/></title>
|
|
<html:div>
|
|
<html:input name="opensearchpanel" type="checkbox" id="browserSearchOpenSidebarSearchPanel"
|
|
pref="true" preftype="bool" prefstring="browser.search.opensidebarsearchpanel"/>
|
|
<html:label for="browserSearchOpenSidebarSearchPanel" accesskey="t" tabindex="2">
|
|
&openSidebarSearchPanel.label;
|
|
</html:label>
|
|
</html:div>
|
|
<html:div>
|
|
&sidebarClickMode.label;
|
|
</html:div>
|
|
<html:div>
|
|
<html:input name="clickCount" type="radio" id="browserSearchSidebarClickCount0"
|
|
pref="true" preftype="bool" prefindex="false" prefstring="browser.search.use_double_clicks"/>
|
|
<html:label for="browserSearchSidebarClickCount0" accesskey="t" tabindex="2">
|
|
&useSingleClicks.label;
|
|
</html:label>
|
|
</html:div>
|
|
<html:div>
|
|
<html:input name="clickCount" type="radio" id="browserSearchSidebarClickCount1"
|
|
pref="true" preftype="bool" prefindex="true" prefstring="browser.search.use_double_clicks"/>
|
|
<html:label for="browserSearchSidebarClickCount1" accesskey="t" tabindex="2">
|
|
&useDoubleClicks.label;
|
|
</html:label>
|
|
</html:div>
|
|
|
|
</titledbox>
|
|
|
|
</box>
|
|
</window>
|