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

30 lines
1.0 KiB
XML

<!-- ASE - Allegro Sprite Editor -->
<!-- Copyright (C) 2001-2010 by David Capello -->
<jinete>
<window text="Median Blur" name="median">
<box vertical="true">
<box horizontal="true">
<box horizontal="true" expansive="true">
<box vertical="true" homogeneous="true">
<label text="Width:" />
<label text="Height:" />
</box>
<box vertical="true" homogeneous="true" expansive="true">
<entry expansive="true" name="width" maxsize="4" />
<entry expansive="true" name="height" maxsize="4" />
</box>
</box>
<box vertical="true">
<box name="target" />
<check text="&amp;Preview" name="preview" />
<check text="&amp;Tiled" name="tiled" />
</box>
</box>
<box horizontal="true" homogeneous="true" expansive="true">
<button text="&amp;OK" closewindow="true" name="button_ok" magnetic="true" />
<button text="&amp;Cancel" closewindow="true" />
</box>
</box>
</window>
</jinete>