2014-02-08 03:19:20 +00:00
<!-- Aseprite -->
2015-01-19 01:05:33 +00:00
<!-- Copyright (C) 2001 - 2015 by David Capello -->
2012-06-16 02:37:59 +00:00
<gui >
2014-10-25 14:49:24 +00:00
<window id= "options" text= "Preferences" >
2014-08-10 04:12:31 +00:00
<vbox >
2014-06-23 00:56:04 +00:00
<hbox >
<view maxsize= "true" >
<listbox id= "section_listbox" >
<listitem text= "General" value= "section_general" />
<listitem text= "Editor" value= "section_editor" />
<listitem text= "Grid && Background" value= "section_grid" />
<listitem text= "Undo" value= "section_undo" />
2014-08-10 22:51:14 +00:00
<listitem text= "Experimental" value= "section_experimental" />
2014-06-23 00:56:04 +00:00
</listbox>
</view>
2010-04-26 00:29:50 +00:00
2014-06-23 00:56:04 +00:00
<panel id= "panel" >
<vbox id= "section_general" >
<separator text= "General" horizontal= "true" />
2014-08-19 11:17:57 +00:00
<hbox >
2014-06-23 00:56:04 +00:00
<label text= "Screen Scale:" />
2014-08-19 11:17:57 +00:00
<combobox id= "screen_scale" />
</hbox>
2014-07-06 23:51:27 +00:00
<check text= "Show timeline automatically" id= "autotimeline" tooltip= "Show the timeline automatically when a new frame or layer is added." />
2014-10-25 14:24:29 +00:00
<check text= "Expand menu bar items on mouseover" id= "expand_menubar_on_mouseover" tooltip= "Check this option to get this old menus behavior." />
2014-11-07 22:11:23 +00:00
<check text= "Center editor when zoom with keys or zoom tool" id= "center_on_zoom" />
2014-08-20 03:11:19 +00:00
<separator horizontal= "true" />
<link id= "locate_file" text= "Locate Configuration File" />
<link id= "locate_crash_folder" text= "Locate Crash Folder" />
2014-06-23 00:56:04 +00:00
</vbox>
2014-02-08 03:19:20 +00:00
2014-06-23 00:56:04 +00:00
<!-- Editor -->
<vbox id= "section_editor" >
<separator text= "Editor" horizontal= "true" />
2014-08-19 11:17:57 +00:00
<check text= "Zoom with Scroll Wheel" id= "wheel_zoom" />
2014-06-23 00:56:04 +00:00
<check text= "Show scroll-bars in sprite editor" id= "show_scrollbars" tooltip= "Show scroll-bars in all sprite editors." />
2014-08-19 11:17:57 +00:00
<hbox >
<label text= "Right-click:" />
<combobox id= "right_click_behavior" expansive= "true" />
</hbox>
<hbox >
<label text= "Cursor Color:" />
2014-06-23 00:56:04 +00:00
<box id= "cursor_color_box" /> <!-- custom widget -->
2014-08-19 11:17:57 +00:00
</hbox>
2014-06-23 00:56:04 +00:00
</vbox>
2014-02-08 03:19:20 +00:00
2014-06-23 00:56:04 +00:00
<!-- Grid & background -->
<vbox id= "section_grid" >
<separator text= "Grid" horizontal= "true" />
2014-11-24 22:13:25 +00:00
<grid columns= "3" >
2014-06-23 00:56:04 +00:00
<label text= "Grid Color:" />
2014-11-24 22:13:25 +00:00
<box id= "grid_color_placeholder" /> <!-- custom widget -->
<hbox />
2007-09-18 23:57:02 +00:00
2014-11-24 22:13:25 +00:00
<label text= "Grid Opacity:" />
<slider grid_hspan= "1" id= "grid_opacity" min= "1" max= "255" width= "128" />
<check id= "grid_auto_opacity" text= "Auto" />
<label text= "Pixel Grid Color:" />
<box id= "pixel_grid_color_placeholder" /> <!-- custom widget -->
<hbox />
<label text= "Pixel Grid Opacity:" />
<slider id= "pixel_grid_opacity" min= "1" max= "255" width= "128" />
<check id= "pixel_grid_auto_opacity" text= "Auto" />
2014-06-23 00:56:04 +00:00
</grid>
2010-04-29 02:47:08 +00:00
2014-06-23 00:56:04 +00:00
<separator text= "Checked Background" horizontal= "true" />
2014-11-24 22:13:25 +00:00
<hbox >
2014-06-23 00:56:04 +00:00
<label text= "Size:" />
<combobox id= "checked_bg_size" expansive= "true" />
2014-11-24 22:13:25 +00:00
</hbox>
2014-06-23 00:56:04 +00:00
<check text= "Apply Zoom" id= "checked_bg_zoom" />
2014-11-24 22:13:25 +00:00
<hbox >
<label text= "Colors:" />
2014-06-23 00:56:04 +00:00
<box horizontal= "true" id= "checked_bg_color1_box" />
<box horizontal= "true" id= "checked_bg_color2_box" />
2014-11-24 22:13:25 +00:00
</hbox>
<hbox >
<hbox expansive= "true" />
<button id= "reset" text= "Reset" width= "60" />
</hbox>
2014-06-23 00:56:04 +00:00
</vbox>
2010-04-29 02:47:08 +00:00
2014-06-23 00:56:04 +00:00
<!-- Undo -->
<vbox id= "section_undo" >
<separator text= "Undo" horizontal= "true" />
2015-01-19 01:05:33 +00:00
<hbox >
2014-06-23 00:56:04 +00:00
<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" />
2015-01-19 01:05:33 +00:00
</hbox>
2007-09-18 23:57:02 +00:00
2015-01-19 01:05:33 +00:00
<vbox >
2014-06-23 00:56:04 +00:00
<check id= "undo_goto_modified" text= "Go to modified frame/layer" tooltip= "When it's enabled each time you undo/redo the current frame & layer will be modified to focus the undid/redid change." />
2015-01-19 01:05:33 +00:00
<check id= "undo_allow_nonlinear_history" text= "Allow non-linear history." />
</vbox>
2014-06-23 00:56:04 +00:00
</vbox>
2014-08-10 22:51:14 +00:00
<!-- Experimental -->
<vbox id= "section_experimental" >
<separator text= "User Interface" horizontal= "true" />
<check id= "native_cursor" text= "Use native mouse cursor" />
2014-10-25 19:04:39 +00:00
<check id= "flash_layer" text= "Flash layer when it is selected" />
2014-08-10 22:51:14 +00:00
</vbox>
2014-06-23 00:56:04 +00:00
</panel>
</hbox>
2010-04-26 00:29:50 +00:00
<separator horizontal= "true" />
2014-06-23 00:56:04 +00:00
<hbox >
2014-06-14 02:00:49 +00:00
<boxfiller />
2014-06-23 00:56:04 +00:00
<hbox homogeneous= "true" >
2012-06-16 02:37:59 +00:00
<button text= "&OK" closewindow= "true" id= "button_ok" magnet= "true" width= "60" />
2012-01-05 22:45:03 +00:00
<button text= "&Cancel" closewindow= "true" />
2014-06-23 00:56:04 +00:00
</hbox>
</hbox>
</vbox>
2014-08-10 04:12:31 +00:00
</window>
2012-06-16 02:37:59 +00:00
</gui>