aseprite/data/widgets/sprite_properties.xml
David Capello 7d47093acc Convert jbutton widget to ButtonBase, Button, CheckBox, and RadioButton C++ classes.
+ Add ButtonBase::Click signal.
+ Button does not close the window by default (you have to configure this action manually when Click signal is triggered).
+ Add "closewindow" attribute to <button> widget in XML files.
+ Move "bevels" to SkinProperty.
+ Convert colorbutton widget in ColorButton C++ class.
2010-08-23 17:41:19 -03:00

31 lines
965 B
XML

<!-- ASE - Allegro Sprite Editor -->
<!-- Copyright (C) 2001-2010 by David Capello -->
<jinete>
<window text="Sprite Properties" name="sprite_properties">
<box vertical="true">
<box horizontal="true">
<grid columns="2" expansive="true">
<label text="File name:" />
<entry text="" name="name" maxsize="256" minwidth="64" readonly="true" cell_align="horizontal" />
<label text="Type:" />
<label text="" name="type" />
<label text="Size:" />
<label text="" name="size" />
<label text="Frames:" />
<label text="" name="frames" />
</grid>
</box>
<separator horizontal="true" />
<box horizontal="true">
<button text="Constant Frame-Rate Speed" name="speed" />
<box horizontal="true" expansive="true" />
<button text="&amp;OK" closewindow="true" name="ok" magnetic="true" width="60" />
</box>
</box>
</window>
</jinete>