mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<!-- ASE - Allegro Sprite Editor -->
|
|
<!-- Copyright (C) 2001-2012 by David Capello -->
|
|
<jinete>
|
|
<window text="New Sprite" name="new_sprite">
|
|
<box vertical="true">
|
|
|
|
<separator text="Size:" left="true" horizontal="true" />
|
|
<grid columns="2">
|
|
<label text="Width:" />
|
|
<entry name="width" maxsize="8" magnetic="true" cell_align="horizontal" tooltip="Width of the new sprite (in pixels)" />
|
|
<label text="Height:" />
|
|
<entry name="height" maxsize="8" cell_align="horizontal" tooltip="Height of the new sprite (in pixels)" />
|
|
</grid>
|
|
|
|
<separator text="Color Mode:" left="true" horizontal="true" />
|
|
<box vertical="true" homogeneous="true" childspacing="0">
|
|
<box horizontal="true">
|
|
<radio name="radio3" text="&Indexed with " group="1" tooltip="Using a palette of 256 colors (8 bits per pixel)" />
|
|
<entry name="colors" maxsize="8" tooltip="Maximum number of colors (only for Indexed images) This field cannot be modified in this beta version." disabled="true" />
|
|
<label text="Colors" />
|
|
</box>
|
|
<radio name="radio1" text="&RGB Color" group="1" tooltip="RGBA color mode (32 bits per pixel)" />
|
|
<radio name="radio2" text="&Grayscale" group="1" tooltip="Value and Alpha (16 bits per pixel)" />
|
|
</box>
|
|
|
|
<separator text="Background:" left="true" horizontal="true" />
|
|
<view maxsize="true" expansive="true">
|
|
<listbox name="bg_box">
|
|
<listitem text="Transparent" />
|
|
<listitem text="Black" />
|
|
<listitem text="White" />
|
|
<listitem text="Magenta" />
|
|
<listitem text="Background Color" />
|
|
</listbox>
|
|
</view>
|
|
|
|
<box horizontal="true">
|
|
<box horizontal="true" expansive="true" />
|
|
<box horizontal="true" homogeneous="true">
|
|
<button text="&OK" closewindow="true" name="ok_button" magnetic="true" width="60" />
|
|
<button text="&Cancel" closewindow="true" />
|
|
</box>
|
|
</box>
|
|
|
|
</box>
|
|
</window>
|
|
</jinete>
|