summaryrefslogtreecommitdiffstats
path: root/toolkit/components/printing/content/printdialog.xul
blob: d6452945b1678ad7d375bba2816b845d47ab1baf (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
<?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/" type="text/css"?>
<!DOCTYPE dialog SYSTEM "chrome://global/locale/printdialog.dtd">

<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  onload="onLoad();"
  ondialogaccept="return onAccept();"
  oncancel="return onCancel();"
  buttoniconaccept="print"
  title="&printDialog.title;"
  persist="screenX screenY"
  screenX="24" screenY="24">

  <script type="application/javascript" src="chrome://global/content/printdialog.js"/>

  <stringbundle id="printingBundle" src="chrome://global/locale/printing.properties"/>

  <groupbox>
    <caption label="&printer.label;"/>

    <grid>
      <columns>
        <column/>
        <column flex="1"/>
        <column/>
      </columns>

      <rows>
        <row align="center">
          <hbox align="center" pack="end">
            <label id="printerLabel"
                   value="&printerInput.label;"
                   accesskey="&printerInput.accesskey;"
                   control="printerList"/>
          </hbox>
          <menulist id="printerList" flex="1" type="description" oncommand="setPrinterDefaultsForSelectedPrinter();"/>
          <button id="properties"
                  label="&propertiesButton.label;"
                  accesskey="&propertiesButton.accesskey;"
                  icon="properties"
                  oncommand="displayPropertiesDialog();"/>
        </row>
        <row align="center">
          <hbox align="center" pack="end">
            <label id="descTextLabel" control="descText" value="&descText.label;"/>
          </hbox>
          <label id="descText"/>
          <checkbox id="fileCheck"
                    checked="false"
                    label="&fileCheck.label;"
                    accesskey="&fileCheck.accesskey;"
                    pack="end"/>
        </row>
      </rows>
    </grid>
  </groupbox>

  <hbox>
    <groupbox flex="1">
      <caption label="&printrangeGroup.label;"/>

      <radiogroup id="printrangeGroup">
        <radio id="allpagesRadio"
               label="&allpagesRadio.label;"
               accesskey="&allpagesRadio.accesskey;"
               oncommand="doPrintRange(0)"/>
        <hbox align="center">
          <radio id="rangeRadio"
                 label="&rangeRadio.label;"
                 accesskey="&rangeRadio.accesskey;"
                 oncommand="doPrintRange(1)"/>
          <label id="frompageLabel"
                 control="frompageInput"
                 value="&frompageInput.label;"
                 accesskey="&frompageInput.accesskey;"/>
          <textbox id="frompageInput" style="width:5em;" onkeyup="checkInteger(this)"/>
          <label id="topageLabel"
                 control="topageInput"
                 value="&topageInput.label;"
                 accesskey="&topageInput.accesskey;"/>
          <textbox id="topageInput" style="width:5em;" onkeyup="checkInteger(this)"/>
        </hbox>
        <radio id="selectionRadio"
               label="&selectionRadio.label;"
               accesskey="&selectionRadio.accesskey;"
               oncommand="doPrintRange(2)"/>
      </radiogroup>
    </groupbox>

    <groupbox flex="1">
      <caption label="&copies.label;"/>
      <hbox align="center">
        <label control="numCopiesInput"
               value="&numCopies.label;"
               accesskey="&numCopies.accesskey;"/>
        <textbox id="numCopiesInput" style="width:5em;" onkeyup="checkInteger(this)"/>
      </hbox>
    </groupbox>
  </hbox>

  <groupbox flex="1">
    <caption label="&printframeGroup.label;" id="printframeGroupLabel"/>
    <radiogroup id="printframeGroup">
      <radio id="aslaidoutRadio"
             label="&aslaidoutRadio.label;"
             accesskey="&aslaidoutRadio.accesskey;"/>
      <radio id="selectedframeRadio"
             label="&selectedframeRadio.label;"
             accesskey="&selectedframeRadio.accesskey;"/>
      <radio id="eachframesepRadio"
             label="&eachframesepRadio.label;"
             accesskey="&eachframesepRadio.accesskey;"/>
    </radiogroup>
  </groupbox>

  <!-- used to store titles and labels -->
  <data style="display:none;" id="printButton" label="&printButton.label;"/>
  <data style="display:none;" id="fpDialog" label="&fpDialog.title;"/>

</dialog>