82 lines
2.7 KiB
XML
82 lines
2.7 KiB
XML
<?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.
|
|
-->
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://messengercompose/locale/addressingWidgetOverlay.dtd">
|
|
|
|
|
|
<overlay xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<html:script language="JavaScript" src="chrome://messengercompose/content/addressingWidgetOverlay.js"/>
|
|
|
|
<!-- Addressing Widget -->
|
|
<box id="addressingWidget"
|
|
align="vertical"
|
|
>
|
|
|
|
<tree id="addressingWidgetTree"
|
|
class="addressingWidget"
|
|
rows="3"
|
|
onclick="awClickEmptySpace(true)"
|
|
style="width:0px;height:0px;border:solid black 1px">
|
|
|
|
<treecol style="width:9em"/>
|
|
<treecol style="width:2em"/>
|
|
|
|
<treechildren id="addressWidgetBody">
|
|
<treeitem>
|
|
<treerow>
|
|
<treecell allowevents="true" onclick="awNotAnEmptyArea(event)">
|
|
<html:select id="msgRecipientType#1">
|
|
<html:option value="addr_to">&toAddr.label;</html:option>
|
|
<html:option value="addr_cc">&ccAddr.label;</html:option>
|
|
<html:option value="addr_bcc">&bccAddr.label;</html:option>
|
|
<html:option value="addr_reply">&replyAddr.label;</html:option>
|
|
<html:option value="addr_newsgroups">&newsgroupsAddr.label;</html:option>
|
|
<html:option value="addr_followup">&followupAddr.label;</html:option>
|
|
</html:select>
|
|
</treecell>
|
|
|
|
<treecell onclick="awNotAnEmptyArea(event)">
|
|
<image/>
|
|
</treecell>
|
|
|
|
<treecell allowevents="true" onclick="awNotAnEmptyArea(event);">
|
|
<html:input id="msgRecipient#1"
|
|
flex="100%"
|
|
class="addressingWidget"
|
|
type="text"
|
|
onkeyup="if (event.which == 13)
|
|
{ AutoCompleteAddress(this); awReturnHit(this); }"
|
|
onkeydown="if (event.which == 9) awTabFromRecipient(this, event);"
|
|
onchange="awInputChanged(this);"
|
|
/>
|
|
</treecell>
|
|
</treerow>
|
|
</treeitem>
|
|
|
|
</treechildren>
|
|
</tree>
|
|
</box>
|
|
|
|
</overlay>
|