summaryrefslogtreecommitdiffstats
path: root/comm/suite/editor/components/dialogs/content/EdSnapToGrid.xhtml
blob: 9ae66439755738703555e7fe3e5896652b4963bd (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
<?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://editor/skin/editor.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>

<!DOCTYPE dialog SYSTEM "chrome://editor/locale/EditorSnapToGrid.dtd">

<dialog title="&windowTitle.label;"
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml"
    onload="Startup()">

  <!-- Methods common to all editor dialogs -->
  <script src="chrome://editor/content/editorUtilities.js"/>
  <script src="chrome://editor/content/EdDialogCommon.js"/>
  <!--- Element-specific methods -->
  <script src="chrome://editor/content/EdSnapToGrid.js"/>

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

  <checkbox id="enableSnapToGrid"
            label="&enableSnapToGrid.label;"
            accesskey="&enableSnapToGrid.accessKey;"
            oncommand="toggleSnapToGrid();"/>

  <spacer class="spacer"/>

  <grid>
    <columns><column/><column/><column /></columns>
    <rows>
      <row align="center">
        <label value="&sizeEditField.label;"
               id="sizeLabel"
               control="size"
               accesskey="&sizeEditField.accessKey;"/>
        <textbox class="narrow" id="size" oninput="forceInteger('size')"/>
        <label id="unitLabel"
               value="&pixelsLabel.value;" />
      </row>
    </rows>
  </grid>

  <spacer class="spacer"/>
  <separator class="groove"/>
</dialog>