mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
19e8083256
+ Renamed Editor::cursor_eyedropper to Editor::alt_pressed. + Added statusbar_show_tip. + Added AppHooks. + Renamed color_button_* to colorbutton_* + Renamed GfxObj*Layer::parent to Layer*Layer::parent_layer. + Added Palette gfxobj and refactored a lot of code to this new Palette instead of Allegro's RGB/PALETTE. + Now jfile.c uses jxml.c. + New signature for callbacks in 'hook_signal' of modules/gui.c: bool hook(JWidget, void *); - Removed colsel and minipal from dialogs. + Fixed mouse bounds in sliders.
27 lines
817 B
Plaintext
27 lines
817 B
Plaintext
<!-- ASE - Allegro Sprite Editor -->
|
|
<!-- Copyright (C) 2001-2008 by David A. Capello -->
|
|
<!-- Read "LEGAL.txt" for more information. -->
|
|
<jinete>
|
|
<window text="Replace Color" name="replace_color">
|
|
<box horizontal>
|
|
<box vertical expansive>
|
|
<box horizontal expansive>
|
|
<box vertical homogeneous>
|
|
<label text="From:" />
|
|
<label text="To:" />
|
|
</box>
|
|
<box vertical homogeneous expansive name="color_buttons_box" />
|
|
</box>
|
|
<label text="Fuzziness:" />
|
|
<slider min=0 max=255 name="fuzziness" />
|
|
</box>
|
|
<box vertical>
|
|
<button text="&OK" name="button_ok" magnetic />
|
|
<button text="&Cancel" />
|
|
<box name="target" />
|
|
<check text="&Preview" name="preview" />
|
|
</box>
|
|
</box>
|
|
</window>
|
|
</jinete>
|