mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-17 07:10:36 +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.
28 lines
863 B
Plaintext
28 lines
863 B
Plaintext
<!-- ASE - Allegro Sprite Editor -->
|
|
<!-- Copyright (C) 2001-2008 by David A. Capello -->
|
|
<!-- Read "LEGAL.txt" for more information. -->
|
|
<jinete>
|
|
<window text="Configure Screen" name="configure_screen" width="200">
|
|
<box vertical>
|
|
<box horizontal expansive>
|
|
<box vertical homogeneous>
|
|
<label text="Resolution:" />
|
|
<label text="Color depth:" />
|
|
<label text="Pixel scaling:" />
|
|
<check text="Fullscreen" name="fullscreen" />
|
|
</box>
|
|
<box vertical homogeneous expansive>
|
|
<combobox name="resolution" />
|
|
<combobox name="color_depth" />
|
|
<combobox name="pixel_scale" />
|
|
<label text="" />
|
|
</box>
|
|
</box>
|
|
<box horizontal homogeneous>
|
|
<button text="&OK" name="ok" magnetic />
|
|
<button text="&Cancel" />
|
|
</box>
|
|
</box>
|
|
</window>
|
|
</jinete>
|