2007-11-16 18:25:45 +00:00
|
|
|
<!-- ASE - Allegro Sprite Editor -->
|
2011-01-20 21:32:31 +00:00
|
|
|
<!-- Copyright (C) 2001-2011 by David Capello -->
|
2008-03-15 01:54:45 +00:00
|
|
|
<jinete>
|
2008-05-05 04:45:17 +00:00
|
|
|
<window text="Tools Configuration" name="configure_tool">
|
2010-04-10 19:10:08 +00:00
|
|
|
<box vertical="true" childspacing="0">
|
2009-12-16 23:24:57 +00:00
|
|
|
<box horizontal="true" expansive="true">
|
2010-04-10 19:10:08 +00:00
|
|
|
<box vertical="true" childspacing="2">
|
2009-12-16 23:24:57 +00:00
|
|
|
<box horizontal="true" childspacing="0">
|
2009-03-09 00:05:37 +00:00
|
|
|
<check text="Tiled" name="tiled" />
|
|
|
|
<check text="x" name="tiled_x" />
|
|
|
|
<check text="y" name="tiled_y" />
|
|
|
|
</box>
|
2007-11-28 14:19:36 +00:00
|
|
|
<check text="Onionskin" name="onionskin" />
|
2009-12-16 23:24:57 +00:00
|
|
|
<separator text="Grid:" horizontal="true" left="true" />
|
- All tools stuff refactored in various files/components.
- Added classes: IToolLoop, Tool, ToolGroup, ToolInk, ToolController, ToolPointShape, ToolIntertwine, ToolBox, etc.
- Added ToolLoopManager.
- Removed old src/modules/tools.cpp.
- Added ISettings and UISettingsImpl, adding the tools settings (onion skinning, grid, tiled mode, etc.).
- Added App::PenSizeBeforeChange, PenSizeAfterChange, CurrentToolChange signals.
- Renamed Context::get_bg/fg_color to getBg/FgColor.
- Refactored Brush class to Pen and added PenType.
- Renamed tiled_t to TiledMode.
- get_config_rect now uses the new Rect class imported from Vaca instead of old jrect.
- Added default_skin.xml to load tool icons.
- Added pen preview in Editor::cursor stuff.
- Added Editor::decorators.
Note: This big patch is from some time ago. I did my best to pre-commit other small changes before this big one.
2010-03-07 19:47:45 +00:00
|
|
|
<check text="Snap to Grid" name="snap_to_grid" />
|
2007-11-28 14:19:36 +00:00
|
|
|
<check text="View Grid" name="view_grid" />
|
2010-04-29 02:46:17 +00:00
|
|
|
<check text="Pixel Grid" name="pixel_grid" />
|
2009-12-16 23:24:57 +00:00
|
|
|
<button text="Set &Grid" name="set_grid" />
|
2007-09-18 23:57:02 +00:00
|
|
|
</box>
|
2010-04-25 18:02:58 +00:00
|
|
|
<separator vertical="true" />
|
2010-04-10 19:10:08 +00:00
|
|
|
<box vertical="true" expansive="true" childspacing="2">
|
2009-12-16 23:24:57 +00:00
|
|
|
<box horizontal="true">
|
2010-04-10 19:10:08 +00:00
|
|
|
<grid columns="2" childspacing="0" expansive="true">
|
2010-04-25 18:02:58 +00:00
|
|
|
|
|
|
|
<label text="Pen:" />
|
2010-04-26 02:39:46 +00:00
|
|
|
<box horizontal="true" childspacing="0" name="brush_type_box" /><!-- custom widget -->
|
2010-04-25 18:02:58 +00:00
|
|
|
|
2007-11-28 14:19:36 +00:00
|
|
|
<label text="Size:" />
|
2010-04-24 19:11:14 +00:00
|
|
|
<slider min="1" max="32" name="brush_size" minwidth="32" cell_align="horizontal" />
|
2010-04-25 18:02:58 +00:00
|
|
|
|
2007-11-28 14:19:36 +00:00
|
|
|
<label text="Angle:" />
|
2010-04-10 19:10:08 +00:00
|
|
|
<slider min="0" max="180" name="brush_angle" cell_align="horizontal" />
|
2010-04-25 18:02:58 +00:00
|
|
|
|
2010-08-13 13:41:13 +00:00
|
|
|
<label text="Opacity:" name="opacity_label" />
|
2010-04-10 19:10:08 +00:00
|
|
|
<slider min="0" max="255" name="opacity" cell_align="horizontal" />
|
2010-04-25 18:02:58 +00:00
|
|
|
|
2010-08-13 13:41:13 +00:00
|
|
|
<label text="Tolerance:" name="tolerance_label" />
|
|
|
|
<slider min="0" max="255" name="tolerance" cell_align="horizontal" />
|
|
|
|
|
2010-04-10 19:10:08 +00:00
|
|
|
</grid>
|
2007-09-18 23:57:02 +00:00
|
|
|
<box name="brush_preview_box" /><!-- custom widget -->
|
|
|
|
</box>
|
2010-08-13 14:04:17 +00:00
|
|
|
<box vertical="true" name="spray_box">
|
|
|
|
<separator text="Spray:" horizontal="true" left="true" />
|
|
|
|
<box horizontal="true">
|
|
|
|
<box vertical="true" homogeneous="true" childspacing="0">
|
|
|
|
<label text="Spray Width:" />
|
|
|
|
<label text="Air Speed:" />
|
|
|
|
</box>
|
|
|
|
<box vertical="true" homogeneous="true" expansive="true" childspacing="0">
|
|
|
|
<slider min="1" max="32" name="spray_width" />
|
|
|
|
<slider min="1" max="100" name="air_speed" />
|
|
|
|
</box>
|
2007-09-18 23:57:02 +00:00
|
|
|
</box>
|
|
|
|
</box>
|
|
|
|
</box>
|
|
|
|
</box>
|
|
|
|
</box>
|
|
|
|
</window>
|
2008-03-15 01:54:45 +00:00
|
|
|
</jinete>
|