summaryrefslogtreecommitdiffstats
path: root/comm/mail/extensions/mailviews/content/mailViewSetup.xhtml
blob: a9ff2ef5c940c268790b2fc6c2bdd9a756ad87c5 (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
<?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/input-fields.css" type="text/css" ?>
<?xml-stylesheet href="chrome://messenger/skin/searchDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/colors.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/variables.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/themeableDialog.css" type="text/css"?>

<!DOCTYPE window [
  <!ENTITY % mailViewDTD SYSTEM "chrome://messenger/locale/mailViewSetup.dtd">
  %mailViewDTD;
  <!ENTITY % searchTermDTD SYSTEM "chrome://messenger/locale/searchTermOverlay.dtd">
  %searchTermDTD;
]>

<window id="mailViewSetupDialog"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        xmlns:html="http://www.w3.org/1999/xhtml"
        lightweightthemes="true"
        onload="mailViewOnLoad();"
        onunload="mailViewOnUnLoad();"
        windowtype="mailnews:mailview"
        title="&mailViewSetupTitle.label;"
        style="min-width: 52em; min-height: 22em;"
        persist="screenX screenY width height">
<dialog buttons="accept,cancel">

  <script src="chrome://messenger/content/globalOverlay.js"/>
  <script src="chrome://messenger/content/mailViewSetup.js"/>
  <script src="chrome://messenger/content/searchTerm.js"/>
  <script src="chrome://messenger/content/searchWidgets.js"/>
  <script src="chrome://messenger/content/dateFormat.js"/>
  <script src="chrome://messenger/content/dialogShadowDom.js"/>

  <vbox flex="1">
    <separator class="thin"/>
    <vbox>
      <hbox align="center">
        <label value="&mailViewHeading.label;"
               accesskey="&mailViewHeading.accesskey;"
               control="name"/>
        <html:input id="name" type="text"
                    class="input-inline"
                    tabindex="0"
                    oninput="doEnabling();"/>
      </hbox>
    </vbox>

    <separator/>
    <label value="&searchTermCaption.label;"/>
    <hbox flex="1">
      <vbox id="searchTermListBox" flex="1">
#include ../../../../mailnews/search/content/searchTerm.inc.xhtml
    </hbox>
  </vbox>

</dialog>
</window>