mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
df0104734f
Fixed some bugs in the GUI system. Added tabs, and removed the list-menu.
67 lines
2.0 KiB
Plaintext
67 lines
2.0 KiB
Plaintext
<!-- ASE - Allegro Sprite Editor -->
|
|
<!-- Copyright (C) 2001-2005, 2007 by David A. Capello -->
|
|
|
|
<!-- Read "LEGAL.txt" for more information. -->
|
|
|
|
<window text="Convolution Matrix" name="convolution_matrix">
|
|
<box vertical>
|
|
<box horizontal expansive>
|
|
<view expansive name="view" /><!-- custom widget -->
|
|
<box vertical>
|
|
<button text="&OK" name="button_ok" magnetic />
|
|
<button text="&Cancel" />
|
|
<box name="target" />
|
|
<check text="&Preview" name="preview" />
|
|
<check text="&Tiled" name="tiled" />
|
|
</box>
|
|
</box>
|
|
<box horizontal>
|
|
<button text="&Reload Stock" name="reload" />
|
|
<button text="&Generate" name="generate" />
|
|
</box>
|
|
</box>
|
|
</window>
|
|
|
|
<window text="Generate New Matrix" name="generate_convolution_matrix">
|
|
<box vertical>
|
|
<box horizontal expansive homogeneous>
|
|
<box vertical expansive>
|
|
<label text="X axis" />
|
|
<view expansive name="view_x" /><!-- custom widget -->
|
|
</box>
|
|
<box vertical expansive>
|
|
<label text="Y axis" />
|
|
<view expansive name="view_y" /><!-- custom widget -->
|
|
</box>
|
|
</box>
|
|
<box horizontal homogeneous>
|
|
<box horizontal>
|
|
<box vertical homogeneous>
|
|
<label text="Width:" />
|
|
<label text="Height:" />
|
|
</box>
|
|
<box vertical homogeneous expansive>
|
|
<slider min="1" max="31" name="width" />
|
|
<slider min="1" max="31" name="height" />
|
|
</box>
|
|
<box vertical homogeneous>
|
|
<label text="Div:" />
|
|
<label text="Bias:" />
|
|
</box>
|
|
<box vertical homogeneous expansive>
|
|
<entry maxsize=32 name="div" />
|
|
<entry maxsize=32 name="bias" />
|
|
</box>
|
|
<box vertical homogeneous>
|
|
<check text="Auto" name="div_auto" />
|
|
<check text="Auto" name="bias_auto" />
|
|
</box>
|
|
</box>
|
|
</box>
|
|
<box horizontal homogeneous>
|
|
<button text="&OK" name="button_ok" magnetic />
|
|
<button text="&Cancel" />
|
|
</box>
|
|
</box>
|
|
</window>
|