diff options
Diffstat (limited to 'comm/mailnews/base/prefs/content/am-identities-list.xhtml')
-rw-r--r-- | comm/mailnews/base/prefs/content/am-identities-list.xhtml | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/comm/mailnews/base/prefs/content/am-identities-list.xhtml b/comm/mailnews/base/prefs/content/am-identities-list.xhtml new file mode 100644 index 0000000000..243630bd75 --- /dev/null +++ b/comm/mailnews/base/prefs/content/am-identities-list.xhtml @@ -0,0 +1,101 @@ +<?xml version="1.0"?> +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> + +<?xml-stylesheet href="chrome://messenger/skin/shared/grid-layout.css" type="text/css"?> +<?xml-stylesheet href="chrome://messenger/skin/accountManage.css" type="text/css"?> + +<!DOCTYPE html SYSTEM "chrome://messenger/locale/am-identities-list.dtd"> + +<html + xmlns="http://www.w3.org/1999/xhtml" + xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + xmlns:html="http://www.w3.org/1999/xhtml" + style="min-width: 600px" + scrolling="false" +> + <head> + <title><!-- identity-list-title --></title> + <script + defer="defer" + src="chrome://messenger/content/am-identities-list.js" + ></script> + </head> + <html:body + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + > + <dialog + buttons="accept" + buttonlabelaccept="&identitiesListClose.label;" + buttonaccesskeyaccept="&identitiesListClose.accesskey;" + style="height: 100vh" + > + <stringbundle + id="bundle_prefs" + src="chrome://messenger/locale/prefs.properties" + /> + + <commandset> + <command id="cmd_add" oncommand="openIdentityEditor(null);" /> + <command id="cmd_edit" oncommand="onEdit(event);" disabled="true" /> + <command + id="cmd_default" + oncommand="onSetDefault(event);" + disabled="true" + /> + <command id="cmd_delete" oncommand="onDelete(event);" disabled="true" /> + </commandset> + + <keyset> + <key keycode="VK_INSERT" command="cmd_add" /> + <key keycode="VK_DELETE" command="cmd_delete" /> + </keyset> + + <label control="identitiesList">&identitiesListManageDesc.label;</label> + + <separator class="thin" /> + + <html:div class="grid-two-column-auto-min" style="flex: 1"> + <richlistbox + id="identitiesList" + ondblclick="onEdit(event);" + onselect="updateButtons();" + seltype="single" + flex="1" + style="min-height: 10em; max-height: 20em" + /> + + <html:div class="flex-content-column"> + <button + id="addButton" + command="cmd_add" + label="&identitiesListAdd.label;" + accesskey="&identitiesListAdd.accesskey;" + /> + <button + id="editButton" + disabled="true" + command="cmd_edit" + label="&identitiesListEdit.label;" + accesskey="&identitiesListEdit.accesskey;" + /> + <button + id="setDefaultButton" + disabled="true" + command="cmd_default" + label="&identitiesListDefault.label;" + accesskey="&identitiesListDefault.accesskey;" + /> + <button + id="deleteButton" + disabled="true" + command="cmd_delete" + label="&identitiesListDelete.label;" + accesskey="&identitiesListDelete.accesskey;" + /> + </html:div> + </html:div> + </dialog> + </html:body> +</html> |