mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-28 15:20:15 +00:00
53 lines
1.9 KiB
Plaintext
53 lines
1.9 KiB
Plaintext
<!-- ASE - Allegro Sprite Editor -->
|
|
<!-- Copyright (C) 2001-2005, 2007, 2008 by David A. Capello -->
|
|
|
|
<!-- Read "LEGAL.txt" for more information. -->
|
|
|
|
<window text="New Sprite" name="new_sprite">
|
|
<box vertical>
|
|
<box horizontal>
|
|
<box vertical expansive>
|
|
<separator text="Size:" left horizontal />
|
|
<box vertical expansive>
|
|
<box horizontal>
|
|
<box vertical homogeneous>
|
|
<label text="Width:" />
|
|
<label text="Height:" />
|
|
</box>
|
|
<box vertical homogeneous expansive>
|
|
<entry expansive name="width" maxsize=8 magnetic tooltip="Width of the new sprite (in pixels)" />
|
|
<entry expansive name="height" maxsize=8 tooltip="Height of the new sprite (in pixels)" />
|
|
</box>
|
|
</box>
|
|
</box>
|
|
</box>
|
|
<box vertical>
|
|
<separator text="Color Mode:" left horizontal />
|
|
<box vertical homogeneous>
|
|
<radio name="radio1" text="&RGB Color" group=1 tooltip="RGBA color mode\n(32 bits per pixel)" />
|
|
<radio name="radio2" text="&Grayscale" group=1 tooltip="Value and Alpha\n(16 bits per pixel)" />
|
|
<radio name="radio3" text="&Indexed" group=1 tooltip="Using a palette of 256 colors\n(8 bits per pixel)" />
|
|
</box>
|
|
</box>
|
|
</box>
|
|
<separator text="Background:" left horizontal />
|
|
<view maxsize expansive>
|
|
<listbox name="bg_box">
|
|
<listitem text="Transparent (mask color)" />
|
|
<listitem text="Black" />
|
|
<listitem text="White" />
|
|
<listitem text="Magenta" />
|
|
<listitem text="Custom" />
|
|
</listbox>
|
|
</view>
|
|
|
|
<box horizontal>
|
|
<box horizontal expansive />
|
|
<box horizontal homogeneous>
|
|
<button text="&OK" name="ok_button" magnetic width="60" />
|
|
<button text="&Cancel" />
|
|
</box>
|
|
</box>
|
|
</box>
|
|
</window>
|