summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/compose/content/dialogs/EdHLineProps.xhtml
blob: 21fa52147c4b727057208301c280dd92a9db4140 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?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://global/skin/global.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/input-fields.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/variables.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/colors.css" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/themeableDialog.css" type="text/css"?>

<!DOCTYPE window [ <!ENTITY % edHLineProperties SYSTEM "chrome://messenger/locale/messengercompose/EditorHLineProperties.dtd">
%edHLineProperties;
<!ENTITY % edDialogOverlay SYSTEM "chrome://messenger/locale/messengercompose/EdDialogOverlay.dtd">
%edDialogOverlay; ]>

<window
  title="&windowTitle.label;"
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  xmlns:html="http://www.w3.org/1999/xhtml"
  lightweightthemes="true"
  onload="Startup()"
>
  <dialog>
    <script src="chrome://messenger/content/globalOverlay.js" />
    <script src="chrome://global/content/editMenuOverlay.js" />
    <!-- Methods common to all editor dialogs -->
    <script src="chrome://messenger/content/messengercompose/editorUtilities.js" />
    <script src="chrome://messenger/content/messengercompose/EdDialogCommon.js" />
    <!--- Element-specific methods -->
    <script src="chrome://messenger/content/messengercompose/EdHLineProps.js" />
    <script src="chrome://messenger/content/dialogShadowDom.js" />

    <spacer id="location" offsetY="50" persist="offsetX offsetY" />

    <html:fieldset>
      <html:legend>&dimensionsBox.label;</html:legend>
      <html:table>
        <html:tr>
          <html:th>
            <label
              id="widthLabel"
              control="width"
              value="&widthEditField.label;"
              accesskey="&widthEditField.accessKey;"
            />
          </html:th>
          <html:td>
            <html:input
              id="width"
              type="number"
              class="narrow input-inline"
              aria-labelledby="widthLabel"
            />
          </html:td>
          <html:td>
            <menulist id="pixelOrPercentMenulist" />
          </html:td>
        </html:tr>
        <html:tr>
          <html:th>
            <label
              id="heightLabel"
              control="height"
              value="&heightEditField.label;"
              accesskey="&heightEditField.accessKey;"
            />
          </html:th>
          <html:td>
            <html:input
              id="height"
              type="number"
              class="narrow input-inline"
              aria-labelledby="heightLabel"
            />
          </html:td>
          <html:td>
            <label value="&pixelsPopup.value;" />
          </html:td>
        </html:tr>
      </html:table>
      <checkbox
        id="3dShading"
        label="&threeDShading.label;"
        accesskey="&threeDShading.accessKey;"
      />
    </html:fieldset>
    <html:fieldset>
      <html:legend>&alignmentBox.label;</html:legend>
      <radiogroup id="alignmentGroup" orient="horizontal">
        <spacer class="spacer" />
        <radio
          id="leftAlign"
          label="&leftRadio.label;"
          accesskey="&leftRadio.accessKey;"
        />
        <radio
          id="centerAlign"
          label="&centerRadio.label;"
          accesskey="&centerRadio.accessKey;"
        />
        <radio
          id="rightAlign"
          label="&rightRadio.label;"
          accesskey="&rightRadio.accessKey;"
        />
      </radiogroup>
    </html:fieldset>
    <spacer class="spacer" />
    <hbox>
      <button
        id="SaveDefault"
        label="&saveSettings.label;"
        accesskey="&saveSettings.accessKey;"
        oncommand="onSaveDefault()"
        tooltiptext="&saveSettings.tooltip;"
      />
      <spacer flex="1" />
      <button
        id="AdvancedEditButton"
        oncommand="onAdvancedEdit();"
        label="&AdvancedEditButton.label;"
        accesskey="&AdvancedEditButton.accessKey;"
        tooltiptext="&AdvancedEditButton.tooltip;"
      />
    </hbox>
    <separator class="groove" />
  </dialog>
</window>