summaryrefslogtreecommitdiffstats
path: root/mailnews/base/prefs/content/AccountManager.xul
blob: a14156b3284b283a3ccc6324486dd1c2c8b20e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?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/folderPane.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/accountManage.css" type="text/css"?>

<!DOCTYPE dialog SYSTEM "chrome://messenger/locale/AccountManager.dtd">
<dialog id="accountManager"
        windowtype="mailnews:accountmanager"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        title="&accountManagerTitle.label;"
        style="&accountManager.size;"
        persist="width height screenX screenY"
        buttons="accept,cancel"
        onload="onLoad(event);"
        onunload="onUnload();"
        ondialogaccept="return onAccept(true);">
<stringbundle id="bundle_brand" src="chrome://branding/locale/brand.properties"/>
<stringbundle id="bundle_prefs" src="chrome://messenger/locale/prefs.properties"/>
<script type="application/javascript" src="chrome://messenger/content/accountUtils.js"/>
<script type="application/javascript" src="chrome://messenger/content/am-prefs.js"/>
<script type="application/javascript" src="chrome://messenger/content/AccountManager.js"/>
<script type="application/javascript" src="chrome://messenger/content/am-help.js"/>
<script type="application/javascript" src="chrome://messenger/content/amUtils.js"/>

  <hbox flex="1">
    <vbox style="&accountTree.width;">
      <tree flex="1" onselect="onAccountTreeSelect(null, null);" id="accounttree"
            seltype="single" hidecolumnpicker="true">
        <treecols>
          <treecol id="AccountCol" flex="1" primary="true" hideheader="true"/>
        </treecols>
        <treechildren id="account-tree-children"/>
      </tree>

#if defined(MOZ_THUNDERBIRD) && defined(HYPE_ICEDOVE)
      <button id="accountActionsButton" type="menu"
              label="&accountActionsButton.label;"
              accesskey="&accountActionsButton.accesskey;">
        <menupopup id="accountActionsDropdown"
                   onpopupshowing="initAccountActionsButtons(this);">
          <menuitem id="accountActionsAddMailAccount"
                    label="&addMailAccountButton.label;"
                    accesskey="&addMailAccountButton.accesskey;"
                    prefstring="mail.disable_new_account_addition"
                    oncommand="AddMailAccount(event); event.stopPropagation();"/>
          <menuitem id="accountActionsAddFeedAccount"
                    label="&addFeedAccountButton.label;"
                    accesskey="&addFeedAccountButton.accesskey;"
                    prefstring="mail.disable_new_account_addition"
                    oncommand="AddFeedAccount(event); event.stopPropagation();"/>
          <menuitem id="accountActionsAddOtherAccount"
                    label="&addOtherAccountButton.label;"
                    accesskey="&addOtherAccountButton.accesskey;"
                    prefstring="mail.disable_new_account_addition"
                    oncommand="onAddAccount(event); event.stopPropagation();"/>
          <menuseparator id="accountActionsDropdownSep1"/>
          <menuitem id="accountActionsDropdownSetDefault"
                    label="&setDefaultButton.label;"
                    accesskey="&setDefaultButton.accesskey;"
                    prefstring="mail.disable_button.set_default_account"
                    oncommand="onSetDefault(event); event.stopPropagation();"/>
          <menuitem id="accountActionsDropdownRemove"
                    label="&removeButton.label;"
                    accesskey="&removeButton.accesskey;"
                    prefstring="mail.disable_button.delete_account"
                    oncommand="onRemoveAccount(event); event.stopPropagation();"/>
        </menupopup>
      </button>
#else
      <button label="&addAccountButton.label;" oncommand="onAddAccount(event);" id="addAccountButton"
              prefstring="mail.disable_new_account_addition"
              accesskey="&addAccountButton.accesskey;"/>
      <button label="&setDefaultButton.label;" oncommand="onSetDefault(event);" disabled="true" id="setDefaultButton"
              prefstring="mail.disable_button.set_default_account"
              accesskey="&setDefaultButton.accesskey;"/>
      <button disabled="true" label="&removeButton.label;" oncommand="onRemoveAccount(event);" id="removeButton"
              prefstring="mail.disable_button.delete_account"
              accesskey="&removeButton.accesskey;"/>
#endif
    </vbox>

    <iframe id="contentFrame" name="contentFrame" flex="1"/>
  </hbox>
</dialog>