home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 January
/
01_02.iso
/
software
/
netscape62win
/
mail.xpi
/
bin
/
chrome
/
messenger.jar
/
content
/
messenger
/
addressbook
/
abSelectAddressesDialog.xul
< prev
next >
Wrap
Extensible Markup Language
|
2001-08-31
|
5KB
|
120 lines
<?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.
-->
<?xml-stylesheet href="chrome://messenger/skin/addressbook/selectAddressesDialog.css" type="text/css"?>
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
<?xul-overlay href="chrome://messenger/content/addressbook/abDirTreeOverlay.xul"?>
<?xul-overlay href="chrome://messenger/content/addressbook/abResultsTreeOverlay.xul"?>
<?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
<?xul-overlay href="chrome://communicator/content/utilityOverlay.xul"?>
<!DOCTYPE window SYSTEM "chrome://messenger/locale/addressbook/abSelectAddressesDialog.dtd">
<window xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="&selectAddressWindow.title;"
class="dialog"
width="680" height="480"
onload="OnLoadSelectAddress()"
orient="vertical">
<stringbundle id="bundle_addressBook" src="chrome://messenger/locale/addressbook/addressBook.properties"/>
<stringbundle id="bundle_composeMsgs" src="chrome://messenger/locale/messengercompose/composeMsgs.properties"/>
<script type="application/x-javascript" src="chrome://messenger/content/addressbook/abCommon.js"/>
<script type="application/x-javascript" src="chrome://messenger/content/addressbook/abSelectAddressesDialog.js"/>
<script type="application/x-javascript" src="chrome://messenger/content/messengercompose/MsgComposeCommands.js"/>
<script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"/>
<keyset id="dialogKeys"/>
<popupset id="aTooltipSet"/>
<!-- Main box, 3 pane and majority of buttons -->
<hbox flex="100%">
<!-- 3 Pane box -->
<hbox id="3PaneBox" flex="100%">
<!-- dir tree -->
<hbox id="dirTreeBox">
<tree id="dirTree" type="dialog" flex="1"/>
</hbox>
<splitter id="vertical-splitter" collapse="before" persist="state"/>
<!-- Box that holds results pane, (to,cc,bcc buttons), and address bucket -->
<vbox id="results-bucket-tree-box" flex="100%">
<!-- Box that holds results pane and (to,cc,bcc buttons) -->
<vbox flex="100%">
<!-- results tree -->
<vbox id="resultsTreeBox" flex="100%">
<tree id="resultsTree" flex="1"/>
</vbox>
<!-- Box that holds (to,cc,bcc buttons) -->
<hbox id="addToBucketButtonBox">
<spring flex="50%"/>
<button id="toButton" label="&toButton.label;" class="dialog" oncommand="SelectAddressToButton()"/>
<spring class="middle-button-spring"/>
<button id="ccButton" label="&ccButton.label;" class="dialog" oncommand="SelectAddressCcButton()"/>
<spring class="middle-button-spring"/>
<button id="bccButton" label="&bccButton.label;" class="dialog" oncommand="SelectAddressBccButton()"/>
<spring flex="50%"/>
</hbox>
</vbox>
<splitter id="bucket-splitter" collapse="before" persist="state"/>
<!-- Address bucket -->
<vbox id="bucketBox">
<tree id="addressBucket" flex="1" multiple="true" onselect="top.DialogBucketPaneSelectionChanged();">
<treecolgroup>
<treecol flex="1"/>
</treecolgroup>
<treechildren id="bucketBody" flex="1"/>
</tree>
</vbox>
</vbox>
</hbox>
<!-- Box with buttons on right edge of window -->
<vbox id="rightColumnButtonBox">
<vbox flex="50%">
<spring class="third-column-spring"/>
<button id="new" label="&newButton.label;" class="dialog" tooltip="aTooltip" tooltiptext="&addressPickerNewButton.tooltip;" oncommand="AbNewCard()"/>
<spring class="third-column-spring"/>
<button id="edit" label="&editButton.label;" class="dialog" tooltip="aTooltip" tooltiptext="&addressPickerEditButton.tooltip;" oncommand="AbEditCard()"/>
<spring flex="100%"/>
</vbox>
<vbox flex="50%">
<spring flex="50%"/>
<button id="remove" label="&removeButton.label;" class="dialog" oncommand="RemoveSelectedFromBucket()"/>
<spring flex="50%"/>
</vbox>
</vbox>
</hbox>
<!-- OK & Cancel buttons -->
<hbox id="okCancelButtons"/>
</window>