2012-01-06 04:12:57 +00:00
|
|
|
<!-- ASEPRITE -->
|
2015-05-09 15:46:07 +00:00
|
|
|
<!-- Copyright (C) 2001-2013, 2015 by David Capello -->
|
2012-06-16 02:37:59 +00:00
|
|
|
<gui>
|
|
|
|
<window text="New Sprite" id="new_sprite">
|
2010-06-01 23:35:13 +00:00
|
|
|
<box vertical="true">
|
|
|
|
|
2010-06-02 01:02:26 +00:00
|
|
|
<separator text="Size:" left="true" horizontal="true" />
|
|
|
|
<grid columns="2">
|
2012-01-05 22:45:03 +00:00
|
|
|
<label text="Width:" />
|
2015-11-24 22:54:10 +00:00
|
|
|
<entry id="width" maxsize="8" magnet="true" cell_align="horizontal" suffix="px" />
|
2012-01-05 22:45:03 +00:00
|
|
|
<label text="Height:" />
|
2015-11-24 22:54:10 +00:00
|
|
|
<entry id="height" maxsize="8" cell_align="horizontal" suffix="px" />
|
2010-06-02 01:02:26 +00:00
|
|
|
</grid>
|
2010-06-01 23:35:13 +00:00
|
|
|
|
|
|
|
<separator text="Color Mode:" left="true" horizontal="true" />
|
2015-08-12 15:38:07 +00:00
|
|
|
<buttonset columns="3" id="color_mode">
|
|
|
|
<item text="&RGBA" icon="icon_rgb" tooltip="Each pixel has Red, Green, Blue, and Alpha components (32 bits per pixel)" tooltip_dir="bottom" />
|
|
|
|
<item text="&Grayscale" icon="icon_grayscale" tooltip="Each pixel has a Gray value and Alpha (16 bits per pixel)" tooltip_dir="bottom" />
|
|
|
|
<item text="&Indexed" icon="icon_indexed" tooltip="Each pixel is a reference to the palette (8 bits per pixel)" tooltip_dir="bottom" />
|
|
|
|
</buttonset>
|
2007-12-06 20:05:32 +00:00
|
|
|
|
2010-06-01 23:35:13 +00:00
|
|
|
<separator text="Background:" left="true" horizontal="true" />
|
2015-08-12 15:38:07 +00:00
|
|
|
<buttonset columns="3" id="bg_color">
|
|
|
|
<item text="&Transparent" icon="icon_transparent" />
|
|
|
|
<item text="&White" icon="icon_white" />
|
|
|
|
<item text="&Black" icon="icon_black" />
|
|
|
|
</buttonset>
|
2010-06-01 23:35:13 +00:00
|
|
|
|
|
|
|
<box horizontal="true">
|
2012-01-05 22:45:03 +00:00
|
|
|
<box horizontal="true" expansive="true" />
|
|
|
|
<box horizontal="true" homogeneous="true">
|
2012-06-16 02:37:59 +00:00
|
|
|
<button text="&OK" closewindow="true" id="ok_button" magnet="true" width="60" />
|
2012-01-05 22:45:03 +00:00
|
|
|
<button text="&Cancel" closewindow="true" />
|
|
|
|
</box>
|
2007-12-06 20:05:32 +00:00
|
|
|
</box>
|
2010-06-01 23:35:13 +00:00
|
|
|
|
2007-09-18 23:57:02 +00:00
|
|
|
</box>
|
2010-06-01 23:35:13 +00:00
|
|
|
</window>
|
2012-06-16 02:37:59 +00:00
|
|
|
</gui>
|