mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-01 09:04:02 +00:00
5a45d1ec23
This field is disabled, and the program isn't ready to support less than 256 colors in Indexed mode, so it's better if we remove this field to avoid confusion.
48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<!-- ASEPRITE -->
|
|
<!-- Copyright (C) 2001-2013 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 (in pixels)" />
|
|
<label text="Height:" />
|
|
<entry id="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 id="radio3" text="&Indexed color" group="1" tooltip="Using a palette of 256 colors (8 bits per pixel)" />
|
|
<!-- <entry id="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 id="radio1" text="&RGB color" group="1" tooltip="RGBA color mode (32 bits per pixel)" />
|
|
<radio id="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 id="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" id="ok_button" magnet="true" width="60" />
|
|
<button text="&Cancel" closewindow="true" />
|
|
</box>
|
|
</box>
|
|
|
|
</box>
|
|
</window>
|
|
</gui>
|