aseprite/data/widgets/new_sprite.xml

43 lines
1.8 KiB
XML
Raw Normal View History

<!-- ASEPRITE -->
<!-- Copyright (C) 2001-2013, 2015 by David Capello -->
<gui>
<window text="New Sprite" id="new_sprite">
<box vertical="true">
<separator text="Size:" left="true" horizontal="true" />
<grid columns="2">
<label text="Width:" />
<entry id="width" maxsize="8" magnet="true" cell_align="horizontal" tooltip="Width of the new sprite&#10;(in pixels)" />
<label text="Height:" />
<entry id="height" maxsize="8" cell_align="horizontal" tooltip="Height of the new sprite&#10;(in pixels)" />
</grid>
<separator text="Color Mode:" left="true" horizontal="true" />
<hbox>
<radio id="rgb_mode" text="&amp;RGBA" group="1" tooltip="Each pixel has Red, Green, Blue, and Alpha components&#10;(32 bits per pixel)" />
<radio id="grayscale_mode" text="&amp;Grayscale" group="1" tooltip="Each pixel has a Gray value and Alpha&#10;(16 bits per pixel)" />
<radio id="indexed_mode" text="&amp;Indexed" group="1" tooltip="Each pixel is a reference to the palette&#10;(8 bits per pixel)" />
</hbox>
<separator text="Background:" left="true" horizontal="true" />
<view maxsize="true" expansive="true">
<listbox id="bg_box">
<listitem text="Transparent" />
<listitem text="Black" />
<listitem text="White" />
<listitem text="Magenta" />
</listbox>
</view>
<box horizontal="true">
<box horizontal="true" expansive="true" />
<box horizontal="true" homogeneous="true">
<button text="&amp;OK" closewindow="true" id="ok_button" magnet="true" width="60" />
<button text="&amp;Cancel" closewindow="true" />
</box>
</box>
2007-09-18 23:57:02 +00:00
</box>
</window>
</gui>