aseprite/data/widgets/grid_settings.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

28 lines
833 B
XML

<!-- ASE - Allegro Sprite Editor -->
<!-- Copyright (C) 2001-2010 by David Capello -->
<jinete>
<window text="Grid Settings" name="grid_settings">
<grid columns="4">
<label text="X:" />
<entry name="grid_x" text="" maxsize="4" magnetic="true" />
<label text="Y:" />
<entry name="grid_y" text="" maxsize="4" />
<label text="Width:" />
<entry name="grid_w" text="" maxsize="4" />
<label text="Height:" />
<entry name="grid_h" text="" maxsize="4" />
<separator horizontal="true" cell_hspan="4" />
<box horizontal="true" homogeneous="true" cell_hspan="4" cell_align="right">
<button text="&amp;OK" closewindow="true" name="ok" magnetic="true" minwidth="60" />
<button text="&amp;Cancel" closewindow="true" />
</box>
</grid>
</window>
</jinete>