File: sprite_size.xml

package info (click to toggle)
aseprite 1.0.5%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,504 kB
  • ctags: 18,296
  • sloc: cpp: 84,144; ansic: 49,119; xml: 1,971; objc: 1,211; asm: 117; makefile: 45
file content (52 lines) | stat: -rw-r--r-- 2,257 bytes parent folder | download | duplicates (2)
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
<!-- ASEPRITE -->
<!-- Copyright (C) 2001-2013 by David Capello -->
<gui>
<window text="Sprite Size" id="sprite_size">
  <box vertical="true">
    <box vertical="true">
      <separator text="Pixels:" left="true" horizontal="true" />
      <box vertical="true" expansive="true">
        <box horizontal="true">
          <box vertical="true" homogeneous="true">
            <label text="Width:" />
            <label text="Height:" />
          </box>
          <box vertical="true" homogeneous="true" expansive="true">
            <entry expansive="true" id="width_px" suffix="px" maxsize="8" magnet="true" tooltip="New width for the sprite (in pixels)" />
            <entry expansive="true" id="height_px" suffix="px" maxsize="8" tooltip="New height for the sprite (in pixels)" />
          </box>
          <check text="Lock Ratio" id="lock_ratio" selected="true" />
        </box>
      </box>
      <separator text="Percentage:" left="true" horizontal="true" />
      <box vertical="true" expansive="true">
        <box horizontal="true">
          <box vertical="true" homogeneous="true">
            <label text="Width:" />
            <label text="Height:" />
          </box>
          <box vertical="true" homogeneous="true" expansive="true">
            <entry expansive="true" text="100" suffix="%" id="width_perc" maxsize="8" magnet="true" tooltip="New width for the sprite&#10;Percentage of current width." />
            <entry expansive="true" text="100" suffix="%" id="height_perc" maxsize="8" tooltip="New height for the sprite&#10;Percentage of current height." />
          </box>
          <box horizontal="true" width="64" />
        </box>
      </box>
    </box>
    <separator text="Interpolation:" left="true" horizontal="true" />
    <box vertical="true" expansive="true">
      <box horizontal="true">
        <label text="Method:" />
        <combobox id="method" expansive="true" />
      </box>
    </box>
    <box horizontal="true">
      <box horizontal="true" expansive="true" />
      <box horizontal="true" homogeneous="true">
        <button text="&amp;OK" closewindow="true" id="ok" magnet="true" width="60" />
        <button text="&amp;Cancel" closewindow="true" />
      </box>
    </box>
  </box>
</window>
</gui>