mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
78 lines
2.5 KiB
XML
78 lines
2.5 KiB
XML
<?xml version="1.0"?> <!-- -*- Mode: HTML -*- -->
|
|
|
|
<!--
|
|
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): Stuart Parmenter <pavlov@netscape.com>
|
|
Simon Fraser <sfraser@netscape.com>
|
|
Bill Law <law@netscape.com>
|
|
Ben Goodger <rgoodger@ihug.co.nz>
|
|
Blake Ross <BlakeR1234@aol.com>
|
|
-->
|
|
|
|
<?xml-stylesheet href="chrome://navigator/skin/navigator.css" type="text/css"?>
|
|
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://global/locale/finddialog.dtd">
|
|
|
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
id="findDialog"
|
|
onload="onLoad();"
|
|
onunload="onUnload();"
|
|
title="&findDialog.title;"
|
|
debug="false"
|
|
class="dialog"
|
|
align="vertical"
|
|
persist="screenX screenY"
|
|
screenX="24" screenY="24">
|
|
|
|
<html:script language="JavaScript" src="chrome://global/content/finddialog.js"/>
|
|
|
|
<box>
|
|
|
|
<!-- hack. we seem to need this separator to get it to render -->
|
|
<separator orient="vertical" class="thin"/>
|
|
|
|
<box orient="vertical">
|
|
<text class="label" value="&findField.label;"/>
|
|
</box>
|
|
|
|
<box orient="vertical">
|
|
<textfield id="dialog.findKey" oninput="return onTyping();"/>
|
|
<box orient="vertical" autostretch="never">
|
|
<checkbox id="dialog.caseSensitive" value="&caseSensitiveCheckbox.label;"/>
|
|
<checkbox id="dialog.wrap" value="&wrapCheckbox.label;"/>
|
|
<checkbox id="dialog.searchBackwards" value="&backwardsCheckbox.label;"/>
|
|
</box>
|
|
</box>
|
|
</box>
|
|
|
|
<!-- used to store the find text -->
|
|
<foo style="display:none;" id="fBLT" value="&findButton.label;"/>
|
|
|
|
<separator/>
|
|
|
|
<!-- Places to overlay common dialog buttons and keyset -->
|
|
<box id="okCancelButtons"/>
|
|
<keyset id="keyset"/>
|
|
|
|
</window>
|