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.
30 lines
1.0 KiB
XML
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="&Preview" name="preview" />
|
|
<check text="&Tiled" name="tiled" />
|
|
</box>
|
|
</box>
|
|
<box horizontal="true" homogeneous="true" expansive="true">
|
|
<button text="&OK" closewindow="true" name="button_ok" magnetic="true" />
|
|
<button text="&Cancel" closewindow="true" />
|
|
</box>
|
|
</box>
|
|
</window>
|
|
</jinete>
|