mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-28 15:20:15 +00:00
02e8c66da4
Several refactoring tasks where made: - Removed the old Widget::id field (JID). - Renamed Widget::get/setName to get/setId. - Moved load_widget_from_xmlfile() to app::load_widget and WidgetLoader class. - Removed jhook structure & jwidget_add_hook function. Hooks were replaced subclassing widgets. - Added InitThemeEvent class and Widget::onInitTheme member function.
70 lines
2.2 KiB
XML
70 lines
2.2 KiB
XML
<!-- ASEPRITE -->
|
|
<!-- Copyright (C) 2001-2012 by David Capello -->
|
|
<gui>
|
|
<window text="Options" id="options">
|
|
<box vertical="true">
|
|
<box horizontal="true">
|
|
<box vertical="true">
|
|
|
|
<!-- Editor -->
|
|
|
|
<separator text="Editor:" horizontal="true" />
|
|
<check text="Smooth auto-scroll" id="smooth" />
|
|
<check text="2 Click Movement" id="move_click2" disabled="true" />
|
|
<check text="2 Click Drawing" id="draw_click2" disabled="true" />
|
|
<grid columns="2">
|
|
<label text="Cursor:" />
|
|
<box id="cursor_color_box" /><!-- custom widget -->
|
|
|
|
<label text="Grid Color:" />
|
|
<box id="grid_color_box" /><!-- custom widget -->
|
|
|
|
<label text="Pixel Grid:" />
|
|
<box id="pixel_grid_color_box" /><!-- custom widget -->
|
|
</grid>
|
|
|
|
<!-- Undo -->
|
|
|
|
<separator text="Undo:" horizontal="true" />
|
|
<box horizontal="true">
|
|
<label text="Undo Limit:" />
|
|
<entry id="undo_size_limit" maxsize="4" tooltip="Limit of memory to be used for undo information per sprite. Specified in megabytes." />
|
|
<label text="MB" />
|
|
</box>
|
|
|
|
</box>
|
|
<separator vertical="true" />
|
|
<box vertical="true">
|
|
|
|
<!-- Checked Background -->
|
|
|
|
<separator text="Checked Background:" horizontal="true" />
|
|
<box horizontal="true">
|
|
<label text="Size:" />
|
|
<combobox id="checked_bg_size" expansive="true" />
|
|
</box>
|
|
<check text="Apply Zoom" id="checked_bg_zoom" />
|
|
<grid columns="2">
|
|
<label text="Color 1" />
|
|
<box horizontal="true" id="checked_bg_color1_box" />
|
|
<label text="Color 2" />
|
|
<box horizontal="true" id="checked_bg_color2_box" />
|
|
</grid>
|
|
<button id="checked_bg_reset" text="Reset" />
|
|
|
|
</box>
|
|
</box>
|
|
|
|
<separator horizontal="true" />
|
|
|
|
<box horizontal="true">
|
|
<box horizontal="true" expansive="true" />
|
|
<box horizontal="true" homogeneous="true">
|
|
<button text="&OK" closewindow="true" id="button_ok" magnet="true" width="60" />
|
|
<button text="&Cancel" closewindow="true" />
|
|
</box>
|
|
</box>
|
|
</box>
|
|
</window>
|
|
</gui>
|