mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-03 23:41:56 +00:00
7d47093acc
+ 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.
31 lines
965 B
XML
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="&OK" closewindow="true" name="ok" magnetic="true" width="60" />
|
|
</box>
|
|
</box>
|
|
</window>
|
|
</jinete>
|