Code

replace nr_new() with g_new(), and try to converge on using the glib allocator a...
[inkscape.git] / ChangeLog
1 2006-05-28  MenTaLguY  <mental@rydia.net>
3         * src/dialogs/clonetiler.cpp, src/dialogs/iconpreview.cpp,
4           src/dialogs/stroke-style.cpp, src/display/curve.cpp,
5           src/display/sp-canvas.cpp, src/dyna-draw-context.cpp,
6           src/extension/internal/gnome.cpp, src/extension/internal/pdf.cpp,
7           src/extension/internal/ps.cpp, src/extension/internal/win32.cpp,
8           src/file.cpp, src/inkview.cpp, src/libnr/nr-macros.h,
9           src/libnr/nr-object.cpp, src/libnr/nr-path.cpp,
10           src/libnr/nr-pixblock.cpp, src/libnr/nr-pixblock-pattern.cpp,
11           src/libnr/nr-svp.cpp, src/libnr/nr-svp-render.cpp,
12           src/libnrtype/FontFactory.cpp, src/libnrtype/Layout-TNG-Output.cpp,
13           src/libnrtype/nr-type-primitives.cpp, src/path-chemistry.cpp,
14           src/splivarot.cpp, src/sp-marker.cpp, src/ui/widget/icon-widget.cpp,
15           src/widgets/icon.cpp:
17           replace nr_new() with g_new(), and try to converge on using the
18           glib allocator a little more instead of the others (aside from
19           libgc)
21 2006-05-28  MenTaLguY  <mental@rydia.net>
23         * share/icons/icons.svg:
25           correct vertical text flow icon to  correctly reflect lines stacking
26           right-to-left, as well as improving pixel alignment on both text flow
27           icons
29 2006-05-28  MenTaLguY  <mental@rydia.net>
31         * src/widgets/toolbox.cpp:
33           add tooltips to text toolbar widgets
35 2006-05-28  Jon A. Cruz  <jon@joncruz.org>
37         * src/layer-manager.cpp, src/layer-manager.cpp,
38           src/preferences-skeleton.h, src/ui/dialog/inkscape-preferences.cpp,
39           src/ui/dialog/inkscape-preferences.h,
40           src/widgets/layer-selector.cpp, src/dialogs/layers-panel.cpp:
42           Finished option to turn on or off deslecting when switching layers.
43           Fixes RFE #1495701.
45 2006-05-28  Jon A. Cruz  <jon@joncruz.org>
47         * src/dialogs/layers-panel.h, src/dialogs/layers-panel.cpp:
49           Changed clicking on visibility and locked toggles to not switch
50           selected layer.
51           Fixes bug #1495856.
53 2006-05-28  Michael Wybrow  <mjwybrow@users.sourceforge.net>
55         * src/sp-conn-end-pair.cpp: Detach connectors from empty groups
56           before trying to route connectors to them.  This is required
57           since empty groups have no physical position.  Fixes bug #1448811.
59 2006-05-27  Kees Cook  <kees@outflux.net>
61         * src/extension/implementation/script.cpp: allow output extension
62           parameters to be prompted and used, closes bug #1495310.
64 2006-05-26  MenTaLguY  <mental@rydia.net>
66         * src/dialogs/layers-panel.h, src/dialogs/layers-panel.cpp:
68           make button labels translatable, and use HButtonBox instead of HBox for
69           better appearance
71 2006-05-26  Jon A. Cruz  <jon@joncruz.org>
73         * src/layer-manager.cpp, src/layer-manager.h,
74           src/dialogs/layer-properties.cpp, src/dialogs/layers-panel.cpp:
76           Prevent layer name duplication.
77           Fixes bug #1115407.
79 2006-05-26  Jon A. Cruz  <jon@joncruz.org>
81         * src/widgets/desktop-widget.cpp:
83           Fixed resize handle in corner of main UI.
84           Fixes bug #1493995.
86 2006-05-26  Jon A. Cruz  <jon@joncruz.org>
88         * src/layer-manager.cpp, src/layer-manager.h,
89           src/widgets/layer-selector.cpp:
91           Cleaned up propagation of status changes.
92           Fixes bug #1495333.
94 2006-05-26  Michael Wybrow  <mjwybrow@users.sourceforge.net>
96         * src/path-prefix.h: Add missing CREATE_* directory locations
97           for building an OS X application bundle.  Fixes bug #1495284.
99 2006-05-25  Bryce Harrington <bryce@bryceharrington.org>
101         * src/inkscape.cpp:  i18n on error messages (fix for bug 1490928) 
103 2006-05-23  Jon A. Cruz  <jon@joncruz.org>
105         * src/dialogs/layers-panel.cpp, src/dialogs/swatches.cpp,
106           src/dialogs/swatches.h, src/preferences-skeleton.h,
107           src/ui/previewfillable.h, src/ui/previewholder.cpp,
108           src/ui/previewholder.h, src/ui/widget/panel.cpp,
109           src/ui/widget/panel.h, src/verbs.cpp,
110           src/widgets/desktop-widget.cpp:
111           Refactored panels.
112           Fixes RFE #1453153. Fixes RFE #1453152.
113         
115 2006-05-23  MenTaLguY  <mental@rydia.net>
117         * src/extension/internal/ps.cpp:
119           move %%EOF to end of output document
121 2006-05-22  Jon A. Cruz  <jon@joncruz.org>
123         * src/dialogs/swatches.cpp, src/ui/widget/panel.cpp,
124           src/ui/widget/panel.h:
125           Removed panel menu unless requested. Fixes bug #1492597.
127 2006-05-22  MenTaLguY  <mental@rydia.net>
129         * src/extension/internal/svg.cpp:
131           replace EXTREMELY inefficient (O(n^2), I think?) stacked C string
132           concatenations with appends to a std::vector, which is amortized O(1)
134 2006-05-21  Marco Scholten  <mscholtn@xs4all.nl>
136         * src/ui/dialog/inkscape-preferences.cpp, 
137       src/ui/dialog/inkscape-preferences.h: 
138           Added 'Show close button on dialogs' option.
140 2006-05-21  MenTaLguY  <mental@rydia.net>
142         * src/ui/view/view-widget.cpp:
143         
144           request collection pass after destruction of a view widget
146 2006-05-21  MenTaLguY  <mental@rydia.net>
148         * src/gc-core.h, src/gc.cpp:
149         
150           add GC::request_early_collection() to force a collection from the idle
151           loop at opportune times
153         * src/dialogs/filedialog.cpp:
155           call GC::request_early_collection() after switching preview images
157 2006-05-21  Jon A. Cruz  <jon@joncruz.org>
159         * src/layer-manager.cpp, src/layer-manager.h,
160           src/dialogs/layers-panel.cpp, src/dialogs/layers-panel.h:
161           Adding notification when managed layers change.
163 2006-05-21  Michael Wybrow  <mjwybrow@users.sourceforge.net>
165         * src/extension/internal/pdf.cpp: Compilation fix.  For versions
166           of glib older that 2.9.0, use g_date_set_time() instead of
167           g_date_set_time_t().
169 2006-05-20  MenTaLguY  <mental@rydia.net>
171         * src/extensin/internal/ps.cpp:
173           add %%EOF trailer for DSC-compliance
175 2006-05-20  Colin Marquardt  <colin@marquardt-home.de>
177         * share/extensions/lindenmayer.inx,
178           share/extensions/kochify_load.inx, 
179           share/extensions/kochify.inx:
180           Rename slightly, also makes for easier translation.
182 2006-05-20  Jon A. Cruz  <jon@joncruz.org>
184         * src/widgets/icon.h, src/widgets/icon.cpp, src/dialogs/layers-panel.cpp:
185           Changled dialog from checkboxes to icons for visible and locked.
187 2006-05-20  Michael Wybrow  <mjwybrow@users.sourceforge.net>
189         * src/libnrtype/FontInstance.cpp: patch from David Turner of the
190           FreeType Project.  Fixes a compilation problem and a possible
191           segmentation fault.
193 2006-05-19  Jon A. Cruz  <jon@joncruz.org>
194         * src/preferences-skeleton.h, src/dialogs/layers-panel.h,
195           src/dialogs/layers-panel.cpp:
196           Selection and event handling cleanup. Added deeper display.
198 2006-05-18  Jon A. Cruz  <jon@joncruz.org>
199         * src/layer-manager.cpp, src/dialogs/layers-panel.h,
200           src/dialogs/layers-panel.cpp:
201           Next round of layer dialog updates.
203 2006-05-17  Kees Cook  <kees@outflux.net>
204         * src/dialogs/rdf.cpp: corrected localization on array, added comments.
205         * src/ui/widget/licensor.cpp: Localized the license name.
206         * configure.ac: added comment about why sigc++ was upgraded
208 2006-05-17  Jon A. Cruz  <jon@joncruz.org>
209         * src/dialogs/layers-panel.cpp:
210           Flipped top/bottom in layers UI to reflect visible stacking.
212 2006-05-16  verbalshadow  <verbalshadow@gmail.com>
214         * src/desktop-style.h, src/desktop-style.cpp:
215           Fixes calligraphy tool so drawing now uses the the correct opacity.
217 2006-05-17  Jon A. Cruz  <jon@joncruz.org>
218         * src/dialogs/layers-panel.cpp, src/dialogs/layers-panel.h:
219           Switched icons to stock generic.
221 2006-05-17  Michael Wybrow  <mjwybrow@users.sourceforge.net>
223         * src/dialogs/layers-panel.cpp: Compile fix from Mathieu Dimanche.
225 2006-05-16  Jon A. Cruz  <jon@joncruz.org>
227         * src/document-subset.cpp:
228           Corrected ordering of children in subset.
230 2006-05-15  Jon A. Cruz  <jon@joncruz.org>
231         * src/Makefile_insert, src/desktop.cpp, src/desktop.h,
232           src/layer-manager.cpp, src/menus-skeleton.h, src/verbs.cpp,
233           src/verbs.h, src/dialogs/layers-panel.cpp,
234           src/dialogs/layers-panel.h, src/dialogs/Makefile_insert:
235           Base implementation of a layers dialog.
237 2006-05-14  Colin Marquardt  <colin@marquardt-home.de>
239         * src/ui/dialog/inkscape-preferences.cpp (initPageTools): 
240           Typofix ("conector").
242 2006-05-14  Jon A. Cruz  <jon@joncruz.org>
244         * src/document-subset.cpp, src/layer-manager.h, src/layer-manager.cpp:
245           Corrected base structure and avoiding infinite loop.
247 2006-05-14  Michael Wybrow  <mjwybrow@users.sourceforge.net>
249         * src/widgets/toolbox.cpp: Slightly increase size of the
250          connector toolbar buttons to match button sizes on other
251          toolbars.
253 2006-05-13  verbalshadow  <verbalshadow@gmail.com>
255         * src/dyna-draw-context.cpp, src/desktop-style.cpp,
256           src/desktop-style.h:
258           Calligraphy tool now draws in the last used color or the
259           tool style depending on the Preference setting.
260           
261 2006-05-11  Michael Wybrow  <mjwybrow@users.sourceforge.net>
263         * src/selection-chemistry.cpp, src/sp-conn-end-pair.cpp:
265           When moving/transforming connectors, only detach connectors
266           from objects that are not part of the selection.  Previously,
267           connectors moved as part of a selection would be detached from
268           all objects.  This has been requested several times via email.
269           The change also fixes bug #1383806.
271         * src/ui/dialog/inkscape-preferences.cpp,
272           src/ui/dialog/inkscape-preferences.h, src/connector-context.cpp:
274           Add a preferences setting to the connector tool for setting
275           whether or not connectors attach to text objects.  This change
276           addresses feature request #1434292.
277           
278 2006-05-09  Carl Hetherington  <inkscape@carlh.net>
280         * src/nodepath.cpp: fix silly bug with snapping node edits.
281         
282         * src/snapper.cpp, src/snapper.h, src/sp-namedview.cpp:
283           re-enable link between grid visibility and grid snap.
285 2006-05-08  Michael Wybrow  <mjwybrow@users.sourceforge.net>
287         * conn-avoid-ref.cpp: Fix a crashbug that could occur in files
288           containing connectors if they were loaded from the file chooser
289           or from the recent file list.  Fixes bug #1458820.
291 2006-05-08  MenTaLguY  <mental@rydia.net>
293         * src/display/curve.cpp:
295           always make local copy of path data so that we have control over memory
296           policy
298 2006-05-08  MenTaLguY  <mental@rydia.net>
300         * src/display/curve.h, src/display/curve.cpp, src/dropper-context.cpp:
302           get rid of sp_curve_new_from_static_bpath() in a bid to simplify curve
303           memory management
305 2006-05-08  MenTaLguY  <mental@rydia.net>
307         * src/display/canvas-bpath.cpp, src/display/curve.cpp, src/display/curve.h,
308           src/display/nr-arena-shape.cpp, src/draw-context.cpp,
309           src/extension/internal/odf.cpp, src/extension/internal/pov-out.cpp,
310           src/nodepath.cpp, src/object-snapper.cpp, src/path-chemistry.cpp,
311           src/sp-flowregion.cpp, src/splivarot.cpp, src/sp-offset.cpp,
312           src/sp-path.cpp, src/sp-shape.cpp, src/sp-spiral.cpp, src/sp-star.cpp,
313           src/sp-use-reference.cpp:
315           eliminate direct accesses to SPCurve::bpath
317 2006-05-08  MenTaLguY  <mental@rydia.net>
319         * src/streams-zlib.cpp, src/streams-jar.cpp, src/splivarot.cpp,
320           src/extension/internal/bluredge.cpp:
322           use std::vector rather than dynamically-sized automatic arrays,
323           plus cleanups and minor fixes, and dead code removal
325 2006-05-08  MenTaLguY  <mental@rydia.net>
327         * src/debug/demangle.cpp, src/debug/demangle.h, src/sp-object.cpp,
328           src/gc-anchored.cpp, src/debug/Makefile_insert:
330           use c++filt for symbol demangling if available
332 2006-05-08  MenTaLguY  <mental@rydia.net>
334         * src/xml/repr-util.cpp:
335         
336           comments explaining namespace mapping for the broken sodipodi namespace
338 2006-05-08  Carl Hetherington  <inkscape@carlh.net>
340         * src/seltrans.cpp, src/snap.cpp, src/snap.h: fix ctrl-scaling
341         when there is no snap.  More snapping cleanups.
343 2006-05-07  Michael Wybrow  <mjwybrow@users.sourceforge.net>
345         * knot.h, knot.cpp, connector-context.cpp:
346           Fix glib-gobject-warnings for knots in the connector tool.
348 2006-05-07  Jon A. Cruz  <jon@joncruz.org>
350         * src/document-subset.cpp:
351           Corrected two bugs, with the minor one hiding the more severe.
353 2006-05-06  MenTaLguY  <mental@rydia.net>
355         * src/xml/repr-util.cpp, src/xml/repr.h:
357           add fixup for incorrect sodipodi namespace
359 2006-05-06  MenTaLguY  <mental@rydia.net>
361         * doc/NewAppArchitecture/01-title.svg,
362           doc/NewAppArchitecture/04-current-main.svg,
363           doc/NewAppArchitecture/05-current-objects.svg,
364           doc/NewAppArchitecture/06-current-desktop-view.svg,
365           doc/NewAppArchitecture/07-current-problems.svg,
366           doc/NewAppArchitecture/08-inkscape-gtkmm.svg
367           doc/NewAppArchitecture/09-future-capabilities.svg,
368           doc/NewAppArchitecture/10-future-main.svg,
369           doc/NewAppArchitecture/11-future-ink-app.svg,
370           doc/NewAppArchitecture/12-future-run-modes.svg,
371           doc/NewAppArchitecture/13-future-ink-app-editor.svg,
372           doc/NewAppArchitecture/14-evolving.svg,
373           share/examples/art-nouveau-P3.svg,
374           share/examples/eastern-motive-P4G.svg,
375           share/examples/i18n.svg,
376           share/examples/markers.svg,
377           share/examples/tesselation-P3.svg,
378           share/examples/text-on-path.svg,
379           share/icons/David_icons.svg,
380           share/icons/icons.svg,
381           share/icons/legacy_icons.svg,
382           share/screens/about.svg,
383           share/templates/business_card_85x54mm.svg,
384           share/templates/default.cs.svg,
385           share/templates/default.lt.svg,
386           share/templates/default.pl.svg,
387           share/tutorials/gpl-2.svg,
388           share/tutorials/tutorial-advanced.es.svg,
389           share/tutorials/tutorial-advanced.fr.svg,
390           share/tutorials/tutorial-advanced.ja.svg,
391           share/tutorials/tutorial-advanced.sl.svg,
392           share/tutorials/tutorial-advanced.svg,
393           share/tutorials/tutorial-basic.ca.svg,
394           share/tutorials/tutorial-basic.de.svg,
395           share/tutorials/tutorial-basic.es.svg,
396           share/tutorials/tutorial-basic.fr.svg,
397           share/tutorials/tutorial-basic.ja.svg,
398           share/tutorials/tutorial-basic.nn.svg,
399           share/tutorials/tutorial-basic.sl.svg,
400           share/tutorials/tutorial-basic.svg,
401           share/tutorials/tutorial-calligraphy.es.svg,
402           share/tutorials/tutorial-calligraphy.fr.svg,
403           share/tutorials/tutorial-calligraphy.sl.svg,
404           share/tutorials/tutorial-calligraphy.svg,
405           share/tutorials/tutorial-elements.es.svg,
406           share/tutorials/tutorial-elements.fr.svg,
407           share/tutorials/tutorial-elements.sl.svg,
408           share/tutorials/tutorial-elements.svg,
409           share/tutorials/tutorial-shapes.ca.svg,
410           share/tutorials/tutorial-shapes.es.svg,
411           share/tutorials/tutorial-shapes.fr.svg,
412           share/tutorials/tutorial-shapes.ja.svg,
413           share/tutorials/tutorial-shapes.sl.svg,
414           share/tutorials/tutorial-shapes.svg,
415           share/tutorials/tutorial-tips.es.svg,
416           share/tutorials/tutorial-tips.fr.svg,
417           share/tutorials/tutorial-tips.sl.svg,
418           share/tutorials/tutorial-tips.svg,
419           share/tutorials/tutorial-tracing.de.svg,
420           share/tutorials/tutorial-tracing.es.svg,
421           share/tutorials/tutorial-tracing.fr.svg,
422           share/tutorials/tutorial-tracing.sl.svg,
423           share/tutorials/tutorial-tracing.svg,
424           src/extension/dxf2svg/dxf2svg.cpp,
425           src/menus-skeleton.h,
426           src/preferences-skeleton.h:
428           get the CORRECT sodipodi namespace in there
430 2006-05-06  MenTaLguY  <mental@rydia.net>
432         * src/xml/repr-util.cpp:
434           fix for #1483198 ("infectious namespaces")
436 2006-05-01  Jon A. Cruz  <jon@joncruz.org>
438         * src/verbs.h, src/verbs.cpp, src/verbs-test.h:
439           Fixed problem with std::map use making last verb inaccessible.
441 2006-05-05  Carl Hetherington  <inkscape@carlh.net>
443         * src/draw-context.cpp, src/line-snapper.h, src/snap.cpp,
444         src/snapper.cpp, src/line-snapper.cpp, src/snap.h,
445         src/context-fns.cpp, src/object-snapper.h, src/seltrans.cpp,
446         src/nodepath.cpp, src/snapper.h, src/object-snapper.cpp: various
447         snapping fixes and cleanups.
449 06-05-04  Carl Hetherington  <inkscape@carlh.net>
451         * src/guide-snapper.h, src/line-snapper.h, src/snap.cpp,
452         src/snap.h, src/object-snapper.h, src/sp-namedview.cpp,
453         src/grid-snapper.h: clean up knutux's fix for the snapper crash.
455 2006-05-03  Michael Wybrow  <mjwybrow@users.sourceforge.net>
457         * po/pt_BR.po: Fix some "Unmatched closing </b>" warnings.
459         * src/jabber_whiteboard/pedrodom.cpp: Compile fix for Mac OS.
460         
461 2006-05-03  Carl Hetherington  <inkscape@carlh.net>
463         * src/arc-context.cpp, src/connector-context.cpp,
464         src/context-fns.cpp, src/desktop.cpp, src/draw-context.cpp,
465         src/nodepath.cpp, src/object-edit.cpp, src/pencil-context.cpp,
466         src/rect-context.cpp, src/selection-chemistry.cpp,
467         src/seltrans.cpp, src/snap.cpp, src/snap.h, src/sp-namedview.cpp,
468         src/sp-namedview.h, src/spiral-context.cpp, src/star-context.cpp,
469         src/ui/dialog/document-properties.cpp: Give SPNamedView a
470         SnapManager instance and use it for all management of snapping
471         settings.
473         * src/snap.cpp, src/snap.h: remove the unused namedview_dim_snap_list()
475 2006-05-01  Jon A. Cruz  <jon@joncruz.org>
477         * src/Makefile.am, src/Makefile_insert, src/attributes-test.h,
478           src/color-profile-test.h, src/mod360-test.cpp, src/mod360-test.h,
479           src/round-test.cpp, src/round-test.h, src/sp-gradient-test.cpp,
480           src/sp-gradient-test.h, src/sp-style-elem-test.cpp,
481           src/sp-style-elem-test.h, src/style-test.h, src/test-helpers.h:
482           Replaced four more tests with CxxTest versions.
484 2006-05-01  MenTaLguY  <mental@rydia.net>
486         * src/display/nr-arena-item.cpp:
488           use GC allocator for bitmap cache and transform
490 2006-05-01  Marco Scholten  <mscholtn@xs4all.nl>
492         * src/dialogs/inkscape-preferences.cpp: Moved 'compass like
493     display of angles' from 'windows' to 'steps'.
495 2006-04-30  MenTaLguY  <mental@rydia.net>
497         * src/libnr/nr-object.cpp:
499           log finalization of NRObjects
501 2006-04-29  Jon Phillips  <jon@rejon.org>
503         * src/dialogs/rdf.cpp: Updated cc licenses to 2.5 by default.
505         * src/ui/dialog/document-metadata.cpp: Made metadata window
506         resizable so that one can see the licenses and enter long entries.
508 2006-04-29  MenTaLguY  <mental@rydia.net>
510         * src/display/nr-arena-group.cpp, src/display/nr-arena-item.cpp,
511           src/display/nr-arena-item.h, src/display/nr-arena-shape.cpp:
513           rationalize function names and remove spurious soft_ptr
515 2006-04-29  MenTaLguY  <mental@rydia.net>
517         * src/document.cpp:
518         
519           use proper unref function on SPRoot to avoid appearance of leak
521 2006-04-29  MenTaLguY  <mental@rydia.net>
523         * src/gc-anchored.cpp, src/xml/simple-node.cpp, src/sp-object.cpp:
525           switch everyone to simpler debug event API
527 2006-04-29  MenTaLguY  <mental@rydia.net>
529         * src/Makefile_insert, src/gc-finalized.cpp, src/gc-finalized.h:
531           add finalizer logging
533 2006-04-29  MenTaLguY  <mental@rydia.net>
535         * src/debug/simple-event.h: simplify the SimpleEvent API more
537 2006-04-29  MenTaLguY  <mental@rydia.net>
539         * src/debug/simple-event.h: make Debug::SimpleEvent more convenient
541         * src/debug/event.h, src/debug/logger.cpp: add FINALIZERS category
543 2006-04-29  MenTaLguY  <mental@rydia.net>
545         * src/debug/logger.cpp:
546         
547         finish interrupted refactoring of log filter configuration
549 2006-04-29  MenTaLguY  <mental@rydia.net>
551         * src/doc/Makefile.am, src/doc/refcounting.txt:
552         
553           some developer documentation about refcounting
555 2006-04-29  MenTaLguY  <mental@rydia.net>
557         * src/ui/view/view.cpp:
559           Wait a minute -- UI::View::View and SPDocument are both managed
560           by the collector -- the view doesn't need to ref the document!
562 2006-04-29  MenTaLguY  <mental@rydia.net>
564         * src/ui/view/view.cpp: add missing unref
566 2006-04-29  MenTaLguY  <mental@rydia.net>
568         * src/gc-anchored.cpp, src/gc-anchored.h:
570           added refcount logging to GC::Anchored
572         * src/util/Makefile_insert, src/util/format.h:
574           shared string printf
576 2006-04-28  MenTaLguY  <mental@rydia.net>
578     * src/sp-object.cpp: make refcount logging a little more useful
579           by including the relevent class name
581 2006-04-28  Jon A. Cruz  <jon@joncruz.org>
583         * src/Makefile_insert, src/Makefile.am, src/dir-util-test.h,
584           src/dir-util-test.cpp, src/extract-uri-test.h,
585           src/extract-uri-test.cpp:
586           Replaced two tests with CxxTest versions.
588 2006-04-28  Jon A. Cruz  <jon@joncruz.org>
590         * src/Makefile_insert, src/MultiPrinter.h, src/verbs.h,
591           src/verbs-test.h:
592           Adding unit test for verbs.
594 2006-04-27  verbalshadow <verbalshadow@gmail.com>
595         
596         * src/io/resource.h, src/io/resource.cpp, 
597           src/dialogs/swatches.cpp, src/helper/stock-items.cpp:
598           Added CREATE v0.1 support for gradients/swatches/patterns
599           Support for Linux & Win32. Mac support waiting final support
600           Directory info.
602 2006-04-26  Jon A. Cruz  <jon@joncruz.org>
604         * src/Makefile.am, src/MultiPrinter.h, src/PylogFormatter.h,
605           src/TRPIFormatter.h, src/selfname.tpl, src/libnr/Makefile_insert,
606           src/svg/Makefile_insert, src/xml/Makefile_insert:
607           Adding multiple test output formats.
609 2006-04-23  verbalshadow  <verbalshadow@gmail.com>
611     * path-prefix.h:
612           Added beginnings of CREATE support in path-prefix.h
614 2006-04-23  verbalshadow  <verbalshadow@gmail.com>
616     * src/object-ui.cpp, src/object-ui.h:
617           moved to src/ui/context-menu.cpp, src/ui/context-menu.h
618           to make it easier to find
620 2006-04-20  MenTaLguY  <mental@rydia.net>
622     * src/dyna-draw-context.cpp, src/dyna-draw-context.h:
623           remove unused timer code
625 2006-04-19 Andrius R. <knutux@gmail.com>
626         * src\display\nr-arena-item.cpp, src\display\canvas-arena.cpp,
627           src\display\nr-arena-shape.cpp, src\display\sp-canvas.h,
628           src\display\nr-arena.cpp, src\display\nr-arena-shape.h,
629           src\display\nr-arena-glyphs.cpp, src\display\nr-gradient-gpl.cpp,
630           src\display\sp-canvas.cpp, src\display\sp-ctrlline.cpp,
631           src\livarot\ShapeSweep.cpp, src\livarot\Shape.h, src\livarot\Shape.cpp,
632           src\livarot\Path.h, src\livarot\PathConversion.cpp,
633           src\livarot\ShapeMisc.cpp, src\livarot\Path.cpp, src\libnr\nr-pixblock.h,
634           src\libnr\nr-pixblock.cpp
636           Rendering optimisation, which gives best results for zoomed in drawings
637           with complex (multi-node) paths. Optimisation focus - eliminating cubicTo
638           and LineTo nodes outside of visible area, so no unneeded calculations is
639           needed and less memory is consumed (this avoids crashes which were
640           occurring previously if zooming into a complex drawing)
642 2006-04-18 njh <njh@njhurst.com>
643         * share/extensions/measure.inx, share/extensions/measure.py, share/extensions/Makefile.am
645           Added the measure extension that marks lengths onto paths.
647 2006-04-17  MenTaLguY  <mental@rydia.net>
649         * src/application/editor.cpp, src/arc-context.cpp, src/conn-avoid-ref.cpp,
650           src/connector-context.cpp, src/desktop-events.cpp, src/desktop-handles.h,
651           src/dialogs/clonetiler.cpp, src/dialogs/export.cpp,
652           src/dialogs/fill-style.cpp, src/dialogs/find.cpp,
653           src/dialogs/iconpreview.cpp, src/dialogs/item-properties.cpp,
654           src/dialogs/layer-properties.cpp, src/dialogs/object-properties.cpp,
655           src/dialogs/stroke-style.cpp, src/dialogs/swatches.cpp,
656           src/dialogs/text-edit.cpp, src/dialogs/tiledialog.cpp,
657           src/dialogs/xml-tree.cpp, src/draw-anchor.cpp, src/draw-context.cpp,
658           src/dropper-context.cpp, src/dyna-draw-context.cpp,
659           src/event-context.cpp, src/extension/implementation/script.cpp,
660           src/file.cpp, src/gradient-context.cpp, src/gradient-drag.cpp,
661           src/helper/stock-items.cpp, src/inkscape.cpp, src/interface.cpp,
662           src/jabber_whiteboard/callbacks.cpp,
663           src/jabber_whiteboard/chat-handler.cpp,
664           src/jabber_whiteboard/message-processors.cpp,
665           src/jabber_whiteboard/message-queue.cpp,
666           src/jabber_whiteboard/session-manager.cpp, src/knot.cpp,
667           src/node-context.cpp, src/nodepath.cpp, src/object-ui.cpp,
668           src/path-chemistry.cpp, src/pencil-context.cpp, src/pen-context.cpp,
669           src/rect-context.cpp, src/rubberband.cpp, src/satisfied-guide-cns.cpp,
670           src/selcue.cpp, src/select-context.cpp, src/selection-chemistry.cpp,
671           src/selection.cpp, src/seltrans.cpp, src/sp-flowtext.cpp,
672           src/spiral-context.cpp, src/splivarot.cpp, src/sp-namedview.cpp,
673           src/sp-text.cpp, src/star-context.cpp, src/text-chemistry.cpp,
674           src/text-context.cpp, src/tools-switch.cpp,
675           src/trace/potrace/inkscape-potrace.cpp, src/trace/trace.cpp,
676           src/ui/dialog/align-and-distribute.cpp, src/ui/dialog/dialog.cpp,
677           src/ui/dialog/document-metadata.cpp,
678           src/ui/dialog/document-properties.cpp,
679           src/ui/dialog/inkscape-preferences.cpp,
680           src/ui/dialog/session-player.cpp, src/ui/dialog/transformation.cpp,
681           src/ui/widget/color-picker.cpp, src/ui/widget/page-sizer.cpp,
682           src/ui/widget/registered-widget.cpp, src/ui/widget/ruler.cpp,
683           src/ui/widget/selected-style.cpp, src/ui/widget/tolerance-slider.cpp,
684           src/verbs.cpp, src/widgets/gradient-toolbar.cpp,
685           src/widgets/layer-selector.cpp, src/widgets/select-toolbar.cpp,
686           src/widgets/sp-xmlview-content.cpp, src/widgets/toolbox.cpp:
688           Get rid of the SP_DT_* macros which do nothing more than provide
689           additional, confusing, names for other functions.  If shorter names
690           are desired, the actual functions should be renamed -- or better, made
691           into member functions.
693 2006-04-09  Jon A. Cruz  <jon@joncruz.org>
695         * share/icons/icons.svg: Fixed jumping eye (layer visibility).
697 2006-04-07  Jon A. Cruz  <jon@joncruz.org>
699         * po/eu.po: Fix a "Unmatched closing </b>" warnings.
701 2006-04-07  Jon A. Cruz  <jon@joncruz.org>
703         * src/widgets/paint-selector.cpp, src/widgets/gradient-toolbar.cpp,
704           src/widgets/select-toolbar.cpp, src/widgets/toolbox.cpp,
705           src/dialogs/clonetiler.cpp, src/dialogs/object-properties.cpp:
707           Shrunk a few icon sizes.
709 2006-04-07  Jon A. Cruz  <jon@joncruz.org>
711         * src/widgets/desktop-widget.cpp, src/widgets/icon.cpp,
712           src/widgets/layer-selector.cpp:
714           Added implementation of smaller icon size.
716 2006-04-06  Jon A. Cruz  <jon@joncruz.org>
718         * src/color-profile.cpp, src/sp-image.cpp:
720           Simple debugging #ifdefs added.
722 2006-04-06  Jon A. Cruz  <jon@joncruz.org>
724         * src/interface.cpp, src/dialogs/clonetiler.cpp,
725           src/dialogs/object-properties.cpp, src/dialogs/stroke-style.cpp,
726           src/dialogs/text-edit.cpp, src/dialogs/tiledialog.cpp,
727           src/dialogs/xml-tree.cpp, src/ui/dialog/align-and-distribute.cpp,
728           src/ui/widget/labelled.cpp, src/widgets/button.cpp,
729           src/widgets/button.h, src/widgets/desktop-widget.cpp,
730           src/widgets/gradient-toolbar.cpp, src/widgets/icon.cpp,
731           src/widgets/icon.h, src/widgets/layer-selector.cpp,
732           src/widgets/paint-selector.cpp, src/widgets/select-toolbar.cpp,
733           src/widgets/toolbox.cpp, src/widgets/toolbox.h, src/icon-size.h:
735           Decoupling from direct use of GtkIconSize to allow for smaller
736           custom ones.
738 2006-04-06  Jon A. Cruz  <jon@joncruz.org>
740         * src/Makefile_insert, src/Makefile.am, src/color-profile.cpp
741           src/color-profile.h, src/color-profile-fns.h,
742           src/color-profile-test.h, src/sp-image.cpp:
744           Adding rendering-intent to <color-profile>.
746 2006-04-05  MenTaLguY  <mental@rydia.net>
748         * configure.ac, share/keyboards/.cvsignore, share/keyboards/Makefile.am,
749           share/keyboards/README, share/keys/.cvsignore, share/keys/Makefile.am,
750           share/keys/Makefile.in, share/Makefile.am:
752           share/keyboards -> share/keys
754         * share/keys/Makefile.am, share/keys/default.xml, src/Makefile_insert,
755           src/shortcuts.cpp, src/shortcuts-default-xml.cpp:
757           first shot at configurable keymaps
759 2006-04-05  MenTaLguY  <mental@rydia.net>
761         * src/io/Makefile_insert, src/io/resource.cpp, src/io/resource.h:
763           introduce uniform resource path API to replace copy-and-pasted hacks
765 2006-04-05  Jon A. Cruz  <jon@joncruz.org>
767         * src/svg/svg-color-test.h, src/svg/svg-color.cpp:
769           Tuned icc-color() parsing.
771 2006-04-02  Jon A. Cruz  <jon@joncruz.org>
773         * src/color-profile.h, src/color-profile.cpp,
774           src/color-profile-fns.h, src/sp-image.h, src/sp-image.cpp:
776           Initial support of color-profile on <image> elements.
778 2006-04-02  Jon A. Cruz  <jon@joncruz.org>
780         * src/color-profile.h, src/color-profile.cpp,
781           src/color-profile-fns.h, src/Makefile_insert, src/attributes.cpp,
782           src/attributes.h, src/sp-object-repr.cpp:
784           Adding support for <color-profile> element.
786 2006-04-02  Jon A. Cruz  <jon@joncruz.org>
788         * src/knot.h: Fixed warning messages.
790 2006-04-01  Jon A. Cruz  <jon@joncruz.org>
792         * src/ui/widget/selected-style.cpp:
794           Safety check for null pointer.
795         
796 2006-04-01  Jon A. Cruz  <jon@joncruz.org>
798         * configure.ac, src/interface.cpp, src/dialogs/swatches.cpp:
800           Introducing optional LittleCms use.
801         
802 2006-03-31  MenTaLguY  <mental@rydia.net>
804     * src/dyna-draw-context.cpp, src/dyna-draw-context.cpp:
806           merge ::dragging and ::dynahand
808 2006-03-31  MenTaLguY  <mental@rydia.net>
810     * src/dyna-draw-context.h: add documentation
812 2006-03-29  Andrius R. <knutux@gmail.com>
814         * src/enums.h, src/selection-chemistry.cpp,
815           src/selection.h, src/selection.cpp,
816           src/ui/dialog/inkscape-preferences.cpp,
817           src/ui/dialog/inkscape-preferences.h:
819           patch #1450307 - option for select all to work in layer with it's sub-layers
821 2006-03-29  Andrius R. <knutux@gmail.com>
823         * po/lt.po: Translated and added new language - Lithuanian.
825 2006-03-28  Jon A. Cruz  <jon@joncruz.org>
827         * src/interface.cpp, src/dialogs/swatches.cpp:
829           Fixing name of temporary non-standard tag attributes.
830         
831 2006-03-28  MenTaLguY  <mental@rydia.net>
833     * src/layer-manager.cpp, src/layer-manager.h: draft of layer manager
835 2006-03-28  Jon A. Cruz  <jon@joncruz.org>
837         * src/interface.cpp, src/dialogs/eek-color-def.h,
838           src/dialogs/eek-preview.h, src/dialogs/eek-preview.cpp,
839           src/dialogs/swatches.h, src/dialogs/swatches.cpp:
841           Changed objects to only get liked to "linkable" colors.
842         
843 2006-03-28  Jon A. Cruz  <jon@joncruz.org>
845         * src/interface.cpp, src/dialogs/swatches.cpp:
847           Objects now change when linked colors change.
848         
849 2006-03-28  Jon A. Cruz  <jon@joncruz.org>
851         * src/dialogs/eek-color-def.h, src/dialogs/eek-color-def.cpp,
852           src/dialogs/eek-preview.h, src/dialogs/eek-preview.cpp,
853           src/dialogs/swatches.h, src/dialogs/swatches.cpp:
855           Experimenting with linked colors.
856         
857 2006-03-26  Aaron C. Spike  <aaron@ekips.org>
859         * inkscape.pod, src/main.cpp:
861           Added --export-area-canvas (-C). Area specifying options
862           (--export-area, --export-area-canvas and --export-area-drawing)
863           can now be used in combination with --export-id.
865 2006-03-23  Jon A. Cruz  <jon@joncruz.org>
867         * src/dialogs/eek-color-def.cpp, src/dialogs/eek-color-def.h,
868           src/dialogs/Makefile_insert, src/dialogs/swatches.h,
869           src/dialogs/swatches.cpp:
871           Bringing in new color class.
872         
873 2006-03-23  Michael Wybrow  <mjwybrow@users.sourceforge.net>
875         * packaging/macosx/Resources/bin/inkscape: Fix a packaging
876           problem on Mac OSX where Inkscape wouldn't open if one of the
877           parent directories containing the app bundle contained a '#' in
878           its name.  Fixes bug #1443072.
880 2006-03-15  Michael Wybrow  <mjwybrow@users.sourceforge.net>
882         * share/icons/Makefile.am: Update a makefile after the icon file
883           renaming.
885 2005-03-14  MenTaLguY  <mental@rydia.net>
887         * src/layer-fns.h, src/dialogs/layer-properties.cpp,
888           src/dialogs/layer-properties.h, src/layer-fns.cpp:
890           merged patch #1447043 from Andrius "knutux" R. to create sub-layers
892 2006-03-14  MenTaLguY  <mental@rydia.net>
894         * src/Makefile_insert, src/display/nr-arena-item.cpp,
895           src/display/nr-arena-item.cpp, src/gc-finalized.h, src/gc-managed.h,
896           src/gc-soft-ptr.h, src/selection.h, src/selection.cpp:
898           Replace GC::Managed<>::clearOnceInaccessible with GC::soft_ptr<>
900 2006-03-14  MenTaLguY  <mental@rydia.net>
902         * src/debug/event.h, src/debug/gc-heap.h, src/debug/heap.h,
903           src/debug/logger.cpp, src/debug/simple-event.h,
904           src/debug/sysv-heap.h, src/jabber_whiteboard/deserializer.cpp,
905           src/jabber_whiteboard/message-utilities.cpp,
906           src/jabber_whiteboard/message-utilities.h,
907           src/jabber_whiteboard/node-tracker-observer.h,
908           src/jabber_whiteboard/serializer.cpp,
909           src/jabber_whiteboard/serializer.h,
910           src/sp-object.cpp, src/util/share.cpp, src/util/share.h,
911           src/xml/attribute-record.h, src/xml/comment-node.h,
912           src/xml/composite-node-observer.cpp, src/xml/composite-node-observer.h,
913           src/xml/event.cpp, src/xml/event.h, src/xml/log-builder.cpp,
914           src/xml/log-builder.h, src/xml/node-observer.h, src/xml/repr-io.cpp,
915           src/xml/simple-node.cpp, src/xml/simple-node.h,
916           src/xml/simple-session.cpp, src/xml/simple-session.h,
917           src/xml/text-node.h:
919           shared_ptr -> ptr_shared
921 2006-03-13  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
923         * src/svg/svg-color.cpp (sp_svg_write_color): More readable colour
924           names when possible: e.g. `red', `#cfc'.
926 2006-03-10  Jon A. Cruz  <jon@joncruz.org>
928         * src/interface.cpp:
930           Shift-drop now sets stroke on target objects.
931         
932 2006-03-11  MenTaLguY  <mental@rydia.net>
934         * src/sp-object.cpp: experiment to verify that we can safely release
935           before removing object from document tree
937 2006-03-10  Jon A. Cruz  <jon@joncruz.org>
939         * src/dialogs/swatches.cpp:
941           Changed color dragging to have a color preview.
942         
943 2006-03-09  Jon A. Cruz  <jon@joncruz.org>
945         * src/interface.cpp:
947           Initial cut of color drag-n-drop to items on canvas.
948         
949 2006-03-09  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
951         * src/path-chemistry.cpp (sp_selected_path_reverse):
952           Fix when multiple paths are selected.
953           Also fix a small memory leak.
955 2006-03-06  MenTaLguY  <mental@rydia.net>
957         * src/document-subset.h, src/document-subset.cpp:
958           add DocumentSubset::_clear
960 2006-03-05  MenTaLguY  <mental@rydia.net>
962         * src/document-subset.h, src/document-subset.cpp:
963           remove unneeded document parameter from constructor
965 2006-03-05  MenTaLguY  <mental@rydia.net>
967         * src/document-subset.cpp:
969           Wire up new SPObject signal to DocumentSubset, so order changes
970           will be reflected in the subset.
972 2006-03-05  MenTaLguY  <mental@rydia.net>
974         * src/sp-object.h, src/sp-object.cpp:
976           Add signal for notification of object position changes.
978 2006-03-05  MenTaLguY  <mental@rydia.net>
980         * src/Makefile_insert, src/document-subset.cpp, src/document-subset.h:
982           Add DocumentSubset as groundwork for layers.
984 2006-03-04  Jon A. Cruz  <jon@joncruz.org>
985         * src/ui/widget/selected-style.h, src/ui/widget/selected-style.cpp:
987           Style minibar now only accepts color drag-n-drop when not N/A.
988           Final tweak for completing RFE #1429027.
989         
990 2006-02-28  Jon A. Cruz  <jon@joncruz.org>
991         * src/ui/widget/selected-style.h, src/ui/widget/selected-style.cpp:
993           Made the style minibar a target for color drag-n-drop.
994         
995 2006-03-01  Michael Wybrow  <mjwybrow@users.sourceforge.net>
997         * src/conn-avoid-ref.cpp, src/libavoid/connector.h,
998           src/libavoid/shape.cpp, src/libavoid/graph.cpp, src/libavoid/shape.h,
999           src/libavoid/graph.h, src/libavoid/router.cpp, src/libavoid/router.h,
1000           src/libavoid/connector.cpp, src/libavoid/debug.h:
1002           Some speed improvements and interface cleanups to libavoid.
1004 2006-02-28  Jon A. Cruz  <jon@joncruz.org>
1005         * src/dialogs/swatches.cpp:
1007           Fixed drag-n-drop out of color to match GTK+ standard.
1008         
1009 2006-02-27  Jon A. Cruz  <jon@joncruz.org>
1010         * src/dialogs/swatches.cpp, src/ui/previewfillable.h,
1011           src/ui/previewholder.h, src/ui/previewholder.cpp:
1013           Finished cleanup of embedded swatches when switching palettes.
1014         
1015 2006-02-26  Jon A. Cruz  <jon@joncruz.org>
1016         * src/dialogs/swatches.cpp, src/ui/previewholder.h,
1017           src/ui/previewholder.cpp:
1019           Changing embedded swatches resizing.
1020         
1021 2006-02-26  Jon A. Cruz  <jon@joncruz.org>
1022         * src/text-context.cpp:
1024           Allow Private Use Area characters. Fixes bug #1439016.
1025         
1026 2006-02-18  Jon A. Cruz  <jon@joncruz.org>
1027         * src/dialogs/swatches.cpp, src/dialogs/iconpreview.cpp,
1028           src/ui/widget/panel.cpp, src/ui/widget/panel.h:
1030           Refactoring panel containment. Purged ugly 'X'.
1031         
1032 2006-02-18  Jon A. Cruz  <jon@joncruz.org>
1033         * src/widgets/desktop-widget.cpp, src/dialogs/swatches.cpp,
1034           src/dialogs/swatches.h, src/ui/widget/panel.cpp,
1035           src/ui/widget/panel.h, src/ui/previewholder.cpp,
1036           src/ui/previewholder.h:
1038           Adding spacer to get swatches scrollbar enough room to move.
1039           Tuning up API for better embedding.
1041 2006-02-18  Jon A. Cruz  <jon@joncruz.org>
1042         * src/widgets/desktop-widget.cpp, src/dialogs/swatches.cpp,
1043           src/dialogs/swatches.h, src/ui/previewholder.cpp, 
1044           src/ui/previewfillable.h, src/ui/previewholder.h:
1046           Removed horizontal scroll bar from swatches when embedded.
1048 2006-02-15  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1050         *  src/document.cpp, src/document.h, src/sp-conn-end-pair.cpp, 
1051            src/connector-context.cpp, src/conn-avoid-ref.cpp:
1053         Keep a seperate connector router for each document.
1054            
1055         *  src/libavoid/Makefile_insert, src/libavoid/connector.cpp,
1056            src/libavoid/connector.h, src/libavoid/debug.h,
1057            src/libavoid/geometry.cpp, src/libavoid/geometry.h,
1058            src/libavoid/geomtypes.h, src/libavoid/graph.cpp,
1059            src/libavoid/graph.h, src/libavoid/incremental.cpp,
1060            src/libavoid/incremental.h, src/libavoid/libavoid.h,
1061            src/libavoid/makepath.cpp, src/libavoid/makepath.h,
1062            src/libavoid/polyutil.cpp, src/libavoid/polyutil.h,
1063            src/libavoid/router.cpp, src/libavoid/router.h,
1064            src/libavoid/shape.cpp, src/libavoid/shape.h,
1065            src/libavoid/static.cpp, src/libavoid/static.h,
1066            src/libavoid/timer.cpp, src/libavoid/timer.h,
1067            src/libavoid/vertices.cpp, src/libavoid/vertices.h,
1068            src/libavoid/visibility.cpp, src/libavoid/visibility.h:
1069            
1070         Upstream changes to libavoid that allow multiple connector 
1071         router instances, as well a few other minor bugfixes.
1073 2006-02-14  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1075         * src/display/sp-canvas.cpp, display/sp-canvas.h, connector-context.cpp:
1076         
1077         Revert a previous change that generated enter events for canvas items
1078         other than the current one when mouse buttons were depressed.  These 
1079         events are now only generated in the connector context, where they are
1080         required.
1082 2006-02-13  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1084         * src/graphlayout/graphlayout.cpp, src/conn-avoid-ref.cpp,
1085           src/conn-avoid-ref.h, src/libavoid/connector.cpp,
1086           src/libavoid/connector.h:
1087           
1088         Change the behaviour and naming of some connector querying code
1089         after feedback from Tim Dwyer in implementing graph drawing
1090         functionality.
1092 2006-02-11  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1094         * src/sp-conn-end-pair.cpp, src/conn-avoid-ref.cpp:
1095           Fix two bugs from my commit yesterday.
1097 2006-02-10  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1099         * src/sp-conn-end-pair.cpp, src/sp-conn-end-pair.h,
1100           src/conn-avoid-ref.cpp, src/conn-avoid-ref.h,
1101           src/libavoid/connector.cpp, src/libavoid/connector.h,
1102           src/libavoid/visibility.cpp:
1104         Add some code to allow querying of items and connectors to find
1105         out what is attached to them.  This will allow graph layout
1106         algorithms (currently being worked on by Tim Dwyer) to determine 
1107         a graph structure from the diagram.
1109 2006-02-07  MenTaLguY  <mental@rydia.net>
1111         * src/widgets/icon.cpp: get rid of icon prerender time messages
1113 2006-02-07  MenTaLguY  <mental@rydia.net>
1115         * src/debug/gc-heap.h, src/debug/logger.cpp, src/debug/sysv-heap.h,
1116           src/jabber_whiteboard/deserializer.cpp, src/sp-object.cpp,
1117           src/util/share.h, src/xml/simple-node.cpp:
1119           share_static -> share_static_string
1121 2006-02-07  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1123         * src/jabber_whiteboard/message-utilities.h,
1124           src/jabber_whiteboard/serializer.cpp,
1125           src/jabber_whiteboard/deserializer.cpp,
1126           src/jabber_whiteboard/message-utilities.cpp,
1127           src/ui/dialog/whiteboard-connect.cpp:
1128         
1129         Some fixes to allow the codebase to compile with Inkboard support
1130         after the recent Util::shared_ptr<> and Dialog::present() changes.
1132 2006-02-05  Marco Scholten  <mscholtn@xs4all.nl>
1134         * src/verbs.cpp: updated to make double clicking a tool button
1135           open the new preferences dialog.
1136         * src/ui/dialog/inkscape-preferences.cpp: updated to enable opening
1137           the dialog on the correct page.
1138         * src/ui/dialog/dialog.cpp: added virtual void present() so that
1139           InkscapePreferences::present() will be called from 
1140           DialogManager::showDialog()
1142 2006-02-05  MenTaLguY  <mental@rydia.net>
1144         * src/debug/event.h, src/debug/gc-heap.h, src/debug/heap.h,
1145           src/debug/logger.cpp, src/debug/simple-event.h, src/debug/sysv-heap.h,
1146           src/jabber_whiteboard/deserializer.cpp,
1147           src/jabber_whiteboard/message-utilities.cpp,
1148           src/jabber_whiteboard/message-utilities.h,
1149           src/jabber_whiteboard/node-tracker-observer.h,
1150           src/jabber_whiteboard/node-utilities.cpp,
1151           src/jabber_whiteboard/serializer.cpp,
1152           src/jabber_whiteboard/serializer.h,
1153           src/sp-object.cpp, src/util/Makefile_insert, src/util/share.cpp,
1154           src/util/shared-c-string-ptr.cpp, src/util/shared-c-string-ptr.h,
1155           src/util/share.h, src/xml/attribute-record.h, src/xml/comment-node.h,
1156           src/xml/composite-node-observer.cpp, src/xml/composite-node-observer.h,
1157           src/xml/event.cpp, src/xml/event.h, src/xml/log-builder.cpp,
1158           src/xml/log-builder.h, src/xml/node-observer.h, src/xml/repr.cpp,
1159           src/xml/repr-io.cpp, src/xml/simple-node.cpp, src/xml/simple-node.h,
1160           src/xml/simple-session.cpp, src/xml/simple-session.h,
1161           src/xml/text-node.h:
1163           replace Util::SharedCStringPtr with the nicer and more general
1164           Util::shared_ptr<>
1166 2006-02-03  Jon Phillips  <jon@rejon.org>
1168         * src/verbs.cpp: Added "..." to "Trace Bitmap" text. Yes, what a
1169         simple and dumb thing to add for consistency.
1171 2006-01-24  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1173         * src/libavoid/connector.cpp, src/libavoid/connector.h, 
1174           src/libavoid/shape.cpp, src/libavoid/graph.cpp,
1175           src/libavoid/incremental.cpp, src/libavoid/incremental.h,
1176           src/libavoid/static.cpp, src/libavoid/visibility.cpp, 
1177           src/libavoid/makepath.cpp:
1179         Some minor upstream libavoid fixes.  
1181 2006-01-23  Carl Hetherington  <inkscape@carlh.net>
1183         * src/selection.cpp: fix a typo in one of my previous commits.
1184         Closes #1401357.
1186         * src/xml/repr-io.cpp: catch failures in fopen of XML files.
1187         Closes #1374551.
1189 2006-01-20  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1191         * src/widgets/toolbox.cpp, src/widgets/desktop-widget.cpp,
1192           src/conn-avoid-ref.cpp, src/conn-avoid-ref.h, src/sp-namedview.cpp,
1193           src/sp-namedview.h, src/attributes.cpp, src/attributes.h,
1194           src/attributes-test.cpp:
1196         Added a "Spacing" control to the connector toolbar which allows
1197         the user to adjust the amount of space left around avoided shapes
1198         for the purpose of determining auto-routing connector paths.
1200 2006-01-17  Marco Scholten  <mscholtn@xs4all.nl>
1202         * /src/ui/dialog/inkscape-preferences.cpp:
1203           Added style swatches,
1204           Changed Gtk::Requisition Gtk::Widget::size_request() to       
1205           void Gtk::Widget::size_request(const Requisition& requisition)        
1206         * /src/ui/dialog/preferences-widget.cpp & .h:
1207           Added DialogPage::set_tip()
1209 2006-01-17  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1211         * packaging/osx-app.sh, packaging/macosx/Resources/etc/fonts/fonts.conf:
1212           Use a modified fonts.conf file for Mac OS X that includes the 
1213           standard user font directory ~/Library/Fonts.
1215 2006-01-16  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1217         * src/svg/Makefile_insert: Updated to reflect a previous header
1218           file renaming.
1220 2006-01-12  Marco Scholten  <mscholtn@xs4all.nl>
1222         * /src/ui/dialog/inkscape-preferences.cpp & .h:
1223           Converted preferences dialog to gtkmm
1224         * src/ui/widget/preferences-widget.cpp & .h:
1225           New files.
1226         * src/verbs.cpp: updated to start new dialog.
1228 2006-01-11  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1230         * src/sp-item-group.cpp, src/sp-path.cpp, src/sp-star.cpp,
1231           src/extension/internal/svg.cpp, src/ui/widget/ruler.cpp:
1232           Fix some compilation problems on Mac OS X after recent
1233           includes cleanup.
1235 2006-01-05  Jon A. Cruz  <jon@joncruz.org>
1237         * src/widgets/desktop-widget.cpp:
1238           Corrected resize behavior of canvas/swatches split.
1240 2006-01-06  Mathieu Dimanche  <mdimanche@free.fr>
1242         * src/util/units.cpp: forcin 'C' locale for reading units.txt file
1243            Fixes bug #1391348.
1245 2006-01-05  MenTaLguY  <mental@rydia.net>
1247         * src/libnr/nr-maybe.h: fix constness/local reference issues
1249 2006-01-04  MenTaLguY  <mental@rydia.net>
1251         * src/Makefile_insert, src/shortcuts-default-xml.cpp,
1252           src/shortcuts.cpp, src/shortcuts.xml:
1254           Moved default shortcuts XML file into a string constant (for now);
1255           replaced hard-coded structure with code to read XML file.
1257 2006-01-04  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
1259         * src/extension/internal/ps.cpp (setup): Clarify the meaning of
1260           `Print destination', mentioning the new possibility of leaving
1261           as empty.
1262         * (PrintPS::begin) If print destination is an empty string, then
1263           don't pass `-P %s' to lpr: just let lpr use its default.
1264         * (PrintPS::init) Change default print destination from `lp' to empty
1265           string.
1267 2006-01-04  Jon A. Cruz  <jon@joncruz.org>
1269         * src/widgets/desktop-widget.cpp:
1270           Adding split pane for swatches.
1272 2006-01-03  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1274         * src/libavoid/visibility.cpp: Add operator!= for the EdgePair class.
1275           This is needed to compile on Tru64 UNIX.  Fixes bug #1386755.
1277 2005-12-30  Josh Andler  <scislac@users.sf.net>
1279         * src/ui/widget/selected-style.cpp, src/ui/widget/selected-style.h
1280           Added "invert" function to right-click menu of style selector.
1282 2005-12-22  Jon A. Cruz  <jon@joncruz.org>
1284         * share/palettes/Tango-Palette.gpl:
1285           Updated to newer version from the Tango project.
1287 2005-12-21  Jon A. Cruz  <jon@joncruz.org>
1289         * src/interface.cpp, src/preferences-skeleton.h,
1290           src/widgets/desktop-widget.h, src/widgets/desktop-widget.cpp:
1291           Adding panels/swatches to main UI.
1293 2005-11-23  Tim Dwyer  <tdwyer@mail.csse.monash.edu.au>
1295         * src/removeoverlap/*.{cpp,h}: Bug fix in removeoverlap algorithm that
1296           should finally get timestamps working properly.  Specifically, heap
1297           timestamps are now refreshed before a merge.
1299 2005-12-19  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1301         * src/sp-conn-end.cpp, src/connector-context.cpp: Have connectors
1302           draw to the correct position on shape bounding boxes.  Previously
1303           the point where connectors were drawn was on straight line between
1304           the two endpoints.  These points now lie on the line between the 
1305           second last point on the polyline and the center of the shape.
1306           
1307         * src/display/curve.cpp, src/display/curve.hpp: Added a couple of 
1308           functions that return the second and second-last points in a curve.
1310         * src/removeoverlap/generate-constraints.cpp: Moved the 
1311           #include "isnan.h" to be the final include.  This fixes a
1312           compilation error on OS X.
1314 2005-12-16  Carl Hetherington  <inkscape@carlh.net>
1316         * src/conn-avoid-ref.cpp, sp-conn-end-pair.cpp, sp-conn-end.cpp,
1317         sp-item.cpp, sp-shape.cpp, dialogs/clonetiler.cpp,
1318         dialogs/stroke-style.cpp, dialogs/tiledialog.cpp,
1319         dialogs/unclump.cpp, display/nr-arena-shape.cpp,
1320         display/nr-arena-shape.h, widgets/icon.cpp: more NRRect removal.
1322         * src/desktop.cpp, src/desktop.h, src/dyna-draw-context.cpp,
1323         src/selection-chemistry.cpp, src/sp-namedview.cpp, src/verbs.cpp,
1324         src/display/sp-canvas.cpp, src/display/sp-canvas.h,
1325         src/ui/view/edit-widget.cpp, src/ui/widget/zoom-status.cpp,
1326         src/widgets/desktop-widget.cpp: more NRRect removals and cleanups.
1328         * src/grid-snapper.cpp: snap only to visible grid lines (patch
1329         from mtou).
1331 2005-12-15  Carl Hetherington  <inkscape@carlh.net>
1333         * src/conn-avoid-ref.cpp, src/gradient-chemistry.cpp,
1334         src/sp-conn-end.cpp, src/sp-item.{cpp,h}: NR::Rect version of
1335         sp_item_invoke_bbox (SPItem::invokeBbox).  Use it in some places.
1337 2005-12-14  Carl Hetherington  <inkscape@carlh.net>
1339         * src/dyna-draw-context.cpp, src/gradient-context.cpp,
1340         src/selection.h, src/sp-flowtext.cpp, src/sp-item.cpp,
1341         src/sp-item.h, src/sp-shape.cpp, src/sp-text.cpp,
1342         src/dialogs/layer-properties.cpp,
1343         src/extension/internal/bluredge.cpp,
1344         src/extension/internal/grid.cpp, src/ui/dialog/transformation.cpp,
1345         src/widgets/desktop-widget.cpp: remove NRMatrix version of
1346         sp_item_i2d_affine().  Some include file adjustments.
1348         * src/arc-context.cpp: some very minor cleanups.
1350         * src/svg/svg-length.{cpp,h}, src/helper/units.cpp: use INCH
1351         rather than IN to avoid breaking the compile on some systems.
1353 2005-12-13  Carl Hetherington  <inkscape@carlh.net>
1355         * src/arc-context.cpp, src/connector-context.cpp,
1356         src/context-fns.cpp, src/desktop-affine.cpp, src/desktop-affine.h,
1357         src/desktop-events.cpp, src/desktop.cpp, src/desktop.h,
1358         src/draw-anchor.cpp src/dropper-context.cpp,
1359         src/dyna-draw-context.cpp, src/event-context.cpp
1360         src/gradient-context.cpp, src/knot.cpp, src/node-context.cpp,
1361         src/object-snapper.cpp src/pen-context.cpp,
1362         src/pencil-context.cpp, src/rect-context.cpp
1363         src/select-context.cpp, src/selection-chemistry.cpp,
1364         src/sp-item.cpp, src/sp-item.h src/spiral-context.cpp,
1365         src/star-context.cpp, src/text-context.cpp src/zoom-context.cpp,
1366         src/ui/widget/ruler.cpp: make desktop's transforms private
1367         members.
1369         * src/document.cpp, src/object-edit.cpp, src/sp-ellipse.cpp,
1370         src/sp-ellipse.h, src/sp-gradient.cpp, src/sp-image.cpp,
1371         src/sp-image.h, src/sp-line.cpp, src/sp-line.h,
1372         src/sp-linear-gradient.h, src/sp-marker.cpp, src/sp-marker.h,
1373         src/sp-pattern.cpp, src/sp-pattern.h, src/sp-radial-gradient.h,
1374         src/sp-rect.cpp, src/sp-rect.h, src/sp-root.cpp, src/sp-root.h,
1375         src/sp-star.cpp, src/sp-symbol.h, src/sp-text.cpp,
1376         src/sp-textpath.h, src/sp-tspan.cpp, src/sp-use.cpp, src/sp-use.h,
1377         src/text-tag-attributes.h, src/helper/units.cpp,
1378         src/helper/units.h, src/libnrtype/Layout-TNG-Compute.cpp,
1379         src/libnrtype/Layout-TNG-Input.cpp,
1380         src/libnrtype/Layout-TNG-OutIter.cpp,
1381         src/libnrtype/Layout-TNG-Output.cpp, src/libnrtype/Layout-TNG.h,
1382         src/libnrtype/TextWrapper.cpp, src/svg/svg-length.cpp,
1383         src/svg/svg.h: partial C++-ificiation of SPSVGLength.  Rename it
1384         to SVGLength.
1386 2005-12-13  Mathieu Dimanche <mdimanche@free.fr>
1388         * src/snapped-point.{cpp,h} : new files.
1390         * src/Makefile_insert : Added the new files
1392         * src/arc-context.cpp, src/connector-context.cpp,
1393         src/context-fns.cpp, src/draw-context.cpp, src/nodepath.cpp,
1394         src/object-edit.cpp, src/pencil-context.cpp,
1395         src/selection-chemistry.cpp, src/seltrans.cpp, src/snap.cpp,
1396         src/spiral-context.cpp, src/star-context.cpp,
1397         src/line-snapper.cpp, src/line-snapper.h, src/object-snapper.cpp,
1398         src/object-snapper.h src/snapper.cpp, src/snapper.h,
1399         src/event-context.cpp, src/rect-context.cpp,
1400         src/select-context.cpp : Use SnappedPoint class
1402         * src/color-rgba.h : Added rgba32 unsigned int handling and
1403         "inverse" members (NEED TO BE TESTED)
1405 2005-12-12  MenTaLguY  <mental@rydia.net>
1407         * src/widgets/desktop-widget.cpp: moved some widgets into statusbar
1408           widget for more aesthetic appearance
1410 2005-12-12  Carl Hetherington <inkscape@carlh.net>
1412         * src/arc-context.cpp: minor cleanups.  Use SnapManager more.  Use
1413         Inkscape::setup_for_drag_start.
1415         * src/connector-context.cpp, src/draw-context.cpp,
1416         src/object-edit.cpp, src/pencil-context.cpp, src/rect-context.cpp,
1417         src/spiral-context.cpp, src/star-context.cpp: use SnapManager.
1419         * src/rect-context.cpp, src/spiral-context.cpp,
1420         src/star-context.cpp: use Inkscape::setup_for_drag_start().
1422         * src/snapper.{cpp,h}: simplify snap point types code.
1424         * src/context-fns.{cpp,h}: add setup_for_drag_start().
1426         * src/dyna-draw-context.cpp: remove unused and erroneous snapping code.
1428         * src/pen-context.cpp: remove unused variable.
1430         * src/draw-context.cpp: use SnapManager.
1432         * src/nodepath.cpp: const fixes.  Use SnapManager.
1434         * src/selection-chemistry.cpp, src/seltrans.cpp: some cleanups.
1435         Use new snap API.
1437         * src/snap.{cpp,h}: remove some dead code.
1439         * src/sp-item.{cpp,h}, src/node-context.cpp, src/draw-context.cpp:
1440         remove an unnecessary parameter from sp_item_dt2i_affine().
1442 2005-12-09  Carl Hetherington <inkscape@carlh.net>
1444         * src/object-snapper.cpp: make node snapping work again.
1446         * src/star-context.cpp: use SnapManager.  Some other minor cleanups.
1448         * src/arc-context.cpp, src/connector-context.cpp,
1449         src/dyna-draw-context.cpp, src/pen-context.cpp,
1450         src/pencil-context.cpp, src/rect-context.cpp,
1451         src/selection-chemistry.cpp, src/spiral-context.cpp,
1452         src/star-context.cpp, src/text-context.cpp: use
1453         Inkscape::have_viable_layer.
1455         * src/context-fns.{cpp,h}: new files.
1457         * src/arc-context.cpp, src/context-fns.{cpp,h},
1458         src/rect-context.cpp: abstract common code into context-fns and
1459         clean it up a bit.
1461 2005-12-08  Carl Hetherington <inkscape@carlh.net>
1463         * src/grid-snapper.cpp, src/guide-snapper.cpp, src/line-snapper.h:
1464         coding style.  Change how lines are defined.
1466         * src/grid-snapper.h, src/guide-snapper.h: coding style.
1468         * src/line-snapper.cpp, src/object-snapper.{cpp,h}: Coding style.
1469         Various cleanups.  Small API changes.
1471         * src/snap.cpp: changes to Snapper API.  Added work-in-progress SnapManager.
1473         * src/snapper.{cpp,h}: API cleanups.
1475         * src/sp-namedview.{cpp,h}: added getSnappers().
1477         * src/seltrans.cpp: Cleanup and fix moveTo().  Go back to snapping
1478         to snap points rather than the convex hull, at least for a bit.
1480 2005-12-07  Carl Hetherington <inkscape@carlh.net>
1482         * src/libnr/nr-convex-hull.h: remove unnecessary includes.
1484         * src/line-snapper.{cpp,h}, src/object-snapper.{cpp,h},
1485         src/attributes.{cpp,h}, src/desktop.cpp, src/dyna-draw-context.cpp
1486         src/arc-context.cpp, src/grid-snapper.h, src/nodepath.cpp,
1487         src/rect-context.cpp, src/selection-chemistry.cpp,
1488         src/seltrans.cpp, src/snap.{cpp,h}, src/snapper.{cpp,h},
1489         src/sp-namedview.{cpp,h}, src/spiral-context.cpp,
1490         src/star-context.cpp, src/dialogs/desktop-properties.{cpp,h},
1491         src/Makefile_insert: first cut of object snapping.
1493         * src/grid-snapper.cpp, src/guide-snapper.{cpp,h}: use Inkscape namespace.
1495 2005-12-06  Carl Hetherington <inkscape@carlh.net>
1497         * src/libnr/nr-maybe.h: add missing public: to class IsNot.
1499         * src/splivarot.{cpp,h}: declare some more functions.  Fix
1500         get_nearest_position_on_Path to not crash if you call it with an
1501         Item that isn't Shape or Text.
1503         * src/node-context.cpp: adapt for changes in splivarot.{cpp,h}.
1505         * src/nodepath.cpp: remove declaration of a function now declared
1506         in splivarot.h.
1508 2005-12-05  Carl Hetherington <inkscape@carlh.net>
1510         * src/desktop.cpp, src/tools-switch.cpp,
1511         src/dialogs/clonetiler.cpp, src/dialogs/display-settings.cpp:
1512         re-jig #includes slightly.
1514         * src/seltrans.{cpp,h}, src/selcue.{cpp,h}: C++-ification and cleanup.
1516         * src/select-context.{cpp,h}, src/seltrans-handles.h: adapt for
1517         changes to SelTrans.
1519         * src/event-context.{cpp,h}: adapt for changes to SelCue.
1521         * src/rect-context.cpp, src/gradient-context.cpp: remove unnecessary include.
1523         * src/connector-context.h, src/draw-context.h: add a forward
1524         declaration.
1526         * src/dropper-context.{cpp,h}: remove an unused variable and its
1527         associated includes.
1529         * src/main.cpp: fix comment for renamed SPSelCue.
1531         * src/dialogs/display-settings.cpp: adapt for slightly re-jigged SelCue.
1533 2005-12-04  Ted Gould  <ted@gould.cx>
1535         * po/POTFILES.in:
1537         Adding the .inx files as [type: gettext/xml] so that they will get
1538         translated.  Good stuff.
1540         * share/extensions/addnodes.inx, share/extensions/ai_input.inx,
1541         share/extensions/ai_output.inx, share/extensions/bluredge.inx,
1542         share/extensions/dia.inx, share/extensions/dots.inx,
1543         share/extensions/dropshadow.inx, share/extensions/dxf_input.inx,
1544         share/extensions/dxf_output.inx, share/extensions/embedimage.inx,
1545         share/extensions/eps_input.inx, share/extensions/epsi_output.inx,
1546         share/extensions/ffmet.inx, share/extensions/ffms.inx,
1547         share/extensions/ffset.inx, share/extensions/ffss.inx,
1548         share/extensions/gimpgrad.inx, share/extensions/grid.inx,
1549         share/extensions/handles.inx, share/extensions/interp.inx,
1550         share/extensions/kochify.inx, share/extensions/kochify_load.inx,
1551         share/extensions/lindenmayer.inx, share/extensions/motion.inx,
1552         share/extensions/pdf_output.inx, share/extensions/ps_input.inx,
1553         share/extensions/radiusrand.inx, share/extensions/randompnt.inx,
1554         share/extensions/randompos.inx, share/extensions/rtree.inx,
1555         share/extensions/sk_input.inx, share/extensions/straightseg.inx,
1556         share/extensions/summersnight.inx, share/extensions/svgz_input.inx,
1557         share/extensions/svgz_output.inx, share/extensions/txt2svg.inx,
1558         share/extensions/wavy.inx, share/extensions/whirl.inx,
1559         share/extensions/wmf_input.inx:
1561         Marking the user visible strings as translatable.
1563         * src/extension/dependency.cpp, src/extension/extension.cpp,
1564         src/extension/init.cpp, src/extension/input.cpp, src/extension/output.cpp,
1565         src/extension/parameter.cpp:
1567         Changed to handle translated .inx files.  They will find the data, and
1568         mark the right strings as translated.
1570         * src/extension/effect.cpp, src/extension/effect.h, src/interface.cpp:
1572         Changed menu handling to be push instead of pull
1574 2005-12-02  Carl Hetherington <inkscape@carlh.net>
1576         * src/dropper-context.cpp: coding style.
1577         * src/sp-namedview.cpp, src/sp-namedview.h, src/desktop.cpp: some
1578         C++-ification of SPNamedView.
1580 2005-12-01  MenTaLguY  <mental@rydia.net>
1582         * src/widgets/desktop-widget.cpp: shuffle status bar around again;
1583           add a grippie so we don't have to care about the corner of the window
1584           getting covered up
1586 2005-12-01  MenTaLguY  <mental@rydia.net>
1588         * src/widgets/icon.cpp: refactored a bit around the icon prerendering
1589           code and added a timer; also kick off the task immediately rather
1590           than waiting for the first expose event
1592 2005-12-01  MenTaLguY  <mental@rydia.net>
1594         * src/widgets/desktop-widget.cpp:
1596           moved zoom selector away from the right edge so it won't get covered
1597           by window manager decorations
1599 2005-12-01  MenTaLguY  <mental@rydia.net>
1601         * src/help.cpp, src/ui/dialog/aboutbox.h, src/ui/dialog/aboutbox.cpp:
1603           Moved creation of the splash widget into the about dialog code,
1604           and tweaked the appearance of the dialog in a lot of subtle ways
1605           -- we now use an AspectFrame to constrain the aspect ratio of the
1606           splash view, and also finally get the correct initial size for the
1607           dialog while still allowing it to be arbitrarily resized.
1609 2005-12-01  Carl Hetherington <inkscape@carlh.net>
1611         * src/sp-namedview.cpp: coding style.
1613 2005-12-01  Jon A. Cruz  <jon@joncruz.org>
1615         * src/widgets/icon.cpp: added idle calback pre-render.
1617 2005-11-30  MenTaLguY  <mental@rydia.net>
1619         * src/ui/dialog/aboutbox.cpp: make 'close' button default widget,
1620           and rename "About" tab to "_Splash"
1622 2005-11-30  Carl Hetherington <inkscape@carlh.net>
1624         * src/svg/svg-path.cpp: add missing #include of assert.h for
1625         assert()
1626         * src/dialogs/xml-tree.cpp: fix uninitialised variable
1627         warnings, move some declarations to first use, coding style fixes.
1628         * src/snap.cpp, src/snap.h, src/sp-namedview.cpp: split
1629         snap.{cpp,h} up into snapper.{cpp,h}, grid-snapper.{cpp,h},
1630         guide-snapper.{cpp,h}.  Refactor and simplify.  Add another
1631         namedview_free_snap().
1632         * src/geom.cpp, src/geom.h: cosmetic renaming.
1633         * src/pen-context.cpp: a few minor cleanups to
1634         pen_handle_button_press().  Other snapping cleanups.
1635         * src/draw-context.cpp, src/draw-context.h: split
1636         spdc_endpoint_snap_internal() into two functions.
1637         * src/pencil-context.cpp: snapping cleanups.
1638         * src/ui/widget/unit-menu.cpp: remove definition of a variable
1639         that's just been made static.
1640         
1641 2005-11-26  MenTaLguY <mental@rydia.net>
1643         * src/ui/dialog/aboutbox.cpp, src/ui/dialog/aboutbox.h:
1644           clean up and simplify About dialog; fix memory management (mostly)
1646 2005-11-25  Robert Crosbie <swingincelt@gmail.com>
1648         * replaced sp_repr_ref with direct cal to Inkscape::GC::anchor
1649         * replaced sp_repr_unref with direct call to Inkscape::GC::release
1650         * replaced sp_repr_set_attr with direct call to repr->setAttribute
1652 2005-11-24  MenTaLguY  <mental@rydia.net>
1654         * src/shortcuts.cpp, src/interface.cpp: prune back shortcuts API in
1655           preparation for configurable key bindings work
1657 2005-11-24  MenTaLguY  <mental@rydia.net>
1659         * src/sp-item.cpp: remedy erroneous initialization of doubles with NULL
1661 2005-11-24  MenTaLguY  <mental@rydia.net>
1663         * src/seltrans.cpp: prune dead wood (sp_sel_trans_handle_click)
1665 2005-11-24  MenTaLguY  <mental@rydia.net>
1667         * src/display/canvas-arena.cpp, src/display/canvas-bpath.cpp,
1668           src/display/canvas-grid.cpp, src/display/guideline.cpp,
1669           src/display/sodipodi-ctrl.cpp, src/display/sodipodi-ctrlrect.cpp,
1670           src/display/sp-canvas-util.cpp, src/display/sp-canvas-util.h,
1671           src/display/sp-ctrlline.cpp, src/display/sp-ctrlquadr.cpp:
1672           
1673           cosmetic renaming
1675 2005-11-23  Robert Crosbie <swingincelt@gmail.com>
1677         * replaced sp_repr_change_order with direct cal to repr->changeOrder
1678         * replaced sp_repr_add_child with direct call to repr->addChild
1679         * replaced sp_repr_remove_child with direct call to repr->removeChild
1681 2005-11-23  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
1683         * src/ui/dialog/align-and-distribute.h, src/ui/dialog/align-and-distribute.cpp:
1684           Add new action ActionRemoveOverlaps, and add new button & two spin buttons
1685           to the Align & Distribute dialog box, to remove overlaps between objects.
1686         * configure.ac: New directory src/removeoverlap.
1687         * src/Makefile.am: Build new library removeoverlap/libremoveoverlap.a.
1688         * src/Makefile_insert: Link against new library removeoverlap/libremoveoverlap.a.
1690 2005-11-23  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1692         * packaging/osx-app.sh, packaging/macosx/Resources/bin/inkscape:
1693           Include some missing modules required by gnome-vfs and set shell
1694           variables to point to these modules within the OS X app bundle.
1695           Fixes bug #1363390.
1697 2005-11-21  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1699         * packaging/osx-app.sh: Fix a typo resulting from last change.
1701 2005-11-18  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1703         * packaging/osx-app.sh: Add libXinerama.1.dylib to the app bundle 
1704           since users of OS X 10.3.x will not have this file.
1706 2005-11-12  Jon Phillips <jon@rejon.org>
1708         * po/it.po po/sr.po po/sr@Latn.po: Fixed these po files so that 
1709         Inkscape builds okay.
1712 2005-11-12  Ralf Stephan <ralf@ark.in-berlin.de>
1714         * src/ui/view/edit-widget.h, src/ui/view/edit-widget.cpp:
1715           new-gui: made complete statusbar widget, equals old-gui now
1716         * src/widgets/layer-selector.h, src/ui/widget/selected-style.h:
1717           classes have now a constructor with default parameter
1718         * src/ui/widget/zoom-status.cpp: smaller font
1720 2005-11-12  MenTaLguY  <mental@rydia.net>
1722         * src/display/canvas-arena.cpp, src/display/canvas-bpath.cpp,
1723           src/display/canvas-grid.cpp, src/display/guideline.cpp,
1724           src/display/sodipodi-ctrl.cpp, src/display/sodipodi-ctrlrect.cpp,
1725           src/display/sp-canvas-util.cpp, src/display/sp-canvas-util.h,
1726           src/display/sp-canvas.cpp, src/display/sp-canvas.h,
1727           src/display/sp-ctrlline.cpp, src/display/sp-ctrlquadr.cpp:
1729           Refactor canvas buffer code a little.   Hint: if you have two flags
1730           and an invariant that one will be false if the other is true and
1731           vice-versa, you can represent them with a single flag.  Fixed
1732           cut-and-paste madness between sp_canvas_buf_ensure_buf and
1733           sp_canvas_clear_buf also.  Finally, renamed sp_canvas_buf_ensure_buf
1734           to sp_canvas_prepare_buf.
1736 2005-11-09  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1738         * src/sp-item.cpp: Call updateRepr before emitting the transformed
1739           signal in sp_item_write_transform.  This fixes bug #1303423.
1741         * packaging/osx-app.sh: Fixes to allow building app bundles on both
1742           OS X 10.4 and earlier versions of the OS without altering the script.
1743           Also, add a note that Inkscape needs to be configured with
1744           --enable-osxapp when building the OS X package.
1746         * po/nl.po: Fix an "Unmatched closing </b>" warning.
1748 2005-11-08  Ralf Stephan <ralf@ark.in-berlin.de>
1750         merged with branch CXXIFICATION_VIEW_AND_WIDGET
1751         * src/arc-context.cpp, src/dyna-draw-context.cpp, src/event-context.cpp,
1752           src/file.cpp, gradient-context.cpp, src/inkscape.cpp, src/interface.cpp,
1753           src/rect-context.cpp, src/select-context.cpp, src/seltrans.cpp,
1754           src/sp-namedview.cpp, src/spiral-context.cpp, src/star-context.cpp,
1755           src/verbs.cpp, dialogs/dialog-events.cpp, src/dialogs/layer-properties.cpp,
1756           src/ui/dialog/dialog.cpp, src/widgets/desktop-widget.cpp,
1757           src/widgets/desktop-widget.h:
1758           move gtk code into desktop-widget.cpp, called via desktop
1759         * src/ui/view/Makefile_insert: added files edit-widget-interface.h,
1760           edit-widget.cpp, edit-widget.h
1761           the EditWidget is the Gtkmm version of the SPDesktopWidget
1762         * src/ui/widget/Makefile_insert: added files ruler.cpp, ruler.h,
1763           svg-canvas.cpp, svg-canvas.h, zoom-status.cpp, zoom-status.h
1764           these are widgets part of the EditWidget
1765         * src/file.cpp, src/inkscape.cpp, src/ui/dialog/dialog.cpp, 
1766           src/ui/dialog/dialog.h, src/application/application.h, 
1767           src/application/application.cpp:
1768           divide code /wrt Application::getNewGui(): if true, it's called by the 
1769           Gtkmm application and the inkscape object is meaningless
1770         * src/application/app-prototype.h:
1771           replace UI specific return value of getWindow() with void*
1772         * src/application/editor.cpp, src/application/editor.h:
1773           made Editor a singleton, collect global UI code here that (for Gtk+)
1774           lives in inkscape.cpp and elsewhere
1775         * src/desktop-events.cpp, src/desktop.cpp, src/event-context.cpp,
1776           src/nodepath.cpp, src/seltrans.cpp:
1777           simplify calls to desktop->set_coordinate_status
1778         * src/desktop-handles.cpp, src/desktop-handles.h, 
1779           src/extension/internal/ps.cpp, src/widgets/gradient-toolbar.cpp, 
1780           src/widgets/toolbox.cpp:
1781           widget is no longer available through desktop
1782         * src/Makefile_insert: added files preferences.h preferences.cpp
1783           src/inkscape.h, src/inkscape.cpp, src/application/editor.cpp:
1784           move preferences handling into preferences.cpp/h
1785         * src/desktop.cpp, src/desktop.h:
1786           use EditWidgetInterface, more cosmetics
1787         * src/desktop.cpp, src/inkview.cpp, src/slideshow.cpp, src/svg-view-widget.cpp,
1788           src/svg-view.cpp, src/svg-view.h, src/ui/view/view.cpp, src/ui/view/view.h:
1789           streamline setDoc()/setDocument() logic
1790         * src/inkview.cpp: include empty func bodies to make linker happy
1792 2005-11-08 ------------0.43
1794 2005-11-06  Ted Gould  <ted@gould.cx>
1796         * 0.43pre2
1798 2005-11-01  Jon A. Cruz  <jon@joncruz.org>
1800         * src/io/base64stream.h, src/io/base64stream.cpp:
1801           Applied modified patch 1341198.
1803 2005-10-31  Jon A. Cruz  <jon@joncruz.org>
1805         * src/verbs.cpp:
1806           Applied patch from RFE 1247694.
1808 2005-10-26  Jon A. Cruz  <jon@joncruz.org>
1810         * share/screens/about.svg:
1811           Trimmed bad lines. Fixed bug 1310742.
1813 2005-10-24  Ted Gould  <ted@gould.cx>
1815         * 0.43pre1
1817 2005-10-22  Jon A. Cruz  <jon@joncruz.org>
1819         * Makefile.mingw, src/io/sys.cpp:
1820           Patch 1334818.
1822 2005-10-22  Jon A. Cruz  <jon@joncruz.org>
1824         * src/main.cpp, src/io/sys.cpp:
1825           Updating Win32 parameter filename handling.
1827 2005-10-22  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1829         * src/connector-context.cpp: Correct two typos.  Fixes bug #1333915.
1831 2005-10-21  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1833         * src/connector-context.cpp: Fix a bug where undoing creation of 
1834           new connectors revealed intermediate steps.
1836         * src/libavoid/connector.cpp, src/libavoid/connector.h,
1837           src/libavoid/makepath.cpp, src/libavoid/static.cpp:
1838           Applied a couple of libavoid fixes.  One of which addresses
1839           a possible crash bug.
1841 2005-10-19  Ted Gould  <ted@gould.cx>
1843         * 0.43pre0
1845 2005-10-19  Jon A. Cruz  <jon@joncruz.org>
1847         * inkscape32-16.ico: patch 1323419
1849 2005-10-17  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1851         * src/conn-avoid-ref.cpp: Don't pass avoided objects to libavoid
1852           if they have the 'cloned' flag set.  Fixes bug #1328401.
1854 2005-10-17  Jon A. Cruz  <jon@joncruz.org>
1856         * src/main.cpp, src/io/sys.h, src/io/sys.cpp:
1857           Switched command-line name conversion from filename to locale.
1858           Fixes bug #1250124.
1860 2005-10-16  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1862         * src/sp-conn-end.cpp: Don't update the repr for the curve while 
1863           manually rerouting connector endpoints.  This speeds up undo/redo
1864           and allows responsive rerouting with the xml editor window open.
1865           Fixes bug #1315489.
1867         * po/ca.po: Fix unclosed <b> found in translations.
1868         
1869 2005-10-15  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1871         * src/isnan.h: Update to allow compilation on OSX 10.4.
1873         * src/connector-context.cpp, src/connector-context.h,
1874           src/tools-switch.cpp: Allow double-clicking on connectors
1875           in the selector tool to swap to the connector tool.
1877 2005-10-14  Jon A. Cruz  <jon@joncruz.org>
1879         * share/palettes/Makefile.am, share/palettes/Tango-Palette.gpl:
1880           Adding the Tango palette.
1882 2005-10-13  MenTaLguY  <mental@rydia.net>
1884         * share/screens/about.svg: New copy for about dialog; did some
1885           vector clean-up and re-enabled the coffee stains.
1887 2005-10-10  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1889         * src/sp-conn-end-pair.cpp, src/sp-conn-end-pair.h:
1890           Reroute connector lines if the object itself is moved or
1891           transformed.  Previously a routed line would not unroute if it
1892           was moved away from the blocking objects.  Fixes bug #1303493.
1894 2005-10-07  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1896         * packaging/macosx/Resources/script, src/path-prefix.h:
1897           Don't assume the OSX app bundle will be named "Inkscape.app".
1898           This caused things like tool icons to disappear if the app
1899           bundle was renamed, e.g., to "Inscape-0.42.2.app".
1900           Fixes bug #1289648.
1902 2005-10-06  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1904         * src/sp-conn-end-pair.cpp: Fix a bug where connectors could
1905           sometimes be given strange routes if there was a transform on
1906           either of the objects that the connector was attached to.
1908         * src/conn-avoid-ref.cpp, src/sp-conn-end.cpp: Add a call to
1909           sp_document_ensure_up_to_date before checking bounding boxes
1910           in response to a transform signal.  This is because some
1911           objects (e.g., text) will not give the correct bbox until its
1912           update function has been called and its internal representation
1913           has been updated.  This fixes bug #1303523.
1915         * src/dialogs/display-settings.cpp, src/dialogs/display-settings.h:
1916           Restore the Connector tool preferences tab.  Use same ordering
1917           for tools as on the toolbar.  Add the standard selection cue
1918           option to the connector tool preferences.  Fixes bug #1303360.
1920 2005-10-05  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1922         * packaging/osx-app.sh: Include locale files in the OSX package and
1923           a couple of minor updates for building packages on OSX 10.4.x.
1925         * packaging/macosx/Resources/bin/inkscape: Fix a problem in setting
1926           LANG to the current OSX language before launching Inkscape.
1927           With this fix, the Inkscape app bundle will obey the user's
1928           language setting in the system preferences on OSX.
1930 2005-09-30  Ralf Stephan <ralf@ark.in-berlin.de>
1932         * src/desktop.*, src/widget/desktop-widget.cpp:
1933         make empty destructor, fixes #1291009
1935 2005-09-29  Michael Wybrow  <mjwybrow@users.sourceforge.net>
1937         * Info.plist.in: Associate .svgz files with Inkscape on OSX.
1938           Fixes bug #1307083.
1940 2005-09-27  MenTaLguY  <mental@rydia.net>
1942         * src/gc-anchored.h: emphasize initial refcount
1944         * src/desktop.h, src/svg-view-widget.cpp, src/ui/view/view-widget.cpp,
1945           src/ui/view/view.cpp, src/ui/view/view.h,
1946           src/widgets/desktop-widget.cpp:
1948           Move _whole_ UI::View::View hierarchy over to the garbage collector
1949           and fix anchor imbalances; you can't do this piecemeal.
1951 2005-09-23  Ben Fowler  <bpfowler@users.sourceforge.net>
1953         * autogen.sh: Cleanup error message.
1955 2005-09-20  Carl Hetherington <inkscape@carlh.net>
1957         * src/file.cpp, src/file.h, src/help.cpp: don't replace empty
1958         desktops with help files / tutorials.  Fixes 1249067.
1960 2005-09-17  Ralf Stephan <ralf@ark.in-berlin.de>
1962         * src/jabber_whiteboard/typedefs.h:
1963           gcc4 needs more const correctness, fixes #1294298
1965 2005-09-17  Ralf Stephan <ralf@ark.in-berlin.de>
1967         * src/desktop.h, src/desktop.cpp, src/interface.cpp, 
1968           src/dialogs/layer-properties.cpp, src/ui/view/view.cpp,
1969           src/widgets/desktop-widget.cpp:
1970           correcting old and new oversights, fixes #1290982
1971           
1972 2005-09-15  Peter Moulder <pmoulder@mail.csse.monash.edu.au>
1974         * src/xml/repr-util.cpp (sp_repr_set_double): Split into two
1975           functions (sp_repr_set_svg_double, sp_repr_set_css_double)
1976           according to whether or not an exponent is allowed.  Update callers.
1977           (sp_repr_set_double_default): Remove this unused function.
1979 2005-09-15  Carl Hetherington <inkscape@carlh.net>
1981         * src/object-edit.cpp: fix idiotic bug introduced in previous commit.
1983 2005-09-14  Carl Hetherington <inkscape@carlh.net>
1985         * src/knot.cpp, src/knotholder.cpp: coding style.
1987 2005-09-13  Ralf Stephan <ralf@ark.in-berlin.de>
1989         * src/desktop.h, src/desktop.cpp, src/svg-view.h, src/svg-view.cpp,
1990           src/ui/view/view.h, src/ui/view/view.cpp, src/ui/view/edit.h:
1991             View::setDocument() did not call same function in subclass
1992         * src/widgets/select-toolbar.cpp:   removed usage of SP_DT_WIDGET
1993         * src/desktop.cpp:   removed last sp_desktop_* function names
1995 2005-09-13  Carl Hetherington <inkscape@carlh.net>
1997         * src/object-edit.cpp: Add some comments.  Minor refactoring.
1998         Snap points when editing rectangles; partial fix for bug 1282399.
2000         * packaging/win32/inkscape.nsi: Correct spelling of associations
2001         and associated; fix for bug 1283916.
2003 2005-09-12  Jon A. Cruz  <jon@joncruz.org>
2005         * src/dialogs/iconpreview.cpp, src/dialogs/iconpreview.h,
2006           src/widgets/icon.cpp:
2007           Icon preview now toggles between selection or whole document.
2008           Fixes REF #1281883.
2010 2005-09-12  Ralf Stephan <ralf@ark.in-berlin.de>
2012         * src/widgets/ruler.cpp:   fixed precision problem (bug #1242995)
2014 2005-09-12  Peter Moulder  <pmoulder@bowman.csse.monash.edu.au>
2016         * src/libnrtype/Layout-TNG-Compute.cpp (Calculator::_measureUnbrokenSpan):
2017           Fix line breaking for [supposedly] non-breaking whitespace characters.
2019 2005-09-11  Ralf Stephan <ralf@ark.in-berlin.de>
2021         * po/nl.po:   replaced all instances of "verkleint" with "verkleind"
2022           (bug #1277695)
2024 2005-09-10  Jon A. Cruz  <jon@joncruz.org>
2026         * src/preferences-skeleton.h, src/dialogs/iconpreview.cpp:
2027           Made icon preview sizes configurable. Fixes REF #1281885.
2029 2005-09-08  Carl Hetherington <inkscape@carlh.net>
2031         * src/object-edit.cpp: Coding style in SPRect portion.  Add
2032         Emacs/vim mode blocks.
2034 2005-09-08  Ralf Stephan <ralf@ark.in-berlin.de>
2036         * src/desktop.cpp, src/ui/view/view.cpp:
2037           removed placement new signal construction
2038         * src/desktop.cpp:   selection is no longer anchored
2039         * src/desktop.cpp, src/desktop.h:   further cleanup
2040         * src/main.cpp:   minor changes in doxygen main page
2042 2005-09-08  MenTaLguY  <mental@rydia.net>
2044         * src/xml/document.h, src/xml/session.h, src/xml/simple-session.cpp,
2045           src/xml/simple-session.h:
2047           Add Session and Document createElementNode, createCommentNode,
2048           and createTextNode methods
2050 2005-09-06  Ralf Stephan <ralf@ark.in-berlin.de>
2052         * src/desktop-handles.h, src/desktop-handles.cpp:
2053             added macros SP_DT_MSGSTACK/NAMEDVIEW/WIDGET, moved last
2054                 macros from desktop.h
2055         * src/desktop.h src/desktop.cpp, src/sp-namedview.h, 
2056           src/sp-namedview.cpp:
2057             moved default_metric and default_unit into namedview
2058         * src/desktop.h src/desktop.cpp, src/widgets/desktop-widget.h,
2059           src/widgets/desktop-widget.cpp:
2060             moved window member into desktop widget
2061         * src/dialogs/clonetiler.cpp, src/dialogs/color-picker.cpp,
2062           src/dialogs/desktop-properties.cpp, src/dialogs/dialog-events.cpp ,
2063           src/dialogs/display-settings.cpp, src/dialogs/export.cpp,
2064           src/dialogs/stroke-style.cpp, src/dialogs/swatches.cpp,
2065           src/dialogs/transformation.cpp, src/dropper-context.cpp,
2066           src/extension/internal/ps.cpp, src/gradient-context.cpp,
2067           src/jabber_whiteboard/callbacks.cpp,
2068           src/jabber_whiteboard/chat-handler.cpp,
2069           src/jabber_whiteboard/message-processors.cpp,
2070           src/jabber_whiteboard/message-queue.cpp,
2071           src/jabber_whiteboard/session-manager.cpp,
2072           src/path-chemistry.cpp, src/satisfied-guide-cns.cpp,
2073           src/sp-text.cpp, src/text-chemistry.cpp,
2074           src/trace/potrace/inkscape-potrace.cpp,
2075           src/trace/trace.cpp, src/ui/dialog/align-and-distribute.cpp:
2076             removed dependency on desktop.h
2077         * src/arc-context.cpp, src/desktop-events.cpp, src/inkscape.cpp,
2078           src/interface.cpp, src/nodepath.cpp, src/rect-context.cpp,
2079           src/select-context.cpp, src/seltrans.cpp, src/spiral-context.cpp,
2080           src/star-context.cpp, src/text-context.cpp, src/ui/dialog/dialog.cpp,
2081           src/widgets/select-toolbar.cpp, src/widgets/toolbox.cpp:
2082             minor adaptation due to the above changes
2083         * src/ui/dialog/session-player.cpp:   didn't #include config.h
2084         
2085 2005-09-06  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2087         * doc/keys.html, doc/keys.xml, share/screens/keys.svg,
2088           src/shortcuts.cpp:
2089           Add keyboard shortcuts for the connector tool -- Ctrl+F2 and 'o'.
2091 2005-09-05  Ralf Stephan <ralf@ark.in-berlin.de>
2093         * src/document.cpp, src/draw-anchor.cpp, src/knotholder.cpp,
2094           src/main.cpp, src/object-ui.cpp, src/selcue.cpp,
2095           src/sp-marker.cpp, src/sp-root.cpp, src/sp-shape.cpp,
2096           src/sp-star.cpp, src/sp-symbol.cpp, src/sp-tspan.cpp,
2097           src/dialogs/docker.cpp, src/dialogs/extensions.cpp,
2098           src/dialogs/text-edit.cpp, src/dialogs/tiledialog.cpp,
2099           src/extension/system.cpp, src/widgets/gradient-vector.cpp,
2100           src/jabber_whiteboard/session-file-player.cpp,
2101           src/widgets/paint-selector.cpp, src/widgets/sp-widget.cpp,
2102           src/widgets/spw-utilities.cpp, src/extension/implementation/script.cpp,
2103           src/ui/dialog/transformation.cpp, src/seltrans.h,
2104           src/widgets/sp-widget.h:
2105             removed dependency on desktop.h
2106         * src/select-context.cpp, src/tools-switch.cpp, 
2107           src/dialogs/display-settings.cpp, src/dialogs/fill-style.cpp,
2108           src/dialogs/object-properties.cpp, src/dialogs/clonetiler.cpp:
2109             added dependencies because of above changes
2110         
2111 2005-09-04  Kees Cook  <kees@outflux.net>
2113         * TRANSLATORS, Makefile.am, src/verbs.cpp, src/help.cpp,
2114           src/ui/dialog/aboutbox.h, src/ui/dialog/aboutbox.cpp,
2115           src/menus-skeleton.h, src/ui/dialog/Makefile_insert:
2116           Implemented AboutDialog following the Gnome style.
2117         * packaging/win32/inkscape.nsi: added quotes around execution name.
2119 2005-09-04  Ralf Stephan <ralf@ark.in-berlin.de>
2121         * src/desktop.cpp, src/dropper-context.cpp, src/forward.h,
2122           src/interface.cpp, src/main.cpp, src/sp-anchor.cpp,
2123           src/sp-text.cpp, src/splivarot.cpp, src/svg-view-widget.cpp,
2124           src/svg-view-widget.h, src/svg-view.h, src/extension/effect.h,
2125           src/extension/implementation/plugin-link.h, 
2126           src/jabber_whiteboard/session-manager.cpp,
2127           src/ui/dialog/dialog.cpp, src/ui/view/edit.h, 
2128           src/ui/view/view-widget.cpp, src/ui/view/view-widget.h,
2129           src/ui/view/view.cpp, src/ui/view/view.h:
2130             minor edits to completely remove SPView identifier, and some
2131                 dependencies
2133 2005-09-04  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2135         * src/sp-conn-end-pair.cpp: Fix a crash bug when undoing connectors
2136           on Linux x86 where we were calling a signal destructor.
2138         * src/io/sys.cpp: Build fix - conditionally include <glib/gstdio.h>
2139           if using glib 2.6.0 or greater, since it is not available in earlier
2140           versions.
2142 2005-09-04  Ralf Stephan <ralf@ark.in-berlin.de>
2144         * src/svg-view-widget.h, src/svg-view-widget.cpp, src/Makefile_insert:
2145             separated SPSVGViewWidget from SPSVGView
2146         * src/desktop.h, src/svg-view.h, src/ui/view/edit.h,
2147           src/ui/view/view-widget.h, src/ui/view/view.h,
2148           src/widgets/desktop-widget.h, src/desktop.cpp,
2149           src/svg-view.cpp, src/ui/view/view-widget.cpp,
2150           src/ui/view/view.cpp, src/widgets/desktop-widget.cpp:
2151             moved SPDesktop from GObject to C++/sigc++
2152         * src/forward.h: 
2153             removed SP_DESKTOP*, SP_SVG_VIEW* macros and dependencies
2154         * src/widgets/layer-selector.h, src/widgets/layer-selector.cpp:
2155             changed to sigc++ but disabled call
2156         * src/desktop-events.cpp:  removed desktop_enter_notify()
2157         * src/sp-anchor.cpp:  removed handling of mouse over/out
2158         * src/helper/action.h, src/sp-use.cpp:  added missing dependency
2159         * src/arc-context.cpp, src/desktop-affine.cpp, src/desktop-events.cpp,
2160           src/desktop-handles.cpp, src/dyna-draw-context.cpp,
2161           src/event-context.cpp, src/file.cpp, src/gradient-context.cpp,
2162           src/gradient-drag.cpp, src/help.cpp, src/inkscape.cpp,
2163           src/inkview.cpp, src/interface.cpp, src/knot.cpp,
2164           src/knotholder.cpp, src/node-context.cpp, src/nodepath.cpp,
2165           src/object-ui.cpp, src/path-chemistry.cpp, src/rect-context.cpp,
2166           src/rubberband.cpp, src/satisfied-guide-cns.cpp,
2167           src/select-context.cpp, src/selection-chemistry.cpp,
2168           src/seltrans.cpp, src/shortcuts.cpp, src/slideshow.cpp,
2169           src/sp-anchor.cpp, src/sp-flowtext.cpp, src/sp-namedview.cpp,
2170           src/sp-text.cpp, src/spiral-context.cpp, src/splivarot.cpp,
2171           src/star-context.cpp, src/text-context.cpp, src/text-editing.cpp,
2172           src/tools-switch.cpp, src/verbs.cpp, src/zoom-context.cpp,
2173           src/dialogs/clonetiler.cpp, src/dialogs/desktop-properties.cpp,
2174           src/dialogs/dialog-events.cpp, src/dialogs/export.cpp,
2175           src/dialogs/filedialog.cpp, src/dialogs/iconpreview.cpp,
2176           src/dialogs/layer-properties.cpp, src/dialogs/stroke-style.cpp,
2177           src/dialogs/transformation.cpp, src/dialogs/xml-tree.cpp,
2178           src/extension/effect.cpp, src/extension/implementation/script.cpp,
2179           src/extension/internal/grid.cpp, src/extension/internal/ps.cpp,
2180           src/helper/window.cpp, src/ui/dialog/dialog.cpp,
2181           src/ui/widget/imageicon.cpp, src/widgets/gradient-toolbar.cpp,
2182           src/widgets/layer-selector.cpp, src/widgets/select-toolbar.cpp,
2183           src/widgets/toolbox.cpp:
2184             minor adaptations due to the above changes
2185         * src/desktop-events.h:  removed dependencies 
2186         * src/selection.cpp:  improved doxygen documentation
2187         
2188 2005-09-04  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2190         * src/connector-context.cpp: Fix a bug where a data structure was
2191           not being freed, triggering an assertion failure and Inkscape to
2192           crash sometimes when the connector tool context was switched.
2194 2005-09-03  Aaron Spike <aaron@ekips.org>
2196         * src/node-context.cpp, src/livarot.cpp: Fixing a problem where node
2197           adding and curve dragging operate on fills. A special thank you to
2198           Simon Budig of GIMP fame for working with me and giving very 
2199           thorough explanations of his curve dragging code.
2201 2005-09-03  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2203         * src/libavoid/connector.cpp, src/libavoid/connector.h: Autoroute
2204           connectors while they are being drawn in the connector context.
2206         * src/sp-conn-end.cpp: Fix a bug where connectors attached to shapes
2207           were not always getting updated.  Their path was sometimes thought
2208           to be valid even when it was not.
2210 2005-09-02  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2212         * src/sp-conn-end.cpp: Fix a bug where connectors not attached to
2213           shapes were not updating correctly if an object was dropped on
2214           their path.
2216 2005-09-01  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2218         * src/sp-conn-end.cpp, src/sp-conn-end.h, src/sp-conn-end-pair.cpp,
2219           src/sp-conn-end-pair.h, src/sp-path.cpp, src/libavoid/graph.cpp,
2220           src/libavoid/incremental.cpp:
2222         Connectors now automagically reroute as a result of any 'avoided'
2223         object being placed on their path.  They also update to better
2224         paths when blocking shapes are removed.
2225          
2226         * src/connector-context.cpp: Update TODO list.  Only show endpoints
2227           and allow manipulation of paths marked as connectors.
2229         * src/libavoid/connector.cpp, src/libavoid/connector.h: Connectors
2230           with invalid paths can now notify other code via a callback,
2231           rather than just setting a boolean flag.
2233         * src/conn-avoid-ref.cpp: Fix an obscure crash bug in the connector
2234           routing code where we were still using a freed data structure.
2236 2005-08-31  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2238         * src/conn-avoid-ref.cpp, src/conn-avoid-ref.h: Use the correct
2239           coordinate system when passing shape geometry to libavoid.
2240           Add a small amount of buffer space around objects.
2241         
2242         * src/attributes-test.cpp, src/attributes.cpp, src/attributes.h,
2243           src/path.cpp: Add code to handle the "inkscape:connector-type"
2244           attribute.
2246         * src/sp-conn-end-pair.cpp, src/sp-conn-end-pair.h: Store information
2247           about type paths, to determine whether they are connectors.  Keep
2248           a reference to the libavoid representation if necessary.  Add code
2249           to call libavoid to get a path for a connector.
2250         
2251         * src/sp-conn-end.cpp: Call the connector routing code when connector
2252           ends are moved.  Move connector endpoints rather than stretching
2253           when adjusting to draw to shape edge.
2254           
2255         * src/libavoid/connector.cpp, src/libavoid/connector.h: Make the
2256           connector references aware of their own initialisation state.
2258         * src/connector-context.cpp:  Update TODO list.  Update for other
2259           changes.  Fix a bug where multi-segment connectors had a solid
2260           black fill while being dragged.
2262         * src/display/curve.cpp, src/display/curve.h: Add a function to 
2263           simply move the two endpoints of a curve.
2265 2005-08-30  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2267         * src/conn-avoid-ref.cpp, src/libavoid/connector.cpp,
2268           src/libavoid/graph.cpp, src/libavoid/makepath.cpp,
2269           src/libavoid/shape.cpp, src/libavoid/vertices.cpp,
2270           src/libavoid/vertices.h, src/libavoid/visibility.cpp:
2272         Use a better system for unique IDs within libavoid.  This properly
2273         addresses a hack in SPAvoidRef that was unsafe on amd64 machines.
2275         * configure.ac: Add the src/libavoid subdir.
2276         
2277 2005-08-29  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2279         * src/attributes.cpp, src/connector-context.cpp, src/sp-item.cpp:
2280           Use "inkscape:connector-avoid" instead of "inkscape:avoid".
2282 2005-08-29  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2284         * src/libavoid/timer.cpp: Remove some code assuming a fixed size for
2285           timer types.
2287 2005-08-29  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2289         * src/connector-context.cpp: Fix a problem where the context didn't
2290           notice the current selection when it was entered.  Also, fix a 
2291           problem where connectors disappeared for a moment when an endpoint
2292           was clicked (for rerouting), but before the mouse was moved.
2294 2005-08-29      David Yip               <yipdw@rose-hulman.edu>
2296         * src/ui/dialog/whiteboard-connect.{cpp,h},
2297           src/ui/dialog/whiteboard-sharewithchat.{cpp,h}:
2298           Improved widget layout (switched to Gtk::Table)
2300         * src/jabber_whiteboard/session-manager.cpp:
2301           Fixed crash that occurred when connecting via SSL to a Jabber
2302           server that does not support SSL
2303           
2304 2005-08-28  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2306         * src/Makefile_insert, src/attributes-test.cpp, src/attributes.cpp,
2307           src/attributes.h, src/conn-avoid-ref.cpp, src/conn-avoid-ref.h,
2308           src/forward.h, src/sp-item.cpp, src/sp-item.h:
2309          
2310           Add code that handles the "inkscape:avoid" attribute, used to mark
2311           whether an item should be avoided for the purposes of routing
2312           connectors.  This code also calls libavoid when an 'avoided'
2313           item is moved/transformed.
2314         
2315         * src/connector-context.cpp, src/connector-context.h,
2316           src/widgets/toolbox.cpp:
2317           
2318           Add a couple of buttons to the connector context's toolbar to
2319           allow selected objects to be marked as avoided or ignored for the
2320           purpose of connector routing.
2321           
2322         * src/libavoid/debug.h, src/libavoid/geomtypes.h, 
2323           src/libavoid/polyutil.cpp, src/libavoid/polyutil.h,
2324           src/libavoid/shape.cpp:
2325         
2326           Misc fixes: turn off debugging output, put types in the Avoid
2327           namespace, and add an assertion for a special case that can
2328           cause problems.
2330 2005-08-28  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2332         * share/icons/icons.svg: Add a couple of icons for the connector
2333           context toolbar.
2335 2005-08-27  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2337         * src/Makefile.am, src/Makefile_insert, src/libavoid/*:
2338           Add libavoid code, the library that does all the path planning
2339           work for autorouting connectors.
2341 2005-08-27  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2343         * src/Makefile_insert: Remove a reference to the previously moved
2344           src/desktop-widget.h.  This wasn't breaking the build, but was
2345           stopping me from generating tags files.
2346           
2347 2005-08-25  Ralf Stephan <ralf@ark.in-berlin.de>
2349         * src/ui/view/edit.h, src/ui/view/view.h, src/ui/view/view.cpp,
2350           src/ui/view/view-widget.h, src/ui/view/view-widget.cpp,
2351           src/widgets/desktop-widget.h, src/svg-view.h, src/desktop.cpp:
2352             separated SPViewWidget from SPView
2353         * src/connector-context.cpp, src/dyna-draw-context.cpp,
2354           src/file.cpp, src/gradient-context.cpp, src/knot.cpp,
2355           src/node-context.cpp, src/nodepath.cpp, src/path-chemistry.cpp,
2356           src/pen-context.cpp, src/pencil-context.cpp, src/rect-context.cpp,
2357           src/selection-chemistry.cpp, src/spiral-context.cpp,
2358           src/splivarot.cpp, src/star-context.cpp, src/text-chemistry.cpp,
2359           src/text-context.cpp, src/verbs.cpp, src/dialogs/display-settings.cpp,
2360           src/dialogs/layer-properties.cpp, src/dialogs/find.cpp,
2361           src/dialogs/clonetiler.cpp, src/trace/trace.cpp,
2362           src/trace/potrace/inkscape-potrace.cpp:
2363             all these files relied on a dependency in view.h to include
2364           code for MessageStack and/or MessageContext which is now removed
2365         * dialogs/desktop-properties.cpp:   improved doxygen documentation
2366         
2367 2005-08-25  Ralf Stephan <ralf@ark.in-berlin.de>
2369         * src/desktop.cpp, src/widgets/desktop-widget.h, 
2370           src/widgets/desktop-widget.cpp: 
2371           abstracted out all Gtk+ calls from SPDesktop into SPDesktopWidget
2372         * src/Doxyfile, src/main.cpp, src/desktop.cpp:
2373           improved doxygen documentation
2374           
2375 2005-08-25  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2377         * src/connector-context.cpp, src/connector-context.h:
2378           Change the connector context to use Inkscape's standard selection
2379           mechanism.  Show connector endpoint handles for single connectors
2380           in the selection.  This is the proposed interaction changes as
2381           discussed on the mailing list.  See the post there for a greater
2382           description of the change.
2384 2005-08-24  Ralf Stephan <ralf@ark.in-berlin.de>
2386         * src/widgets/desktop-widget.h, src/widgets/desktop-widget.cpp:
2387           separated SPDesktopWidget from SPDesktop
2388         * src/desktop-widget.h:   removed
2389         * src/toolbox.cpp, src/toolbox.h, src/select-toolbar.cpp,
2390           src/select-toolbar.h, src/gradient-toolbar.cpp, 
2391           src/gradient-toolbar.h:   moved into src/widgets
2392         * src/desktop.h, src/desktop.cpp, src/desktop-events.cpp,
2393           src/verbs.cpp, src/Makefile_insert, src/widgets/Makefile_insert,
2394           src/arc-context.cpp, src/dyna-draw-context.cpp,
2395           src/gradient-context.cpp, src/rect-context.cpp,
2396           src/select-context.cpp, src/spiral-context.cpp,
2397           src/star-context.cpp, src/interface.cpp, src/seltrans.cpp:
2398           adapted following SPDesktopWidget separation
2399         
2400 2005-08-24      David Yip       <yipdw@rose-hulman.edu>
2402         * src/jabber_whiteboard/session-manager.{cpp.h},
2403           src/jabber_whiteboard/callbacks.cpp,
2404           src/ui/dialog/whiteboard-connect.{cpp,h}:
2405           added support for XMPP over SSL to Inkboard
2407 2005-08-22  Ralf Stephan <ralf@ark.in-berlin.de>
2409         * src/dialogs/desktop-properties.cpp, src/dialogs/display-settings.cpp:
2410           both dialogs are now unresizable (bug #1237865)
2411         * src/main.cpp: enhanced doxygen main page
2413 2005-08-21  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2415         * packaging/osx-app.sh: Added a command line option which allows
2416           the executable and bundled dylibs to be stripped, significantly
2417           reducing the package size.
2419 2005-08-20  Ralf Stephan <ralf@ark.in-berlin.de>
2421         * src/desktop-style.cpp: fixed bug 1247989: nonstroked objects are
2422           no longer counted in stroke_average_width()
2423         * src/Doxyfile: added 3 more files
2424         * src/main.cpp: introduced doc hierarchy on doxygen main page
2425         * src/desktop-style.cpp:  improved doxygen documentation
2426           
2427 2005-08-20  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2429         * src/connector-context.cpp, src/connector-context.h:
2430           Rework connector context to extend SPEventContext instead of
2431           SPDrawContext, and remove most of the borrowed draw context
2432           code.
2434 2005-08-20  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2436         * src/menus-skeleton.h: correct the verb for "Select All In All Layers"
2437           since it was just showing a verb error in the menu.
2439 2005-08-19  Kees Cook  <kees@outflux.net>
2441         * autogen.sh, tools-version.sh, distro: report Ubuntu correctly, detect
2442           and reject unsafe automake versions (1.9.0 -> 1.9.6).
2444 2005-08-19  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2446         * src/dialogs/display-settings.cpp:
2447           Align the "Oversample bitmaps" option in the preferences
2448           dialog with all the other options.
2450 2005-08-18  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2452         * src/Makefile_insert: Added connector-context.{cpp,h}
2454         * src/connector-context.cpp, src/connector-context.h: New code for
2455           the connector context.  Handles the interaction of creating and
2456           modifying connectors.
2458         * src/sp-conn-end.cpp, src/sp-conn-end.h: Added sp_conn_adjust_path
2459           for adjusting the path of connectors to the edge of shapes, and
2460           sp_conn_end_detach to detach a connector endpoint from a shape.
2461           Also, when there is only a single shape attached to a connector
2462           and it is moved, then reroute the connector leaving its unattached
2463           endpoint where it is, rather than just moving the whole thing with
2464           the shape.
2466         * src/preferences-skeleton.h, src/toolbox.cpp, src/tools-switch.cpp,
2467           src/tools-switch.h, src/verbs.cpp, src/verbs.h,
2468           src/dialogs/display-settings.cpp, src/dialogs/display-settings.h:
2470           Enable the connector context.  Give it a preferences tab, toolbox,
2471           icon, etc.  Also, correct some vim modelines.
2472           
2473         * src/display/sp-canvas.cpp: Allow enter and leave events to be generated
2474           for canvas items when mouse buttons are depressed.
2476         * src/pixmaps/cursor-connector.xpm: A cursor for connector context.
2478 2005-08-18  Jon A. Cruz  <jon@joncruz.org>
2480         * src/knot.cpp: Corrected type conflict for crash bugs.
2482 2005-08-18  Ralf Stephan <ralf@ark.in-berlin.de>
2484         * src/Doxyfile: added 4 more files
2485         * src/extension/implementation/plugin-link.h,
2486           src/extension/internal/gimpgrad.cpp:  improved doxygen documentation
2487           
2488 2005-08-16  Ralf Stephan <ralf@ark.in-berlin.de>
2490         * src/desktop.h, src/desktop.cpp: replaced gboolean with bool
2491         * src/display/curve.cpp: made is_moveto() inline
2492         * src/knot.cpp, src/extension/extension.cpp, src/helper/action.cpp:
2493           added editor footer
2494         * src/desktop.h, src/desktop.cpp, src/knot.cpp, src/sp-gradient.cpp,
2495           src/display/curve.cpp, src/extension/extension.cpp,
2496           src/extension/implementation/plugin.h, 
2497           src/extension/implementation/plugin.cpp,
2498           src/extension/internal/gimpgrad.cpp, src/helper/action.cpp:
2499           improved doxygen documentation
2501 2005-08-14  MenTaLguY  <mental@rydia.net>
2503         * src/widgets/layer-selector.cpp: quick fix for crash bug when
2504           deleting unnamed layer [bug 1255843]
2506 2005-08-14  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2507         
2508         * packaging/macosx/ScriptExec/main.c: Allow the user to ignore the
2509           automatic fixing of the fontconfig problem and fix the problem
2510           manually.  Don't pop up the dialog again in this case when they
2511           relaunch Inkscape.
2513 2005-08-13  Ralf Stephan <ralf@ark.in-berlin.de>
2515         * src/menus-skeleton.h: fixed cvs bug where, in the default menus.xml, 
2516           given submenus didn't have correct names, so translation on 
2517           non-English systems was missed.
2518         
2519 2005-08-13  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2521         * packaging/macosx/Resources/script, packaging/macosx/ScriptExec/main.c:
2523         Fix for the fontconfig cache problem on OS X 10.4.  The first time 
2524         Inkscape is launched on 10.4 machines, after checking X11 is available,
2525         a dialog is brought up informing users of the fontconfig problem.  The
2526         dialog has a button to run fc-cache as root.  If chosen, an OS X
2527         authentication dialog in launched and fc-cache is run following the
2528         authentication.  A file is stored in ~/.inkscape to mark that fc-cache
2529         has been run.
2530         
2531 2005-08-11  Ralf Stephan <ralf@ark.in-berlin.de>
2533         * src/sp-gradient.cpp,src/sp-gradient-fns.h,src/event-context.h,
2534           src/event-context.cpp:  replaced gboolean with bool
2535         * src/document-undo.cpp:  added editor footer
2536         * src/sp-gradient.cpp, src/desktop.cpp, src/document.h,
2537           src/document.cpp, src/document-undo.cpp, src/event-context.h,
2538           src/event-context.cpp, src/selection.h:
2539           improved doxygen documentation
2541 2005-08-10      David Yip       <yipdw@rose-hulman.edu>
2543         * src/Makefile_insert: added composite-undo-stack-observer.{cpp,h}
2545         * src/document.{cpp.h},
2546           src/document-undo.cpp, src/document-private.h: 
2547           added hooks for undo stack observer
2549         * src/jabber_whiteboard/Makefile_insert: added new classes
2551         * src/jabber_whiteboard/callbacks.cpp: moved document initialization actions
2552           here (not the best idea, admittedly...)
2554         * src/jabber_whiteboard/connection-establishment.cpp,
2555           src/jabber_whiteboard/session-manager.*,
2556           src/jabber_whiteboard/chat-handler.cpp: updated to work with new listeners
2558         * src/jabber_whiteboard/message-contexts.cpp,
2559           src/jabber_whiteboard/message-handler.*,
2560           src/jabber_whiteboard/message-tags.*,
2561           src/jabber_whiteboard/defines.h: new message types (TODO: trim out dead
2562           types)
2564         * src/jabber_whiteboard/message-queue.*,
2565         * src/jabber_whiteboard/message-node.h: made MessageNode capable of
2566           representing more message types, as required by callbacks.cpp
2567           and new commit model
2569         * src/jabber_whiteboard/message-utilities.*: new utilities, although
2570           this entire class should be going bye-bye soon (its main tasks have been
2571           taken over by SerializerNodeObserver)
2573         * src/jabber_whiteboard/node-tracker.*: removal of node-level locks
2575         * src/jabber_whiteboard/node-utilities.*: removal of unnecessary methods;
2576           this class should also be removed soon
2578         * src/jabber_whiteboard/session-file-selector.cpp: miscellaneous tweaks
2580         * src/jabber_whiteboard/typedefs.h: new type definitions to handle the new
2581           commit model (TODO: prune unnecessary types)
2583         * src/xml/event.cpp: small hack to get Inkboard working (shouldn't be
2584           there, but I'm still learning my way around XML::Node and
2585           XML::Session...help welcome)
2587         * src/undo-stack-observer.h: interface for classes that watch undo, redo,
2588           and undo log commit events
2590         * src/composite-undo-stack-observer.*: similar to CompositeNodeObserver;
2591           combines multiple undo stack observers
2593         * src/jabber_whiteboard/serializer-node-observer.*: XML::Event serializer
2595         * src/jabber_whiteboard/deserializer.*: XML::Event deserializer
2597         * src/jabber_whiteboard/tracker-action-observer.*: simple observer to
2598           watch for added and removed nodes in undo/redo actions (put aside for
2599           now)
2601         * src/jabber_whiteboard/undo-stack-observer.*: Inkboard's undo stack
2602           observer implementation
2604 2005-08-10  Ralf Stephan <ralf@ark.in-berlin.de>
2606         * src/main.cpp: introduced doxygen doc main page with links
2608 2005-08-09  Ralf Stephan <ralf@ark.in-berlin.de>
2610         * src/Doxyfile: added 5 more files
2611         * src/display/curve.h, src/display/curve.cpp, src/knot.cpp,
2612           src/dialogs/export.cpp: replaced gboolean with bool
2613         * src/display/curve.cpp: removed sp_curve_finish() as it is nowhere 
2614           called, made sp_curve_ensure_space() static
2615         * src/sp-object.cpp, src/sp-item.cpp, src/libnr/n-art-bpath.h,
2616           src/libnr/nr-path-code.h, src/ui/view/view.cpp, src/dialogs/export.cpp,
2617           src/display/bezier-utils.cpp, src/display/curve.h,
2618           src/display/curve.cpp, src/knot.h, src/knot.cpp:
2619           improved doxygen documentation
2621 2005-08-08  MenTaLguY  <mental@rydia.net>
2623         * README.txt, README: make autotools happy
2625 2005-08-06  MenTaLguY  <mental@rydia.net>
2627         * Makefile.am, HACKING, HACKING_de, HACKING_fr, HACKING_it,
2628           HACKING.txt, HACKING.de.txt, HACKING.fr.txt, HACKING.it.txt,
2629           README, README_ca, README_de, README_fr, README_it,
2630           README.txt, README.ca.txt, README.de.txt, README.fr.txt, README.it.txt:
2632           saner filenames
2634 2005-08-06  MenTaLguY  <mental@rydia.net>
2636         * src/xml/Makefile_insert, src/xml/log-builder.cpp,
2637           src/xml/log-builder.h, src/xml/simple-session.cpp,
2638           src/xml/simple-session.h:
2640           Implement XML::LogBuilder class and use it from XML::SimpleSession.
2642 2005-08-06  MenTaLguY  <mental@rydia.net>
2644         * src/xml/event.h, src/xml/event.cpp, src/xml/event-fns.h:
2645           rejigger the way XML event logs are handled, based on NodeObservers
2647 2005-08-06  MenTaLguY  <mental@rydia.net>
2649         * src/xml/simple-session.cpp: minor formatting cleanups
2651 2005-08-06  Ted Gould <ted@gould.cx>
2653         * src/interface.cpp, src/verbs.cpp, src/verbs.h:
2655         Adding in a hash table for Verb ID lookups.  This makes searching for them
2656         in the dynamic menus much faster.
2658 2005-08-06  Ralf Stephan <ralf@ark.in-berlin.de>
2660         * src/sp-offset.cpp: 
2661           removed a dependency, made refresh_offset_source() static
2662         * src/svg-view.cpp, src/svg-view.h, src/sp-spiral.cpp, src/sp-spiral.h: 
2663           replaced gboolean with bool
2664         * src/sp-offset.cpp, src/sp-root.cpp, src/sp-stop.h, src/sp-spiral.h,
2665           src/sp-spiral.cpp, src/svg-view.h, src/svg-view.cpp, src/style.cpp:
2666           improved doxygen documentation
2667         
2668 2005-08-05  MenTaLguY  <mental@rydia.net>
2670         * inkscape.spec.in: include translated manpages
2672 2005-08-05  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2674         * po/nl.po: fix a typo: close a bold tag.
2676 2005-08-03      David Yip       <yipdw@rose-hulman.edu>
2678         * src/jabber_whiteboard/typedefs.h:
2679           fixed incorrect template specialization syntax,
2680           removed duplicate definitions (oops...)
2682         * src/gc-alloc.h:
2683           removed explicit keyword from allocator constructors, as it is
2684           necessary to allow implicit conversion for rebinding.  Some
2685           containers in the libstdc++ in GCC 3.4.x require this, such as anything
2686           using the standard library's red-black tree implementation --
2687           std::set, std::map, std::multimap
2689 2005-08-03  Ralf Stephan <ralf@ark.in-berlin.de>
2691         * src/pen-context.cpp: made sp_pen_context_root_handler static
2692         * src/snap.h: removed getSnapToBBox() declaration
2693         * src/sp-stop.h: removed three dependencies
2694         * src/Doxyfile: added further 3 files
2695         * src/object-hierarchy.cpp, src/pen-context.h, src/pen-context.cpp,
2696           src/pencil-context.h, src/pencil-context.cpp, src/snap.h, 
2697           src/snap.cpp, src/sp-stop.h, src/sp-gradient.h, src/sp-gradient.cpp,
2698           src/sp-linear-gradient.h, src/sp-radial-gradient.h:
2699           improved doxygen documentation
2701 2005-08-03      David Yip       <yipdw@rose-hulman.edu>
2703         * src/jabber_whiteboard/Makefile_insert,
2704           src/jabber_whiteboard/message-handler.cpp,
2705           src/jabber_whiteboard/empty.cpp:
2706           fixing some build issues (Apple's ar doesn't like creating
2707           archives with an empty member list, so empty.cpp is a null
2708           placeholder to be used as the sole member in the jabber_whiteboard
2709           archive in the event that a user does not wish to enable
2710           Inkboard)
2712 2005-08-02  Bryce Harrington <bryce@bryceharrington.org>
2714         * src/ui/dialog/*.*:  Update copyrights
2716         * doc/WISHLIST:  s/Sodipodi/Inkscape/
2718         * src/desktop.cpp:  Rename SPView to Inkscape::UI::View::View
2720         * changing include file syntax from "" to <> where appropriate
2722         * Changing copyrights to be consistent
2724 2005-08-03      David Yip       <yipdw@rose-hulman.edu>
2726         * src/menus-skeleton.h:
2727           added WITH_INKBOARD ifdef to prevent Inkboard options from being
2728           compiled into the menu skeleton if the Inkboard code is not enabled
2730 2005-08-03  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2732         *  src/display/curve.cpp: Correctly free an array with "delete []".
2734 2005-08-02      David Yip       <yipdw@rose-hulman.edu>
2736         * src/jabber/whiteboard/node-tracker.cpp:
2737           removed unnecessary anchoring of XML::Nodes in XMLNodeTracker
2739 2005-08-02      David Yip       <yipdw@rose-hulman.edu>
2741         * src/jabber_whiteboard/typedefs.h:
2742           moved back to GC::Alloc from traceable_allocator
2744         * src/jabber_whiteboard/node-tracker.cpp:
2745           fixed anchor-release problem with XML::Nodes in XMLNodeTracker
2747 2005-08-01  MenTaLguY  <mental@rydia.net>
2749         * src/gc.cpp, src/gc-core.h: Hans says it's okay to use
2750           GC_malloc_atomic_uncollectable
2752 2005-08-01  MenTaLguY  <mental@rydia.net>
2754         * src/gc-alloc.h: fix improper allocation size
2756 2005-08-01      David Yip       <yipdw@rose-hulman.edu>
2758         * src/jabber_whiteboard/message-handler.cpp: removed some
2759           debug output
2761         * src/dialogs/whiteboard-sharewithchat.cpp: removed some excess
2762           debugging code
2764         * src/jabber_whiteboard/session-manager.cpp: removed 
2765           redundant if (x == NULL) tests surrounding delete
2767 2005-08-01      David Yip       <yipdw@rose-hulman.edu>
2769         * src/ui/icons.cpp, src/ui/stock-items.cpp, src/ui/stock.cpp, 
2770           src/ui/stock.h:
2771           added Inkboard UI stock items
2773         * src/dialogs/whiteboard*:
2774           old C/Gtk Inkboard dialogs for collecting user input necessary
2775           to establish Jabber connections and Inkboard sessions (they're
2776           still used in some parts of the Inkboard code)
2778         * src/Makefile.am, src/Makefile_insert, src/desktop.cpp, 
2779           src/desktop.h, src/document.cpp, src/file.cpp, src/file.h,
2780           src/menus-skeleton.h, src/verbs.cpp, src/verbs.h:
2781           added necessary UI code to access Inkboard functions
2783         * src/jabber_whiteboard/Makefile_insert,
2784           src/jabber_whiteboard/buddy-list-manager.*,
2785           src/jabber_whiteboard/callbacks.*,
2786           src/jabber_whiteboard/chat-handler.*,
2787           src/jabber_whiteboard/connection-establishment.*,
2788           src/jabber_whiteboard/defines.h,
2789           src/jabber_whiteboard/error*,
2790           src/jabber_whiteboard/internal-constants.*,
2791           src/jabber_whiteboard/invitation-confirm-dialog.*,
2792           src/jabber_whiteboard/jabber-handlers.*,
2793           src/jabber_whiteboard/makefile*,
2794           src/jabber_whiteboard/message-*,
2795           src/jabber_whiteboard/node-*,
2796           src/jabber_whiteboard/received-message-helpers.cpp,
2797           src/jabber_whiteboard/player-functors.*,
2798           src/jabber_whiteboard/session-*,
2799           src/jabber_whiteboard/tracker-node.h,
2800           src/jabber_whiteboard/typedefs.h:
2801           Initial commit of Inkboard code
2802         * src/ui/dialog/session-player*,
2803           src/ui/dialog/whiteboard*:
2804           C++/Gtkmm replacements for some old C/Gtk dialogs
2805         * configure.ac:
2806           added Inkboard configure checks
2807         * src/ui/view/edit.cpp,
2808           src/ui/view/edit.h,
2809           src/ui/view/view.cpp:
2810           added Inkboard code stubs to new Gtkmm code
2811         * share/ui/menus-bars.xml:
2812           added Inkboard code stubs to menu UI XML
2814 2005-08-01  Ralf Stephan <ralf@ark.in-berlin.de>
2816         * src/sp-object.cpp: improved doxygen documentation
2818 2005-07-31  Ralf Stephan <ralf@ark.in-berlin.de>
2820         * src/nodepath.cpp: removed three dependencies
2822 2005-07-31  MenTaLguY  <mental@rydia.net>
2824         * src/sp-object.cpp, src/sp-object.h, src/sp-use.cpp:
2825           adopt more consistent refcounting policy
2827         * src/sp-object.h: make second parameter to sp_object_ref and
2828           sp_object_unref optional
2830 2005-07-30  Ralf Stephan <ralf@ark.in-berlin.de>
2832         * src/draw-anchor.cpp, src/nodepath.h: reduced dependencies
2833         * src/nodepath.cpp: removed duplicate dependency, added two from 
2834           nodepath.h, made triangle_area() inline
2835         * src/node-context.cpp: added dependency removed from nodepath.h
2836         * src/Doxyfile: added 2 further files to the scanned list
2837         * src/nodepath.h: moved function docs into nodepath.cpp
2838         * src/color.cpp: made file work with src/Doxyfile
2839         * src/color.cpp, src/draw-anchor.cpp, src/geom.cpp, src/nodepath.cpp:
2840           improved doxygen documentation
2841         * src/event-context.cpp: added a \todo
2842         * src/geom.cpp: added editor footer
2844 2005-07-30  Ted Gould  <ted@gould.cx>
2846         * src/Makefile_insert, src/inkscape.cpp, src/inkscape.h,
2847         src/interface.cpp, src/selection.cpp, src/verbs.cpp, src/verbs.h,
2848         src/extension/effect.cpp, src/extension/effect.h, src/menus-skeleton.h:
2850         Doing two things.  One, making menus configurable by an external xml file
2851         and the second is enabling sensitivity in the verbs.  These are both in
2852         pretty basic states right now, but workable.
2854 2005-07-29  MenTaLguY  <mental@rydia.net>
2856         * src/shortcuts.cpp: made Ctrl+Shift+G the "primary" ungroup shortcut
2858 2005-07-28  Carl Hetherington  <inkscape@carlh.net>
2860         * src/arc-context.cpp: CodingStyle.  Replace gboolean with bool.
2862         * src/desktop-events.cpp: CodingStyle: whitespace.  Add editor
2863         variables block.  gboolean exorcism.  Declaration-to-first-use fixes.
2864         
2866 2005-07-27  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
2868         * src/style.h (SP_SCALE24_MAX): Change from 0xffffff to 0xff0000,
2869           and add documentation for choice of value.
2870           (SP_SCALE24_TO_FLOAT) Return a double instead of a float.
2871           (SP_SCALE24_FROM_FLOAT) Change rounding behaviour.
2872           These changes are intended to combat float rounding bugs on x86.
2874         * src/style.cpp (sp_style_merge_from_style_string): Use libcroco
2875           to parse style="..." attribute strings, to improve CSS parsing.
2877 2005-07-27  Ralf Stephan <ralf@ark.in-berlin.de>
2879         * src/Doxyfile: added 10 further files to the scanned list
2880         * src/gc-anchored.h, src/gc-managed.h, src/object-hierarchy.h, 
2881           src/pencil-context.h, src/selection.h, src/sp-object.h, src/sp-spiral.h, 
2882           src/svg-view.h, src/verbs.h, src/livarot/float-line.h, src/util/list.h, 
2883           src/widgets/paint-selector.h, src/xml/repr.h: 
2884           made file work with src/Doxyfile
2885         * src/livarot/int-line.h, src/livarot/float-line.h: 
2886           moved part of documentation into *.cpp file
2887         * src/gc-anchored.h, src/knot-holder-entity.h, src/nodepath.h, 
2888           src/pen-context.h, src/pencil-context.h, src/selection.h, 
2889           src/sp-gradient.h, src/sp-gradient.cpp, src/sp-item.h, src/sp-object.h, 
2890           src/sp-spiral.h, src/style.h, src/svg-view.h, src/extension/extension.h, 
2891           src/libnr/nr-matrix.h, src/livarot/int-line.h, src/livarot/int-line.cpp, 
2892           src/livarot/float-line.h, src/livarot/float-line.cpp, 
2893           src/livarot/sweep-event.h, src/livarot/sweep-event-queue.h, 
2894           src/util/list.h, src/widgets/paint-selector.h, src/xml/repr.h, 
2895           src/xml/repr.cpp: documentation improvements
2896         * src/sp-item.h: added editor footer
2898 2005-07-26  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
2900         * src/svg/stringstream.h, src/svg/stringstream.cpp:
2901           Trim trailing zeros from after the decimal point when writing
2902           float or double to Inkscape::SVGOStringStream.
2903         * src/style-test.cpp: Update expected output accordingly.
2904         * src/svg/stringstream-test.h: New unit test.
2905         * src/Makefile.am, src/svg/Makefile_insert: Add the new unit test.
2906         * src/svg/Makefile_insert:
2907           Don't link unused ftos.cpp, but do link new file stringstream.cpp.
2909 2005-07-26  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2911         * share/icons/icons.svg: Add icon for connector context.
2913 2005-07-25  Ralf Stephan <ralf@ark.in-berlin.de>
2915         * src/libnr/nr-pixblock.h:  interface cleanup of NRPixBlock: size and mode
2916           are now named enums, empty is now bool, changes to function interfaces 
2917           because of that, changed C macros to C++ inline functions, changed clean 
2918           flag in some function interfaces from int to bool.
2919         * src/libnr/nr-pixblock.cpp:  adaptations due to changes in nr-pixblock.h,
2920           added assert to ...setup_extern() which remains a bit ... risky,
2921         * src/display/sp-canvas.cpp: 
2922           made sp_canvas_item_construct() static, inlined two other functions
2923         * src/svg-view.cpp: piped emit_resized through C++ façade (incomplete)
2924         * src/ui/view/view.h: removed legacyMessageContext() member
2925         * src/Doxyfile: added files, and options to collect todo and bugs
2926         * src/display/curve.cpp: moved member docs into curve.h
2927         * src/event-context.cpp: long line cosmetics, moved a function for clarity
2928         * src/sp-offset.h, src/sp-spiral.cpp, src/svg-view.cpp, 
2929           src/libnr/nr-types.h: added editor footer
2930         * src/color-rgba.h, src/draw-anchor.h, src/event-context.*, src/knot-*.h, 
2931           src/message-*.h, src/modifier-fns.h, src/nodepath.h, 
2932           src/pencil-context.cpp, src/pen-context.*, src/snap.*, src/sp-gradient.h, 
2933           src/sp-gradient-fns.h, src/sp-item.cpp, src/sp-item-notify-moveto.h, 
2934           src/sp-linear-gradient*, src/sp-offset.*, src/sp-radial-gradient*, 
2935           src/sp-spiral.cpp, src/style.cpp, src/svg-view.cpp, src/verbs.cpp, 
2936           src/dialogs/export.cpp, src/display/bezier-utils.cpp, 
2937           src/display/curve.*, src/diplay/sp-canvas.*, 
2938           src/extension/implementation/plugin*, src/extension/internal/gimpgrad.h, 
2939           src/libnr/nr-matrix.h, src/libnr/nr-matrix-scale-ops.h, 
2940           src/libnr/nr-matrix-translate-ops.h, src/libnr/nr-pixblock.*, 
2941           src/libnr/nr-point.h, src/libnr/nr-rotate.h, src/libnr/nr-rotate-fns.h, 
2942           src/libnr/nr-scale-matrix-ops.h, src/libnr/nr-types.h, 
2943           src/livarot/int-line.h, src/ui/view/view.*:
2944           
2945           made file work with src/Doxygen, doxygen documentation improvements
2947 2005-07-24  Ted Gould  <ted@gould.cx>
2949         * 0.42 Release
2951 2005-07-21  Ted Gould  <ted@gould.cx>
2953         * 0.42pre3
2955 2005-05-21  Kees Cook  <kees@outflux.net>
2957         * share/icons/*xpm, src/ui/dialog/transformation.cpp,
2958           src/ui/widget/labelled.cpp, src/ui/widget/labelled.h:
2959           Hooked up Gtkmmified Icon manager correctly.  (bug 1217367)
2960         * Makefile.mingw, Makefile.mingw.common: patch 1241293 for build fixes
2962 2005-07-12  Ted Gould  <ted@gould.cx>
2964         * 0.42pre2
2966 2005-07-11  MenTaLguY  <mental@rydia.net>
2968         * src/debug/logger.cpp: wrap stack vector in method to avoid
2969           potential static initialization issues
2971         * src/sp-object.cpp: add refcount logging
2973 2005-07-09  MenTaLguY  <mental@rydia.net>
2975         * src/document-undo.cpp, src/inkscape.cpp, src/debug/event.h,
2976           src/debug/logger.cpp, src/debug/logger.h, src/debug/simple-event.h,
2977           src/xml/composite-node-observer.cpp, src/xml/event.cpp,
2978           src/xml/simple-node.cpp:
2980           Categorize debugging events and add the ability to filter them
2981           via setting the INKSCAPE_DEBUG_FILTER environment variable to
2982           a comma-separated list of debug event categories.
2984 2005-07-06  Ben Fowler  <bpfowler@users.sourceforge.net>
2986         * src/interface.cpp: Spackle for Bug 1217361 "freeze on quitting 
2987         with transform dialog"
2989 2005-07-06  Ben Fowler  <bpfowler@users.sourceforge.net>
2991         * src/interface.cpp: Whitespace changes only
2993 2005-07-06  Michael Wybrow  <mjwybrow@users.sourceforge.net>
2995         * Info.plist.in, packaging/osx-app.sh, packaging/macosx/*:
2997         Changes and new files required to build an Inkscape dmg on Mac OS X.
2999 2005-07-05  Ted Gould  <ted@gould.cx>
3001         * 0.42pre1
3003 2005-07-04  MenTaLguY  <mental@rydia.net>
3005         * src/sp-metadata.cpp: strip id= attributes under rdf:RDF elements
3007 2005-07-04  MenTaLguY  <mental@rydia.net>
3009         * src/sp-object.cpp, src/xml/node-fns.h, src/xml/node-fns.cpp:
3010           don't force id= attributes on anything except elements in the SVG,
3011           Sodipodi, or Inkscape namespaces.
3013 2005-07-04  MenTaLguY  <mental@rydia.net>
3015         * src/verbs.cpp: redo cryve's fix to use defaultLabel() rather than
3016           label()
3018 2005-07-04  Bryce Harrington <bryce@bryceharrington.org>
3020         * src/livarot/float-line.cpp:  Patch from Ralf Stephan
3021         <ralf@ark.in-berlin.de> to suppress two warnings.
3022         
3023 2005-06-28  Ted Gould  <ted@gould.cx>
3025         * src/verbs.h:
3027         Changing from gnu::hash_map to std::map.  The only reason this was a
3028         hash_map before is because I was stealing code that I didn't understand,
3029         and a std::map works as well.  This fixes bug #1172199 for Tru64.
3031 2005-06-28  Ted Gould  <ted@gould.cx>
3033         * src/extension/dependency.cpp:
3035         Fix for #1169396 -- setting the default type for a dependency to file,
3036         this seems to be the only way that the print function could end up using
3037         undefined memory, and then passing it on the gettext.
3039 2005-06-28  Ted Gould  <ted@gould.cx>
3041         * src/extension/implementation/script.cpp,
3042         src/extension/implementation/script.h:
3044         Adding support for information coming back on STDERR from scripts.  This
3045         fixes bug #1220959 and RFE #1178941
3047 2005-07-04  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
3049         * src/sp-stop.h, sp-gradient.cpp, widgets/gradient-vector.cpp:
3050           Implement currentColor as possible value for stop-color, as per spec.
3052 2005-07-02  Kees Cook  <kees@outflux.net>
3054         * src/dialog/rdf.cpp: Added FreeArt license, RFE #1230981.
3056 2005-06-30  Bryce Harrington <bryce@bryceharrington.org>
3058         * inkscape.nsi:  Fix for bug #1230744 'wrong installer language'
3059         by theadib.
3061         * src/swatches.cpp: Fix for bug #1217973.  The KDE swatches file
3062         consists of 3 column numbers (missing 4th column), and also lacks
3063         an ending newline.  In this situation, the name variable returned
3064         from trim() could be null, thus causing a segfault when used as an
3065         input to Glib::ustring.
3067         * src/sp-image.cpp: Patch for bug #1210100 by bpfowler to help
3068         narrow in on the cause of the bug.
3070         * README:  Requested change for bug #1174991.  Directions for
3071         installation of perl libs
3072         
3073 2005-07-01  Ben Fowler  <bpfowler@users.sourceforge.net>
3075         * src/desktop.cpp src/svg-view.cpp src/dialogs/display-settings.cpp 
3076         src/dialogs/export.cpp src/dialogs/find.cpp 
3077         src/extension/internal/ps.cpp: Replaced calls to gtk_widget_set_usize 
3078         with GTK2 version.
3080 2005-06-30  Bryce Harrington <bryce@bryceharrington.org>
3082         * inkscape.pod, src/main.cpp: Applying Makzu's patch to implement
3083           --vacuum-defs
3085 2005-06-28  Ted Gould  <ted@gould.cx>
3087         * 0.42pre0
3089 2005-06-23  MenTaLguY  <mental@rydia.net>
3091         * src/extension/implementation/script.cpp:
3092           support for ruby scripts (interpreter="ruby")
3094 2005-06-20  Ted Gould  <ted@gould.cx>
3096         * src/desktop.cpp, src/desktop.h, src/document-private.h,
3097         src/document.cpp, src/document.h, src/extension/effect.h,
3098         src/extension/implementation/script.cpp:
3100         Adding in a signal to show that the document is being reconstructed from
3101         another document.  This is used by the scripting extensions implementation
3102         to say to the desktops that they need to save their object references
3103         as strings instead of pointers -- and then recreate them when the
3104         reconstruction is complete.
3106         * src/extension/prefdialog.cpp: Making "OK" have focus.
3108         * src/verbs.cpp, src/verbs.h: Some prototype code to start making verbs
3109         sensitive or not.  Not tied in to anything currently.
3111 2005-06-20  MenTaLguY  <mental@rydia.net>
3113         * src/xml/repr-io.cpp: whoops... don't emit xmlns:xml
3115 2005-06-18  Richard Hughes  <cyreve@users.sourceforge.net>
3117         * src/text-context.cpp, src/text-context.h, src/libnrtype/Layout-TNG.h:
3118           implement double- and triple-clicking of text for selecting the
3119           current word and line respectively
3121 2005-06-16  MenTaLguY  <mental@rydia.net>
3123         * src/interface.cpp: removed "Go to root" context menu item
3125         * src/widgets/layer-selector.cpp: hide "(root)" unless it is the current
3126           layer
3128 2005-06-11  Aaron Spike  <aaron@ekips.org>
3130         * confiugre.ac,
3131           packaging/autopackage/default.apspec.in:
3133           Adding the autopackage specfile
3135 2005-06-10  Richard Hughes  <cyreve@users.sourceforge.net>
3137         * src/text-context.cpp:
3138           use ctrl-left/right for moving cursor by word in text mode,
3139           and ctrl-a for select all text
3141 2005-06-09  Bryce Harrington <bryce@bryceharrington.org>
3143         * src/ui/dialogs/align-and-distribute.cpp,
3144           src/ui/dialogs/align-and-distribute.h,
3145           src/verbs.cpp:
3146           Hooking up Aubanel's new align and distribute dialog
3148 2005-06-09  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
3150         * src/text-context.cpp (sp_text_context_root_handler):
3151           Greater conformance to ISO 14755 for unicode entry.  We now
3152           implement all of the ``Basic method'' portion of that spec
3153           except for non-latin hexadecimal digits (first 6 letters of
3154           other alphabets).  (Instead, we do the same as for all other
3155           shortcuts, viz. force a group0 (latin) interpretation of the
3156           keypress.)
3158 2005-06-07  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
3160         * src/pen-context.cpp (spdc_endpoint_snap): Pen tool: do snapping
3161           (i.e. namedview_free_snap_all_types) even for initial point.
3163         * src/Makefile.am (INCLUDES), src/extension/script/Makefile_insert
3164         (extension_script_libscript_a_CXXFLAGS):
3166           Put PERL_CFLAGS PYTHON_CFLAGS into global INCLUDES rather than
3167           using a libscript_a_CXXFLAGS var (which involved creating .o files
3168           specific to that lib).
3170 2005-06-06  Ted Gould  <ted@gould.cx>
3172         * src/extensions/effect.cpp:
3174         Adding in the code so that effects can be undoable.
3176         * src/extensions/implementation/script.[cpp,h]
3178         Adding in the code so that a new window is not displayed when an
3179         effect is executed.  Now it is in the same window (much nicer).
3181         * src/extensions/internal/latex*.[cpp,h]
3183         Patches from the mailing list to add LaTeX output.
3185 2005-06-04  MenTaLguY  <mental@rydia.net>
3187         * src/extensions/init.cpp:
3189           That tears it.  Showing the error dialog on startup goes.  I've
3190           had to respond to one too many bloody bug reports.  If we released
3191           0.42 with this too we'll drive away users permanently.  As it was,
3192           a lot of people were assuming 0.41 was broken when they saw this
3193           and reverted to 0.40.
3195 2005-05-31  MenTaLguY  <mental@rydia.net>
3197         * src/preferences-skeleton.h: disable extension error dialog on startup
3198           -- I'm sick of hearing that Inkscape is broken because people see
3199           this dialog on startup.  It makes us look bad.
3200           
3201           We're not going to repeat this for 0.42 -- find a better approach.
3203 2005-05-28  MenTaLguY  <mental@rydia.net>
3205         * src/document.cpp, src/sp-ellipse.cpp, src/sp-flowdiv.cpp,
3206           src/sp-flowtext.cpp, src/sp-object.cpp, src/sp-object.h,
3207           src/sp-path.cpp, src/sp-rect.cpp, src/sp-root.cpp, src/sp-root.h,
3208           src/sp-shape.cpp, src/version.cpp, src/version.h:
3210           propagate SVG version upwards, and move SPVersion into Inkscape
3211           namespace
3213 2005-05-24  Simarilius  <Simarilius@yahoo.com>
3215         * src/verbs.cpp, src/dialogs/tiledialog.cpp, src/dialogs/tiledialog.h,
3216         src/ui/dialogs/dialog-manager.cpp
3217         
3218         Converted the tiledialog over to the inkscape:ui:dialog class and hooked
3219         it into dialog manager
3221 2005-05-24  Ted Gould  <ted@gould.cx>
3223         * src/extension/dependency.cpp, src/extension/extension.cpp,
3224         src/extension/extension.h, src/extension/init.cpp,
3225         src/extension/implementation/script.cpp:
3227         Applying patch 1199856 which allows Inkscape to have multiple directories
3228         for extensions.  Currently those are /share/inkscape/extensions and
3229         ~/.inkscape/extensions.  The patch was written by Aaron Spike.
3231 2005-05-23  Ted Gould  <ted@gould.cx>
3233         * share/extensions/<alot>
3235         Adding in Aaron Spike's extensions so that they come with the standard
3236         build.  Lot's of useful stuff that is worth having for most users.
3238 2005-05-19  MenTaLguY  <mental@rydia.net>
3240         * src/verbs.cpp, src/ui/dialog/align-and-distribute.h,
3241           src/ui/dialog/dialog-manager.cpp, src/ui/dialog/dialog-manager.h,
3242           src/ui/dialog/document-preferences.h, src/ui/dialog/export.h,
3243           src/ui/dialog/extension-editor.h, src/ui/dialog/fill-and-stroke.h,
3244           src/ui/dialog/find.h, src/ui/dialog/inkscape-preferences.h,
3245           src/ui/dialog/layer-editor.h, src/ui/dialog/messages.h,
3246           src/ui/dialog/text-properties.h, src/ui/dialog/transformation.h,
3247           src/ui/dialog/xml-editor.h, src/ui/view/edit.cpp:
3249           refactoring of the dialog manager code, introducing factory
3250           functions and a method specifically for showing a dialog
3252 2005-05-19  MenTaLguY  <mental@rydia.net>
3254         * src/widgets/layer-selector.cpp, src/widgets/layer-selector.h:
3256           fix layer property undo crash bugs (#1192708 and #1171704)
3258 2005-05-19  MenTaLguY  <mental@rydia.net>
3260         * src/debug/Makefile_insert, src/debug/sysv-heap.cpp,
3261           src/debug/sysv-heap.h, src/gc.cpp, src/debug/gc-heap.h,
3262           src/debug/heap.cpp:
3264           moved GC Heap statistics stuff into libdebug to ease circular
3265           dependencies
3267 2005-05-17  MenTaLguY  <mental@rydia.net>
3269         * src/ui/dialog/memory.cpp:
3271           reduce magnitude of memory jitter somewhat by avoiding some vector
3272           resizing and copying
3274 2005-05-16  MenTaLguY  <mental@rydia.net>
3276         * src/gc.cpp, src/debug/heap.cpp, src/debug/heap.h:
3278           revised Debug::Heap API slightly
3280         * src/ui/dialog/memory.cpp, src/ui/dialog/memory.h:
3282           thousands separators and other niceties.  'apply' now forces a
3283           garbage collection and immediate update.
3285 2005-05-16  MenTaLguY  <mental@rydia.net>
3287         * src/ui/dialog/memory.cpp: re-use existing rows, though it doesn't
3288           seem to help memory jitter much
3290 2005-05-15  MenTaLguY  <mental@rydia.net>
3292         * src/debug/heap.cpp: fix bounds error
3294         * src/ui/dialog/memory.cpp, src/ui/dialog/memory.h:
3295         
3296         flesh out basic memory info dialog
3298 2005-05-15  MenTaLguY  <mental@rydia.net>
3300         * configure.ac: cleaned up tests
3302         * src/debug/heap.cpp: fixed feature macro names
3304 2005-05-15  MenTaLguY  <mental@rydia.net>
3306         * configure.ac: added tests for mallinfo and malloc.h
3308         * src/gc.cpp, src/debug/heap.cpp, src/debug/heap.h:
3310           fix up Debug::Heap API slightly
3312 2005-05-14  MenTaLguY  <mental@rydia.net>
3314         * src/interface.cpp, src/verbs.cpp, src/verbs.h,
3315           src/ui/dialog/Makefile_insert, src/ui/dialog/dialog-manager.cpp,
3316           src/ui/dialog/dialog-manager.h, src/ui/dialog/memory.cpp,
3317           src/ui/dialog/memory.h:
3318           
3319           added skeletal memory statistics dialog
3321 2005-05-12  Juerg Billeter  <j@bitron.ch>
3323         * configure.ac: Have pkgconfig explicitly require gdkmm-2.4 & glibmm-2.4
3324         (used directly by Inkscape), rather than relying on transitive
3325         dependencies.  It's said that this is required in some cases with
3326         pkgconfig 0.17 and later.
3328 2005-05-08  Bryce Harrington <bryce@bryceharrington.org>
3330         * ChangeLog configure.ac src/Makefile_insert src/desktop-widget.h
3331           src/desktop.h src/dropper-context.cpp src/file.cpp
3332           src/shortcuts.cpp src/sp-text.cpp src/splivarot.cpp
3333           src/svg-view.h src/text-context.cpp src/verbs.cpp
3334           src/extension/implementation/plugin-link.h
3335           src/extension/internal/grid.cpp src/helper/action.h
3336           src/helper/window.cpp src/ui/dialog/dialog.cpp
3337           src/ui/dialog/messages.cpp src/ui/view/view.cpp
3338           src/ui/view/view.h:   
3340           Moving view.* into src/ui/view/
3341         
3342 2005-05-09  MenTaLguY  <mental@rydia.net>
3344         * src/gc-alloc.h: const-correctness fix
3346 2005-05-08  Bryce Harrington <bryce@bryceharrington.org>
3348         * configure.ac:  Defaulting with-gnome-vfs to on if library is
3349           present. 
3350         
3351         * po/POTFILES.in : Fixed error causing compile failure
3353         * src/Makefile_insert src/arc-context.cpp src/desktop-events.cpp
3354            src/desktop.cpp src/desktop.h src/dyna-draw-context.cpp
3355            src/gradient-context.cpp src/gradient-toolbar.cpp
3356            src/interface.cpp src/make.dep src/make.files
3357            src/rect-context.cpp src/select-context.cpp
3358            src/select-toolbar.cpp src/seltrans.cpp src/spiral-context.cpp
3359            src/star-context.cpp src/toolbox.cpp src/verbs.cpp src/view.cpp
3360            src/view.h src/application/application.cpp
3361            src/application/application.h src/application/editor.cpp
3362            src/application/editor.h src/ui/dialog/align-and-distribute.cpp
3363            src/ui/dialog/align-and-distribute.h
3364            src/ui/dialog/dialog-manager.cpp src/ui/dialog/dialog-manager.h
3365            src/ui/dialog/dialog.cpp src/ui/dialog/dialog.h
3366            src/ui/dialog/document-preferences.cpp
3367            src/ui/dialog/document-preferences.h src/ui/dialog/export.cpp
3368            src/ui/dialog/export.h src/ui/dialog/extension-editor.cpp
3369            src/ui/dialog/extension-editor.h
3370            src/ui/dialog/fill-and-stroke.cpp
3371            src/ui/dialog/fill-and-stroke.h src/ui/dialog/find.cpp
3372            src/ui/dialog/find.h src/ui/dialog/inkscape-preferences.cpp
3373            src/ui/dialog/inkscape-preferences.h
3374            src/ui/dialog/layer-editor.cpp src/ui/dialog/layer-editor.h
3375            src/ui/dialog/messages.h src/ui/dialog/text-properties.cpp
3376            src/ui/dialog/text-properties.h
3377            src/ui/dialog/transformation.cpp src/ui/dialog/transformation.h
3378            src/ui/dialog/tree-editor.h src/ui/dialog/xml-editor.cpp
3379            src/ui/dialog/xml-editor.h src/ui/view/Makefile_insert
3380            src/ui/view/edit.cpp src/ui/view/edit.h :
3382            Renaming sp-desktop-widget.h to desktop-widget.h for
3383            consistency with other desktop files.  Beginning migration of
3384            desktop-* and view* files into ui/view/ subdir.  Incorporating
3385            DialogManager into existing SPDesktop code.  Making SPView
3386            derive from GObject.  Changing Messages dialog to run via
3387            DialogManager.  Removing getName() and getDesc() routines from
3388            Dialogs.  
3389         
3390 2005-05-08  MenTaLguY  <mental@rydia.net>
3392         * src/Makefile_insert: change link order since the GC code now
3393           depends on the debugging stuff
3395         * src/debug/Makefile_insert, src/debug/heap.cpp, src/debug/heap.h:
3397           added heap statistics stuff
3399         * src/gc.cpp: register the GC heap with the heap statistics facility
3401 2005-05-07  MenTaLguY  <mental@rydia.net>
3403         * src/gc-anchored.h, src/gc-core.h, src/gc-finalized.h,
3404           src/gc-managed.h, src/gc.cpp:
3406           hide the global Ops structure from the outside world, and expose
3407           some additional libgc API.
3409 2005-05-07  Ted Gould  <ted@gould.cx>
3411         * src/extension/parameter.cpp: bug fix for empty string parameter
3413         * share/extensions/dropshadow.inx,
3414         src/extension/implementation/script.cpp:
3416         Adding in an "interpreter" attribute for "command" that will prepend
3417         the command with the interpreter.  Right now only "perl" and "python"
3418         work, and they only prepend "perl" and "python", but more will be
3419         added later.
3421 2005-05-07  MenTaLguY  <mental@rydia.net>
3423         * src/xml/composite-node-observer.cpp: bug fixes
3425         * src/xml/simple-node.cpp, src/xml/simple-node.h: switch to using
3426           CompositeNodeObserver, which has saner add/remove semantics
3428         * src/util/list-container-test.cpp: add another test, just to be sure
3430         * src/dialogs/xml-tree.cpp: remove need for is_interactive flag on
3431           attribute changes (the flag is effectively disabled by the other
3432           changes)
3434 2005-05-05  MenTaLguY  <mental@rydia.net>
3436         * src/debug/event.h, src/debug/logger.cpp:
3438           PropertyPair is now its own class
3439         
3440         * src/xml/simple-node.cpp: add logging of XML node mutation
3442         * src/xml/Makefile_insert, src/xml/composite-node-observer.cpp,
3443           src/xml/composite-node-observer.h:
3445           added CompositeNodeObserver class, which will eventually replace
3446           the existing notifier lists
3448 2005-05-05  MenTaLguY  <mental@rydia.net>
3450         * src/inkscape.cpp: try to cleanly terminate log in case of crashes
3452 2005-05-05  MenTaLguY  <mental@rydia.net>
3454         * src/document-undo.cpp, src/debug/Makefile_insert, src/debug/logger.cpp,
3455           src/debug/simple-event.h, src/xml/event.cpp:
3457           add debug logging for undo+redo+transactions
3459 2005-05-05  MenTaLguY  <mental@rydia.net>
3461         * src/inkscape.cpp, src/main.cpp: initialize and shutdown debug log
3462           from more reliable place
3464         * src/debug/logger.cpp: clean up log via std::atexit()
3466 2005-05-04  MenTaLguY  <mental@rydia.net>
3468         * configure.ac, src/Makefile.am, src/Makefile_insert,
3469           src/debug/Makefile_insert, src/debug/makefile.in:
3471           added src/debug/ subdir
3473         * src/gc-alloc.h: no default management type for now
3475         * src/debug/event-tracker.h, src/debug/event.h, src/debug/logger.cpp,
3476           src/debug/logger.h: simple XML logging facility
3478         * src/util/Makefile_insert: fixed cut-and-paste error
3480 2005-04-29  Jon A. Cruz  <jon@joncruz.org>
3481         * src/dialogs/swatches.cpp, src/dialogs/eek-preview.h,
3482           src/dialogs/eek-preview.cpp:
3484         Added property to swatch to block taking focus.
3486 2005-04-28  Jon A. Cruz  <jon@joncruz.org>
3487         * src/dialogs/Makefile_insert, src/dialogs/eek-preview.cpp,
3488           src/dialogs/eek-preview.h, src/dialogs/swatches.cpp,
3489           src/dialogs/swatches.h, src/ui/previewholder.cpp,
3490           src/ui/previewable.h, src/ui/widget/panel.cpp:
3492           Adding new widget for color swatch usage.
3494 2005-04-24  Bryce Harrington <bryce@bryceharrington.org>
3496         * src/Makefile.am src/Makefile_insert,
3497           src/application/Makefile_insert, src/application/editor.cpp,
3498           src/application/editor.h, src/extension/internal/svg.cpp,
3499           src/ui/Makefile_insert, src/ui/view/Makefile_insert,
3500           src/ui/view/edit.cpp, src/ui/view/edit.h, src/ui/view/makefile.in,
3501           src/application/editor-impl.cpp, src/application/editor-impl.h:
3503           Renaming EditorImpl to UI::View::Edit
3505           Fixing bug 1185873 "batch mode crasher" caused by VFS being
3506           called with relative paths.  Adding a check to see whether the
3507           input is a valid uri, and if not, just calling sp_document_new
3508           directly.
3511 2005-04-23  Ted Gould  <ted@gould.cx>
3513         * src/extension/input.cpp, src/extension/input.h,
3514         src/extension/output.cpp, src/extension/output.h,
3515         src/extension/system.cpp, src/extension/implementation/implementation.cpp,
3516         src/extension/implementation/implementation.h,
3517         src/extension/implementation/plugin-link.h,
3518         src/extension/implementation/plugin.cpp,
3519         src/extension/implementation/plugin.h,
3520         src/extension/implementation/script.cpp,
3521         src/extension/implementation/script.h, src/extension/internal/eps-out.cpp,
3522         src/extension/internal/eps-out.h:
3524         Changing the prototype for the input/output preferences to be closer to
3525         that of Effects.  This is a good thing because now autogui can be used for
3526         all, and it is much cleaner.  Unfortunately, this caused alot of files to
3527         be changed.  Also, this sets up the extensions dialog (we're only using
3528         one now) to be integrated into the GTKmm codebase easier.
3530 2005-04-21  Jon A. Cruz  <jon@joncruz.org>
3531         * src/widgets/sp-color-wheel-selector.cpp,
3532           src/widgets/sp-color-scales.h, src/widgets/sp-color-slider.cpp,
3533           src/widgets/sp-color-scales.cpp:
3534         Changed CMYK selector to display values as 0-100. Fixes REF #1124499.
3536 2005-04-21  Jon A. Cruz  <jon@joncruz.org>
3537         * src/xml/repr-io.cpp:
3538         Expand entities; matches 0.41 behavior. Fixes bug #1157478.
3540 2005-04-20  Jon A. Cruz  <jon@joncruz.org>
3541         * src/sp-object-repr.cpp:
3542         Turned off the half-done <animate> element. Fixes bug #1119935.
3544 2005-04-19  Carl Hetherington  <inkscape@carlh.net>
3546         * src/pen-context.cpp: snap first point to grid correctly, fixing
3547         #1152057.  Remove a pointless call to spdc_endpoint_snap().
3549         * src/main.cpp: support for command-line export of PS and EPS,
3550         with options.
3552 2005-04-19  Piers Titus van der Torren  <piersvdt@users.sourceforge.net>
3553         * src/seltrans.cpp:
3554         Fixed skew so it displays and snaps to angle instead of percentage.
3556 2005-04-18  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
3558         * src/extension/internal/pov-out.cpp (PovOutput::save):
3559         Was dividing component bytes by 256 instead of the usual 255 to get
3560         floating point component.  Changed to use sp_color_get_rgb_floatv
3561         instead.  (N.B. This change is wrong if pov files disallow 1.0.)
3563         Multiply opacity by product of all ancestors' opacity property computed
3564         value.
3566 2005-04-18  Carl Hetherington  <inkscape@carlh.net>
3568         * src/sp-line.cpp, src/dialogs/unclump.cpp,
3569         src/extension/internal/ps.cpp,
3570         src/libnrtype/Layout-TNG-Output.cpp,
3571         src/Layout-TNG-Scanline-Makers.cpp, src/livarot/PathCutting.cpp:
3572         add missing include of nr-point-matrix-ops.h.
3574 2005-04-17  Jon A. Cruz  <jon@joncruz.org>
3575         * src/toolbox.cpp:
3577         Corrected improper use of static. Fixes bug #1171919.
3579 2005-04-16  Ted Gould  <ted@gould.cx>
3581         * src/extension/extension.cpp, src/extension/parameter.cpp:
3583         Adding in autogui for strings and booleans.  Also making everything
3584         a little more robust.
3586 2005-04-17  cyreve  <cyreve@users.sourceforge.net>
3588         * src/: sp-text.cpp, sp-text.h, text-context.cpp, text-editing.cpp,
3589           text-editing.h, libnrtype/Layout-TNG-Compute.cpp: hook up keys
3590           for adding rotate= attribute to text elements
3592         * src/libnrtype/Layout-TNG-OutIter.cpp: visual cursor left/right in
3593           counterdirectional text runs
3595 2005-04-16  cyreve  <cyreve@users.sourceforge.net>
3597         * src/: display/nr-arena-glyphs.cpp, libnrtype/FontInstance.cpp,
3598           libnrtype/RasterFont.cpp, libnrtype/font-instance.h,
3599           libnrtype/font-style.h: make miter-limit work for text outlines
3600           (bug 1094430)
3602 2005-04-16  Ted Gould  <ted@gould.cx>
3604         * src/main.cpp:
3606         Added a command-line arguement --extension-directory to find what
3607         extension directory Inkscape is configured for.  This should be 
3608         helpful for external extensions that want to use the same path
3609         as Inkscape itself on their install.
3611         * src/extension/extension.cpp, src/extension/init.cpp:
3613         Putting in half of Aaron's fix, mostly the one to keep things from
3614         crashing, next we need to examine how to add multiple search paths
3615         for extension dependencies.
3617         Also, added a check so that autogui won't create a GUI if there are
3618         no preferences.
3620 2005-04-13  Jon Phillips <jon@rejon.org>
3621         * src/toolbox.cpp: removed code that was beeping and prepped for new
3622           drag-n-drop color swatches.
3624 2005-04-13  cyreve  <cyreve@users.sourceforge.net>
3626         * src/path-chemistry.cpp: wire up converting object to path for
3627           flowtext
3629 2005-04-13  Jon A. Cruz  <jon@joncruz.org>
3630         * src/dialogs/swatches.cpp:
3632         Simple drag-n-drop out from color swatches.
3634 2005-04-12  cyreve  <cyreve@users.sourceforge.net>
3636         * src/: selection-chemistry.cpp, text-context.cpp, text-context.h,
3637           text-editing.cpp, text-editing.h: cut and copy selected text (bug
3638           1175441)
3640 2005-04-12  Ted Gould  <ted@gould.cx>
3642         * src/extension/extension.cpp, src/extension/extension.h,
3643         src/extension/parameter.cpp, src/extension/parameter.h,
3644         src/extension/implementation/script.cpp:
3646         This is support for having command line arguments from the parameters,
3647         mostly this is a quick hack to get Aaron working, I'll clean it up
3648         shortly, I promise.  But, it does seem to be working right now.  More
3649         polish shortly.
3651 2005-04-10  Jon A. Cruz  <jon@joncruz.org>
3652         * src/interface.cpp:
3654         Adding drag-n-drop support for arbitrary images. Fixes bug 1177714.
3657 2005-04-10  Ted Gould  <ted@gould.cx>
3659         * Lots of files:
3661         Moving around the plugins, and disabling the feature.  I've put all
3662         the functionality into the internal directory.  This should allow for
3663         the features to be used until plugins could work.  Also, adding in
3664         features to do autogui with the parameters of a given extension.
3666 2005-04-09  Bryce <bryce@bryceharrington.org>
3668         * src/view.h, src/application/editor-impl.cpp,
3669           src/application/editor-impl.h, src/svg-view.h:
3671           C++-ification.  Created some C++ wrapper member functions for
3672           SPView and SPSVGView, to enable Gtkmmification of SPDesktop
3674 2005-04-09  MenTaLguY  <mental@rydia.net>
3676         * src/selection.cpp, src/selection.h, src/dialogs/align.cpp,
3677           src/extension/implementation/script.cpp,
3678           src/extension/plugin/bluredge.cpp, src/util/glib-list-iterators.h:
3680           excise STL abuse, and fix up the glib list iterators
3682 2005-04-09  MenTaLguY  <mental@rydia.net>
3684         * src/file.cpp, src/interface.cpp, src/shortcuts.cpp,
3685           src/sp-object-repr.cpp, src/sp-skeleton.cpp, src/verbs.cpp,
3686           src/dialogs/export.cpp, src/display/nr-arena-item.cpp,
3687           src/libnrtype/FontFactory.cpp, src/libnrtype/TextWrapper.h,
3688           src/livarot/ShapeMisc.cpp, src/livarot/float-line.cpp:
3690           combined several different 64-bit cleanness patches
3692 2005-04-08 Jon Phillips <jon@rejon.org>
3693         * src/ui/dialog/dialog-manager.cpp src/ui/dialog/dialog-manager.h: 
3694           added copyright statements about dialog manager code I wrote.
3696 2005-04-08  MenTaLguY  <mental@rydia.net>
3698         * src/draw-context.cpp, src/dyna-draw-context.cpp, src/path-chemistry.cpp,
3699           src/selection-chemistry.cpp, src/selection.cpp, src/selection.h,
3700           src/splivarot.cpp, src/extension/plugin/bluredge.cpp,
3701           src/trace/trace.cpp:
3703           renaming Inkscape::Selection methods that deal with XML::Nodes
3705 2005-04-08  MenTaLguY  <mental@rydia.net>
3707         * src/document-undo.cpp: try again with handling incomplete transactions
3708           more gracefully
3710 2005-04-06  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
3712         * src/io/sys.h, src/io/sys.cpp (dir_open, dir_read_utf8name):
3713           New functions: utf8 wrappers around g_dir_open, g_dir_read_name.
3715 2005-04-02  Bryce Harrington <bryce@bryceharrington.org>
3717         * configure.ac share/ui/menus-bars.xml, src/Makefile.am,
3718           src/Makefile_insert, src/file.cpp,
3719           src/application/editor-impl.cpp,
3720           src/application/editor-impl.h,
3721           src/extension/init.cpp, src/extension/input.cpp,
3722           src/extension/system.cpp,
3723           src/extension/implementation/implementation.cpp,
3724           src/extension/implementation/plugin.cpp,
3725           src/extension/implementation/script.cpp,
3726           src/extension/internal/svg.cpp
3727         : Implementing preliminary load-from-URI functionality.
3728         
3730 2005-04-02  MenTaLguY  <mental@rydia.net>
3732         * src/document-undo.cpp, src/xml/event-fns.h, src/xml/event.cpp,
3733           src/xml/event.h:
3735           more debugging info for incomplete transactions
3737 2005-04-02  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
3739         * src/sp-gradient.cpp: Fix crash with cycles in gradient hrefs.
3741 2005-04-01  Jon A. Cruz  <jon@joncruz.org>
3742         * src/ui/widget/panel.h, src/ui/widget/panel.cpp, src/ui/previewholder.h,
3743           src/ui/previewholder.cpp,src/dialogs/swatches.cpp,
3744           src/dialogs/swatches.h:
3745           Added UI for switching palettes
3747 2005-04-01  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
3748         * src/style.cpp (sp_style_merge_from_dying_parent): New function to
3749           combine the styles of the <use> element and its ghost child when
3750           unlinking.
3751         * src/sp-use.cpp: Use it.
3753 2005-03-31  Jon A. Cruz  <jon@joncruz.org>
3754         * src/ui/widget/panel.cpp, src/ui/widget/panel.h, src/path-prefix.h,
3755           src/dialogs/swatches.cpp, src/dialogs/swatches.h
3756           share/palettes/Makefile.am, share/palettes/svg.gpl:
3757           Adding palette loading.
3759 2005-03-31 Jean-François Lemaire <jflemaire@skynet.be>
3760         * share/icons/David_icons.svg: new icon theme by David Christian Berg
3762         * share/icons/README.icons: explanations on how to use the theme
3764 2005-03-30  Jean-François Lemaire <jflemaire@skynet.be>
3765         * share/icons/icons.svg: included the layer menu icons
3767         * src/verbs.cpp: assigned names for the layer menu icons
3769 2005-03-24  Jon A. Cruz  <jon@joncruz.org>
3770         * src/ui/widget/panel.h, src/ui/widget/panel.cpp,
3771           src/ui/previewholder.h, src/ui/previewfillable.h,
3772           src/dialogs/iconpreview.cpp, src/dialogs/swatches.cpp:
3773           Adding panel menu
3775 2005-03-27  Jon Phillips <jon@rejon.org>
3776         * src/toolbox.cpp src/toolbox.h src/ui/dialog/dialog-manager.cpp
3777           src/ui/dialog/dialog-manager.h: Added generic dialog adding,
3778           deleting, and getting and fixed toolboxes to be static with no
3779           warnings.
3781 2005-03-26  Bryce <bryce@bryceharrington.com>
3783         * share/ui/keybindings.rc, share/ui/menus-bars.xml
3784           src/application/editor-impl.cpp, src/application/editor-impl.h,
3785           src/extension/internal/svg.cpp, src/ui/dialog/Makefile_insert,
3786           src/ui/dialog/dialog-manager.cpp,
3787           src/ui/dialog/dialog-manager.h, src/ui/dialog/messages.cpp,
3788           src/ui/dialog/messages.h: Initial implementation of canvas in
3789           gtkmm.  Incorporating Messages dialog.
3792 2005-03-24  MenTaLguY  <mental@rydia.net>
3794         * src/sp-item.cpp: fix relative transforms to accommodate viewbox
3796 2005-03-24  Jon A. Cruz  <jon@joncruz.org>
3798         * src/ui/Makefile_insert, src/dialogs/swatches.cpp,
3799           src/dialogs/swatches.h, src/ui/previewable.h,
3800           src/ui/previewfillable.h, src/ui/previewholder.cpp,
3801           src/ui/previewholder.h:
3802           Refactoring previewable functionality to be more generic
3804 2005-03-24  cyreve  <cyreve@users.sourceforge.net>
3806         * src/: text-context.cpp, text-editing.cpp, text-editing.h:
3807           functions for applying style to selected text, and wire them
3808           up to ctrl-b/ctrl-i for bold/italic
3810 2005-03-23  Jon Phillips <jon@rejon.org>
3811         * src/toolbox.h src/toolbox.cpp: Fixed warning messages.
3813 2005-03-23  Jon A. Cruz  <jon@joncruz.org>
3815         * src/ui/previewable.h, src/ui/Makefile_insert,
3816           src/dialogs/swatches.h, src/dialogs/swatches.cpp:
3817           Preliminary work for 'Previewable' interface.
3819 2005-03-23  cyreve  <cyreve@users.sourceforge.net>
3821         * src/: sp-text.cpp, libnrtype/Layout-TNG-Compute.cpp,
3822           libnrtype/Layout-TNG-Output.cpp: make text on path work correctly
3823           with accent glyphs and suchlike
3825         * src/: text-chemistry.cpp, libnrtype/Layout-TNG.h: apply text's
3826           alignment to startOffset on new textpath elements, fixes bug
3827           1168145
3829         * src/libnrtype/Layout-TNG-OutIter.cpp: selecting text to the end
3830           sometimes displays wrong
3832 2005-03-22  MenTaLguY  <mental@rydia.net>
3834         * src/arc-context.cpp, src/desktop-handles.cpp,
3835           src/desktop-handles.h, src/desktop.cpp, src/desktop.h,
3836           src/document.h, src/draw-context.cpp, src/draw-context.h,
3837           src/file.cpp, src/forward.h, src/gradient-context.cpp,
3838           src/gradient-drag.cpp, src/gradient-drag.h, src/gradient-toolbar.cpp,
3839           src/inkscape-private.h, src/inkscape.cpp, src/node-context.cpp,
3840           src/node-context.h, src/nodepath.cpp, src/object-ui.cpp,
3841           src/path-chemistry.cpp, src/rect-context.cpp, src/selcue.cpp,
3842           src/selcue.h, src/select-context.cpp, src/select-toolbar.cpp,
3843           src/selection-chemistry.cpp, src/selection-chemistry.h,
3844           src/selection-describer.cpp, src/selection-describer.h,
3845           src/selection.cpp, src/selection.h, src/seltrans.cpp,
3846           src/seltrans.h, src/sp-flowtext.cpp, src/spiral-context.cpp,
3847           src/splivarot.cpp, src/star-context.cpp, src/text-chemistry.cpp,
3848           src/text-context.cpp, src/toolbox.cpp, src/verbs.cpp,
3849           src/dialogs/align.cpp, src/dialogs/clonetiler.cpp,
3850           src/dialogs/display-settings.cpp, src/dialogs/fill-style.cpp,
3851           src/dialogs/find.cpp, src/dialogs/iconpreview.cpp,
3852           src/dialogs/item-properties.cpp, src/dialogs/object-properties.cpp,
3853           src/dialogs/stroke-style.cpp, src/dialogs/text-edit.cpp,
3854           src/dialogs/tiledialog.cpp, src/dialogs/transformation.cpp,
3855           src/dialogs/xml-tree.cpp, src/extension/plugin/bluredge.cpp,
3856           src/extension/plugin/grid.cpp, src/trace/trace.cpp,
3857           src/ui/dialog/dialog.cpp, src/ui/dialog/dialog.h,
3858           src/ui/dialog/transformation.cpp, src/ui/dialog/transformation.h,
3859           src/widgets/sp-widget.cpp, src/widgets/sp-widget.h:
3861           SPSelection -> Inkscape::Selection
3863 2005-03-22  cyreve  <cyreve@users.sourceforge.net>
3865         * src/text-context.cpp: pressing esc doesn't hide text selection
3867         * src/: text-context.cpp, text-context.h, text-editing.cpp,
3868           text-editing.h, libnrtype/Layout-TNG-OutIter.cpp,
3869           libnrtype/Layout-TNG.h: make text selection inverse
3871 2005-03-21  Jon Phillips <jon@rejon.org>
3873         * share/icons/icons.svg src/dropper-context.cpp
3874           src/dropper-context.h src/toolbox.cpp src/toolbox.h
3875           src/dialogs/display-settings.cpp: Added controls for eye dropper
3876           so that I could get color values. Removed option from application
3877           preferences.
3879 2005-03-21  MenTaLguY  <mental@rydia.net>
3881         * src/util/Makefile_insert, src/util/glib-list.h,
3882           src/util/glib-list-iterators.h:
3884           retired old Glib list to Util::List adaptor and replaced it with
3885           new iterator classes that directly wrap the Glib list types
3887 2005-03-21  cyreve  <cyreve@users.sourceforge.net>
3889         * src/: text-editing.cpp, libnrtype/Layout-TNG-OutIter.cpp: text
3890           selection doesn't show when it starts at the end of a line
3892         * src/: text-context.cpp, text-editing.cpp: crash on overtyping
3893           selection, and displayed selection not removed on overtype
3895         * src/text-editing.cpp: kerning information placed wrongly in text
3896           after child span element
3898         * src/libnrtype/Layout-TNG-OutIter.cpp: crash when pressing home key
3900         * src/: text-context.cpp, text-context.h: text selection using the
3901           mouse
3903         * src/: make.dep, make.files, make.ofiles,
3904           libnrtype/Layout-TNG-OutIter.cpp: further optimisation of text
3905           selection, and an implementation for text on a path
3907         * src/: text-editing.cpp, libnrtype/Layout-TNG-OutIter.cpp,
3908           libnrtype/Layout-TNG.h: optimisation of text selection and fixing
3909           some bugs in it
3911 2005-03-18  MenTaLguY  <mental@rydia.net>
3913         * src/arc-context.cpp, src/file.cpp, src/gradient-context.cpp,
3914           src/node-context.cpp, src/object-ui.cpp, src/path-chemistry.cpp,
3915           src/rect-context.cpp, src/select-context.cpp,
3916           src/selection-chemistry.cpp, src/selection.cpp, src/selection.h,
3917           src/sp-flowtext.cpp, src/spiral-context.cpp, src/splivarot.cpp,
3918           src/star-context.cpp, src/text-chemistry.cpp, src/text-context.cpp,
3919           src/dialogs/find.cpp, src/dialogs/in-dt-coordsys.cpp,
3920           src/dialogs/xml-tree.cpp:
3922           cleaned up the selection API slightly
3924 2005-03-20  cyreve  <cyreve@users.sourceforge.net>
3926         * src/: text-context.cpp, text-context.h, text-editing.cpp,
3927           text-editing.h, libnrtype/Layout-TNG-OutIter.cpp,
3928           libnrtype/Layout-TNG.h: initial implementation of text selection
3929           (keyboard only)
3931         * src/libnrtype/Layout-TNG-OutIter.cpp: making
3932           createSelectionShape() work
3934         * src/: sp-text.cpp, sp-text.h: text-anchor sometimes won't work in
3935           text on a path when x/y coordinates are set
3937         * src/libnrtype/Layout-TNG-Output.cpp: text on path: cut characters
3938           before start of path and calculate bounding box correctly when
3939           this happens
3941 2005-03-14  Jon A. Cruz  <jon@joncruz.org>
3942         * src/dialogs/Makefile_insert, src/dialogs/swatches.cpp,
3943           src/dialogs/swatches.h, src/verbs.h, src/verbs.cpp,
3944           src/interface.cpp:
3945           Initial cut of swatches panel.
3947 2005-03-19  cyreve  <cyreve@users.sourceforge.net>
3949         * src/libnrtype/Layout-TNG-Compute.cpp: rendering of
3950           multiple-character clusters in rtl text is wrong (bug 1166603)
3952         * src/: make.dep, make.files, make.ofiles, sp-text.cpp, sp-text.h,
3953           text-editing.cpp: glue kerning info back together on deleting
3954           line breaks
3956         * src/sp-tspan.cpp: textpath startOffset attribute doesn't save
3957           correctly when it's a percentage (remnants of bug 1124722)
3959         * src/: text-context.cpp, text-context.h, text-editing.cpp,
3960           text-editing.h, libnrtype/Layout-TNG.h: use Layout::iterator for
3961           storing cursor position. Fixes bug 1093660 related to rtl cursor
3962           movement
3964         * src/libnrtype/: Layout-TNG-OutIter.cpp, Layout-TNG.h: implement
3965           backend cursor movement functions properly for multidirectional
3966           text
3968         * src/libnrtype/Layout-TNG-Output.cpp: create more efficient
3969           postscript output
3971         * src/libnrtype/: Layout-TNG-OutIter.cpp, Layout-TNG-Output.cpp,
3972           Layout-TNG.h: obey text-align attribute when fitting text to a
3973           path (fixes bug 1124722)
3975         * src/: attributes-test.cpp, attributes.cpp, attributes.h,
3976           sp-flowtext.cpp, sp-text.cpp, sp-tspan.cpp, sp-tspan.h,
3977           style-test.cpp, libnrtype/Layout-TNG-Output.cpp: wire up
3978           startOffset attribute to textpath and fix bugs in it
3980         * src/sp-flowtext.cpp: unflow text command loses formatting
3982         * src/xml/repr-io.cpp: xml pretty-printer adding whitespace in
3983           xml:space=preserve elements
3985         * src/: sp-flowtext.cpp, text-editing.cpp: line breaks not being
3986           put before strings immediately following para elements, and
3987           deleting line breaks copies style wrongly
3989 2005-03-18  MenTaLguY  <mental@rydia.net>
3991         * src/file.cpp, src/sp-item-group.cpp, src/xml/Makefile_insert,
3992           src/xml/node-fns-tree.cpp, src/xml/node-fns-tree.h,
3993           src/xml/node-fns.cpp, src/xml/node-fns.h, src/xml/node-iterators.h,
3994           src/xml/repr.cpp, src/xml/simple-node.cpp:
3996           renamed node-fns-tree to node-fns, and moved sp_repr_prev etc
3997           into Inkscape::XML namespace (as e.g. previous_node)
3999 2005-03-18  cyreve  <cyreve@users.sourceforge.net>
4001         * src/libnrtype/Layout-TNG-Compute.cpp: cursor position on blank
4002           first line sometimes goes wrong
4004         * src/: make.dep, make.files, make.ofiles, text-editing.cpp:
4005           spurious line break added before text in text and font dialog
4006           (bug 1166016)
4008         * src/: make.dep, make.files, make.ofiles, libnrtype/FlowBoxes.cpp,
4009           libnrtype/FlowBoxes.h, libnrtype/FlowDefs.h,
4010           libnrtype/FlowDest.cpp, libnrtype/FlowDest.h,
4011           libnrtype/FlowEater.cpp, libnrtype/FlowEater.h,
4012           libnrtype/FlowRes.cpp, libnrtype/FlowRes.h,
4013           libnrtype/FlowResOut.cpp, libnrtype/FlowSols.cpp,
4014           libnrtype/FlowSols.h, libnrtype/FlowSrc.cpp, libnrtype/FlowSrc.h,
4015           libnrtype/FlowSrcText.cpp, libnrtype/FlowSrcText.h,
4016           libnrtype/FlowStyle.cpp, libnrtype/FlowStyle.h,
4017           libnrtype/FlowUtils.cpp, libnrtype/FlowUtils.h,
4018           libnrtype/Makefile_insert: remove all old text layout code (7,577
4019           lines)
4021         * src/: sp-flowregion.cpp, sp-flowregion.h, sp-flowtext.cpp,
4022           sp-string.cpp, sp-tspan.cpp: purge flow_dest class from code
4024         * src/: text-editing.cpp, libnrtype/Layout-TNG-Compute.cpp,
4025           libnrtype/Layout-TNG.cpp, libnrtype/Layout-TNG.h: define a value
4026           for line-height:normal and use it consistently
4028         * src/: sp-text.cpp, sp-text.h, text-editing.cpp: adjust kerning
4029           attributes on adding/removing line breaks
4031 2005-03-17  MenTaLguY  <mental@rydia.net>
4033         * src/display/nr-arena-group.cpp, src/display/nr-arena-item.cpp:
4035           whoops, we were calling the 'children' vfunc rather than
4036           'last_child' when appending, hence the bug... fixed now.
4038 2005-03-17  cyreve  <cyreve@users.sourceforge.net>
4040         * src/: sp-text.cpp, libnrtype/Layout-TNG-Compute.cpp,
4041           libnrtype/Layout-TNG-OutIter.cpp, libnrtype/Layout-TNG.h: x,y
4042           attributes on tspans set wrongly when alignment != left (bug
4043           1165427)
4045         * src/: sp-text.cpp, sp-text.h: break before tspan role=line
4046           elements, ie allow first tspan not to have role=line
4048         * src/: make.dep, make.files, make.ofiles, sp-flowtext.cpp,
4049           sp-object.cpp: fix inheritance problems with xml:space attribute
4051         * src/libnrtype/Layout-TNG-OutIter.cpp: crash on pressing enter
4052           immediately after creating text
4054         * src/: object-ui.cpp, sp-flowtext.cpp: set xml:space=preserve on
4055           new flowdiv elements
4057         * src/libnrtype/Layout-TNG-Compute.cpp: second try at solving
4058           numerical problems when line-height is set
4060         * src/: sp-flowtext.cpp, sp-flowtext.h, verbs.cpp: slightly
4061           objectify SPFlowtext and rearrange its updating a tiny bit
4063         * src/: path-chemistry.cpp, sp-flowregion.cpp, sp-offset.cpp,
4064           sp-text.cpp, sp-text.h, sp-use-reference.cpp, splivarot.cpp:
4065           slightly objectify SPText & rearrange updating code, also fixes
4066           bug causing all letters to appear on top of each other
4068         * src/libnrtype/Layout-TNG-Compute.cpp: characters will draw
4069           multiple times when x or y attributes set
4071 2005-03-16  cyreve  <cyreve@users.sourceforge.net>
4073         * src/text-editing.cpp: kerning: add/remove kerns with
4074           insertion/deletion of characters, and only apply kerns to the
4075           topmost xml object
4077         * src/: help.cpp, selection-chemistry.cpp, sp-text.cpp, sp-text.h,
4078           text-context.cpp, text-editing.cpp, text-editing.h,
4079           dialogs/text-edit.cpp: move functions applying to both text and
4080           flowtext to text-editing & rename them. Also fixes crash on
4081           letter/linespacing adjustment for flowtext
4083         * src/text-editing.cpp: fix crash on pressing delete at the end of
4084           text
4086         * src/: text-editing.cpp, libnrtype/Layout-TNG-Compute.cpp,
4087           libnrtype/Layout-TNG-OutIter.cpp, libnrtype/Layout-TNG.h:
4088           position cursor correctly in empty text objects
4090         * src/: sp-item-group.cpp, sp-object.cpp: optimise adding children
4091           to the end of a group - big improvement for tile clones
4093         * src/: sp-flowtext.cpp, sp-text.cpp, text-context.cpp,
4094           text-editing.cpp, text-editing.h: text editing fixes: track line
4095           breaks with preceding para tag, finish abstracting line
4096           break/remove functions to work on flowtext
4098         * src/libnrtype/Layout-TNG-Compute.cpp: cursor positioning
4099           off-by-one in some cases of wrapped text
4101 2005-03-15  cyreve  <cyreve@users.sourceforge.net>
4103         * src/libnrtype/Layout-TNG-Compute.cpp: small tweak to make cursor
4104           positioning work right in counterdirectional spans in fully
4105           justified text
4107         * src/sp-text.cpp: tweak function for adjusting linespacing by
4108           keyboard to be more precise
4110         * src/: attributes-test.cpp, attributes.cpp, make.dep, make.files,
4111           make.ofiles, style-test.cpp, style.cpp,
4112           libnrtype/Layout-TNG-Output.cpp: make the unit tests pass for the
4113           new styles, and workaround build breakage when pango < 1.8
4114           installed
4116         * src/: sp-flowtext.cpp, sp-flowtext.h,
4117           libnrtype/Layout-TNG-Compute.cpp,
4118           libnrtype/Layout-TNG-Scanline-Makers.cpp, libnrtype/Layout-TNG.h:
4119           wiring up full justification to old attribute & fixing bugs in
4120           it, which turned in to a major refactoring of layout code
4122 2005-03-14  Jon Phillips <jon@rejon.org>
4123         * src/attributes-test.cpp, src/attributes.cpp, src/attributes.h,
4124           src/desktop.cpp, src/sp-namedview.cpp, src/sp-namedview.h,
4125           src/dialogs/desktop-properties.cpp:
4126           Added showpageshadow preference to document preferences. Set to
4127           on automatically and saves with document if off.
4129 2005-03-14  MenTaLguY  <mental@rydia.net>
4131         * src/display/nr-arena-item.h, src/display/nr-arena-item.cpp,
4132           src/display/nr-arena-group.cpp:
4134           added virtual accessor for last child
4136 2005-03-14  Jon A. Cruz  <jon@joncruz.org>
4137         * src/interface.cpp, src/verb.cpp, src/verbs.h,
4138           src/ui/widget/panel.cpp, src/dialogs/Makefile_insert,
4139           src/dialogs/extensions.cpp, src/dialogs/extensions.h,
4140           src/extension/error-file.cpp:
4141           Added rough cut of initial extensions panel and dialog.
4143 2005-03-13  Bryce Harrington <bryce@bryceharrington.org>
4145         * src/path-prefix.h: Rearranging linking of libui and libutil
4147         * src/application/application.cpp, src/application/application.h
4148           src/application/editor-impl.cpp,
4149           src/ui/dialog/dialog-manager.cpp,  src/ui/dialog/dialog.cpp,
4150           src/ui/dialog/dialog.h, src/ui/widget/labelled.cpp,
4151           src/ui/dialog/transformation.h, src/ui/dialog/transformation.cpp,
4152           src/ui/widget/unit-menu.h, src/util/units.cpp:
4153           Integrating Transformation dialog.  Removing hardcoded paths.
4155         * share/icons/Makefile.in, share/icons/arrows-horiz.svg,
4156           share/icons/arrows-vert.svg, share/icons/arrows_hor.xpm,
4157           share/icons/arrows_ver.xpm, share/icons/rotate.svg,
4158           share/icons/rotate.xpm, share/icons/scale_hor.xpm,
4159           share/icons/scale_ver.xpm, share/icons/Makefile.am:
4160           Adding icons needed by transformation dialog
4162         * share/ui/units.txt,  share/ui/units.xml:
4163           Moving units into ui/ subdir.  Dunno if this is the best
4164           location for them, but pjrm thought it'd be ok for now.
4166 2005-03-13  cyreve  <cyreve@users.sourceforge.net>
4168         * src/sp-text.cpp: allow adjusting letter spacing when cursor is at
4169           eol
4171         * src/: make.dep, make.files, make.ofiles,
4172           libnrtype/Layout-TNG-Compute.cpp,
4173           libnrtype/Layout-TNG-OutIter.cpp,
4174           libnrtype/Layout-TNG-Output.cpp, libnrtype/Layout-TNG.h: fix
4175           kerning when align != left, and fix linespacing < 100
4177         * src/: sp-flowtext.cpp, sp-text.cpp, sp-text.h, style.cpp,
4178           style.h, libnrtype/Layout-TNG-Compute.cpp,
4179           libnrtype/Layout-TNG-Input.cpp, libnrtype/Layout-TNG-OutIter.cpp,
4180           libnrtype/Layout-TNG-Output.cpp,
4181           libnrtype/Layout-TNG-Scanline-Maker.h, libnrtype/Layout-TNG.h:
4182           implement line-height css property, & fix percentage handling in
4183           style
4185 2005-03-12  MenTaLguY  <mental@rydia.net>
4187         * src/node-context.cpp, src/node-context.h, src/nodepath.cpp,
4188           src/nodepath.h, src/toolbox.cpp, src/dialogs/align.cpp:
4190           Renamed Path namespace to Inkscape::NodePath, to avoid conflict
4191           with livarot
4193 2005-03-12  Kees Cook  <kees@outflux.net>
4195         * inkscape.nsi: added German translation from Adib Taraben.
4197 2005-03-12  MenTaLguY  <mental@rydia.net>
4199         * src/sp-namedview.cpp, src/sp-metadata.cpp: it's valid for an SPObject
4200           'write' method to be passed the object's own XML node; account for this.
4202 2005-03-12  MenTaLguY  <mental@rydia.net>
4204         * src/xml/simple-node.cpp: assert that src != this in
4205           SimpleNode::mergeFrom
4207 2005-03-12  MenTaLguY  <mental@rydia.net>
4209         * src/gc-alloc.h: minor cosmetic adjustments
4211         * src/util/list-container.h: pedantically correct implementation of
4212           ListContainer::max_size()
4214         * src/xml/simple-node.cpp: use Util::ListContainer iterators in a more
4215           STL-ish fashion
4217 2005-03-12  Jon A. Cruz  <jon@joncruz.org>
4218         * src/ui/widget/panel.h, src/ui/widget/panel.cpp,
4219           src/ui/widget/Makefile_insert, src/dialogs/iconpreview.h,
4220           src/dialogs/iconpreview.cpp:
4221           Initial addition of Panel.
4223 2005-03-12  cyreve  <cyreve@users.sourceforge.net>
4225         * src/sp-flowtext.cpp: text unflow command losing space characters:
4226           add xml:space to generated elements
4228         * src/: attributes.cpp, attributes.h, make.dep, make.files,
4229           make.ofiles, sp-flowtext.cpp, sp-text.cpp, style.cpp, style.h,
4230           text-context.cpp, text-editing.cpp, dialogs/text-edit.cpp,
4231           libnrtype/FlowRes.cpp, libnrtype/Layout-TNG-Compute.cpp,
4232           libnrtype/Layout-TNG-Input.cpp: add several new text properties
4233           to SPStyle and rearrange some of the existing ones, also remove
4234           spurious warning on applying kerning
4236         * src/sp-flowtext.cpp: svg spec requires us to break after flowline
4237           content, not before
4239 2005-03-11  cyreve  <cyreve@users.sourceforge.net>
4241         * src/desktop-style.cpp, src/sp-text.cpp, src/sp-text.h,
4242           src/sp-tspan.cpp, src/sp-tspan.h, src/text-chemistry.cpp,
4243 src/text-editing.cpp,
4244           src/text-editing.h: combine the common attribute handling for text,
4245           tspan and textpath into one class
4247         * src/sp-flowtext.cpp, src/sp-string.cpp: reimplement xml:space attribute
4249         * src/sp-text.cpp, src/libnrtype/Layout-TNG-OutIter.cpp,
4250           src/libnrtype/Layout-TNG.h: apply calculated x/y attributes to tspan
4251           role=line elements
4253         * src/libnrtype/Layout-TNG-Output.cpp: postscript text output
4254           incorrectly scaled (and other problems)
4256 2005-03-10  cyreve  <cyreve@users.sourceforge.net>
4258         * src/sp-flowdiv.h, src/sp-flowtext.h,
4259           src/sp-text.cpp, src/sp-text.h, src/sp-tspan.h, src/text-context.cpp,
4260           src/text-editing.cpp, src/text-editing.h,
4261           src/libnrtype/Layout-TNG-Compute.cpp,
4262           src/libnrtype/Layout-TNG-OutIter.cpp: clean up xml tree properly on
4263           deleting line break, & fix various compile issues
4265         * src/nodepath.cpp, src/sp-flowdiv.cpp,
4266           src/sp-flowdiv.h, src/sp-flowtext.cpp, src/sp-flowtext.h,
4267 src/sp-string.cpp,
4268           src/sp-string.h, src/sp-text.cpp, src/sp-text.h, src/sp-tspan.cpp,
4269 src/sp-tspan.h,
4270           src/text-editing.cpp, src/verbs.cpp, src/libnrtype/FontInstance.cpp,
4271           src/libnrtype/font-instance.h, src/livarot/Shape.h,
4272           src/libnrtype/Layout-TNG-Compute.cpp, src/libnrtype/Layout-TNG-Input.cpp,
4273           src/libnrtype/Layout-TNG-OutIter.cpp,
4274           src/libnrtype/Layout-TNG-Output.cpp,
4275           src/libnrtype/Layout-TNG-Scanline-Maker.h,
4276           src/libnrtype/Layout-TNG-Scanline-Makers.cpp,
4277           src/libnrtype/Layout-TNG.cpp, libnrtype/Layout-TNG.h: huge rewrite of
4278           text layout (and some text editing) code
4280 2005-03-07  Kees Cook  <kees@outflux.net>
4282         * src/libnr/have_mmx.S, src/libnr/nr_mmx_R8G8B8A8_P_EMPTY_A8_RGBAP.S,
4283           src/libnr/nr_mmx_R8G8B8A8_P_R8G8B8A8_P_A8_RGBAP.S,
4284           src/libnr/nr_mmx_R8G8B8A8_P_R8G8B8A8_P_R8G8B8A8_N_TRANSFORM.S,
4285           src/libnr/nr_mmx_R8G8B8_R8G8B8_R8G8B8A8_P.S: execstack patch
4286           from Mike Hearn.
4288 2005-03-07  Jon A. Cruz  <jon@joncruz.org>
4289         * src/interface.cpp, src/verbs.h, src.verbs.cpp, src/widgets/icon.cpp,
4290           src/dialogs/iconpreview.h, src/dialogs/iconpreview.cpp,
4291           src/dialogs/Makefile_insert:
4292           Initial cut of icon preview.
4294 2005-03-05  Bryce Harrington <bryce@bryceharrington.org>
4296         * share/icons/*.svg, share/icons/Makefile.am:  Adding icons for
4297           new gui interface
4299         * src/ui/icons.cpp:  Fixing some paths
4301         * src/main.cpp src/application/Makefile_insert,
4302           src/application/app-prototype.h,
4303           src/application/application.cpp src/application/editor.cpp,
4304           src/ui/widget/toolbox.cpp,
4305           src/application/editor-impl.cpp:
4306           Broke out editor-impl class to its own file.  Continued getting
4307           the new interface to the point where it'll load and run.
4309         * share/ui/keybindings.rc, share/ui/toolbox.xml, share/ui/menus-bars.xml:
4310           Migrating some of the UI definition stuff into main codebase
4312 2005-03-05  Jon A. Cruz  <jon@joncruz.org>
4313         * src/widgets/layer-selector.cpp, src/widgets/icon.h,
4314           src/widgets/icon.cpp, src/dialogs/align.cpp, src/dialogs/find.cpp,
4315           src/dialogs/object-properties.cpp, src/dialogs/stroke-style.cpp,
4316           src/dialogs/text-edit.cpp, src/dialogs/transformation.cpp,
4317           src/dialogs/xml-tree.cpp, src/interface.cpp:
4318           Purging PixBufFactory and sp_icon_new_scaled.
4320 2005-03-05  Jon A. Cruz  <jon@joncruz.org>
4321         * src/widgets/icon.cpp, src/widgets/icon.cpp: Switched icon loading
4322           to be deferred and react to theme changes on-the-fly.
4324 2005-03-05  Bryce Harrington <bryce@bryceharrington.org>
4326         * src/application/Makefile_insert,
4327           src/application/app-prototype.cpp,
4328           src/application/editor.h,
4329           src/application/app-prototype.h,
4330           src/application/application.cpp:
4331           Adding Application::AppPrototype class
4332         * src/application/editor.cpp,
4333           src/application/editor.h:
4334           Changing member function getImpl() to getWindow()
4336 2005-03-04  Jon A. Cruz  <jon@joncruz.org>
4337         * src/widgets/icon.cpp: Changed stock item loading to use stock
4338           GtkImage widgets directly.
4340 2005-03-03  MenTaLguY  <mental@rydia.net>
4342         * src/widgets/icon.cpp: more idiomatic iteration
4344 2005-03-02  Jon A. Cruz  <jon@joncruz.org>
4345         * src/toolbox.cpp: Added preference to make the top toolbox 'small'.
4347 2005-03-02  Jon A. Cruz  <jon@joncruz.org>
4348         * src/desktop-events.cpp, src/desktop.cpp, src/gradient-toolbar.cpp,
4349           src/interface.cpp, src/select-toolbar.cpp, src/toolbox.cpp,
4350           src/toolbox.h, src/dialogs/find.cpp,
4351           src/dialogs/object-properties.cpp, src/dialogs/stroke-style.cpp,
4352           src/dialogs/text-edit.cpp, src/dialogs/transformation.cpp,
4353           src/dialogs/xml-tree.cpp, src/widgets/button.cpp,
4354           src/widgets/button.h, src/widgets/icon.cpp, src/widgets/icon.h,
4355           src/widgets/layer-selector.cpp, src/widgets/paint-selector.cpp,
4356           src/widgets/widget-sizes.h:
4357           Initial pass removing hardcoded icon sizes.
4359 2005-03-01  MenTaLguY  <mental@rydia.net>
4361         * src/extensions/internal/ps.cpp: apply patch from Michael Forbes
4362           (miforbes@mbhs.edu) to support gradient fills in Postscript
4364 2005-03-01  MenTaLguY  <mental@rydia.net>
4366         * src/xml/node.h, src/xml/simple-node.cpp, src/xml/simple-node.h:
4368           begin migration of notification interface to use NodeObserver
4369           rather than NodeEventVector
4371 2005-03-01  MenTaLguY  <mental@rydia.net>
4373         * src/xml/Makefile_insert, src/xml/node-listener.h, src/xml/repr.cpp,
4374           src/xml/simple-node.cpp, src/xml/simple-node.h:
4376           reworked listener list to use Util::ListContainer
4378         * src/xml/node-observer.h: minor name cleanups
4380 2005-03-01  MenTaLguY  <mental@rydia.net>
4382         * src/Makefile.am, src/algorithms/find-if-before.h:
4384           added new generic algorithm
4386 2005-03-01  MenTaLguY  <mental@rydia.net>
4388         * src/Makefile.am, src/util/Makefile_insert,
4389           src/util/list-container-test.cpp, src/util/list-container.h:
4391           tests and fixes for Util::ListContainer
4393 2005-03-01  MenTaLguY  <mental@rydia.net>
4395         * src/Makefile.am, src/libnr/Makefile_insert, src/xml/Makefile_insert:
4396           use in-tree copy of cxxtest
4398         * src/util/Makefile_insert, src/util/list-container.h:
4399           add Util::List-based STL container
4401 2005-02-28 SwinginCelt  <swinginceltgmail.com>
4403         * Fixed an improper conversion of sp_repr_document_merge that was causing
4404           extra data being written to the prefrences file every time inkscape
4405           exited.
4407 2005-02-26 SwinginCelt  <swinginceltgmail.com>
4409         * Replaced all sp_repr_set_content calls with direct call to
4410           repr->setContent.
4411         * Replaced all sp_repr_merge calls with direct call to
4412           repr->mergeFrom.
4413         * Removed inline sp_repr_document_merge because it wasn't used anywhere.
4414         * Removed inline sp_repr_set_content because it wasn't used anywhere.
4416 2005-02-26  MenTaLguY  <mental@rydia.net>
4418         * cxxtest: imported cxxtest tree
4420 2005-02-24  Jon A. Cruz  <jon@joncruz.org>
4421         * src/main.cpp, io/sys.h, io/sys.cpp:
4422           Refactoring input filename conversion and fallback.
4423           Fixes bug #1151536.
4425 2005-02-22  Jon A. Cruz  <jon@joncruz.org>
4426         * src/main.cpp:
4427           Refactoring sp_main_*. Adding cleanup phase on extracted filename list.
4429 2005-02-22  Bryce Harrington <bryce@bryceharringotn.org>
4431         * src/main.cpp, src/application/application.cpp:  Adding --new-gui
4432         option.
4434 2005-02-22  Ted Gould  <ted@gould.cx>
4436         * src/interface.cpp:
4438         Changing the effects menu to be driven by the preferences file so that the
4439         file can be the same whether or not the effects are shown.
4441 2005-02-22  MenTaLguY  <mental@rydia.net>
4443         * src/desktop-style.cpp, src/selection-chemistry.cpp,
4444           src/xml/attribute-record.h, src/xml/node.h, src/xml/repr-css.cpp,
4445           src/xml/repr-io.cpp, src/xml/simple-node.cpp, src/xml/simple-node.h:
4447           use Inkscape::Util::List for attribute lists, and sprinkle some
4448           appropriate 'using's in to make things less verbose
4450 2005-02-22  Jon A. Cruz  <jon@joncruz.org>
4451         * src/inkscape.cpp, src/main.cpp, src/extension/input.cpp, src/io/sys.cpp,
4452           src/xml/repr-io.cpp:
4453           Better catching of problematic filenames.
4454           Made segv handler only use dialog box when app is using a gui.
4455           Fixes bug #1145847.
4457 2005-02-22  Ted Gould  <ted@gould.cx>
4459         * src/extension/effect.cpp, src/extension/prefdialog.cpp,
4460         src/extension/prefdialog.h,
4461         src/extension/implementation/implementation.cpp,
4462         src/extension/implementation/implementation.h,
4463         src/extension/implementation/plugin-link.h,
4464         src/extension/implementation/plugin.cpp,
4465         src/extension/implementation/plugin.h,
4466         src/extension/implementation/script.cpp,
4467         src/extension/implementation/script.h, src/extension/plugin/grid.cpp:
4469         Changing the API of the effects preferences so that it doesn't use
4470         sockets and plugs anymore.  Now there is a generic widget passed down so
4471         that should work on every platform.
4473         * src/extension/plugin/grid.cpp:
4475         Fixing the grid so that it uses the right axis.
4477         * share/extensions/Makefile.am, share/extensions/bluredge.inx,
4478         share/extensions/randompnt.inx, share/extensions/randompos.inx,
4479         src/extension/plugin/Makefile_insert, src/extension/plugin/bluredge.cpp,
4480         src/extension/plugin/randompnt.cpp, src/extension/plugin/randompos.cpp:
4482         Adding some cool new effects, well, they're not really done yet,
4483         but getting the basis code into CVS so I don't loose it :)
4485 2005-02-21  MenTaLguY  <mental@rydia.net>
4487         * src/file.cpp, src/sp-item-group.cpp, src/xml/Makefile_insert,
4488           src/xml/node-fns-tree.cpp, src/xml/node-fns-tree.h,
4489           src/xml/repr-get-children.cpp, src/xml/repr-get-children.h,
4490           src/xml/repr.cpp, src/xml/simple-node.cpp:
4492           renamed header files
4494         * src/xml/Makefile_insert, src/xml/invalid-operation-exception.h:
4496           added Inkscape::XML::InvalidOperationException
4498         * src/xml/simple-node.h:
4500           avoid a second indirect function call from SimpleNode::appendChild
4502 2005-02-20 SwinginCelt  <swinginceltgmail.com>
4504         * Replaced all sp_repr_attr calls with direct call to
4505           repr->attribute.
4506         * Replaced all sp_repr_document_unref calls with direct call to
4507           Inkscape::GC::release(...).
4508         * Removed iinline sp_repr_document_ref because it wasn't used anywhere.
4510 2005-02-20  MenTaLguY  <mental@rydia.net>
4512         * src/inkscape.cpp: removed unused signals
4514 2005-02-19  MenTaLguY  <mental@rydia.net>
4516         * src/arc-context.cpp, src/desktop.cpp, src/document-private.h,
4517           src/document-undo.cpp, src/document.cpp, src/event-context.cpp,
4518           src/gradient-chemistry.cpp, src/gradient-chemistry.h,
4519           src/gradient-drag.cpp, src/gradient-drag.h, src/node-context.cpp,
4520           src/rect-context.cpp, src/sp-object.cpp, src/spiral-context.cpp,
4521           src/star-context.cpp, src/toolbox.cpp,
4522           src/dialogs/desktop-properties.cpp, src/widgets/gradient-vector.cpp,
4523           src/widgets/layer-selector.cpp, src/widgets/sp-widget.cpp,
4524           src/widgets/sp-xmlview-attr-list.cpp, src/widgets/sp-xmlview-content.cpp,
4525           src/widgets/sp-xmlview-tree.cpp, src/xml/Makefile_insert,
4526           src/xml/attribute-record.h, src/xml/document.h, src/xml/event-fns.h,
4527           src/xml/event.cpp, src/xml/event.h, src/xml/node-event-vector.h,
4528           src/xml/node-iterators.h, src/xml/node-listener.h, src/xml/node.h,
4529           src/xml/repr-action-test.cpp, src/xml/repr-css.cpp, src/xml/repr-io.cpp,
4530           src/xml/repr-sorting.cpp, src/xml/repr-util.cpp, src/xml/repr.cpp,
4531           src/xml/repr.h, src/xml/simple-document.h, src/xml/simple-node.cpp,
4532           src/xml/simple-node.h, src/xml/simple-session.cpp,
4533           src/xml/sp-css-attr.h, src/xml/sp-repr-action-fns.h,
4534           src/xml/sp-repr-action.cpp, src/xml/sp-repr-action.h,
4535           src/xml/sp-repr-attr.h, src/xml/sp-repr-doc.h,
4536           src/xml/sp-repr-event-vector.h, src/xml/sp-repr-iterators.h,
4537           src/xml/sp-repr-listener.h, src/xml/sp-repr.h:
4539           renamed header files to match new class names
4541 2005-02-19  MenTaLguY  <mental@rydia.net>
4543         * src/arc-context.cpp, src/arc-context.h, src/desktop-events.cpp,
4544           src/desktop-style.cpp, src/desktop-style.h, src/desktop.cpp,
4545           src/document-private.h, src/document-undo.cpp, src/document.cpp,
4546           src/document.h, src/draw-context.cpp, src/dyna-draw-context.cpp,
4547           src/dyna-draw-context.h, src/event-context.cpp, src/event-context.h,
4548           src/file.cpp, src/gradient-chemistry.cpp, src/inkscape.cpp,
4549           src/inkscape.h, src/inkview.cpp, src/interface.cpp, src/knotholder.cpp,
4550           src/knotholder.h, src/layer-fns.cpp, src/main.cpp, src/node-context.cpp,
4551           src/nodepath.cpp, src/nodepath.h, src/object-ui.cpp,
4552           src/path-chemistry.cpp, src/prefs-utils.cpp, src/rect-context.cpp,
4553           src/rect-context.h, src/selection-chemistry.cpp, src/selection.cpp,
4554           src/selection.h, src/seltrans.cpp, src/sp-anchor.cpp,
4555           src/sp-animation.cpp, src/sp-clippath.cpp, src/sp-conn-end-pair.cpp,
4556           src/sp-conn-end-pair.h, src/sp-defs.cpp, src/sp-ellipse.cpp,
4557           src/sp-flowdiv.cpp, src/sp-flowregion.cpp, src/sp-flowtext.cpp,
4558           src/sp-gradient-fns.h, src/sp-gradient-test.cpp, src/sp-gradient.cpp,
4559           src/sp-guide.cpp, src/sp-image.cpp, src/sp-item-group.cpp,
4560           src/sp-item.cpp, src/sp-item.h, src/sp-line.cpp,
4561           src/sp-linear-gradient-fns.h, src/sp-marker.cpp, src/sp-mask.cpp,
4562           src/sp-metadata.cpp, src/sp-namedview.cpp, src/sp-namedview.h,
4563           src/sp-object-group.cpp, src/sp-object-repr.cpp, src/sp-object-repr.h,
4564           src/sp-object.cpp, src/sp-object.h, src/sp-offset.cpp, src/sp-offset.h,
4565           src/sp-path.cpp, src/sp-pattern.cpp, src/sp-polygon.cpp,
4566           src/sp-polyline.cpp, src/sp-radial-gradient-fns.h, src/sp-rect.cpp,
4567           src/sp-root.cpp, src/sp-shape.cpp, src/sp-skeleton.cpp,
4568           src/sp-spiral.cpp, src/sp-star.cpp, src/sp-string.cpp,
4569           src/sp-symbol.cpp, src/sp-text.cpp, src/sp-tspan.cpp,
4570           src/sp-use-reference.h, src/sp-use.cpp, src/spiral-context.cpp,
4571           src/spiral-context.h, src/splivarot.cpp, src/star-context.cpp,
4572           src/star-context.h, src/style.cpp, src/style.h, src/text-chemistry.cpp,
4573           src/text-context.cpp, src/text-editing.cpp, src/toolbox.cpp,
4574           src/verbs.cpp, src/application/application.cpp,
4575           src/application/application.h, src/application/editor.h,
4576           src/dialogs/clonetiler.cpp, src/dialogs/desktop-properties.cpp,
4577           src/dialogs/export.cpp, src/dialogs/fill-style.cpp, src/dialogs/rdf.cpp,
4578           src/dialogs/sp-attribute-widget.cpp, src/dialogs/sp-attribute-widget.h,
4579           src/dialogs/stroke-style.cpp, src/dialogs/text-edit.cpp,
4580           src/dialogs/tiledialog.cpp, src/dialogs/xml-tree.cpp,
4581           src/ecma/EcmaBinding.cpp, src/ecma/EcmaBinding.h,
4582           src/extension/dependency.cpp, src/extension/dependency.h,
4583           src/extension/effect.cpp, src/extension/effect.h,
4584           src/extension/extension.cpp, src/extension/extension.h,
4585           src/extension/input.cpp, src/extension/input.h,
4586           src/extension/output.cpp, src/extension/output.h,
4587           src/extension/print.cpp, src/extension/print.h, src/extension/system.cpp,
4588           src/extension/implementation/plugin.cpp,
4589           src/extension/implementation/script.cpp,
4590           src/extension/implementation/script.h,
4591           src/extension/internal/gdkpixbuf-input.cpp,
4592           src/extension/internal/pov-out.cpp, src/extension/internal/ps.cpp,
4593           src/extension/internal/svg.cpp, src/extension/plugin/grid.cpp,
4594           src/helper/stock-items.cpp, src/trace/trace.cpp,
4595           src/widgets/dash-selector.cpp, src/widgets/dash-selector.h,
4596           src/widgets/gradient-selector.cpp, src/widgets/gradient-vector.cpp,
4597           src/widgets/layer-selector.cpp, src/widgets/layer-selector.h,
4598           src/widgets/paint-selector.cpp, src/widgets/sp-widget.cpp,
4599           src/widgets/sp-widget.h, src/widgets/sp-xmlview-attr-list.cpp,
4600           src/widgets/sp-xmlview-attr-list.h, src/widgets/sp-xmlview-content.cpp,
4601           src/widgets/sp-xmlview-content.h, src/widgets/sp-xmlview-tree.cpp,
4602           src/widgets/sp-xmlview-tree.h, src/widgets/spw-utilities.h,
4603           src/xml/comment-node.h, src/xml/element-node.h, src/xml/node-observer.h,
4604           src/xml/repr-action-test.cpp, src/xml/repr-css.cpp,
4605           src/xml/repr-get-children.cpp, src/xml/repr-get-children.h,
4606           src/xml/repr-io.cpp, src/xml/repr-sorting.cpp, src/xml/repr-sorting.h,
4607           src/xml/repr-util.cpp, src/xml/repr.cpp, src/xml/repr.h,
4608           src/xml/session.h, src/xml/simple-document.h, src/xml/simple-node.cpp,
4609           src/xml/simple-node.h, src/xml/simple-session.cpp,
4610           src/xml/simple-session.h, src/xml/sp-css-attr.h,
4611           src/xml/sp-repr-action-fns.h, src/xml/sp-repr-action.cpp,
4612           src/xml/sp-repr-action.h, src/xml/sp-repr-attr.h,
4613           src/xml/sp-repr-doc.h, src/xml/sp-repr-event-vector.h,
4614           src/xml/sp-repr-iterators.h, src/xml/sp-repr-listener.h,
4615           src/xml/sp-repr.h, src/xml/text-node.h, src/xml/transaction-logger.h:
4617             SPRepr -> Inkscape::XML::Node
4618             SPReprDoc -> Inkscape::XML::Document
4619             SPReprAttr -> Inkscape::XML::AttributeRecord
4620             SPReprAction -> Inkscape::XML::Event
4621             SPReprEventVector -> Inkscape::XML::EventVector
4622             SPReprListener -> Inkscape::XML::NodeListener
4624             etc..
4626 2005-02-19  Jon A. Cruz  <jon@joncruz.org>
4627         * src/extension/extension.h, src/extension/internal/svg.cpp,
4628           src/extension/internal/svgz.cpp:
4629           Fixing .svgz Inkscape save and adding .svgz Plain save.
4630           Fixes bug #1144223
4632 2005-02-18  Jon A. Cruz  <jon@joncruz.org>
4633         * src/Makefile.am, src/libnr/Makefile_insert,
4634           src/libnr/nr-point-fns-test.h  src/libnr/nr-types-test.h:
4635           Adding initial version of CxxTest test cases.
4637 2005-02-17  Jon A. Cruz  <jon@joncruz.org>
4639         * src/io/gzipinputstream.h, src/io/gzipinputstream.cpp: Changed
4640           decompression to be streammed and removed hardcoded limit.
4642 2005-02-17  MenTaLguY  <mental@rydia.net>
4644         * src/inkscape.h, src/inkscape.cpp, src/desktop.cpp:
4646           rewrote "last desktop standing" test to not suck
4648 2005-02-15 SwinginCelt  <swinginceltgmail.com>
4650         * Replaced some sp_repr_attr calls with direct call to
4651           repr->attribute.
4653 2005-02-16 John Cliff <simarilius@yahoo.com>
4655         * src/dialogs/tiledialog.h, src/dialogs/tiledialog.cpp,
4656           src/dialogs/makefile_insert, src/verbs.cpp, src/verbs.h:
4657           Added a dialog that allows you to arrange the selection
4658           in a grid pattern with user defined spacing.
4659           its in objects->grid arrange...
4661 2005-02-15 SwinginCelt  <swinginceltgmail.com>
4663         * Replaced inline function sp_repr_name with direct call to
4664           repr->name.
4665         * Replaced inline function sp_repr_content with direct call to
4666           repr->content.
4667         * Replaced inline function sp_repr_has_attr with direct call to
4668           repr->matchAttributeName.
4670 2005-02-15  MenTaLguY  <mental@rydia.net>
4672         * src/document.cpp, src/document.h, src/file.cpp, src/help.cpp,
4673           src/inkscape.cpp, src/inkview.cpp, src/slideshow.cpp,
4674           src/dialogs/filedialog.cpp, src/dialogs/stroke-style.cpp,
4675           src/extension/internal/gdkpixbuf-input.cpp,
4676           src/extension/internal/svg.cpp, src/extension/plugin/gimpgrad.cpp,
4677           src/helper/stock-items.cpp, src/widgets/icon.cpp:
4679           removed unused SPDocument::advertize
4681 2005-02-14  MenTaLguY  <mental@rydia.net>
4683         * src/document.cpp: remove redundant assignment that appears to confuse
4684           gcc anyhow
4686 2005-02-14  SwinginCelt  <swingincelt@gmail.com>
4688         * Replaced inline function sp_repr_set_position_absolute with
4689           direct call to repr>->setPosition.
4691 2005-02-13  Bryce  <bryce@bryceharrington.org>
4693         * src/main.cpp, src/application/application.cpp, src/inkscape.h,
4694           src/application/editor-impl.h, src/application/editor.cpp
4695           src/application/editor.h, src/ui/dialog/dialog-manager.cpp,
4696           src/ui/dialog/dialog-manager.h, src/application/app-prototype.h
4697           src/application/application.h:  Integrating I::A::Application
4698           into the execution path.  Now its run() routine is called from
4699           main().
4701         * src/application/Makefile_insert, src/application/makefile.in,
4702           src/application/editor-impl.h, src/application/editor.cpp,
4703           src/application/editor.h:  Initial import of inkscape_gtkmm
4704           code.  Also see doc/NewAppArchitecture/ presentation for the
4705           rationale behind this.
4707         * src/ui/dialog/align-and-distribute.cpp,
4708 src/ui/dialog/align-and-distribute.h,
4709           src/ui/dialog/dialog-manager.cpp, src/ui/dialog/dialog-manager.h,
4710           src/ui/dialog/dialog.cpp, src/ui/dialog/dialog.h,
4711           src/ui/dialog/document-preferences.cpp,
4712 src/ui/dialog/document-preferences.h,
4713           src/ui/dialog/export.cpp, src/ui/dialog/export.h,
4714           src/ui/dialog/extension-editor.cpp, src/ui/dialog/extension-editor.h,
4715           src/ui/dialog/fill-and-stroke.cpp, src/ui/dialog/fill-and-stroke.h,
4716           src/ui/dialog/find.cpp, src/ui/dialog/find.h,
4717           src/ui/dialog/inkscape-preferences.cpp,
4718 src/ui/dialog/inkscape-preferences.h,
4719           src/ui/dialog/layer-editor.cpp, src/ui/dialog/layer-editor.h,
4720           src/ui/dialog/messages.cpp, src/ui/dialog/messages.h,
4721           src/ui/dialog/text-properties.cpp, src/ui/dialog/text-properties.h,
4722           src/ui/dialog/tree-editor.cpp, src/ui/dialog/tree-editor.h,
4723           src/ui/dialog/xml-editor.cpp, src/ui/dialog/xml-editor.h,
4724           src/ui/widget/combo-text.cpp, src/ui/widget/combo-text.h,
4725           src/ui/widget/handlebox.cpp, src/ui/widget/handlebox.h,
4726           src/ui/widget/icon-widget.cpp, src/ui/widget/icon-widget.h,
4727           src/ui/widget/labelled.cpp, src/ui/widget/labelled.h,
4728           src/ui/widget/notebook-page.cpp, src/ui/widget/notebook-page.h,
4729           src/ui/widget/scalar-unit.cpp, src/ui/widget/scalar-unit.h,
4730           src/ui/widget/scalar.cpp, src/ui/widget/scalar.h,
4731           src/ui/widget/toolbox.cpp, src/ui/widget/toolbox.h,
4732           src/ui/widget/unit-menu.cpp, src/ui/widget/unit-menu.h:
4733           Initial import of the gtkmm code.  These are mainly
4734           unimplemented stubs, but have few dependencies so are easy to
4735           integrate at this stage.
4737         * src/ui/widget/Makefile_insert, src/ui/widget/makefile.in,
4738           src/ui/dialog/Makefile_insert, src/ui/dialog/makefile.in,
4739           src/ui/Makefile_insert, src/ui/makefile.in:  Adding makefile
4740           support for new code.
4742         * io/simple-sax.h, io/simple-sax.cpp:  Adding Jon's simple SAX
4743           code
4745         * util/units.h, util/units.cpp:  New inkscape_gtkmm units code
4747 2005-02-12  MenTaLguY  <mental@rydia.net>
4749         * src/document.cpp, src/document.h, src/sp-gradient-test.cpp:
4751           SPDocument is now a "real C++ class", managed by the garbage collector
4753 2005-02-12  MenTaLguY  <mental@rydia.net>
4755         * src/document-private.h, src/document.cpp, src/document.h, src/view.cpp,
4756           src/view.h, src/dialogs/xml-tree.cpp:
4758           switched SPDocument to sigc++ signals
4760 2005-02-12  Kees Cook  <kees@outflux.net>
4762         * Makefile.am, configure.ac, Makefile.mingw.common, inkscape.nsi: undoing
4763           my "configure" changes.  Was dumb and forgot about native compiles on
4764           win32.
4765         * inkview.1.in, share/extensions/inkscape-shadow-white.sh,
4766           share/extensions/inkscape-shadow.sh: corrections found by Wolfram
4767           Quester during Debian packaging.
4768         * src/desktop-events.cpp, src/file.cpp, src/gradient-chemistry.cpp,
4769           src/interface.cpp, src/layer-fns.cpp, src/nodepath.cpp,
4770           src/object-ui.cpp, src/path-chemistry.cpp, src/prefs-utils.cpp,
4771           src/selection-chemistry.cpp, src/seltrans.cpp, src/sp-flowtext.cpp,
4772           src/sp-object.cpp, src/sp-pattern.cpp, src/sp-text.cpp, src/splivarot.cpp,
4773           src/text-editing.cpp, src/dialogs/clonetiler.cpp, src/dialogs/rdf.cpp,
4774           src/dialogs/stroke-style.cpp, src/dialogs/xml-tree.cpp,
4775           src/extension/internal/gdkpixbuf-input.cpp, src/extension/plugin/grid.cpp,
4776           src/widgets/gradient-selector.cpp, src/xml/repr-action-test.cpp,
4777           src/xml/repr-css.cpp, src/xml/repr-io.cpp, src/xml/repr-util.cpp,
4778           src/xml/repr.cpp, src/xml/repr.h: inline function removal patches from
4779           Robert Crosbie.
4781 2005-02-11  Kees Cook  <kees@outflux.net>
4783         * src/Makefile.mingw, src/make.*: win32 compile updates.
4784         * src/extensions/internal/gnome.cpp: added my missing "comment" code.
4785         * src/shortcuts.cpp, doc/keys.xml, doc/keys.html, share/screens/keys.svg:
4786           added explicit ctrl-w. since gtk already binds it, we may as well show it.
4788 2005-02-10  Jon A. Cruz  <jon@joncruz.org>
4790         * src/inkscape.cpp: Changed from SHGetSpecialFolderPath to
4791           SHGetSpecialFolderLocation. Fixes bug #1085641
4793 2005-02-10  MenTaLguY  <mental@rydia.net>
4795         * src/document.h, src/document.cpp: get rid of casting macro uses
4797 2005-02-10  MenTaLguY  <mental@rydia.net>
4799         * src/desktop.cpp, src/document-undo.cpp, src/document.cpp, src/file.cpp,
4800           src/gradient-chemistry.cpp, src/inkscape.cpp, src/interface.cpp,
4801           src/sp-metadata.cpp, src/sp-namedview.cpp, src/sp-object-repr.cpp,
4802           src/sp-object.cpp, src/svg-view.cpp, src/uri-references.cpp,
4803           src/view.cpp, src/dialogs/stroke-style.cpp,
4804           src/widgets/gradient-selector.cpp, src/widgets/gradient-vector.cpp:
4806           get rid needless uses of SP_IS_DOCUMENT (if we can't trust the
4807           compiler's type checking, what can we trust?)
4809 2005-02-10  MenTaLguY  <mental@rydia.net>
4811         * src/desktop-style.h, src/desktop.h, src/document.h, src/event-context.h,
4812           src/inkscape.h, src/knotholder.h, src/nodepath.h,
4813           src/selection-chemistry.h, src/selection.h, src/sp-conn-end-pair.h,
4814           src/sp-object-repr.h, src/sp-object.h, src/style.h,
4815           src/dialogs/sp-attribute-widget.h, src/extension/implementation/script.h,
4816           src/xml/repr-get-children.h, src/xml/repr.h, src/xml/sp-repr-action.h,
4817           src/xml/sp-repr-attr.h, src/xml/xml-forward.h:
4819           got rid of xml-forward.h
4821 2005-02-10  Kees Cook  <kees@outflux.net>
4823         * configure.ac, Makefile.am, src/Makefile.am, Makefile.mingw.common.in,
4824           inkscape.nsi.in: setting up "configure" to build the other files that
4825           expect version numbers to get updated.  Including mingw files in dist
4826           package.
4828 2005-02-10  Jon A. Cruz  <jon@joncruz.org>
4829         * src/io/uristream.h, src/io/uristream.cpp,
4830           src/extension/internal/svg.h, src/extension/internal/svg.cpp,
4831           src/extension/internal/Makefile_insert,
4832           src/extension/internal/extension.h,
4833           src/extension/internal/init.cpp:
4834           Adding internal .svgz load and save extension.
4835           Probable fix for bugs #1074996, #1050361, #925033, #1052307
4837 2005-02-08  Kees Cook  <kees@outflux.net>
4839         * src/extension/implementation/script.cpp: proper /tmp handling.
4840           Closes bug #1074996.
4841         * src/inkscape.cpp, src/inkscape.h, src/dialogs/export.cpp: correction
4842           for export dialog paths.  Closes bug #1114714.
4843         * inkscape.nsi, Makefile.mingw.common: version bumps
4844         * src/text-context.cpp: removed preedit code; it was broken and unneeded.
4846 2005-02-08  Ted Gould  <ted@gould.cx>
4848         * Released 0.41
4850 2005-02-01  Kees Cook  <kees@outflux.net>
4852         * src/xml/sp-css-attr.h, src/desktop-style.cpp, src/xml/repr-css.cpp,
4853           src/xml/repr.h: Fixed SPCSSAttr to be a "real" class, at mental's
4854           direction.  Fixes my "default prefs don't show attrs" bug.
4855         * src/helper/stock-items.cpp: removing redundant code.
4856         * src/libnr/nr-point.h, src/libnrtype/FlowUtils.h, src/livarot/Shape.h:
4857           added explicit initializations to keep valgrind happy.
4858         * src/dir-util.cpp, src/sp-path.cpp, src/splivarot.cpp,
4859           src/svg/svg-length.cpp, src/widgets/icon.cpp:
4860           cleaning up memory leaks detected by valgrind.
4861         * src/extension/dependancy.cpp: made repr-attr tags untranslatable.
4862         * src/extension/system.cpp: correcting extension autodetection when
4863           there are conflicting matching modules.
4864         * src/dialogs/filedialog.cpp, src/extension/extension.h,
4865           src/extension/internal/svg.cpp: .svgz loading works again as
4866           expected.  Non-functioning modules are not listed in file dialogs.
4867         * src/text-context.cpp, src/text-editing.cpp: preedit modes don't
4868           work correctly for multi-byte characters.  See bug 1086769.
4870 2005-01-31  Jon A. Cruz  <jon@joncruz.org>
4871         * src/file.cpp, src/inkscape.cpp, src/interface.cpp,
4872           src/dialogs/export.cpp, src/extension/init.cpp:
4873           sanitize messages before passing to display dialogs.
4875 2005-01-31  Kees Cook  <kees@outflux.net>
4877         * src/libnrtype/FontFactory.cpp: added a crude font name detection
4878           routine to work around a Pango crash bug.  This can be removed once
4879           Pango is fixed.  See bug #1025565.  Actually, I figured out a fix.
4880         * print.cpp, print.h, sp-shape.cpp, extension/print.cpp,
4881           extension/print.h, extension/implementation/implementation.cpp,
4882           extension/implementation/implementation.h,
4883           extension/implementation/plugin.cpp, extension/implementation/plugin.h,
4884           extension/internal/gnome.h, extension/internal/ps.cpp,
4885           extension/internal/ps.h, extension/internal/win32.h:
4886           In an attempt to start debugging print rendering, I've added the
4887           Print::comment function so that SPItem boundries can be easily
4888           seen in rendered output.
4889         * src/preferences-skeleton.h, src/sp-shape.cpp,
4890           src/dialogs/display-settings.cpp, src/extension/internal/ps.cpp:
4891           Added printout comments for print debugging.  Fixed dash output
4892           bug #1104050.
4893         * src/dialogs/rdf.cpp: fixed rdf:bag displays.  Closes bug #1113316.
4895 2005-01-30  Jon A. Cruz  <jon@joncruz.org>
4896         * src/io/sys.h, src/io/sys.cpp: added utility routine to cleanup
4897           strings with invalid UTF-8 for display.
4899 2004-01-30  Kees Cook  <kees@outflux.net>
4901         * src/make.dep, src/make.exclude, src/make.files, src/make.ofiles,
4902           src/io/uristream.cpp, src/io/sys.cpp: additional win32 changes
4903           using Jon Cruz's new mkdir function.  Getting Win32 to compile the
4904           "io" directory.  Closes bug #1107305.
4905         * src/file.cpp, src/inkscape-stock.cpp, src/inkscape.cpp,
4906           src/interface.cpp, src/main.cpp, src/dialogs/export.cpp,
4907           src/dialogs/stroke-style.cpp, src/extension/input.cpp,
4908           src/extension/implementation/script.cpp, src/helper/stock-items.cpp,
4909           src/io/sys.cpp, src/io/sys.h, src/widgets/icon.cpp: wrapped
4910           g_file_test with new Inkscape::IO::file_test since g_file_test isn't
4911           utf8-safe.
4912         * src/inkscape.cpp: removed call to g_free on non-alloced string.
4913           fixed up crash-save location to be utf8-okay.
4914         * src/extension/extension.cpp: convert from utf8 before open.
4915         * src/sp-spiral.cpp, src/object-edit.cpp: found place where CLAMP on
4916           spiral's t0 wasn't working.  Closes bug #1075640.
4918 2004-01-28  MenTaLguY  <mental@rydia.net>
4920         * src/sp-object.h, src/sp-object.cpp:
4921           efficiency fixes which should be helpful when loading large documents
4923 2005-01-29  Jon A. Cruz  <jon@joncruz.org>
4925         * src/file.h, src/file.cpp, src/inkscape.cpp, src/sp-image.cpp,
4926           src/extension/implementation/script.cpp,
4927           src/extension/internal/pov-out.cpp, src/extension/internal/ps.cpp,
4928           src/extension/plugin/gimpgrad.cpp, src/helper/png-write.cpp,
4929           src/io/Makefile_insert, src/io/sys.h, src/io/sys.cpp,
4930           src/trace/imagemap.cpp, src/xml/repr-io.cpp:
4932           Refactored open routine to better location.
4934 2004-01-28  Kees Cook  <kees@outflux.net>
4936         * configure.ac: added test for libgc 6.4 or better.
4937         * src/main.cpp: calling new SPRepr methods instead of inline wrappers.
4939 2004-01-27  MenTaLguY  <mental@rydia.net>
4941         * src/xml/simple-node.h, src/xml/simple-node.cpp:
4943           SimpleNode::lastChild() and SimpleNode::appendChild() are now
4944           O(1) rather than O(n)
4946 2004-01-26  MenTaLguY  <mental@rydia.net>
4948         * src/xml/repr-util.cpp, src/xml/repr.cpp, src/xml/repr.h,
4949           src/xml/sp-repr-action.h, src/xml/sp-repr-event-vector.h:
4951           inlined legacy wrappers
4953         * src/xml/simple-node.cpp: really fixed #1108231 now
4955 2005-01-25  Jon A. Cruz  <jon@joncruz.org>
4957         * src/interface.cpp: Passed file import call to shared code.
4958           Fixed bug #1108620.
4960 2005-01-25  MenTaLguY  <mental@rydia.net>
4962         * src/xml/simple-node.cpp: fixed bug #1108231
4964 2005-01-25  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
4966         * src/dialogs/desktop-properties.cpp: Changed set of paper sizes offered:
4968           Removed `Folio' pagesize (which means a different paper size to
4969           different people; will Folio be missed?  If so, can we improve
4970           the name?).
4972           Changed ISO page sizes (A0..A10, B0..B10) to match official ISO
4973           specification in mm.
4975           Note that these differ from ghostscript's idea of page sizes;
4976           see comment in desktop-properties.cpp for speculation of
4977           possible problems (fuzziness from antialiasing).
4979           (Note also that our previous sizes differed even more from
4980           gs_statd.ps...)
4982           Coalesced Ledger and Tabloid to a single entry (11x17in);
4983           previously they differed in size.
4985           Changed Icon 16x16 from 16pt to 16px; similarly Icon 32x32 and
4986           Banner 468x60.
4988 2004-01-24  MenTaLguY  <mental@rydia.net>
4990         * src/xml/simple-node.cpp: potential fix for bug #1108231
4992 2004-01-23  Ted Gould  <ted@gould.cx>
4994         * po/POTFILES.in, share/extensions/dia.inx,
4995         src/preferences-skeleton.h, src/extension/Makefile_insert,
4996         src/extension/dependency.cpp, src/extension/dependency.h,
4997         src/extension/error-file.cpp, src/extension/error-file.h,
4998         src/extension/extension.cpp, src/extension/extension.h,
4999         src/extension/init.cpp, src/extension/prefdialog.cpp:
5001         Adding in functionality to write out an error log based on the failing to
5002         load of extensions.  There is also a new error dialog that appears if one
5003         or more fail to alert the user and tell them where the error log is
5004         stored.  In the log there is more complex descriptions of what failed.
5006 2004-01-23  MenTaLguY  <mental@rydia.net>
5008         * src/sp-object.cpp: fix for id binding bug
5010 2004-01-23  MenTaLguY  <mental@rydia.net>
5012         * src/xml/repr-io.cpp: don't complain about not having a namespace
5013           URI for the standard xml: prefix
5015         * src/desktop-style.cpp, src/desktop.cpp, src/document-undo.cpp,
5016           src/file.cpp, src/gradient-chemistry.cpp, src/inkscape.cpp,
5017           src/interface.cpp, src/nodepath.cpp, src/object-edit.cpp,
5018           src/path-chemistry.cpp, src/prefs-utils.cpp, src/select-toolbar.cpp,
5019           src/selection-chemistry.cpp, src/sp-defs.cpp, src/sp-flowdiv.cpp,
5020           src/sp-flowtext.cpp, src/sp-gradient.cpp, src/sp-item.cpp,
5021           src/sp-object-group.cpp, src/sp-object-repr.cpp, src/sp-object.cpp,
5022           src/sp-offset.cpp, src/sp-pattern.cpp, src/sp-string.cpp,
5023           src/sp-text.cpp, src/sp-tspan.cpp, src/sp-use.cpp, src/splivarot.cpp,
5024           src/text-chemistry.cpp, src/text-context.cpp, src/text-editing.cpp,
5025           src/dialogs/clonetiler.cpp, src/dialogs/display-settings.cpp,
5026           src/dialogs/stroke-style.cpp, src/dialogs/xml-tree.cpp,
5027           src/extension/extension.h, src/extension/implementation/script.cpp,
5028           src/widgets/dash-selector.cpp, src/widgets/gradient-vector.cpp,
5029           src/widgets/sp-xmlview-tree.cpp, src/xml/Makefile_insert,
5030           src/xml/comment-node.h, src/xml/element-node.h,
5031           src/xml/repr-action-test.cpp, src/xml/repr-css.cpp,
5032           src/xml/repr-get-children.cpp, src/xml/repr-io.cpp,
5033           src/xml/repr-private.h, src/xml/repr-util.cpp, src/xml/repr.cpp,
5034           src/xml/repr.h, src/xml/simple-document.cpp, src/xml/simple-document.h,
5035           src/xml/simple-node.cpp, src/xml/simple-node.h,
5036           src/xml/sp-repr-action.cpp, src/xml/sp-repr-doc.h, src/xml/sp-repr.h,
5037           src/xml/text-node.h:
5039           got rid of xml/repr-private.h, removed
5040           sp_repr_document_createTextNode(), made SPRepr and SPReprDoc abstract
5041           interfaces, and moved the SPRepr implementations into separate files
5042           in the Inkscape::XML namespace
5044         * src/util/shared-c-string-ptr.h: added equality operators to avoid
5045           certain ambiguities
5047 2004-01-22  MenTaLguY  <mental@rydia.net>
5049         * src/xml/Makefile_insert, src/xml/repr-private.h, src/xml/repr.cpp,
5050           src/xml/session.h, src/xml/simple-session.cpp, src/xml/simple-session.h,
5051           src/xml/sp-repr-action.cpp, src/xml/transaction-logger.h:
5053           added Inkscape::XML::Session and Inkscape::XML::TransactionLogger
5054           to provide a new interface for transactions, rather than doing it from
5055           SPReprDoc
5057 2004-01-22  MenTaLguY  <mental@rydia.net>
5059         * src/xml/Makefile_insert, src/xml/node-observer.h,
5060           src/xml/repr-private.h, src/xml/repr.cpp:
5062           moved repr loging behind generic observer interface
5064 2005-01-22  Ted Gould  <ted@gould.cx>
5066         * src/display/canvas-grid.cpp, src/display/canvas-grid.h;
5068         Fixing 1103001.  Now major grid lines work alot more like you
5069         think that they should.
5071 2005-01-21  MenTaLguY  <mental@rydia.net>
5073         * src/util/Makefile_insert, src/util/shared-c-string-ptr.cpp,
5074           src/util/shared-c-string-ptr.h, src/util/shared-c-string.cpp,
5075           src/util/shared-c-string.h, src/xml/repr-io.cpp,
5076           src/xml/repr-private.h, src/xml/repr-util.cpp, src/xml/repr.cpp,
5077           src/xml/sp-repr-action.h, src/xml/sp-repr-attr.h:
5079           renamed Util::SharedCString to Util::SharedCStringPtr, which is
5080           more descriptive of what it actually is
5082 2005-01-21  MenTaLguY  <mental@rydia.net>
5084         * src/xml/repr-private.h, src/xml/repr-util.cpp, src/xml/repr.cpp:
5086           simplify the cacheing of repr position indices, and make it something
5087           that can work with an abstract interface
5089 2005-01-20  Kees Cook  <kees@outflux.net>
5091         * src/file.cpp: added some debug output to help bulia debug bug #1102318.
5092         * configure.ac: more attempts at detecting the -lgc libs.
5094 2005-01-19  Kees Cook  <kees@outflux.net>
5096         * configure.ac: trying to correct the -lgc detection.
5097         * inkscape.pod: added theme details.
5098         * src/widgets/widget-sizes.h: went from 20 to 24 for toolbar icon size
5099           to match other GTK applications.
5100         * src/extension/db.cpp: corrected STL "not found" handling.  Didn't
5101           fix bug #1102318.
5103 2005-01-18  Kees Cook  <kees@outflux.net>
5105         * src/inkscape.h, src/inkscape.cpp, src/widgets/icons.cpp:
5106           Added basic theme support!  Whee!
5107         * share/inkscape/icons.svg: restoring original up/down/flip icons since
5108           icons are themable now.  We should stick to our original look.
5109         * share/screens/about.svg: added Brisgeek's 0.41 about screen.  Had
5110           to tweak background: looks like doc background isn't imported.
5111         * share/icons/*.xpm, share/icons/*.png: removed them.  Not being used.
5113 2005-01-17  MenTaLguY  <mental@rydia.net>
5115         * src/desktop-style.cpp, src/inkscape.cpp, src/interface.cpp,
5116           src/path-chemistry.cpp, src/prefs-utils.cpp, src/selection-chemistry.cpp,
5117           src/sp-flowtext.cpp, src/sp-gradient.cpp, src/sp-object.cpp,
5118           src/sp-text.cpp, src/sp-tspan.cpp, src/splivarot.cpp,
5119           src/dialogs/xml-tree.cpp, src/extension/internal/pov-out.cpp,
5120           src/widgets/dash-selector.cpp, src/xml/repr-css.cpp,
5121           src/xml/repr-get-children.cpp, src/xml/repr-io.cpp,
5122           src/xml/repr-private.h, src/xml/repr-util.cpp, src/xml/repr.cpp,
5123           src/xml/sp-repr-action.cpp:
5125           Made all SPRepr fields private, and moved most functionality into
5126           member functions.  Also shuffled SPReprDoc members, to avoid
5127           need for SPReprDoc to be finalized.
5129 2005-01-17  Kees Cook  <kees@outflux.net>
5131         * share/markers/markers.svg: applied patch #990884, which provides a
5132           few mirrored arrows until marker transforms are finished.
5133         * share/icons/icons.svg: updates per Bulia's request.
5135 2005-01-16  MenTaLguY  <mental@rydia.net>
5137         * src/sp-object.cpp: non-elements no longer get ids assigned
5139 2005-01-15  MenTaLguY  <mental@rydia.net>
5141         * src/arc-context.cpp, src/document-private.h, src/document.cpp,
5142           src/document.h, src/event-context.cpp, src/node-context.cpp,
5143           src/rect-context.cpp, src/sp-object.cpp, src/spiral-context.cpp,
5144           src/star-context.cpp, src/toolbox.cpp, src/uri-references.cpp,
5145           src/dialogs/desktop-properties.cpp, src/widgets/gradient-vector.cpp,
5146           src/widgets/layer-selector.cpp, src/widgets/sp-widget.cpp,
5147           src/widgets/sp-xmlview-attr-list.cpp, src/widgets/sp-xmlview-content.cpp,
5148           src/widgets/sp-xmlview-tree.cpp, src/xml/repr.cpp,
5149           src/xml/sp-repr-event-vector.h:
5151           Removed attribute setting callback, and decoupled ids and object/repr
5152           bindings (object <-> repr associations are now remembered directly,
5153           though ids are still tracked too).
5155           This means it is now possible to set a null id on an object without
5156           anything breaking (hopefully).  For now we will still assign ids
5157           to everything by default...
5159 2005-01-15  MenTaLguY  <mental@rydia.net>
5161         * src/arc-context.cpp, src/event-context.cpp, src/node-context.cpp,
5162           src/rect-context.cpp, src/sp-object.cpp, src/spiral-context.cpp,
5163           src/star-context.cpp, src/toolbox.cpp,
5164           src/dialogs/desktop-properties.cpp, src/widgets/gradient-vector.cpp,
5165           src/widgets/layer-selector.cpp, src/widgets/sp-widget.cpp,
5166           src/widgets/sp-xmlview-attr-list.cpp, src/widgets/sp-xmlview-content.cpp,
5167           src/widgets/sp-xmlview-tree.cpp, src/xml/repr.cpp,
5168           src/xml/sp-repr-event-vector.h:
5170           remove all veto callbacks but setting attributes
5172 2005-01-15  Kees Cook  <kees@outflux.net>
5174         * src/inkscape.cpp: correcting windows path for preferences.  Closes
5175         bug #933461.
5177         * src/file.cpp, src/nodepath.cpp, src/selection-describer.cpp,
5178         src/seltrans.cpp, src/sp-item-group.cpp, src/sp-path.cpp,
5179         src/sp-spiral.cpp, src/sp-star.cpp, src/dialogs/find.cpp:
5180         Using ngettext for plural localized strings.  Please try to keep this
5181         up.  Closes bug #1076872.
5183         * share/icons/Makefile.am, share/icons/icons.svg, src/inkscape-stock.cpp,
5184         src/inkscape-stock.h, src/dialogs/stroke-style.cpp,
5185         src/dialogs/text-edit.cpp, src/dialogs/transformation.cpp,
5186         src/dialogs/xml-tree.cpp: Finished the last of the missing pixmap
5187         replacements from Andreas Nilsson.  Fixed some mistakes in the earlier
5188         changes (need to call sp_icon_new_scaled not sp_icon_new).
5190 2005-01-14  MenTaLguY  <mental@rydia.net>
5192         * src/gc.cpp: leave the free space multiplier at the default, which
5193           will hopefully (according to Hans) avoid some of the odd gc issues
5194           we've had, if nothing else does
5196 2005-01-14  Kees Cook  <kees@outflux.net>
5198         * share/icons/Makefile.am, share/icons/icons.svg, src/inkscape-stock.cpp,
5199         src/inkscape-stock.h, src/verbs.cpp, src/dialogs/stroke-style.cpp,
5200         src/dialogs/transformation.cpp, src/widgets/icon.cpp, src/widgets/icon.h,
5201         src/widgets/paint-selector.cpp:
5202         Fixed up code and replaced pixmaps with icons from myself and
5203         Andreas Nilsson.
5205 2005-01-11  MenTaLguY  <mental@rydia.net>
5207         * src/xml/repr-io.cpp: promote non-namespaced SVG documents into SVG
5208           namespace
5210 2005-01-08  MenTaLguY  <mental@rydia.net>
5212         * src/Makefile_insert, src/gc-anchored.cpp, src/gc-anchored.h:
5213           abstracted allocation of anchors
5215 2005-01-06  Ted Gould  <ted@gould.cx>
5217         * src/interface.cpp, src/extension/effect.cpp,
5218         src/extension/implementation/implementation.cpp,
5219         src/extension/implementation/implementation.h,
5220         src/extension/implementation/plugin-link.h,
5221         src/extension/implementation/plugin.cpp,
5222         src/extension/implementation/plugin.h,
5223         src/extension/implementation/script.cpp,
5224         src/extension/implementation/script.h, src/extension/plugin/gimpgrad.cpp,
5225         src/extension/plugin/grid.cpp:
5227         Changing the effects preferences so that it uses sockets and plugs which
5228         will allow out of process GUIs to work too.  This is a first pass with
5229         nothing beautiful, but it does seem to work.
5231 2005-01-03  MenTaLguY  <mental@rydia.net>
5233         * src/document.cpp, src/main.cpp, src/sp-root.cpp:
5234           get rid of ugly xmlns hacks
5236         * src/inkscape.cpp, src/extension/internal/svg.cpp, src/xml/repr-io.cpp:
5237           automatically include xmlns declarations for the required namespaces,
5238           and make a best effort at using a default namespace when requested
5239           and possible
5241 2005-01-02  Kees Cook  <kees@outflux.net>
5243         * share/icons/icons.svg: updated view and location
5244         * src/document.cpp, src/dialogs/rdf.cpp: fixed another bug in metadata
5245           due to svg: prefix change.
5246         * src/inkscape-stock.h, src/inkscape-stock.cpp, share/icons/Makefile.am:
5247           removed unused xpm icons
5249 2005-01-02  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5251         * src/fontsize-expansion.h, src/fontsize-expansion.cpp:
5252           New files.
5253         * src/Makefile_insert: Add the new files to libinkpre_a_SOURCES.
5254         * src/desktop-style.cpp (sp_desktop_apply_css_recursive):
5255           When calling sp_css_attr_scale, change the expansion calculation
5256           to use fontsize_expansion().
5257         * src/sp-text.cpp (sp_text_set_transform): Similarly use
5258           fontsize_expansion() instead of generic m.expansion().
5260 2005-01-01  Kees Cook  <kees@outflux.net>
5262         * src/extension/db.h, src/extension/db.cpp, src/extension/init.cpp:
5263         created "modulelist" to maintain initialization order for extension
5264         lists.
5266 2004-12-31  MenTaLguY  <mental@rydia.net>
5268         * src/xml/repr-io.cpp, src/xml/repr.h: initial scaffoliding for more
5269           cosmetic use of prefixes in output files (and eventually more proper
5270           namespace handling for output as well)
5272 2004-12-31  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5274         * src/sp-text.cpp (sp_text_set_transform): Change scaling of font size.
5275           The result should be closer to what CorelDraw, XaraX, Canvas 7 and
5276           Expression3 do according to vellum, though I don't know the exact
5277           rule that they use.
5279 2004-12-25  Ted Gould  <ted@gould.cx>
5281         * share/extensions/grid.inx, src/extension/extension.cpp,
5282         src/extension/extension.h, src/extension/plugin/grid.cpp:
5284         Futher improvements to the grid plugin.  This involves mostly adding in
5285         parameters at this time, but, ofcourse, I never implemented floating
5286         point parameters -- so that had to be done first.  More modular code so
5287         that things can be adjusted externally better.
5289 2004-12-25  Ted Gould  <ted@gould.cx>
5291         * share/extensions/Makefile.am, share/extensions/grid.inx,
5292         src/extension/implementation/plugin-link.h,
5293         src/extension/implementation/plugin.cpp,
5294         src/extension/plugin/Makefile_insert, src/extension/plugin/gimpgrad.cpp,
5295         src/extension/plugin/grid.cpp:
5297         Adding in a new effect plugin, grid.  It draws a grid on the canvas which
5298         is just an easy way to do some neat things.  It is mostly done, but still
5299         needs cleanup.  Some other files required modification to make this
5300         possible.
5302 2004-12-25  MenTaLguY  <mental@rydia.net>
5304         * src/event-context.cpp: removed unused handler
5306 2004-12-25  Ted Gould  <ted@gould.cx>
5308         * share/extensions/svg_dropshadow:
5310         Changing to use "svg:g" instead of "g" for the group.
5312         * src/verbs.cpp, src/extension/effect.cpp, src/extension/effect.h,
5313         src/extension/system.cpp, src/extension/system.h,
5314         src/extension/implementation/implementation.cpp,
5315         src/extension/implementation/implementation.h,
5316         src/extension/implementation/plugin.cpp,
5317         src/extension/implementation/plugin.h,
5318         src/extension/implementation/script.cpp,
5319         src/extension/implementation/script.h:
5321         Final stuff to get Effects working as well as the did before, which
5322         is okay, but not great.  This involved changing the API to get an SPView
5323         instead of an SPDocument because then I can get the selection information
5324         from the view that is being used.
5326 2004-12-24  MenTaLguY  <mental@rydia.net>
5328         * src/sp-object-repr.cpp, src/sp-tspan.cpp, src/splivarot.cpp,
5329           src/dialogs/rdf.cpp, src/dialogs/xml-tree.cpp,
5330           src/widgets/sp-xmlview-tree.cpp, src/xml/repr-io.cpp,
5331           src/xml/repr-private.h, src/xml/repr-util.cpp, src/xml/repr.cpp,
5332           src/xml/repr.h:
5334           cleaned out unused code and unhygenic macros, as well as fixing
5335           constructors for text and comment nodes
5337 2004-12-24  Ted Gould  <ted@gould.cx>
5339         * src/verbs.cpp, src/extension/effect.cpp, src/extension/effect.h:
5341         Okay, now the effects menu really works!  Well, the implementation seems
5342         to be broken, but the wrapper seems to be all working.
5344 2004-12-24  Ted Gould  <ted@gould.cx>
5346         * src/interface.cpp, src/verbs.cpp, src/verbs.h, src/extension/effect.cpp,
5347         src/extension/effect.h:
5349         Getting the Effects menu basically working.  This included some fixes to
5350         the verbs where they were incrementing the database incorrectly.  The
5351         effects are the first component to take advantage of the dynamically
5352         created verbs, and exercised new code.  Now the basic menu is available,
5353         but there is no functionality there.
5355 2004-12-24  Ted Gould  <ted@gould.cx>
5357         * src/interface.cpp, src/verbs.cpp, src/verbs.h:
5359         Basic code for the effects menu.
5361         * src/dialogs/filedialog.cpp, src/dialogs/filedialog.h,
5362         src/extension/db.cpp, src/extension/db.h:
5364         Changing the DB access functions to use std::list instead of GSList so
5365         that it is more standard, and we get rid of a specialized class that
5366         really isn't that useful.  Less memory usage, and fixes a leak.
5368         * src/extension/effect.cpp, src/extension/effect.h:
5370         Adding in a "Last Effect" to be used in the menus.
5372         * src/extension/extension-forward.h, src/extension/extension.cpp,
5373         src/extension/extension.h, src/extension/input.cpp,
5374         src/extension/output.cpp, src/extension/timer.cpp, src/extension/timer.h,
5375         src/extension/Makefile_insert:
5377         Adding in the timer functions so that modules will unload in a given
5378         amount of time.  For more information on this read the documentation
5379         in the files.  Kinda a lazy deallocation.
5381         * src/extension/implementation/implementation.cpp:
5383         Fix unload so that it is not recursive.
5385 2004-12-23  MenTaLguY  <mental@rydia.net>
5387         * src/arc-context.cpp, src/document.cpp, src/draw-context.cpp,
5388           src/dyna-draw-context.cpp, src/file.cpp, src/gradient-chemistry.cpp,
5389           src/interface.cpp, src/layer-fns.cpp, src/main.cpp, src/object-ui.cpp,
5390           src/path-chemistry.cpp, src/rect-context.cpp,
5391           src/selection-chemistry.cpp, src/sp-anchor.cpp, src/sp-clippath.cpp,
5392           src/sp-defs.cpp, src/sp-ellipse.cpp, src/sp-flowdiv.cpp,
5393           src/sp-flowregion.cpp, src/sp-flowtext.cpp, src/sp-gradient-test.cpp,
5394           src/sp-gradient.cpp, src/sp-image.cpp, src/sp-item-group.cpp,
5395           src/sp-line.cpp, src/sp-marker.cpp, src/sp-mask.cpp,
5396           src/sp-object-group.cpp, src/sp-object-repr.cpp, src/sp-offset.cpp,
5397           src/sp-path.cpp, src/sp-pattern.cpp, src/sp-polygon.cpp,
5398           src/sp-polyline.cpp, src/sp-rect.cpp, src/sp-root.cpp,
5399           src/sp-spiral.cpp, src/sp-star.cpp, src/sp-symbol.cpp, src/sp-text.cpp,
5400           src/sp-tspan.cpp, src/sp-use.cpp, src/spiral-context.cpp,
5401           src/splivarot.cpp, src/star-context.cpp, src/text-chemistry.cpp,
5402           src/text-context.cpp, src/dialogs/find.cpp, src/dialogs/rdf.cpp,
5403           src/dialogs/xml-tree.cpp, src/ecma/EcmaBinding.cpp,
5404           src/extension/internal/gdkpixbuf-input.cpp,
5405           src/extension/internal/svg.cpp, src/livarot/ShapeDraw.cpp,
5406           src/xml/repr-io.cpp, src/xml/repr-util.cpp, src/xml/repr.cpp:
5408           use normalized qnames for SVG elements too
5410 2004-12-23  Kees Cook  <kees@outflux.net>
5412         * configure.ac, src/Makefile_insert, src/extension/script/Makefile_insert:
5413           adding Perl and Python compile tests.  Corrected library locations.
5414         * src/extension/script/InkscapeScript.h,
5415           src/extension/script/InkscapePython.cpp,
5416           src/extension/script/InkscapeScript.cpp: white space fix, and
5417           added config.h, and some small debugging for myself.  Hope Bob doesn't
5418           mind!  :)
5419         * src/dialogs/scriptdialog.cpp: added comments to default code.
5421 2004-12-22  Kees Cook  <kees@outflux.net>
5423         * configure.ac, src/extension/script/Makefile_insert: automake cleanups
5424           to deal with perl/python detection.
5426 2004-12-20  David Turner <novalis@gnu.org>
5427         * src/widgets/gradient-vector.cpp:
5428           Fixed bug with gradient stops at 0 and 100%.  Closes 1085920.
5430 2004-12-18  Bob Jamison  <rjamison@titan.com>
5432         * src/extensions/script/*:
5433           New files that enable embedding of scripting languages
5434           in Inkscape.  Currently using Swig to embed Perl and Python.
5436         * autoconf.ac:
5437           Allow opting for perl or python with --with-perl=yes|no
5438           and --with-python=yes|no
5440 2004-12-15  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5442         * streq.h (streq), strneq.h (strneq), memeq.h (memeq):
5443           New convenience functions for strcmp(a,b)==0 etc.
5445         * src/dir-util.cpp (sp_relative_path_from_path):
5446           Fix when base is a string prefix of path but a directory prefix
5447           (e.g. path=/foo/barney, base=/foo/bar).
5449 2004-12-10  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5451         * src/sp-conn-end.cpp (sp_conn_end_move_compensate):
5452           Fix for undo/save: wasn't calling updateRepr().
5454 2004-12-09  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5456         * src/style.cpp (sp_style_merge_from_style_string):
5457           More standards-conforming parsing of style strings into prop:value
5458           pairs.
5460 2004-12-08  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5462         * src/style.h, src/style.cpp, src/libnrtype/font-style-to-pos.cpp:
5463           Fix font-weight value: s/darker/bolder/.
5465         * src/style.cpp (sp_style_merge_from_parent):
5466           Fix bug with specifying stroke-width with unit of em or ex.
5467           (We were ignoring the number, treating it as 1em or 1ex.)
5469         * src/style.h, src/style.cpp (sp_style_read_dash,
5470           sp_style_write_string, sp_style_write_difference):
5471           Allow `inherit' as a value for dasharray.
5472           (Also plug small memory leak in sp_style_read_dash.)
5474 2004-12-07  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5476         * src/style.cpp (sp_style_write_string):
5477           Fix for when stroke-dasharray either explicitly set to `none', or
5478           inherits non-none.
5480         * src/style.cpp (sp_style_write_ienum):
5481           Fix: preserve explicit `inherit' request.
5482         * (sp_style_read, sp_style_merge_property):
5483           Allow explicit `inherit' for `display' property.
5485         * src/style.cpp (sp_style_read):
5486           Fix copy&paste bug affecting `visibility' and `display' properties.
5488 2004-12-07  David Turner  <novalis@gnu.org>
5490         * src/libnrtype/RasterFont.cpp, src/display/nr-arena-shape.cpp:
5491         Fixed dash rendering bug (#1077213)
5493 2004-12-06  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5495         * src/style.h, src/style.cpp: Support all `display' values
5496           required by SVG 1.1.  (No functional change, insofar as the new
5497           values all have the same behaviour as our existing `block' value
5498           in SVG.)
5499         * src/sp-item.cpp, src/style.cpp: Use `inline' (SP_CSS_DISPLAY_INLINE)
5500           rather than `block' as our generic display value meaning `don't hide
5501           this', as per spec.
5503         * src/style.cpp: Prefer to write lr-tb etc. rather than the
5504           abbreviations lr etc.  (Also add comment saying why.)
5506 2004-12-03  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5508         * src/dialogs/xml-tree.cpp (on_attr_select_row_set_value_content):
5509           Fix segfault: treat NULL as empty string for display purposes.
5511 2004-11-30  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5513         * src/svg/svg.h, src/svg/sp-svg.def, src/svg/svg-length.cpp:
5514           (sp_svg_boolean_read, sp_svg_write_percentage):
5515           Remove these unused functions.
5516           (sp_svg_length_read_lff, sp_svg_number_write_d,
5517           sp_svg_number_write_i): Mark static.
5519         * configure.ac:
5520           When adding -lgc to LIBS, also add its dependencies -lpthread -ldl.
5522 2004-11-28  Ted Gould  <ted@gould.cx>
5524         * 0.40
5526 2004-11-25  MenTaLguY  <mental@rydia.net>
5528         * share/tutorials/tutorial-calligraphy.svg: spelling fix
5530         * src/widgets/layer-selector.cpp: fixing the layer selector update bug;
5531           sigc++ apparently doesn't deal with reference arguments very well
5533 2004-11-25  MenTaLguY  <mental@rydia.net>
5535         * src/layer-fns.cpp: fix layer creation within sublayers
5537         * src/dialogs/layer-properties.cpp: fix dialog leak
5539 2004-11-25  MenTaLguY  <mental@rydia.net>
5541         * src/inkscape.cpp: eliminate duplicated code across #ifdefs
5543         * src/verbs.cpp, src/dialogs/layer-properties.cpp,
5544           src/dialogs/layer-properties.h:
5546           LayerPropertiesDialog is no longer a singleton, since it's kind of a
5547           per-desktop (well, ideally per-document) thing.  Remaining to do:
5548           fix update of layer selector widget, and eliminate leak of dialog
5549           objects.
5551 2004-11-24  Kees Cook  <kees@outflux.net>
5553         * inkscape.spec: added SMP flags, added static library link capability.
5555 2004-11-24  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5557         * src/draw-context.cpp (spdc_concat_colors_and_flush):
5558           Do nothing if empty curve; in particular, don't try to close an
5559           empty curve.
5561         * src/pen-context.cpp (spdc_endpoint_snap):
5562           Fix use of uninitialized value when snapping.
5564 2004-11-23  Bryce Harrington <bryce@bryceharrington.org>
5566         * src/dialogs/layer-properties.cpp:  Fixing bug causing two new
5567           layers to get created when hitting enter
5569 2004-11-23  Kees Cook  <kees@outflux.net>
5571         * share/tutorials: added Josh's changes, resized, repositioned for
5572           800x600.
5573         * src/verbs.h, src/verbs.cpp, src/interface.cpp: added tracing
5574           tutorial.
5576 2004-11-23  MenTaLguY  <mental@rydia.net>
5578         * src/rect-context.cpp: disallow drawing on locked or invisible layers
5580         * src/widgets/layer-properties.h, src/widgets/layer-properties.cpp:
5581           slight HIG-ification
5583         * src/desktop.cpp, src/desktop.h, src/widgets/layer-selector.cpp,
5584           src/widgets/layer-selector.h, src/verbs.cpp, src/sp-desktop-widget.h
5586           removed vestigal layer renaming thing
5588         * src/verbs.cpp, src/dialogs/layer-properties.cpp,
5589           src/dialogs/layer-properties.h:
5591           reuse dialog for creating layers as well as for renaming them
5593 2004-11-22  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5595         * src/display/bezier-utils.cpp (generate_bezier): For the sake of
5596           our current pencil tool, don't use free optimization of the end
5597           tangent vector.
5599 2004-11-21  MenTaLguY <mental@rydia.net>
5601         * src/verbs.cpp: add accels for layer menu items
5603 2004-11-21  Bryce Harrington <bryce@bryceharrington.org>
5605         * src/dialogs/layer-properties.cpp, src/verbs.cpp,
5606           src/dialogs/layer-properties.h: Hooking up layer rename
5607           functionality, and making it show correctly.
5609         * src/dialogs/debugdialog.cpp, src/dialogs/find.cpp,
5610           src/dialogs/tracedialog.cpp:  Fixing dialog show behavior
5612 2004-11-21  Kees Cook  <kees@outflux.net>
5614         * src/sp-object.cpp, src/sp-metadata.cpp: added some debugging, and
5615           fixed a dumb error in my metadata _release handler.  Should mostly
5616           close bug 1069772.
5617         * src/Makefile_insert, src/sp-skeleton.cpp, src/sp-skeleton.h:
5618           created some example SPObject implementations for a basis for any
5619           new SPObjects in the future.
5620         * src/dialogs/xml-tree.cpp: fixing logic bug in identability checker.
5621           Added immutability test to actually close 1069772.
5622         * share/icons/icons.svg, src/verbs.cpp, src/interface.cpp: adding
5623           icons for the "new" menu, vacuum, reverse, make bitmap, and trace.
5625 2004-11-20  Jon A. Cruz  <jon@joncruz.org>
5627         * src/extension/db.h, src/extension/db.cpp, src/dialogs/filedialog.cpp:
5628           Added extension matching pattern. Fixed bug 1064888.
5630         * src/dialogs/filedialog.cpp (isValidImageFile):
5631           Fixed previewing bug 1067551.
5633 2004-11-20  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5635         * src/display/bezier-utils.cpp (sp_bezier_fit_cubic_full):
5636           Add splitpoints parameter.  Callers updated.
5638         * src/display/bezier-utils.cpp
5639           (sp_bezier_fit_cubic_r, sp_bezier_fit_cubic_full):
5640           Change last parameter from lg_max_beziers to max_beziers.
5641           Callers updated.
5643 2004-11-19  Bryce <bryce@bryceharrington.org>
5645         * src/dialogs/layer-properties.cpp,
5646           src/dialogs/layer-properties.h:  Adding some widgets.
5648 2004-11-18  Bryce <bryce@bryceharrington.org>
5650         * src/dialogs/Makefile_insert, src/dialogs/makefile.msc,
5651           src/dialogs/layer-properties.h, src/dialogs/layer-properties.h:
5652           Adding a layer properties dialog for renaming layers
5654         * src/desktop.cpp src/interface.cpp, src/verbs.cpp,
5655           src/verbs.h src/dialogs/layer-properties.cpp,
5656           src/dialogs/layer-properties.h,
5657           src/widgets/layer-selector.cpp:  Hooking in layer props dialog.
5659 2004-11-16  MenTaLguY  <mental@rydia.net>
5661         * src/widgets/document-tree-model.cpp, src/widgets/document-tree-model.h,
5662           src/widgets/layer-selector.cpp, src/widgets/Makefile_insert:
5664           removed Widgets::DocumentTreeModel because unused
5666         * src/xml/repr-private.h, src/xml/repr-util.cpp, src/xml/repr.cpp,
5667           src/xml/repr.h:
5669           cache successive sibling counts (self+subsequent siblings) in SPRepr
5670           to make sp_repr_n_children() and sp_repr_position() more efficient,
5671           which will be needed later for e.g. GTK tree models.
5673           sp_repr_nth_child() isn't any faster as a result of the changes,
5674           but it probably won't need to be
5676         * src/xml/repr.cpp: fixed refcount leak in SPRepr::SPRepr(SPRepr const &)
5678 2004-11-15  MenTaLguY  <mental@rydia.net>
5680         * src/gc.cpp: add initial stubs that print an informative error
5681           if the GC functions are used before Inkscape::GC::init() is called
5683 2004-11-14  MenTaLguY  <mental@rydia.net>
5685         * configure.ac, src/gc-core.h, src/gc-managed.h, src/gc-anchored.h,
5686           src/gc-finalized.h, src/gc.cpp:
5688           make disabling the collector a run-time rather than a compile-time
5689           option; there are now three garbage collector options, selectable
5690           by setting the _INKSCAPE_GC environment variable:
5692            * enable - the normal collector (default)
5693            * debug - the debugging collector
5694            * disable - use standard malloc in place of the libgc allocator
5696 2004-11-14  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5698         * src/display/bezier-utils.cpp: Make end tangent/s be unconstrained for
5699           sp_bezier_fit_cubic, sp_bezier_fit_cubic_r, and around corner nodes.
5701         * src/pencil-context.cpp (fit_and_split): Allow the bezier fitter to
5702           choose the middle control points freely except to the extent required
5703           for smooth nodes.
5705         * src/display/bezier-utils.cpp (generate_bezier):
5706           If either end tangent is specified as zero then estimate the
5707           corresponding control point without constraining its direction
5708           from the endpoint.
5710         * src/pencil-context.h, src/pencil-context.cpp
5711           (fit_and_split, sp_pencil_context_init): Explicitly remember required
5712           tangent instead of using "first two points" hack.
5714         * src/display/bezier-utils.cpp (sp_bezier_fit_cubic_full):
5715           Detect & prevent "ghost spikes", by allowing a corner node if
5716           the specified tangent would result in a spike.
5718         * src/display/bezier-utils.cpp (generate_bezier): Better handling
5719           of the case of infinite solutions for the lengths of the two
5720           tangent vectors: try requiring that the lengths equal each other,
5721           and solving for that length (just one variable).
5723 2004-11-13  Kees Cook  <kees@outflux.net>
5725         * src/document.cpp: wrapped updateDisplay call in undo insensitivity.
5726           Closes bug #1030436.
5728 2004-11-12  MenTaLguY  <mental@rydia.net>
5730         * src/main.cpp: fpresetsticky -> fpsetsticky
5732         * src/verbs.cpp: cast width changes
5734         * src/libnrtype/FlowBoxes.h, src/libnrtype/FlowDefs.h,
5735           src/libnrtype/FlowDest.h, src/libnrtype/FlowEater.h,
5736           src/libnrtype/FlowRes.h, src/libnrtype/FlowSols.h,
5737           src/libnrtype/FlowSrc.h, src/libnrtype/FlowSrcText.h,
5738           src/libnrtype/FlowStyle.h, src/libnrtype/FlowUtils.h:
5739           remove stdint.h which isn't being used here
5741         * src/widgets/icon.h, src/widgets/icon.cpp:
5742           icon greys out when insensitive
5744         * src/gc-anchored.h, src/gc-finalized.h, src/gc-managed.h:
5745           documentation
5747         * src/verbs.cpp: changed cast to reinterpret_cast to hopefully
5748           avoid compiler warning
5750 2004-11-11  Kees Cook  <kees@outflux.net>
5752         * src/seltrans.cpp, src/select-context.cpp: ref counting SPObjects
5753           correctly so undo's don't blow up an active resize/move.  Closes
5754           bug #1018756.
5756 2004-11-11  MenTaLguY  <mental@rydia.net>
5758         * src/inkscape.cpp, src/main.cpp, src/widgets/icon.cpp:
5759           removed sp_bitmap_icons
5761         * configure.ac, src/sp-image.cpp, src/object-ui.cpp:
5762           removed stale autotrace support code
5764 2004-11-10  MenTaLguY  <mental@rydia.net>
5766         * src/sp-item.cpp, src/sp-clippath.cpp, src/cp-mask.cpp:
5767           minor refcounting tweaks
5769         * src/sp-image.cpp: fixed failure to release GdkPixbufLoader when
5770           done with it (fixes bug #1063054)
5772 2004-11-10  Kees Cook  <kees@outflux.net>
5774         * configure.ac, src/gc-core.h: corrected gc.h path detection.
5776 2004-11-09  MenTaLguY  <mental@rydia.net>
5778         * src/dialogs/fileselector.cpp: fixed cut-and-paste refcount bug
5779           between SVGPreview::setFileName and SVGPreview::setFromMem that
5780           was leaking bitmap image preview SPDocuments
5782 2004-11-09  Bryce Harrington <bryce@bryceharrington.org>
5784         * src/dialogs/item-properties.cpp
5786 2004-11-09  MenTaLguY  <mental@rydia.net>
5788         * src/sp-item.cpp, src/style.cpp, src/style.h:
5789           use 'display' rather than 'visibility' for hiding, and give display
5790           a more "modern" representation in SPStyle like visibility's
5792 2004-11-09  Kees Cook  <kees@outflux.net>
5794         * src/dialogs/xml-tree.cpp: added better context to the status bar.
5795           added warning flash for id conflicts.
5796         * src/toolbox.cpp: killed some copy/paste code while bug hunting.
5798 2004-11-08  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5800         * src/sp-item.h, src/sp-item.cpp
5801           (isExplicitlyHidden, setExplicitlyHidden): New methods.
5803         * src/dialogs/item-properties.cpp: Change from having a `Visible'
5804           checkbox that explicitly sets the SVG visibility property to
5805           having a `Hide' checkbox that controls whether or not the
5806           element has visibility:hidden.  (Mitigates #1061934.)
5808         * src/sp-object.h, src/sp-object.cpp (visible, setVisible):
5809           Remove these methods.
5811 2004-11-07  MenTaLguY  <mental@rydia.net>
5813         * src/gc-finalized.h: fix for Debian bug #279991 (cast to ptrdiff_t
5814                               rather than int), and basic documentation
5816 2004-11-06  MenTaLguY  <mental@rydia.net>
5818         * src/sp-item.cpp: fix desktop-specific version of SPItem::isHidden()
5819                            to deal correctly with parent visibility
5821 2004-11-05  MenTaLguY  <mental@rydia.net>
5823         * src/widgets/layer-selector.cpp: more work on making the lock/hide
5824           buttons actually do something
5826         * src/sp-item.cpp, src/sp-item.h: implement lock/hide related methods
5828         * src/verbs.cpp: "Remove All Kerns" -> "Remove Manual Kerning"
5830 2004-11-04  Kees Cook  <kees@outflux.net>
5832         * src/dialogs/rdf.h, src/dialogs/rdf.cpp: added rdf:Bag for the
5833           dc:subject keyword list.  Closed bug #1021025.
5834         * src/dialogs/xml-tree.cpp, src/widgets/sp-xmlview-attr-list.cpp,
5835           src/widgets/sp-xmlview-attr-list.h: added status bar to XML
5836           editor.  added row-change callback for XML tree view.  This
5837           all supports a possible future solution to bug #869683.
5838         * src/dialogs/desktop-properties.cpp: memory leak in RDF code.
5840 2004-11-04  MenTaLguY  <mental@rydia.net>
5842         * src/widgets/layer-selector.cpp: togglable images and formatting
5843           changes (make current layer bold)
5845         * src/uri.h, src/uri.cpp: added assignment operator
5847 2004-11-03  MenTaLguY  <mental@rydia.net>
5849         * src/widgets/Makefile_insert, src/widgets/shrink-wrap-button.cpp,
5850           src/widgets/shrink-wrap-button.h:
5852           added Inkscape::Widgets::shrink_wrap_button, to make any gtk button
5853           an SPButton-like shrink-wrapped button
5855         * src/widgets/layer-selector.h, src/widgets/layer-selector.cpp:
5857           abandon SPButton for layer selector buttons
5859 2004-11-03  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5861         * po/check-markup: New script: detects <b>markup<b> <b>problems<7b>
5862           in the <b>translated strings.  (~10 such problems found.)
5863         * Makefile.am (all, check, distcheck): Run po/check-markup (with
5864           varying permissiveness of errors).
5866 2004-11-02  MenTaLguY  <mental@rydia.net>
5868         * doc/keys.xml: added documentation of layer keys
5870 2004-11-01  Kees Cook  <kees@outflux.net>
5872         * src/dialogs/align.cpp, src/dialogs/debugdialog.cpp: localized
5873         some missed strings.
5875 2004-11-01  MenTaLguY  <mental@rydia.net>
5877         * share/icons/icons.svg: gave bulia's eye icons ids
5879         * src/widgets/layer-selector.h, src/widgets/layers-selector.cpp:
5880           fixed up visibility/lock toggles... now to make them actually do
5881           something
5883 2004-10-31  MenTaLguY  <mental@rydia.net>
5885         * src/util/glib-list.h: adaptor for glib lists
5887         * src/widgets/layer-selector.h, src/widgets/layer-selector.cpp:
5888           save the repr next to the SPObject
5890 2004-10-30  MenTaLguY  <mental@rydia.net>
5892         * src/util/list.h: more list cleanups and documentation
5894         * src/verbs.cpp: call sp_document_done() for layer verbs too
5896 2004-10-30  Bryce Harrington <bryce@bryceharrington.org>
5898         * src/dialogs/item-properties.cpp, src/sp-object.h:  Cleaning up
5899         stubs, disabling some more of the desc code to prevent crash.
5900         The change to SPObject::label() broke the label editing code;
5901         fixing it.
5903 2004-10-30  Kees Cook  <kees@outflux.net>
5905         * src/sp-metadata.cpp, src/sp-metadata.h, src/Makefile_insert,
5906         src/document.cpp, src/sp-object-repr.cpp, src/sp-object.cpp:
5907         I've created my very first SPObject!  SPMetadata is alive!  No
5908         more nasty hack to have it disappear from SVG Plain.  Mental
5909         won't have to take away my CVS access any more!  :)
5910         * inkscape2.nsi: update from Adib Taraben
5912 2004-10-30  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
5914         * src/libnr/nr-matrix.cpp (nr_matrix_invert):
5915           Fix for last commit to this file, which broke src==dest case.
5916         * src/libnr/nr-matrix-test.cpp: Add test cases for nr_matrix_invert.
5918 2004-10-30  MenTaLguY  <mental@rydia.net>
5920         * src/widgets/layer-selector.cpp, src/widgets/layer-selector.h:
5921           update when layers added/removed/reordered.
5923         * src/verbs.h, src/verbs.cpp: added "rename layer" verb.
5925 2004-10-29  Kees Cook  <kees@outflux.net>
5927         * src/Makefile_insert, src/trace/Makefile_insert,
5928         src/util/Makefile_insert: distcheck cleanups.
5930 2004-10-29  MenTaLguY  <mental@rydia.net>
5932         * src/widgets/layer-selector.cpp: default labels in italic
5934         * src/sp-object.h, src/sp-object.cpp: inkscape:label fixes
5936         * src/layer-fns.cpp: make ordering of layers complete; not just among
5937                              siblings
5939         * src/util/list.h: documentation update
5941 2004-10-29  Bryce Harrington <bryce@bryceharrington.org>
5943         * layer-fns.cpp:  documenting
5944         * layer-selector.cpp:  documenting & fixing funky widget resizing
5945         * object-ui.cpp, dialogs/item-properties.cpp, sp-object.h,
5946           sp-object.cpp, widgets/layer-selector.cpp: add ability to set
5947           inkscape:label from "Item Properties", remove id setting from
5948           "Item Properties", switch to using
5949           SPObject::label()/SPObject?::defaultLabel() in UI where object
5950           ID is currently used.  Documenting.  Switching from "label" to
5951           "inkscape:label" where appropriate.  Adding
5952           visible()/setVisible() functions and activating checkbox.
5953         * dialogs/item-properties.cpp:  Adding title and desc boxes.
5954           Adjusting layout of dialog a bit.  Changing to use of tables
5955           instead of horiz/vert boxes for layout.  Setting to inactive
5956           until some underlying bits get finished.
5958 2004-10-29  Kees Cook  <kees@outflux.net>
5960         * src/dialogs/export.cpp: moved function-based static state variable
5961           into the dialog state variables.  Closes bug #993447.
5962         * src/display/curve.cpp: fixed compile warning.
5963         * src/sp-namedview.cpp: wasn't ref counting correctly.  Closes #955020.
5965 2004-10-29  Jon A. Cruz  <jon@joncruz.org>
5967         * src/sp-image.cpp, src/extension/internal/gdkpixbuf-input.cpp:
5968           Refactoring filenames and file opening
5969           Scales imported images if DPI is known and not 72 DPI. Fixes
5970           #1029755
5972 2004-10-29  MenTaLguY  <mental@rydia.net>
5974         * src/widgets/layer-selector.cpp, src/verbs.cpp:
5975           unselect objects when layer is manually switched
5977 2004-10-28  Kees Cook  <kees@outflux.net>
5979         * src/document-undo.cpp, src/document.cpp, src/sp-namedview.cpp,
5980           src/sp-text.cpp, src/dialogs/desktop-properties.cpp,
5981           src/dialogs/export.cpp, src/extension/input.cpp,
5982           src/extension/output.cpp, src/extension/system.cpp:
5983           Fixing calls to sp_document_set_undo_sensitive to correct allow for
5984           nesting, as suggested by mental.  Found while tracking down bug
5985           #1030436.
5987 2004-10-28  MenTaLguY  <mental@rydia.net>
5989         * src/util/list.h: cleanups of list class.  I think, aside from
5990           documentation and maybe fixes for g++ 3.4 (if required), this
5991           is the last set of changes I will need to make.
5993         * src/sp-item.cpp, src/splivarot.cpp, src/util/reverse-list.h,
5994           src/util/filter-list.h, src/util/map-list.h:
5995           adjust for changes in the list class' interface
5997         * src/desktop.cpp, src/sp-desktop-widget.h:
5998           removed old layer selector and added SPDesktop::itemIsHidden()
6000         * src/widgets/layer-selector.cpp, src/widgets/layer-selector.h:
6001           more work; it's now at least as functional as the old selector it
6002           replaces
6004 2004-10-27  Kees Cook  <kees@outflux.net>
6006         * src/libnr/nr-point.h: use NR::X and NR::Y instead of "0" and "1".
6007         * src/dialogs/export.cpp: stack/register weirdness requires a function
6008           call to get true == comparison of NR::Rect's.  Closes bug #1048614.
6009         * src/dialogs/align.cpp: saving erased iterator.  Closes bug #1054270.
6010         * share/extensions/ill2svg.pl: added strict, warnings, and detection
6011           of Image::Magick module.  Closes bug #990659.
6012         * src/dialogs/find.h, src/dialogs/find.cpp: removed unfinished new
6013           find dialog instantiation.  Closes bug #1048802.
6015 2004-10-27  Carl Hetherington  <inkscape@carlh.net>
6017         * src/extension/output.cpp: better fix for 1004134 after advice
6018         from Ted.
6020 2004-10-26  Carl Hetherington  <inkscape@carlh.net>
6022         * src/extension/output.cpp: don't reset modified flag until after
6023         save has happened, in case it fails.  Fixes 1004134.
6025         * src/livarot/ShapeSweep.cpp: fix a typo in my cleanups.  Fixes
6026         1048151.
6028 2004-10-25  Bryce Harringotn <bryce@bryceharrington.org>
6030         * file.cpp, file.h, dialogs/export.cpp: Adding error return logic
6031           for png export code so that failure to write can be tracked.
6032           Adding an error dialog for when this occurs.  Fixes bug 1038932.
6034         * extension/system.cpp:  Changing sp_ui_error_dialog to g_warning
6035           so won't crash when running from commandline.  Fixes bug
6036           1000350.
6038         * inkscape.cpp, inkscape.h, main.cpp, dialogs/filedialog.cpp:
6039           Adding Inkscape::Application::use_gui flag as temporary hack to
6040           prevent gui dialogs from being used when running from
6041           commandline.  Fixes bug 1045067.
6043 2004-10-26  Carl Hetherington  <inkscape@carlh.net>
6045         * src/livarot/PathCutting.cpp: fix a couple of bugs that I
6046         introduced that cause crashes on cut path.
6048 2004-10-25  Kees Cook  <kees@outflux.net>
6050         * src/sp-object.cpp: nasty hack to not export metadata on "Plain SVG".
6051           I promise I'll fix this with a proper SPObject soon.
6053 2004-10-25  Jon A. Cruz  <jon@joncruz.org>
6054         * src/file.cpp, src/file.h, src/inkscape.cpp, src/sp-image.cpp,
6055         src/uri.cpp, src/uri.h, src/dialogs/filedialog.cpp,
6056         src/extension/input.cpp, src/extension/implementation/script.cpp,
6057         src/extension/internal/pov-out.cpp, src/extension/internal/ps.cpp,
6058         src/extension/internal/win32.h, src/extension/plugin/gimpgrad.cpp,
6059         src/helper/png-write.cpp, src/trace/imagemap.cpp, src/xml/repr-io.cpp:
6061         Refactoring filenames and file opening
6063 2004-10-24  MenTaLguY  <mental@rydia.net>
6065         * src/Makefile.am: added/removed files
6067         * src/util/copy-list.h: nobody's using it right now, get rid of it
6069         * src/traits/copy.h, src/traits/list-copy.h:
6070           traits for determining the type to make a copy of a value
6072         * src/sp-item.cpp, src/util/filter-list.h src/util/map-list.h,
6073           src/util/reverse-list.h, src/widgets/layer-selector.cpp
6074           src/xml/sp-repr-action.cpp:
6076           let the list functions infer their own result type (where possible)
6078         * src/util/forward-pointer-iterator.h: its value type is a reference
6080 2004-10-23  MenTaLguY  <mental@rydia.net>
6082         * src/desktop.cpp: removed vertical usize limits on statusbar
6084         * src/widgets/layer-selector.cpp, src/widgets/layer-selector.h:
6085           more layer selector work; simplfied model and customized CellRenderer
6086           settings a bit
6088         * src/attributes.cpp, src/attributes.h, src/sp-object.cpp, src/sp-object.h:
6089           add inkscape:label attribute
6091         * src/file.cpp, src/sp-anchor.h, src/sp-animation.h, src/sp-chars.h,
6092           src/sp-clippath.h, src/sp-conn-end.cpp, src/sp-defs.h, src/sp-ellipse.h,
6093           src/sp-gradient.h, src/sp-guide.h, src/sp-image.h, src/sp-line.h,
6094           src/sp-linear-gradient.h, src/sp-marker.h, src/sp-mask.h,
6095           src/sp-namedview.h, src/sp-object-group.h, src/sp-offset.h, src/sp-path.h,
6096           src/sp-pattern.h, src/sp-polygon.h, src/sp-polyline.h,
6097           src/sp-radial-gradient.h, src/sp-rect.cpp, src/sp-rect.h, src/sp-root.h,
6098           src/sp-spiral.h, src/sp-star.h, src/sp-stop.h, src/sp-string.h,
6099           src/sp-symbol.h, src/sp-text.h, src/sp-tspan.h, src/sp-use.h,
6100           src/sp-offset.cpp, src/sp-shape.h:
6102           make inheritance actual
6104 2004-10-23  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6106         * src/libnr/*: Move some things from nr-matrix-ops.h to new files.
6108         * src/libnr/nr-point-fns.h, src/libnr/nr-point-fns.cpp:
6109           New function is_zero.  Move is_unit_vector here
6110           (was private to sp-spiral.cpp).
6112         * src/display/bezier-utils-test.cpp: Disable a test, replacing with a
6113           todo printf and adding a comment explaining.
6115 2004-10-22  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6117         * src/pencil-context.cpp: Ensure that data points array p is uniqued
6118           and contains no NaNs.
6120         * src/libnr/nr-point-fns.cpp (LInfty): Fix bug with NaN coordinates:
6121           return NaN (rather than unspecified behaviour).
6122         * src/libnr/nr-point-fns-test.cpp: Add test cases for L1,L2,LInfty
6123           handling of NaN.
6125         * src/pencil-context.cpp: Fix bug: undesirable interactions between
6126           snapping and snap-to-anchor.
6128 2004-10-21  MenTaLguY  <mental@rydia.net>
6130         * src/desktop.cpp: SPDesktop::currentRoot() should pull from
6131           the current layer hierarchy just like SPDesktop::currentLayer();
6132           doubly so, since currently when switching documents the layer hierarchy
6133           is updated before the document is switched
6135         * src/util/Makefile_insert, src/util/copy-list.h: add list copy thingy
6137         * src/util/list.h: add rest()
6139         * src/util/reverse-list.h: bug fixes to reverse_list_in_place()
6141         * src/widgets/layer-selector.cpp, src/widgets/layer-selector.h:
6142           more work on layer selector
6144 2004-10-21  Carl Hetherington  <inkscape@carlh.net>
6146         * src/livarot/Path.cpp, src/livarot/Path.h,
6147         src/livarot/PathConversion.cpp, src/livarot/PathCutting.cpp,
6148         src/livarot/PathOutline.cpp, src/livarot/PathSimplify.cpp,
6149         src/livarot/ShapeMisc.cpp: excise separate path description data
6150         structure.
6152         * src/livarot/Path.h, src/livarot/Path.cpp,
6153         src/livarot/PathConversion.cpp, src/livarot/PathCutting.cpp,
6154         src/livarot/PathOutline.cpp, src/livarot/PathSimplify.cpp,
6155         src/livarot/ShapeMisc.cpp, src/livarot/livarot-forward.h: move
6156         path description structs into their own files, and rename a few
6157         member variables.
6159         * src/livarot/Path.h, src/livarot/PathConversion.cpp,
6160         src/livarot/PathOutline.cpp: remove some unused functions.
6162 2004-10-20  Carl Hetherington  <inkscape@carlh.net>
6164         * src/livarot/Path.cpp: fix for 1050379, and probably lots of
6165         others.
6167         * src/livarot/Path.h, src/livarot/PathOutline.cpp: bug fix for a
6168         previous commit.
6170         * src/livarot/Path.cpp: fix a memory leak.
6172 2004-10-19  Carl Hetherington  <inkscape@carlh.net>
6174         * src/livarot/Path.h, src/livarot/PathSimplify.cpp: more
6175         simplification cleanups.
6177         * src/livarot/PathStroke.cpp: coding style cleanups.
6179         * src/livarot/Path.h, src/livarot/PathSimplify.cpp,
6180         src/livarot/PathStroke.cpp: more cleanups; don't modify Path::pts
6181         and Path::nbPt.
6183         * src/livarot/Path.cpp, src/livarot/Path.h,
6184         src/livarot/PathConversion.cpp, src/livarot/PathCutting.cpp,
6185         src/livarot/PathSimplify.cpp, src/livarot/PathStroke.cpp: use a
6186         std::vector for Path::pts.
6188 2004-10-18  Carl Hetherington  <inkscape@carlh.net>
6190         * src/livarot/Path.h, src/livarot/PathSimplify.cpp: coding style
6191         and const cleanups.
6193         * src/livarot/PathSimplify.cpp: some very minor cleanups, and
6194         temporary comments for myself.
6196         * src/livarot/PathConversion.cpp: coding style cleanups.
6198         * src/livarot/PathConversion.cpp: fix for bug 1048827.
6200         * src/livarot/Path.h, src/livarot/PathSimplify.cpp: clean up
6201         simplification code.
6203 2004-10-17  MenTaLguY  <mental@rydia.net>
6205         * share/templates/Makefile.am, share/templates/layers.svg:
6206           added a layer template
6208         * src/widgets/layer-selector.h, src/widgets/layer-selector.cpp:
6209           more layer selector work
6211         * src/util/filter-list.h, src/util/Makefile_insert:
6212           added filter_list()
6214 2004-10-15  Carl Hetherington  <inkscape@carlh.net>
6216         * src/livarot/PathSimplify.cpp: remove #ifdef
6217         pseudo_douglas_pecker code that wasn't being used.
6219 2004-10-15  MenTaLguY  <mental@rydia.net>
6221         * src/view.h: removed obsolete status message functions
6223         * src/attributes.h: remove unused #define
6225         * src/sp-object.cpp: fix for bug #1048268 (inkscape:collect being written
6226           in "plain SVG" files)
6228         * src/sp-item.h, src/sp-item.cpp: added isLocked() and isHidden()
6229           predicates
6231         * src/sp-item.cpp, src/sp-style.cpp: basic support for visibility CSS
6232           property
6234 2004-10-14  Ted Gould  <ted@gould.cx>
6236         * share/extension/*.inkmod -> *.inx
6237         src/extension/init.cpp
6239         Changing the filename extension that is used to identify Inkscape
6240         extensions to the one specified in the design document.
6242 2004-10-14  MenTaLguY  <mental@rydia.net>
6244         * src/util/list.h: more 3.4 fixes
6246 2004-10-13  MenTaLguY  <mental@rydia.net>
6248         * src/util/list.h, src/util/forward-pointer-iterator.h:
6250           fixes to (hopefully) build with g++ 3.4 (and generally be less evil
6251           anyway)
6253 2004-10-14  Carl Hetherington <inkscape@carlh.net>
6255         * src/livarot/int-line.cpp: coding style cleanups.
6257         * src/livarot/float-line.cpp, src/livarot/float-line.h:
6258         refactoring, removal of dead code.
6260         * src/display/guideline.cpp, src/display/guideline.h: coding style
6261         cleanups.
6263         * src/livarot/Path.cpp, src/livarot/Path.h,
6264         src/livarot/PathConversion.cpp, src/livarot/PathCutting.cpp,
6265         src/livarot/PathSimplify.cpp, src/livarot/PathStroke.cpp: merge
6266         Path::path_lineto and Path::path_lineto_b.
6268 2004-10-14  Carl Hetherington <inkscape@carlh.net>
6270         * src/Path.cpp, src/Path.h, src/PathConversion.cpp,
6271         src/PathCutting.cpp, src/PathOutline.cpp, src/PathSimplify.cpp,
6272         src/ShapeMisc.cpp: use a vector of pointers for Path::descr_cmd.
6274         * src/livarot/Ligne.cpp, src/livarot/Ligne.h,
6275         src/livarot/int-line.cpp, src/livarot/int-line.h,
6276         src/livarot/float-line.cpp, src/livarot/float-line.h,
6277         src/livarot/livarot-forward.h, src/livarot/ShapeRaster.cpp,
6278         src/sp-flowregion.cpp, src/display/canvas-bpath.cpp,
6279         src/display/nr-arena-glyphs.cpp, src/display/nr-arena-shape.cpp,
6280         src/display/sp-ctrlline.cpp, src/libnrtype/FlowDest.cpp,
6281         src/libnrtype/RasterFont.cpp: split Ligne into float-line and
6282         int-line.
6284         * src/libnrtype/FlowDest.cpp, src/libnrtype/RasterFont.cpp,
6285         src/libnrtype/raster-position.h, src/livarot/float-line.cpp,
6286         src/livarot/float-line.h, src/livarot/int-line.cpp: use
6287         std::vector for arrays in FloatLigne.
6289         * src/livarot/float-line.cpp, src/livarot/float-line.h: remove
6290         lots of dead code.  Make some methods private.
6292 2004-10-12  MenTaLguY  <mental@rydia.net>
6294         * src/Makefile.am: added files
6296         * src/layer-fns.cpp, src/sp-item.cpp: use iterators, simplifying code
6298         * src/sp-object.cpp, src/splivarot.cpp: adapt to new version of
6299           Inkscape::Algorithms::longest_common_suffix
6301         * src/sp-object.h, src/sp-repr-iterators.h: add new iterator classes
6303         * src/algorithms/find-last-if.h: add counterpart of std::find_if
6305         * src/algorithms/longest-common-suffix.h: rewrite to use iterators
6307         * src/algorithms/longest-prefix.h, src/algorithms/longest-suffix.h,
6308           src/algorithms/shortest-prefix.h, src/algorithms/shortest-suffix.h:
6310           removed; these algorithms are no longer necessary when using
6311           iterators
6313         * src/traits/list.h: no longer needed
6315         * src/traits/reference.h: add "Pointer" member type
6317         * src/util/Makefile_insert: shuffled files
6319         * src/util/list.h: reworked Inkscape::Util::List to be a "handle" type
6320           that can also be used as an STL iterator
6322         * src/util/forward-pointer-iterator.h: treat a pointer as an iterator,
6323           given a base pointer type and a type which defines the iteration
6324           strategy
6326         * src/util/map.h: obsolete
6328         * src/util/map-list.h: iterator-based implementation
6330         * src/traits/tree-iterator.h: no longer necessary (superceded by
6331           specific applications of Inkscape::Util::ForwardPointerIterator)
6333         * src/sp-object-tree-iterator.h, src/util/parent-axis.h,
6334           src/util/sibling-axis.h: obsolete
6336         * src/util/map.h, src/util/reverse.h: obsolete
6338         * src/util/map-list.h, src/util/reverse-list.h:
6339           iterator-based implementations
6341         * src/xml/Makefile_insert: added file
6343         * src/xml/repr.h: removed old tree iterator stuff
6345         * src/xml/sp-repr-action.cpp, src/xml/sp-repr-action.h: use new
6346           pointer iterator facility
6348         * src/xml/sp-repr-iterators.h: pointer iterators for SPRepr
6350 2004-10-12  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6352         * src/display/bezier-utils.h, src/display/bezier-utils.cpp
6353           (sp_bezier_fit_cubic_r, sp_bezier_fit_cubic_full): Change the meaning
6354           of the last parameter: was max_depth, now lg_max_beziers, with the
6355           relationship lg_max_beziers = max_depth + 1.  Callers updated.
6357         * src/xml/repr.cpp (sp_repr_change_order):
6358           Add g_return_if_fail for some conditions that would break structural
6359           integrity, and add a TODO comment indicating incompleteness.
6360           Use sp_repr_prev function.
6362         * src/xml/repr-get-children.h, src/xml/repr-get-children.cpp
6363           (sp_repr_prev_sibling): Rename to sp_repr_prev for consistency
6364           with sp_repr_next.  Don't consider it an error for child to be
6365           NULL or parentless.  Callers updated.
6367         * src/draw-context.cpp (spdc_concat_colors_and_flush,
6368           spdc_flush_white): Misc readability cleanups.
6370         * src/display/curve.cpp (sp_curve_reverse): Fix a bug where the
6371           reversed curve wrongly included a trailing moveto command.  (Bug
6372           introduced in my 2004-09-05 change: one of the callers I didn't
6373           know how to cause to run.)
6375 2004-10-12  Ted Gould  <ted@gould.cx>
6377         * share/extensions/ai_input.inkmod, share/extensions/ai_output.inkmod,
6378         share/extensions/dia.inkmod, share/extensions/dropshadow.inkmod,
6379         share/extensions/eps_input.inkmod, share/extensions/epsi_output.inkmod,
6380         share/extensions/gimpgrad.inkmod, share/extensions/ps_input.inkmod,
6381         share/extensions/roundhole.inkmod, share/extensions/sk_input.inkmod,
6382         share/extensions/svgz_input.inkmod, share/extensions/svgz_output.inkmod,
6383         share/extensions/txt2svg.inkmod, share/extensions/wmf_input.inkmod,
6384         src/extension/dependency.cpp, src/extension/dependency.h,
6385         src/extension/extension.cpp, src/extension/init.cpp:
6387         Moving all of the dependency stuff from the scripts, up to the root
6388         extension level.  This means that everyone can have dependencies, and
6389         dependency checking (a good thing).  This makes use of the new
6390         'Dependency' class that is also in the extension directory.
6392 2004-10-11  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6394         * src/pencil-context.cpp (sp_pencil_context_root_handler): Split into
6395           many functions, fixing some illegal union aliasing along the way (as
6396           was done for sp_pen_context_root_handler).
6398         * src/modifier-fns.h: New file of inline functions based on macros.h
6399           MOD__CTRL etc. macros.
6400         * src/Makefile_insert: Add the new file.
6402         * src/pen-context.h: Change size of p array from SP_DRAW_MAX_POINTS to
6403           5 now that we aren't sharing with SPPencilContext.
6405         * src/draw-context.cpp, src/draw-context.h, src/pen-context.cpp,
6406           src/pen-context.h, src/pencil-context.cpp, src/pencil-context.h:
6407           Move npoints,p from SPDrawContext to both SPPenContext and
6408           SPPencilContext.
6410         * src/draw-context.cpp, src/draw-context.h: Split off new files
6411           pen-context.h, pen-context.cpp, pencil-context.h, pencil-context.cpp,
6412           draw-anchor.h, draw-anchor.cpp.
6413         * src/Makefile_insert: Add the new files.
6415 2004-10-10  Ted Gould  <ted@gould.cx>
6417         * src/event-context.cpp, src/file.cpp, src/file.h, src/print.cpp,
6418         src/print.h, src/selection-chemistry.h, src/sp-image.cpp, src/sp-item.cpp,
6419         src/sp-marker.cpp, src/sp-root.cpp, src/sp-shape.cpp, src/sp-symbol.cpp,
6420         src/tools-switch.cpp, src/dialogs/export.cpp, src/dialogs/filedialog.cpp,
6421         src/extension/Makefile_insert, src/extension/db.cpp,
6422         src/extension/dependency.cpp, src/extension/dependency.h,
6423         src/extension/effect.cpp, src/extension/effect.h,
6424         src/extension/extension-forward.h, src/extension/extension.cpp,
6425         src/extension/extension.h, src/extension/input.cpp, src/extension/input.h,
6426         src/extension/output.cpp, src/extension/output.h, src/extension/print.cpp,
6427         src/extension/print.h, src/extension/system.cpp,
6428         src/extension/internal/eps-out.cpp, src/extension/internal/ps.cpp,
6429         src/extension/internal/svg.cpp, src/libnrtype/FlowResOut.cpp:
6431         Splitting out the different types of extensions into their own files so
6432         that the overall dependencies can be reduced.  Caused a ripple through
6433         lots of other files.  Hopefully the dependency situation is better now.
6435 2004-10-10  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6437         * src/draw-context.cpp:
6438           Change xp,yp file globals to NR::Point pen_draw_origin_w.
6440         * src/draw-context.cpp (sp_pen_context_root_handler):
6441           Split into many routines.  Fix some illegal union member aliasing.
6442           (pen_handle_key_press): Minor code cleanups in backspace handling.
6443           (pen_handle_motion_notify): Make tolerance var local instead of
6444           file-global.  (This transformation is applicable to many
6445           dragtolerance users.)
6447         * src/draw-context.cpp (spdc_endpoint_snap_handle):
6448           Change argument type from SPDrawContext to SPPenContext, and
6449           specialize definition accordingly.  Caller updated.
6451         * src/draw-context.h: Change red_curve_is_valid from char to bool.
6452         * src/draw-context.cpp: Change red_curve_is_valid assignments from
6453           0x00/0x01 to false/true (using find & replace).
6455 2004-10-07  Carl Hetherington  <inkscape@carlh.net>
6457         * src/nr-object.cpp, src/nr-object.h: coding style and const
6458         fixes.
6460         * src/nr-rect.cpp: added a doxygen comment.  Some coding style
6461         fixes.
6463         * src/sp-paint-server.cpp: coding style fixes.
6465         * src/nr-arena-item.cpp, src/nr-arena-item.h: move a comment to
6466         the .cpp file and make it doxygen-style.
6468         * src/livarot/Path.cpp: coding style cleanups.  Add an assert to
6469         Path::Transform().
6471         * src/livarot/Path.cpp, src/livarot/Path.h: fix some archaic
6472         notation.
6474         * src/livarot/Ligne.cpp: coding style cleanups.
6476         * src/livarot/PathOutline.cpp, src/livarot/Path.h: fix a rather
6477         nasty hack in the outlining code.
6479         * src/livarot/Path.cpp, src/livarot/Path.h,
6480         src/livarot/PathConversion.cpp, src/livarot/PathCutting.cpp,
6481         src/livarot/PathOutline.cpp, src/livarot/PathSimplify.cpp,
6482         src/livarot/ShapeMisc.cpp, src/splivarot.cpp, src/sp-offset.cpp:
6483         use std::vector for Path::descr_cmd.
6485         * src/livarot/Path.cpp, src/livarot/Path.h,
6486         src/livarot/PathConversion.cpp, src/livarot/PathCutting.cpp,
6487         src/livarot/PathOutline.cpp, src/livarot/PathSimplify.cpp,
6488         src/livarot/ShapeMisc.cpp: getType() and setType() in Path::path_descr.
6490 2004-10-07  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6492         * src/sp-object-repr.cpp (sp_repr_type_lookup): Distinguish between XML
6493           element name and sodipodi:type attribute value: use a separate table
6494           for each.
6495         * src/sp-object-repr.h, src/sp-object-repr.cpp (sp_object_type_lookup):
6496           Don't export this function.  (Also rename it to name_to_gtype and
6497           change its definition for separate tables.)
6499 2004-10-03  Kees Cook  <kees@outflux.net>
6501         * src/dialogs/rdf.cpp, src/dialogs/repr-util.cpp, src/dialogs/repr.h:
6502           Since "dc:title" can appear at multiple XML levels, a way to
6503           control max depth in searching was added.  (Closes bug #1009290)
6505 2004-09-30  MenTaLguY  <mental@rydia.net>
6507         * src/widgets/document-tree-model.cpp:
6508           more bug fixes
6510         * src/widgets/layer-selector.cpp, src/widgets/layer-selector.h:
6511           get the layer selector sort of in more order
6513 2004-09-28  Ted Gould  <ted@gould.cx>
6515         * src/verbs.cpp, src/verbs.h, src/view.cpp:
6517         Making it so that actions get deleted as views get destroyed.
6519 2004-09-27  Ted Gould  <ted@gould.cx>
6521         * src/desktop.h, src/forward.h, src/interface.cpp, src/interface.h,
6522         src/select-toolbar.cpp, src/shortcuts.cpp, src/shortcuts.h,
6523         src/toolbox.cpp, src/toolbox.h, src/verbs.cpp, src/verbs.h,
6524         src/dialogs/align.cpp, src/dialogs/align.h,
6525         src/dialogs/desktop-properties.cpp, src/dialogs/display-settings.cpp,
6526         src/dialogs/export.cpp, src/dialogs/find.cpp,
6527         src/dialogs/item-properties.cpp, src/dialogs/object-properties.cpp,
6528         src/dialogs/text-edit.cpp, src/dialogs/transformation.cpp,
6529         src/dialogs/xml-tree.cpp, src/helper/action.cpp, src/helper/action.h:
6531         Wow, alot of files changed.  The ones that changed the most are
6532         verb.cpp and verb.h, which are almost entirely different.  What happened
6533         here is the verbs were made object oriented.  So, as the verbs
6534         are built into everything, lots of files changed.  Now the code
6535         for the verbs is much cleaner, and I think a little bit faster.
6536         Also, it will be easier to extend the verbs for use in effects.
6538 2004-09-26  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6540         * src/libnr/nr-matrix.h, src/libnr/nr-matrix.cpp:
6541           Get rid of operator NR::translate(), which was allowing
6542           *implicit* (and typically lossy) conversion to NR::translate,
6543           and which made a bug hard to find.
6545         * src/sp-gradient-test.cpp: New unit test file.  I believe this is the
6546           first test that tests an SPObject.
6547         * src/Makefile_insert, src/Makefile.am: Invoke the new test.
6549 2004-09-24  MenTaLguY <mental@rydia.net>
6551         * src/selection-chemistry.cpp:
6553           "select all" and "clear" now operate on the current layer rather than on
6554           the document root
6556         * src/verbs.cpp, src/shortcuts.cpp, layer-fns.cpp, src/sp-item.cpp:
6558           keyboard shortcuts and fixes for layer verbs
6560 2004-09-23  MenTaLguY <mental@rydia.net>
6562         * src/message-stack.h, src/message-stack.cpp:
6564           return id of flashed messages so they are cancellable
6566         * src/message-context.h, src/message-context.cpp:
6568           message context flashes now supercede one another, as regular
6569           messages do (they do not supercede regular messages though)
6571         * src/interface.cpp, src/layer-fns.cpp, src/layer-fns.h, src/verbs.cpp:
6573           initial stab at layers menu; not everything works the way it should
6574           quite yet
6576         * src/message-context.h, src/message-context.cpp:
6578           added flash methods to Inkscape::MessageContext
6580         * src/gc-core.h, src/display/nr-arena-glyphs.cpp,
6581 src/display/nr-arena-group.cpp,
6582           src/display/nr-arena-item.cpp, src/display/nr-arena-item.h,
6583           src/display/nr-arena-shape.cpp, src/libnr/nr-object.cpp,
6584 src/libnr/nr-object.h,
6586           eliminate more sources of leaks; managed objects shouldn't use refcounts
6587           among themselves
6589         * src/xml/repr.cpp: don't nuke log pointer
6591 2004-09-21  MenTaLguY <mental@rydia.net>
6593         * src/gc-finalized.h: fix for stupid bug preventing finalizable objects
6594           from being collected
6596         * src/Makefile_insert, src/gc.cpp, src/gc-core.h:
6597           move Inkscape::GC::init out-of-line, and funnel GC warnings through
6598           glib
6600 2004-09-21  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6602         * src/sp-marker.h, src/sp-marker.cpp (sp_marker_show_instance):
6603           Change to using NR::Matrix instead of NRMatrix.  Update caller.
6605         * src/sp-gradient.cpp (sp_gradient_get_g2d_matrix,
6606           sp_gradient_get_gs2d_matrix, sp_gradient_set_gs2d_matrix):
6607           New NR::Matrix/NR::Rect versions of existing functions.
6609         * src/libnr/nr-matrix-translate-ops.h (operator/): New function.
6611         * src/libnr/nr-matrix-scale-ops.cpp: New file.
6612         * src/libnr/nr-matrix-scale-ops.h (operator/(Matrix,scale)):
6613           New function.
6615 2004-09-20  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6617         * src/sp-gradient.h: Change gradientTransform from NRMatrix to
6618           NR::Matrix.  Users updated.
6620         * src/Makefile.am (EXTRA_DIST), Makefile_insert
6621           dialogs/Makefile_insert extension/implementation/Makefile_insert
6622           extension/internal/Makefile_insert helper/Makefile_insert
6623           livarot/Makefile_insert (blah_SOURCES):
6624           Add some .h files for `make dist'.
6626 2004-09-19  MenTaLguY <mental@rydia.net>
6628         * src/gc-core.h: don't defer finalizers
6630         * src/gc-core.h: bump up free space divisor -- collections should
6631           happen ~32x more frequently
6633 2004-09-19  Carl Hetherington <inkscape@carlh.net>
6635         * src/display/canvas-bpath.cpp, src/display/nr-arena-shape.cpp,
6636         src/display/sp-ctrlline.cpp, src/libnrtype/RasterFont.cpp,
6637         src/livarot/Shape.h, src/livarot/ShapeRaster.cpp: remove some
6638         unused parameters from calls to raster code.
6640         * src/livarot/ShapeRaster.cpp: coding style cleanups.
6642         * src/livarot/Shape.h, src/livarot/ShapeRaster.cpp: factored out
6643         _updateIntersection().
6645         * src/livarot/AVL.cpp, src/livarot/AVL.h: remove DblLinked.  Cleanups.
6647 2004-09-18  MenTaLguY <mental@rydia.net>
6649         * src/dialogs/filedialog.cpp: unref the preview document we created
6651 2004-09-18  Carl Hetherington <inkscape@carlh.net>
6653         * src/livarot/AVL.cpp, src/livarot/AVL.h,
6654         src/livarot/DblLinked.cpp, src/livarot/DblLinked.h,
6655         src/livarot/LivarotDefs.h, src/livarot/ShapeRaster.cpp,
6656         src/livarot/ShapeSweep.cpp, src/livarot/sweep-tree.cpp,
6657         src/livarot/sweep-tree.h, src/sweep-event.h: replace leftFoo and
6658         rightFoo with foo[2] in a few places.  Associated cleanups.
6660         * src/livarot/Shape.h: use Side rather than a bool for
6661         TesteIntersection.  Add some methods.  Remove some unused variables.
6663         * src/livarot/ShapeSweep.cpp: simplify TesteIntersection with use
6664         of Side.
6666         * src/livarot/sweep-event.h: const fix.
6668         * src/livarot/sweep-event.cpp: simplifications with use of Side.
6670         * src/sp-offset.cpp, src/splivarot.cpp, src/livarot/Shape.cpp,
6671         src/livarot/ShapeMisc.cpp, src/ShapeSweep.cpp: lastA/firstA in
6672         Shape::dg_point ->
6674           further work on stroking; break out bezier approximation into
6675           public functions
6677 2004-09-10  MenTaLguY <mental@rydia.net>
6679         * src/render/polygon.h, src/render/shape-builder.h,
6680           src/render/shape-builder.cpp, src/render/stroke.h,
6681           src/render/dash.h:
6683           beginnings of a simple alternate renderer
6685 2004-09-09  Carl Hetherington <inkscape@carlh.net>
6687         * src/sp-flowtext.cpp, src/sp-offset.cpp, src/splivarot.cpp,
6688         src/display/nr-arena-shape.cpp, src/libnrtype/FlowDest.cpp,
6689         src/livarot/PathConversion.cpp, src/livarot/Shape.h: make
6690         Shape::nbPt and Shape::nbAr private and provide accessor methods.
6692         * src/display/nr-arena-shape.cpp, src/livarot/Shape.h: make
6693         Shape::flags private.
6695         * src/splivarot.cpp, src/livarot/PathStroke.cpp,
6696         src/livarot/Shape.cpp, src/livarot/Shape.h, src/livarot/ShapeMisc.cpp,
6697         src/livarot/ShapeRaster.cpp, src/livarot/ShapeSweep.cpp:
6698         Clean up handling of flags in Shape class
6700         * src/livarot/AlphaLigne.cpp, src/livarot/Path.cpp,
6701         src/livarot/PathSimplify.cpp, src/livarot/Shape.cpp,
6702         src/livarot/ShapeSweepUtils.cpp: it's ok to free NULL.
6704         * src/livarot/Shape.h, src/sp-offset.cpp, src/splivarot.cpp,
6705         src/display/nr-arena-shape.cpp: Make Shape::pts private and offer
6706         a read-only accessor.
6708         * src/livarot/Shape.cpp, src/livarot/Shape.h,
6709         src/livarot/ShapeDraw.cpp, src/livarot/ShapeMisc.cpp,
6710         src/livarot/ShapeRaster.cpp, src/livarot/ShapeSweep.cpp, src/
6711         livarot/ShapeSweepUtils.cpp, src/livarot/ShapeUtils.h: Rename
6712         Shape::pts to Shape::_pts, and use getPoint() wherever possible.
6714         * src/sp-offset.cpp, src/splivarot.cpp, src/livarot/Shape.cpp,
6715         src/livarot/Shape.h, src/livarot/ShapeMisc.cpp,
6716         src/livarot/ShapeRaster.cpp, src/livarot/ShapeSweep.cpp: Add
6717         dg_point::totalDegree() and make use of it.
6720 2004-09-08  MenTaLguY  <mental@rydia.net>
6722         * src/libnr/nr-object.h, src/libnr/nr-object.cpp: fix NRObject
6723           initialization
6725         * configure.in, src/gc-core.h, src/gc-managed.h, src/gc-anchored,
6726           src/gc-finalized.h:
6728           add a --disable-gc ./configure option to omit garbage collection
6729           from the build (the normal allocator will be used, although
6730           memory will obviously leak since it does not get explicitly freed)
6732         * src/xml/repr.cpp: SPRepr's copy constructor needs to properly
6733           initialize its fields
6735         * src/xml/repr-util.cpp, src/xml/repr-private.h,
6736           src/xml/repr.h, src/xml/repr.cpp:
6738           new child-count-related routines, and added mutation signals
6739           to SPReprDoc
6741         * src/desktop.cpp: call the "Active Group" widget by its TRUE NAME!
6743         * src/widgets/Makefile_insert, src/widgets/document-tree-model.cpp,
6744           src/widgets/document-tree-model.h, src/widgets/layer-selector.cpp,
6745           src/widgets/layer-selector.h:
6747           very cursory start on new layers UI
6749 2004-09-08  Carl Hetherington <inkscape@carlh.net>
6751         * src/helper/stock-items.cpp: fix a bad free().  Improve coding
6752         style compliance.
6754         * src/libnrtype/FlowRes.cpp: slightly unpleasant fix for a buffer
6755         overrun.
6757 2004-09-07  MenTaLguY <mental@rydia.net>
6759         * src/livarot/Shape.cpp, src/livarot/Shape.h, src/livarot/ShapeMisc.cpp,
6760           src/livarot/ShapeSweep.cpp:
6762           use std::vector for points array (seems to crash less?)
6764         * src/livarot/AlphaLigne.cpp, src/livarot/BitLigne.cpp,
6765           src/livarot/Ligne.cpp, src/livarot/Path.cpp,
6766           src/livarot/PathCutting.cpp, src/livarot/PathSimplify.cpp,
6767           src/livarot/Shape.cpp, src/livarot/ShapeMisc.cpp,
6768           src/livarot/ShapeSweep.cpp, src/livarot/ShapeSweepUtils.cpp:
6770           switch to glib's allocator routines, which have the expected
6771           semantics
6773         * src/livarot/evil-malloc.h: removed
6775 2004-09-07  Ted Gould  <ted@gould.cx>
6777         * src/color-rgba.h:
6779         Some comments and some little code clean up things.  Added a couple
6780         of constructors to make life a little simpler.
6782 2004-09-06  Ted Gould  <ted@gould.cx>
6783         * src/extension/plugin/gimgrad.cpp, src/extension/implementation/plugin*
6784           share/extension/gimpgrad.inkmod, src/extension/system.cpp,
6785           src/extension/extension.h:
6787         Mega commit.  This commit does two things, it adds in the ability to
6788         do plugins in Inkscape.  This means that there are loadable modules
6789         that can be used for just about anything.  It also provides a sample
6790         implementation of a plugin to load GIMP gradients.  This means that
6791         GIMP gradients can be imported into Inkscape, giving a larger set of
6792         gradients that can be used in Inkscape.
6794         Currently, nothing here is really complete, but it is functional.  The
6795         plugins really only work for input plugins, and the GIMP gradient example
6796         isn't very robust.  They will come shortly.
6798 2004-09-05  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6800         * src/display/curve.h, src/display/curve.cpp:
6801           Change x,y members to NR::Point.
6802           Rename posset (spiced&spiked hot milk) to posSet as per CodingStyle.
6804         * src/display/curve.cpp (sp_curve_reverse): Previously this
6805           routine returned only the last subpath, and made it an open
6806           path.  Now it preserves all aspects of the curve other than
6807           reversing it.  I believe this change makes no difference to the
6808           draw-context and dyna-draw-context callers (though I haven't
6809           managed to test all of these callers), whereas for the `reverse
6810           path' command, users presumably expect the new behaviour.
6812         * src/display/curve.cpp (sp_curve_closepath_current):
6813           Fix bad assertion.
6815         * src/libnr/nr-matrix-fns.h, src/libnr/nr-matrix-fns.cpp
6816           (get_translation): New function.
6818         * src/sp-polygon.cpp (polygon_get_value): Use static linkage.
6819           (sp_polygon_set): Remove debugging output.  Add `todo' comment.
6821 2004-09-03  MenTaLguY <mental@rydia.net>
6823         * src/attributes.cpp, src/attributes.h, src/sp-namedview.cpp,
6824           src/sp-namedview.h:
6826           remember previously selected layer on load
6828 2004-09-02  MenTaLguY <mental@rydia.net>
6830         * src/attributes.cpp, src/attributes.h, src/sp-item-group.cpp:
6832           reintroduced the inkscape:groupmode attribute
6834         * src/gc-core.h, src/gc-finalized.h, src/gc-anchored.h,
6835           src/libnr/nr-object.cpp:
6837           remove USE_LIBGC macro again
6839 2004-08-30  MenTaLguY <mental@rydia.net>
6841         * src/sp-object.cpp:
6843           ref the object while SPObject::deleteObject runs, so it doesn't
6844           get destroyed halfway through [ fix for bug #1012874 ]
6846 2004-08-29  MenTaLguY <mental@rydia.net>
6848         * src/gc-core.h:
6850           turn off scanning of dynamic library data segments; we don't need
6851           it, and it seems to cause problems on FC2
6853 2004-08-27  MenTaLguY <mental@rydia.net>
6855         * src/traits/function.h: add typedefs for all argument positions,
6856           specifying 'void' for all arguments after the last
6858         * src/livarot/evil-malloc.h, src/livarot/BitLigne.cpp,
6859           src/livarot/PathCutting.cpp, src/livarot/PathSimplify.cpp,
6860           src/livarot/Shape.cpp, src/livarot/ShapeSweepUtils.cpp:
6862           work around livarot bugs so I can use ElectricFence
6864         * src/gc-core.h, src/gc-finalized.h, src/gc-anchored.h,
6865           src/libnr/nr-object.cpp:
6867           make the garbage collector easy to disable by undefining
6868           USE_LIBGC in src/gc-core.h
6870 2004-08-26  MenTaLguY <mental@rydia.net>
6872         * src/document-private.h, src/document.h, src/document.cpp:
6874           add notification signal when resources are added or removed
6876 2004-08-25  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6878         * src/xml/repr-css.cpp (sp_repr_css_print):
6879           Fix for shared string change.
6881         * src/sp-text.cpp (sp_text_description):
6882           Fix for when font Name() call fails.
6884         * src/sp-text.cpp: CodingStyle changes, including moving some
6885           declarations to first use.
6886           Remove unused __SP_TEXT_C__ define.
6888 2004-08-25  Carl Hetherington  <inkscape@carlh.net>
6890         * src/sp-cursor.cpp, src/sp-cursor.h, src/sp-guide.cpp:
6891         coding style cleanups.
6893 2004-08-24  MenTaLguY <mental@rydia.net>
6895         * src/gc-anchor.h: fix to always use the GC base address, since
6896           that will not always be the same as 'this', when I::GC::Anchored
6897           is used via multiple inheritance.
6899 2004-08-24  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
6901         * src/libnrtype/TextWrapper.h, src/libnrtype/TextWrapper.cpp (AppendUTF8):
6902           Use strlen instead of for-loop.
6903           Change printf to g_return_if_fail (and document that the argument
6904           must be valid UTF-8).
6905           Mark the text pointer as not being written through (const).
6907 2004-08-23  MenTaLguY <mental@rydia.net>
6909         * src/xml/repr.cpp, src/xml/sp-repr-action.h:
6911           removed stupid default 'next' constructor arguments and force them
6912           to be specified explicitly (and fix the omission of one, which
6913           fixes bug #1014541)
6915 2004-08-22  MenTaLguY <mental@rydia.net>
6917         * src/Makefile_insert, src/gc-alloc.h:
6919           introduced a GC-aware STL allocator
6921         * src/document-private.h, src/document.h, src/document.cpp:
6923           switch to using STL map for "id changed" signals
6925 2004-08-21  MenTaLguY <mental@rydia.net>
6927         * src/Makefile_insert, src/util/Makefile_insert: get libinkutil
6928           deps straightened out
6930         * src/document-private.h, src/document-undo.cpp, src/document.cpp:
6932           adapt for new APIs, header cleanups/refactorings
6934         * src/gc-core.h, src/gc-anchored.h, src/gc-finalized.h, src/gc-managed.h:
6936           rewrote interface to Boehm GC for increased flexibility; there are now
6937           three main classes:
6939            - Inkscape::GC::Managed: objects managed by the GC; replaces
6940                                     Inkscape::GC::Object
6942            - Inkscape::GC::Finalized: objects for which the GC will call
6943                                       destructors automatically; replaces
6944                                       Inkscape::GC::FinalizedObject
6946            - Inkscape::GC::Anchored: managed objects which can be 'anchored'
6947                                      to prevent collection while non-gc-aware
6948                                      objects are holding references; replaces
6949                                      Inkscape::Refcounted
6951           Note that they no longer inherit from each other(!), so you will
6952           need to mix-and-match via multiple inheritance.  The latter two
6953           don't do anything useful without the first, however.
6955         * src/gc-object.h, src/refcounted.h: removed
6957         * src/message-context.cpp, src/message-stack.h, src/selection.h,
6958           src/view.cpp, src/libnr/nr-object.h, src/util/list.h,
6959           src/xml/sp-repr-attr.h, src/xml/sp-repr-listener.h, src/desktop.cpp:
6961           adopt new GC API and header refatorings
6963         * src/Makefile.am, src/util/Makefile_insert:
6965           list util/* files in util's Makefile_insert now.
6967         * src/util/reverse.h: revive anx fix Inkscape::Util::reverse
6969         * src/util/share-c-string.cpp, src/util/share-c-string.h: removed
6971         * src/util/shared-c-string.cpp, src/util/shared-c-string.h:
6973           employ the type system to make shared strings a little safer to use;
6974           you can still shoot yourself in the foot, but at least now you need
6975           to aim and pull the trigger first
6977         * src/xml/Makefile_insert, src/xml/repr-action-test.cpp,
6978           src/xml/sp-repr-action-fns.h, src/xml/sp-repr-action.h:
6980           reorganize transaction logging files
6982         * src/xml/repr-action-test.cpp: updated headers
6984         * src/xml/repr-action.cpp, src/xml/repr-action.h: removed
6986         * src/xml/repr-private.h, src/xml/repr.cpp, src/xml/repr.h:
6988           update for new GC API and shared strings
6990         * src/xml/sp-repr-action-fns.h, src/xml/sp-repr-action.cpp,
6991           src/xml/sp-repr-action.h:
6993           header refactoring and new GC API
6995         * src/xml/sp-repr-attr.h, src/xml/sp-repr-listener.h:
6997           new GC API
6999 2004-08-20  Carl Hetherington <inkscape@carlh.net>
7001         * src/zoom-context.cpp, src/view.cpp, src/version.cpp,
7002         src/sp-defs.cpp: coding style cleanups.
7004         * src/sp-polygon.cpp: coding style and a few other small cleanups.
7006         * src/sp-anchor.cpp: coding style cleanups.  Remove unnecessary
7007         static variable.
7009 2004-08-18  Bryce Harrington <bryce@bryceharrington.org>
7011         * autogen.sh:  Fixing the 'missing ltmain.sh' bug
7013 2004-08-17  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7015         * src/sp-star.cpp: Use cast to guint32 instead of using modulo 2**32.
7016           Fix a uint compilation bug on Windows reported by mrchapp.
7017           Mark a few functions as static.
7019 2004-08-16  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7021         * src/sp-conn-end.cpp (change_endpts):
7022           Use new sp_curve_stretch_endpoints function: i.e. preserve the
7023           shape of the connector path.
7025         * src/display/curve.h, src/display/curve.cpp
7026           (sp_curve_stretch_endpoints): New function.
7028         * src/sp-use-reference.cpp: CodingStyle changes.
7030         * src/sp-item.h, src/sp-item.cpp (sp_item_write_transform):
7031           Indicate that adv won't get written to.
7033         * src/sp-rect.cpp (sp_rect_set_transform): Call sp_rect_set_shape,
7034           so that bbox is up-to-    src/livarot/PathConversion.cpp,
7035 src/livarot/Shape.cpp,
7036         src/livarot/Shape.h, src/livarot/ShapeDraw.cpp, src/livarot/ShapeMisc.cpp,
7037         src/livarot/ShapeRaster.cpp, src/livarot/ShapeSweep.cpp,
7038         src/livarot/ShapeSweepUtils.cpp:
7039           Revert these files to their state prior to mental's "2004-08-08"
7040           entry (the change made in 2004-08-09 02:23 UTC).
7042 2004-08-11  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7044         * src/algorithms/longest-common-suffix.h: Fix bug I introduced three
7045           days ago.
7047         * src/attributes.h, src/attributes.cpp: New attributes
7048           SP_ATTR_CONNECTION_START, SP_ATTR_CONNECTION_END.
7049         * src/sp-conn-end.h, src/sp-conn-end.cpp,
7050           src/sp-conn-end-pair.h, src/sp-conn-end-pair.cpp:
7051           New files.
7052         * src/Makefile_insert (libinkpre_a_SOURCES): Add the new files.
7054         * src/sp-path.cpp, src/sp-path.h: Call the new connector stuff.
7056         * src/display/curve.h, src/display/curve.cpp
7057           (sp_curve_first_point, sp_curve_last_point): New functions.
7059           (sp_curve_transform): Re-implement with NR::Matrix/NR::Point.
7060           The old code appears to be buggy for sheer/rotate matrices
7061           due to calculating each y coord using the new corresponding x coord
7062           instead of the previous value.
7064           Also add NR::translate version.
7066           Get rid of the return value.  Callers updated.
7068         * src/sp-item.h, src/sp-item.cpp: (i2anc_affine): New function
7069           (essentially a rename of existing private partial_xform function, but
7070           differing behaviour on encountering non-SPItem in the hierarchy).
7072           (i2i_affine): New function (essentially a rename of existing
7073           SPItem::getRelativeAffine).  Implement SPItem::getRelativeAffine in
7074           terms of the new function.
7076           (sp_item_dt2i_affine): NR::Matrix version.
7078         * src/libnr/nr-path.h (c, setC): new methods.
7080 2004-08-09  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7082         * src/desktop-affine.cpp (sp_desktop_w2doc_affine,
7083         sp_desktop_doc2w_affine, sp_desktop_doc2d_xy_point),
7084         src/knotholder.cpp (knot_moved_handler), src/sp-item.cpp
7085         (SPItem::getRelativeTransform), src/sp-rect.cpp
7086         (sp_rect_set_transform), src/display/sp-canvas-util.cpp
7087         (sp_canvas_item_i2i_affine, sp_canvas_item_set_i2w_affine):
7088           Cleanup: Use the new division operators instead of multiplication by
7089           inverse.  (Currently the division operators are implemented as
7090           multiplication by inverse.)
7092         * src/splivarot.cpp, src/livarot/Shape.cpp, src/livarot/ShapeMisc.cpp,
7093         src/livarot/ShapeRaster.cpp, src/livarot/ShapeSweep.cpp:
7094           Hurriedly fix some problems caused by overly-hurried changes.
7095           Address some signed/unsigned warnings.
7096           Add some assertions.
7097           (Haven't checked the performance cost of the assertions.)
7099         * src/livarot/Shape.h: Make constructors explicit.
7101 2004-08-08  MenTaLguY  <mental@rydia.net>
7103         * src/sp-flowregion.cpp, src/sp-flowtext.cpp, src/sp-offset.cpp,
7104           src/splivarot.cpp, src/display/nr-arena-shape.cpp,
7105           src/livarot/PathConversion.cpp, src/livarot/Shape.cpp,
7106           src/livarot/Shape.h, src/livarot/ShapeDraw.cpp,
7107           src/livarot/ShapeMisc.cpp, src/livarot/ShapeRaster.cpp,
7108           src/livarot/ShapeSweep.cpp, src/livarot/ShapeSweepUtils.cpp:
7110           replace ad-hoc realloced arrays with std::vector and deal with
7111           uninitialized data problems that valgrind complained about
7113         * libgc.supp: valgrind suppression profile for libgc, which necessarily
7114           reads and runs comparisons on a lot of uninitalized data; the present
7115           form of this file is probably too broad however
7117 2004-08-08  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7119         * src/libnr/nr-matrix-div.h, src/libnr/nr-matrix-div.cpp:
7120           operator/(NR::Point, NR::Matrix), operator/(NR::Matrix, NR::Matrix):
7121           new functions, new files.
7123         * src/algorithms/longest-common-suffix.h:
7124           Handle in O(1) time the common case of equal tails.
7125           Documentation.
7127 2004-08-08  Ted Gould  <ted@gould.cx>
7129         * src/svg-profile.h, src/Makefile_insert:
7131         Adding the first support in for trying to determine which profiles are
7132         used with certain functionality, and if that is used by the current
7133         document.  Really, right now, there is no code changes to anything that
7134         compiles.  But this is the header file that contains the class that
7135         I'm plannig to use in the future.
7137 2004-08-07  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7139         * src/libnrtype/RasterFont.h, src/libnrtype/RasterFont.cpp:
7140           Get rid of argumentless constructor (which was leaving
7141           style.transform as random bits), replace with constructor taking
7142           style argument.  Caller updated.
7143           Disable default copy constructor and operator=.
7145 2004-08-06  MenTaLguY <mental@rydia.net>
7147         * configure.in, src/gc-core.h, src/gc-object.h,
7148           src/display/nr-arena-glyphs.cpp, src/display/nr-arena-group.cpp,
7149           src/display/nr-arena-image.cpp, src/display/nr-arena-item.cpp,
7150           src/display/nr-arena-shape.cpp, src/display/nr-arena.cpp,
7151           src/helper/action.cpp, src/libnr/nr-object.cpp, src/libnr/nr-object.h:
7153           make NRObject GC-aware
7155 2004-08-06  David Turner <novalis@gnu.org>
7156         * src/sp-shape.cpp (sp_shape_marker_get_transform): Make marker handling
7157 match
7158         SVG spec better.
7160 2004-08-06  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7162         * src/libnr/nr-matrix.h, src/libnr/nr-matrix.cpp:
7163           NR::Matrix *= NR::scale: new.
7165         * src/sp-object.cpp, src/sp-object.h, src/sp-object-tree-iterator.h:
7166           Move TreeIterator<SPObject *> specialization to snew file
7167           sp-object-tree-iterator.h.
7168           Mark several pointers as not being written through.
7169           Correspondingly change TreeIterator specialization to
7170           <SPObject const *> instead of <SPObject *>.
7172         * display/nr-arena-item.cpp, display/nr-arena-item.h:
7173           Add NR::Matrix version of nr_arena_item_set_transform.
7175         * src/sp-item.h, src/sp-item.cpp (getRelativeTransform, partial_xform):
7176           Mark pointers as not written through.
7178         * src/arc-context.cpp, src/draw-context.cpp, src/dyna-draw-context.cpp,
7179           src/path-chemistry.cpp, src/rect-context.cpp,
7180           src/selection-chemistry.cpp, src/seltrans.cpp, src/sp-flowdiv.cpp,
7181           src/sp-flowregion.cpp, src/sp-flowtext.cpp, src/sp-item-group.cpp,
7182           src/sp-item-notify-moveto.cpp, src/sp-item-transform.cpp,
7183           src/sp-item.cpp, src/sp-item.h, src/sp-offset.cpp, src/sp-rect.cpp,
7184           src/sp-shape.cpp, src/sp-use.cpp, src/spiral-context.cpp,
7185           src/splivarot.cpp, src/star-context.cpp, src/text-context.cpp,
7186           src/dialogs/item-properties.cpp:
7187           Change SPItem->transform from NRMatrix to NR::Matrix.
7189         * src/libnr/nr-matrix-ops.h (operator*(NR::Matrix, NRMatrix)): new.
7191         * src/libnr/nr-matrix.h: NR::Matrix *= NR::translate: new operator.
7193         * src/nodepath.cpp: Mark NodeSort operator< as static.
7194           Indentation as per CodingStyle.
7196         * src/libnr/nr-scale.h (NR::scale(double)): new constructor.
7198         * src/svg/svg-affine.cpp (sp_svg_transform_write), src/svg/svg.h:
7199           Add NR::Matrix version.
7201 2004-08-05  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7203         * src/display/bezier-utils.cpp: Misc. minor changes.
7205 2004-08-04  MenTaLguY  <mental@rydia.net>
7207         * configure.in, src/gc-object.h, src/refcounted.h:
7209           start using libgc in earnest; Inkscape::Refcounted is now GC-aware
7211 2004-08-04  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7213         * src/nodepath.cpp: Cleanups: Mark some things as static.  Switch from
7214           pointer to reference in some places. Make const placement conform to
7215           CodingStyle.
7217         * src/inkview.cpp (sp_svgview_main_key_press): Accept some common keys
7218           like PgUp, q.
7220         * src/draw-context.cpp (fit_and_split):
7221           Slight simplification: don't handle impossible condition npoints < 2.
7222         * src/proofs: Update accordingly.  (Also add some bezier-utils proofs.)
7224 2004-08-04  David Turner <novalis@gnu.org>
7226         * sp-path.cpp: 'd' is a required attribute for paths.  Ensure that
7227         all paths have it.
7229 2004-08-03  MenTaLguY  <mental@rydia.net>
7231         * src/dialogs/rdf.cpp, src/xml/repr-util.cpp, src/xml/repr.h:
7232           removed sp_repr_recursive_drop() which is unneeded and
7233           creates unnecessary thrash in the undo logs
7235         * src/livarot/Shape.h, src/livarot/Shape.cpp,
7236           src/livarot/ShapeSweep.cpp, src/livarot/ShapeMisc.cpp:
7238           experiment to replace ad-hoc realloc() arrays with std::vector
7240 2004-08-02  David Turner <novalis@gnu.org>
7242         * file.cpp, file.h, interface.cpp, toolbox.cpp, verbs.cpp, verbs.h:
7244         Added vacuum command to remove unused defs.
7246 2004-08-02  MenTaLguY  <mental@rydia.net>
7248         * configure.in: sigc++ 2.0.2 (and before?) has a bug that
7249           causes us to crash.  require >= 2.0.3
7251         * src/Makefile.am, src/Makefile_insert, src/gc-core.h,
7252           src/gc-object.h, src/algorithms/longest-common-suffix.h,
7253           src/traits/list.h, src/traits/reference.h, src/util/flip.h,
7254           src/util/fold.h, src/util/list-iterator.h, src/util/list.h,
7255           src/util/map.h, src/util/parent-axis.h, src/util/reverse.h,
7256           src/util/sibling-axis.h, src/util/tuple.h, src/util/zip.h:
7258           more "functional" work
7260 2004-08-02  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7262         * src/display/curve.cpp, src/display/curve.h:
7263           Greater conformance with CodingStyle.
7265 2004-07-31  David Turner <novalis@gnu.org>
7267         * dialogs/xml-tree.cpp: Improved focus, added keystroke for attr commit.
7269 2004-07-31  Ted Gould  <ted@gould.cx>
7271         * src/extension/extension.cpp,
7272         src/extension/implementation/implementation.cpp,
7273         src/extension/implementation/implementation.h,
7274         src/extension/implementation/script.cpp,
7275         src/extension/implementation/script.h, src/extension/internal/eps-out.cpp,
7276         src/extension/internal/eps-out.h:
7278         Okay, changed the prefs_ prototypes to include which extension they are
7279         working with. This should clean up some warnings before they become
7280         problems later.
7282 2004-07-31  Ted Gould  <ted@gould.cx>
7284         * src/print.cpp, src/extension/extension.cpp, src/extension/extension.h,
7285           src/extension/internal/eps-out.cpp, src/extension/internal/ps.cpp:
7287           Changed the get and set param prototypes so that they aren't overloaded
7288           anymore - this was flaky.  Also added a document to the prototype so
7289           that document specific parameters can be supported in the future.
7291 2004-07-28  David Turner <novalis@gnu.org>
7293         * sp-gradient.cpp, widgets/gradient-vector.cpp: fixed gradient handling to
7294         properly render gradients with sharp color boundaries
7296 2004-07-29  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7298         * src/inkview.cpp: Make the window title be the name of the
7299           instead of the current file instead of the first file.
7301         * src/round-test.cpp: New unit-test file.
7303         * src/desktop.h, src/sp-desktop-widget.h:
7304           Move SPDesktopWidget stuff from desktop.h to new file
7305           sp-desktop-widget.h.
7307         * debian/*: Copy lots of changes from wolfi's official Debian package
7308           of inkscape.
7309           Also use separate builddir, which simplifies the `clean' target.
7311 2004-07-24  MenTaLguY  <mental@rydia.net>
7313         * configure.in, src/Makefile.am, src/main.cpp, src/gc-core.h:
7314           added libgc dependency
7316         * src/Makefile.am, traits/function.h:
7317           added trait class for functions and C++ "functors"
7319         * src/Makefile.am, util/flip.h:
7320           added flip() which, given a function with two arguments,
7321           returns an identical function with its arguments reversed
7323 2004-07-23  MenTaLguY  <mental@rydia.net>
7325         * src/Makefile.am, src/traits/reference.h, src/util/tuple.h:
7326           added generic Tuple type
7328 2004-07-23  Ted Gould  <ted@gould.cx>
7330         * src/attributes.cpp, src/attributes.h, src/sp-namedview.cpp,
7331         src/sp-namedview.h, src/dialogs/desktop-properties.cpp,
7332         src/display/canvas-grid.cpp, src/display/canvas-grid.h:
7334         Adding in the ability to have 'emphasis grid lines' where some lines are a
7335         different color than others.  In the default case every fifth grid line
7336         gets to be 0x11 darker alpha.  Nothing that will get in your way, but
7337         enough that you can find the spacing.  All parameters are changeable in
7338         document preferences.
7340 2004-07-23  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7342         * autogen.sh: Move unversioned automake to last resort.
7344 2004-07-20  Kees Cook  <kees@outflux.net>
7346         * src/dialogs/desktop-preferences.cpp: corrected my usage of static
7347           l18n strings.
7348         * src/dialogs/stroke-style.cpp: fixed missing l18n. (bug #994837)
7349         * src/dialogs/sp-attribute-widget.cpp: went hunting for other static
7350           l18n strings.  Fixed some here too.
7351         * autogen.sh: cleanups and more debugging.
7352         * share/extensions/sk2svg.sh: tempfile cleanups from pjrm (patch #990009)
7354 2004-07-20 Nathan Hurst <njh@mail.csse.monash.edu.au>
7356         * debian/changelog, configure.in: Moved to 0.40cvs and updated
7357           debian stuff.
7359 2004-07-18  MenTaLguY  <mental@rydia.net>
7361         * configure.in, src/Makefile.am, src/algorithms/Makefile_insert,
7362           src/algorithms/makefile.in, src/traits/Makefile_insert,
7363           src/traits/makefile.in, src/util/Makefile_insert, src/util/makefile.in:
7365           added src/algorithms, src/traits, and src/util subdirs
7367         * src/algorithms/longest-common-suffix.h:
7369           added generic "longest common suffix" algorithm
7371         * src/traits/list.h: added traits class for lists
7373         * src/traits/tree-iterator.h: added traits class for n-ary tree iterators
7375         * src/util/list-iterator.h: STL iterator for lists
7377         * src/util/parent-axis.h: parent "axis" of tree iterator as list
7379         * src/util/sibling-axis.h: sibling "axis" of tree iterator as list
7381         * src/xml/repr.h: specialize Traits::TreeIterator for SPRepr *
7383         * src/sp-object.h: specialize Traits::TreeIterator for SPObject *
7385         * src/sp-object.cpp: use generic "longest common suffix" to find
7386                              nearest common ancestor
7388         * src/splivarot.cpp: use genric "longest common suffix" to find
7389                              nearest common ancestor here too
7391 2004-07-18  Kees Cook  <kees@outflux.net>
7393         * Makefile.am, configure.in, autogen.sh, toolversions.sh:
7394           cleaning up some automake misbehavior from the gtkmm patch.
7395           automake 1.4isms snuck back in.
7396         * src/desktop-events.cpp: unlocalized strings updated.
7398 2004-07-18  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7400         * src/sp-path.cpp (sp_path_write): Handle shape->curve==NULL.
7402 2004-07-18  MenTaLguY  <mental@rydia.net>
7404         * Makefile.am, configure.in, m4/Makefile.am, m4/codeset.m4, m4/gettext.m4,
7405           m4/glibc21.m4, m4/iconv.m4, m4/isc-posix.m4, m4/lcmessage.m4,
7406           m4/progtest.m4, src/arc-context.cpp, src/arc-context.h, src/desktop.cpp,
7407           src/desktop.h, src/document.cpp, src/document.h, src/draw-context.cpp,
7408           src/draw-context.h, src/event-context.h, src/main.cpp,
7409           src/message-stack.h, src/node-context.cpp, src/node-context.h,
7410           src/nodepath.cpp, src/nodepath.h, src/object-hierarchy.h,
7411           src/rect-context.cpp, src/rect-context.h, src/selcue.cpp, src/selcue.h,
7412           src/selection-describer.cpp, src/selection-describer.h,
7413           src/selection.h, src/seltrans.cpp, src/sp-gradient.cpp,
7414           src/sp-item.cpp, src/sp-item.h, src/sp-object.cpp, src/sp-object.h,
7415           src/sp-offset.cpp, src/sp-offset.h, src/sp-pattern.cpp, src/sp-use.cpp,
7416           src/sp-use.h, src/spiral-context.cpp, src/spiral-context.h,
7417           src/star-context.cpp, src/star-context.h, src/text-context.cpp,
7418           src/text-context.h, src/toolbox.cpp, src/uri-references.cpp,
7419           src/uri-references.h, src/view.cpp, src/view.h,
7420           src/dialogs/xml-tree.cpp:
7422           merged Aubanel MONNIER's gtkmm upgrade patch
7424 2004-07-17  Carl Hetherington  <inkscape@carlh.net>
7426         * src/sp-use.cpp: fix a compiler warning (closes #992960)
7428         * src/sp-offset.cpp: fix a compiler warning (closes #992960)
7430         * src/sp-text.cpp: fix a compiler warning (closes #992959)
7432 2004-07-16  Kees Cook  <kees@outflux.net>
7434         * src/verbs.h, src/verbs.cpp: added "sp_verbs_find" function for bryce.
7436 2004-07-15  Ted Gould  <ted@gould.cx>
7438         * 0.39 Release
7440 2004-07-14  MenTaLguY  <mental@rydia.net>
7442         * src/sp-object.cpp: disable recursive update warning for release
7444         * src/select-context.cpp: work around probable cut-and-paste bug
7445           between sp_select_context_item_handler and
7446           sp_select_context_root_handler by checking for drag_escaped
7448 2004-07-13  MenTaLguY  <mental@rydia.net>
7450         * src/make.exclude: omit extension/script/js/js.c from build
7452 2004-07-13  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7454         * src/dialogs/rdf.cpp: Don't add dc:description entry to SVG files.
7456         * src/utest/utest.h: Add include guard.
7458 2004-07-12  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7460         * src/decimal-round.h (decimal_round): New file, new function.
7461         * src/round.h (decimal_round): New file, new function.
7462         * src/Makefile_insert: Add to libinkpost_a_SOURCES.
7464 2004-07-11  MenTaLguY  <mental@rydia.net>
7466         * src/document.h, src/document-undo.cpp:
7467           added sp_document_get_undo_sensitive() for capturing and restoring
7468           undo sensitivity
7470         * src/sp-object.cpp: don't log id changes made to resolve
7471           duplicate ids (to avoid undo badness) (fix for bug #989023)
7473 2004-07-11  Kees Cook  <kees@outflux.net>
7475         * src/preferences-skeleton.h, src/extension/init.cpp: with simarilius,
7476           tracked down the cause of bug #988445.  Extension code now has a
7477           small section that validates preferences for valid extension names.
7478         * src/dialogs/filedialog-win32.cpp: corrected an assert test, and
7479           changed dialog to take the passed window title.
7480         * autogen.sh, config.h.mingw, configure.in, src/Makefile_insert,
7481           src/help.cpp, src/inkscape-stock.cpp, src/inkscape.cpp, src/main.cpp,
7482           src/make.dep, src/make.files, src/path-prefix.h, src/prefix.cpp,
7483           src/prefix.h, src/dialogs/stroke-style.cpp,
7484           src/extension/Makefile_insert, src/extension/init.cpp,
7485           src/extension/implementation/Makefile_insert,
7486           src/extension/implementation/script.cpp,
7487           src/extension/internal/Makefile_insert, src/helper/stock-items.cpp,
7488           src/widgets/icon.cpp:
7489         Cleaned up all the path #define's and usage.  In the process found at
7490         least 3 separate bugs associated with file locations.  This should
7491         hopefully work for Win32 as well.  Bottom line in this change: don't use
7492         INKSCAPE_DATADIR anywhere except in "path-prefix.h".  This includes
7493         an update to the autopackage code as well with fixes so that
7494         a change to "--enable-binreloc" will get recompiled correctly.  These
7495         changes should address bug #978391.
7497 2004-07-11  Carl Hetherington  <inkscape@carlh.net>
7499         * src/attributes.cpp, src/attributes.h: remove confusing
7500         snaptogrid and snaptoguides options.
7502         * src/desktop-events.cpp: use inkscape:guide-bbox instead of
7503         snaptoguides to turn guides on.
7505         * src/desktop.cpp: no need to worry about Snapper::getEnabled().
7507         * src/snap.cpp, src/snap.h: Remove explicit enabled flag from
7508         Snapper, as itconfuses people.  Added
7509         namedview_dim_snap_all_types().  Return useful stuff from
7510         vector_snap_list.
7512         * src/rect-context.cpp: Use hack to make snapping kind of work
7513         even with snap-to-bbox enabled.
7515         * src/sp-namedview.cpp, src/dialogs/desktop-properties.cpp: remove
7516         snaptogrid and snaptoguides options as they confuse people.  Use
7517         better names for the scale origin radio buttons, as suggested by
7518         Bulia.
7520         * src/seltrans.cpp: Fix some cases where snap wasn't correctly applied.
7522 2004-07-10  MenTaLguY  <mental@rydia.net>
7524         * src/sp-image.cpp: prospective fix for bug #979858
7526         * src/select-context.cpp, src/select-context.h,
7527           src/seltrans.cpp, src/seltrans.h:
7529           gave SPSelTrans its own Inkscape::MessageContext, fixing
7530           bug #977971
7532 2004-07-10  Kees Cook  <kees@outflux.net>
7534         * src/knot.cpp: solved bug #988513: knot could stay grabbed in
7535           situations where the tool went away but never got "button_release"
7536           event.  This patch uses the "enter" and "leave" notifiers to disable
7537           the grab before a "motion" can come and snag the knot.
7539 2004-07-09  Kees Cook  <kees@outflux.net>
7541         * src/widgets/paint-selector.cpp: solved bug #984902: the pattern
7542           menu was being destroyed since it was remaining part of the frame
7543           that was being destroyed whenever the selector changed.  It gets
7544           ref-counted, disconnected, and destroyed correctly now.
7545         * mkinstalldirs: automake 1.8 stopped including "mkinstalldirs", but
7546           intltool still uses it.  We'll need to keep this until intltool
7547           fixes the bug.  intltool 0.31 and earlier are all buggy.
7549 2004-07-09  Carl Hetherington  <inkscape@carlh.net>
7551         * src/draw-context.cpp: remove some debugging g_prints.
7553 2004-07-08  MenTaLguY  <mental@rydia.net>
7555         * src/interface.cpp: fixed crash on desktop context menu
7557         * src/desktop.h, src/desktop.cpp:
7559           added SPDesktop::isWithinViewport() to conveniently determine
7560           if an item is within view
7562           also made isLayer() const
7564         * src/sp-object.h: added SPObject::hasChildren() predicate
7566         * src/sp-object.cpp: revert to old behavior of breaking parent
7567           link before emitting "release" signal
7569         * src/selection-chemistry.cpp: rewrote sp_selection_item_next()
7570           and sp_selection_item_prev() to work with layers
7572 2004-07-08  Carl Hetherington  <inkscape@carlh.net>
7574         * src/libnrtype/FontFactory.cpp: disable printing of debug
7575         messages.
7577         * src/sp-item-group.cpp: give it a snappoints method to fix
7578         937318.
7580         * src/draw-context.cpp: fix a couple of places where Shift isn't
7581         checked before snapping.
7584 2004-07-07  MenTaLguY  <mental@rydia.net>
7586         * src/desktop.cpp, src/interface.cpp: remove the word "layer"
7587           for now, and disable the layer selector when the user is not
7588           inside a group
7590 2004-07-07  Kees Cook  <kees@outflux.net>
7592         * src/dialogs/desktop-properties.cpp: added a few g_asserts, and
7593           added a missing sp_signal_disconnect_by_data for the color picker,
7594           which closes bug #975864.  Stopped accidentally calling
7595           sp_document_done from the update handler (fixes bug #986411).
7596         * src/dialogs/dialog-events.cpp, src/helper/action.cpp:
7597           whitespace changes, typo fixes, added a few g_asserts.
7598         * src/selection-chemistry.cpp, src/desktop.cpp: when deleting items
7599           from the desktop, the selection context may need to be cleared since
7600           it may have pointers to the deleted items.  To do this, I just
7601           reselect the current tool (fixes bug #983243).
7602         * src/dialogs/xml-tree.cpp, src/dialogs/desktop-properties.cpp:
7603           corrected tooltips memory handling.
7605 2004-07-06  MenTaLguY  <mental@rydia.net>
7607         * src/desktop.cpp: minor tweaks to make the existing layers
7608           code easier to work with in its current state (particularly,
7609           to sidestep some existing bugs that otherwise require more
7610           UI work to fix)
7612 2004-07-06  Carl Hetherington  <inkscape@carlh.net>
7614         * src/seltrans.cpp, src/sp-namedview.cpp,
7615         src/display/bezier-utils.cpp, src/libnr/nr-types.cpp:
7616         isnan appears to need a std:: namespace qualifier.
7618 2004-07-06  Ted Gould  <ted@gould.cx>
7620         * src/libnr/nr-point.h, src/libnr/nr-rect.h:
7622         Adding in a function to round the points and rectangles.  Using this
7623         for less precise comparisons.  Also, added in a function to print
7624         each of these.
7626         * src/dialogs/export.cpp:
7628         Major revisions to do all kinds of fun stuff.  The major one being
7629         that filenames and dpi's can now be stored on selections.  This
7630         makes it so that people working on a section of a document can export
7631         it consistently.
7633 2004-07-06  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7635         * src/sp-typeset-utils.h: Greatly reduce #includes.
7637         * src/color-rgba.h, src/Makefile_insert, src/desktop.h:
7638           Move ColorRGBA from desktop.h to new file color-rgba.h.
7639         * src/desktop.cpp, src/dropper-context.cpp: #include it.
7641 2004-07-05  Kees Cook  <kees@outflux.net>
7643         * src/dialogs/desktop-properties.cpp, src/dialogs/rdf.cpp,
7644           src/dialogs/rdf.h: added multiline data entry items, reduced
7645           overall width of the dialog, and created the license entry areas.
7646           Auto-detection of license on load works now.
7648 2004-07-05  MenTaLguY <mental@rydia.net>
7650         * src/desktop.cpp: comitted further work which gives us a
7651           partially-functional layers menu (not actually hooked up to
7652           change layers yet), and it is not always updated when it needs
7653           to be (yet).  It does also fix the crash though.
7655         * src/desktop.cpp, src/desktop.h, src/document.cpp,
7656           src/sp-item-group.cpp, src/sp-item-group.h:
7658           additional layers work; backed off on promoting siblings to
7659           layers automatically and reintroduced "global" layer mode
7661 2004-07-05  Carl Hetherington <inkscape@carlh.net>
7663         * src/desktop.cpp: prevent crash by adding a check for
7664         layer == NULL to SPDesktopWidget::_buildLayerStatusMenuItem.
7666         * src/selection-chemistry.cpp: prevent crash on copying empty
7667         groups.
7669 2004-07-04  MenTaLguY  <mental@rydia.net>
7671         * src/sp-object.cpp: fixed bug #979281 -- I had accidentally
7672           reversed the sense of a test in SPObject::requestModified(),
7673           such that CHILD_MODIFIED notifications were never being sent
7675         * src/widgets/sp-color-notebook.cpp: always assume colors are
7676           8-digit hex rrggbbaa, and zero-fill accordingly
7678           HAPPY NATHAN#@$?#$#@$!?!?!?
7680         * src/desktop.cpp, src/desktop.h, src/document.cpp, src/document.h,
7681           src/interface.cpp, src/select-context.cpp, src/selection-chemistry.cpp,
7682           src/sp-item-group.cpp, src/sp-item-group.h, src/widgets/widget-sizes.h:
7684           Added selection-changes-current-layer and other layer refinements.
7685           Except for fixing the currently broken layer combo box on the status
7686           bar, I think this is pretty much the last of the layerish work I'm
7687           willing to do for 0.39 since we're in freeze now.
7689 2004-07-03  Kees Cook  <kees@outflux.net>
7691         * src/document.cpp, src/dialogs/desktop-properties.cpp,
7692           src/dialogs/rdf.cpp, src/dialogs/rdf.h:
7693           Added several more RDF entities.  Created entry tooltips.  Set
7694           a few RDF defaults for the document.
7696 2004-07-03  MenTaLguY  <mental@rydia.net>
7698         * src/desktop.cpp, src/document.cpp:
7700           siblings of a layer now become layers too
7702         * src/interface.cpp: switched to command names suggested by bulia
7704         * src/object-hierarchy.cpp, src/object-hierarchy.h:
7706           bugfixes and cleanups
7708         * src/sp-item-group.cpp, src/sp-item-group.h, src/sp-root.cpp:
7710           new layerMode() and setLayerMode() methods; SPGroupMode becomes
7711           SPGroup::LayerMode
7713         * src/sp-object.h: added isSiblingOf() method
7715         * src/sp-object.cpp: leave parent pointer in place until after
7716           "release" handlers finish
7718 2004-07-02  Kees Cook  <kees@outflux.net>
7720         * src/document.cpp, src/dialogs/desktop-properties.cpp,
7721           src/dialogs/rdf.cpp, src/dialogs/rdf.h, src/xml/repr.h:
7722           Made RDF's writable now.  Handling modifications and defaults.
7723           Mental and others will most likely kill me when they finally
7724           read this code.
7726 2004-07-02  MenTaLguY  <mental@rydia.net>
7728         * src/attributes.cpp, src/attributes.h, src/sp-item-group.cpp,
7729           src/sp-item-group.h:
7731           Removed the "inkscape:groupmode" attribute and added note about how
7732           the group/layer mode setting needs to be per-view, not global.
7734         * src/desktop.cpp, src/desktop.h,
7735           src/object-hierarchy.cpp, src/object-hierarchy.h:
7737           Added notification signals for switching layers, as well as putting
7738           groups in layer mode when they are being used as layers.
7740           Notably, you can now call SPDesktop::connectCurrentLayerChanged() to
7741           connect to a SigC++ signal to be notified when the current layer
7742           changes.
7744         * src/interface.cpp, src/object-ui.cpp:
7746           Fixed up the "Enter Group" and "Leave Group" context menu
7747           commands a bit, and implement them both in the same places.
7749 2004-07-02  Carl Hetherington  <inkscape@carlh.net>
7751         * src/desktop-snap.cpp, src/desktop-snap.h, src/snap.cpp, src/snap.h,
7752         src/Makefile_insert src/arc-context.cpp src/draw-context.cpp
7753         src/dyna-draw-context.cpp src/make.dep src/make.files src/make.ofiles
7754         src/makefile.msc src/nodepath.cpp src/rect-context.cpp
7755         src/select-context.cpp src/selection-chemistry.cpp src/seltrans.cpp
7756         src/sp-namedview.h src/spiral-context.cpp src/star-context.cpp:
7757         renamed desktop-snap.* to snap.* since it has nothing to do with the
7758         desktop any more.
7760         * src/draw-context.cpp: Temporary hack to prevent snapping
7761         completely failing to work when snapping to bbox points.  Support
7762         shift-disables-snap for freehand drawing.
7764         * src/snap.cpp, src/snap.h: Added some temporary methods to assist
7765         with hacks elsewhere.
7767 2004-07-01  Kees Cook  <kees@outflux.net>
7769         * src/xml/repr.h, src/xml/repr-util.h, src/dialogs/rdf.cpp:
7770           moved "repr_lookup_name" into the repr-util collection so
7771           that the RDF stuff doesn't need to know about SPRepr internals.
7772           Now that I've started to grok the SPRepr stuff, this seems best.
7773           Added "sp_repr_recursive_drop" for use in the future when I may
7774           want to throw away an entire tree of SPRepr items (like ditching
7775           a blank "dc:rights" section).
7777 2004-07-01  MenTaLguY  <mental@rydia.net>
7779         * src/sp-item.cpp: fix clip path loading bug
7781         * src/sp-object.cpp: relax analness about object ids a little
7783 2004-06-30  Kees Cook  <kees@outflux.net>
7785         * src/dialogs/desktop-properties.cpp, src/dialogs/rdf.h,
7786           src/dialogs/rdf.cpp: built the various functions needed to extract
7787           the RDF text elements from the DOM.  XML in the document will now
7788           be displayed in the entry fields.
7790 2004-06-28  MenTaLguY  <mental@rydia.net>
7792         * src/xml/repr-action.cpp, src/xml/repr-action.h, src/xml/repr-css.cpp,
7793           src/xml/repr-io.cpp, src/xml/repr-private.h, src/xml/repr-util.cpp,
7794           src/xml/repr.cpp, src/xml/sp-repr-attr.h: applied peter's patch to
7795           break out NRReprAttr
7797         * src/sp-object.cpp, src/sp-object.h:
7799           added SPObject::nearestCommonAncestor, which given another SPObject
7800           returns the nearest common ancestor of the two SPObjects.
7802         * src/sp-item.cpp, src/sp-item.h:
7804           added SPItem::getRelativeTransform, which computes the SPItem's
7805           transform relative to another SPObject
7807         * src/arc-context.cpp, src/draw-context.cpp, src/dyna-draw-context.cpp,
7808           src/rect-context.cpp, src/spiral-context.cpp, src/star-context.cpp,
7809           src/text-context.cpp:
7811           drawing tools now cope with drawing within transformed groups
7812           (i.e. layers)
7814 2004-06-27  MenTaLguY  <mental@rydia.net>
7816         * src/sp-object.h: remove sp_object_request_update,
7817           sp_object_invoke_update, sp_object_invoke_modified,
7818           sp_object_request_modified, and sp_object_invoke_write, which have been
7819           deprecated and are now completely unused
7821         * src/Makefile_insert, src/desktop.cpp, src/desktop.h,
7822           src/object-hierarchy.cpp, src/object-hierarchy.h, src/sp-object.cpp,
7823           src/sp-object.h:
7825           Implemented SPDesktop::setCurrentLayer(), introducing
7826           Inkscape::ObjectHierarchy to permit falling back to parents if
7827           the current layer is removed.
7829         * src/object-ui.cpp, src/interface.cpp: really crude hack of
7830           Sodipodi-like "enter group" and "leave group"
7832 2004-06-26  MenTaLguY  <mental@rydia.net>
7834         * src/refcounted.h: allow reffing/unreffing const objects
7836         * src/arc-context.cpp, src/draw-context.cpp, src/dropper-context.cpp,
7837           src/event-context.cpp, src/event-context.h, src/node-context.cpp,
7838           src/rect-context.cpp, src/selcue.cpp, src/selcue.h,
7839           src/select-context.cpp, src/select-context.h, src/seltrans.cpp,
7840           src/seltrans.h, src/spiral-context.cpp, src/star-context.cpp,
7841           src/text-context.cpp, src/zoom-context.cpp:
7843           Make SPSelTrans and SPSelCue proper C++ classes with constructors.
7845         * src/document.h, src/dialogs/xml-tree.cpp: removed sp_document_lookup_id
7847         * src/sp-object.cpp: clarify what is happening with bug #980407 --
7848           the clone is getting attached to the repr before the original SPObject
7849           is.
7851 2004-06-26  Carl Hetherington  <inkscape@carlh.net>
7853         * src/node-context.cpp: make sure nodepath->nodeContext is set up
7854         when the selection changes.  Fixes 936739.
7856 2004-06-25  MenTaLguY  <mental@rydia.net>
7858         * src/display/sp-canvas.cpp: enabled win32 current item workaround on
7859           all platforms
7861 2004-06-25  Kees Cook  <kees@outflux.net>
7863         * src/dialogs/rdf.h, src/dialogs/rdf.cpp, src/dialogs/Makefile_insert,
7864           src/dialogs/desktop-properties.cpp:
7866           Added data entry widgets for document metadata, including a rough
7867           license selector, and debug rdf generator.  Corrected whitespace,
7868           added table for RDF entity lookup, tag, and title mapping.  Added
7869           initial loading framework.  Cleaned up rdf_work_entity_t usage.
7871 2004-06-25  Carl Hetherington  <inkscape@carlh.net>
7873         * src/sp-namedview.cpp: cleanups in grid snap settings.  Fix a
7874         typo.
7876         * src/seltrans.cpp: optional default origin for scaling.  Fixes
7877         to snap during scale.
7879         * src/seltrans.h: s/opposit/opposite/.  Add some comments.
7881         * src/dialogs/display-settings.cpp: add default scale origin
7882         option.
7884         * src/desktop-snap.h: changes to snap_list_scale prototype.
7886         * src/desktop-snap.cpp: snap_list_scale now returns whether
7887         it snapped or not.  The best scale snap is now the one that
7888         changes the scale factor least, rather than the one that
7889         results in the snap point being closest to where it used to be.
7891         * src/display/sp-canvas.cpp: fix for win32 freeze-at-border bug,
7892         copied from SP.
7894         * src/knot.cpp, src/select-context.cpp: change spellings from
7895         British to American English for translators.
7897 2004-06-24  rejon <kidproto@users.sf.net>
7899         * src/verbs.cpp: I changed the reverse command to be more verbose and
7900           explanative.
7902 2004-06-24  MenTaLguY  <mental@rydia.net>
7904         * src/seltrans.cpp: slight change to make showing/hiding center
7905           mark easier later on
7907         * configure.in, src/main.cpp, src/star-context.cpp,
7908           src/display/bezier-utils.cpp, src/display/canvas-bpath.cpp,
7909           src/display/nr-arena-glyphs.cpp, src/display/nr-arena-shape.cpp,
7910           src/display/sp-ctrlline.cpp, src/libnr/nr-svp.cpp,
7911           src/libnrtype/FontFactory.cpp, src/libnrtype/RasterFont.cpp,
7912           src/livarot/AlphaLigne.cpp, src/livarot/BitLigne.cpp,
7913           src/livarot/Ligne.cpp, src/livarot/PathOutline.cpp,
7914           src/livarot/ShapeMisc.cpp, src/widgets/font-selector.cpp:
7916           fixes for floating-point portability issues, courtesy of
7917           Colin Marquardt.
7919         * src/extensions/init.cpp: dirent.h requires inttypes.h on OS X
7921 2004-06-23  MenTaLguY  <mental@rydia.net>
7923         * src/Makefile_insert, src/desktop.cpp, src/managed.h,
7924           src/message-context.cpp, src/message-stack.h, src/refcounted.h,
7925           src/selection.h, src/view.cpp:
7927           Changed my mind.
7929           Inkscape::Managed is more properly called Inkscape::Refcounted
7931         * src/libnrtype/Makefile_insert, src/libnrtype/codepages.h,
7932           src/libnrtype/cp1250.cpp, src/libnrtype/cp1251.cpp,
7933           src/libnrtype/cp1252.cpp, src/libnrtype/cp1253.cpp,
7934           src/libnrtype/cp1254.cpp, src/libnrtype/cp1255.cpp,
7935           src/libnrtype/cp1256.cpp, src/libnrtype/cp1257.cpp,
7936           src/libnrtype/cp1258.cpp, src/libnrtype/cp874.cpp,
7937           src/libnrtype/cp932.cpp, src/libnrtype/cp936.cpp,
7938           src/libnrtype/cp949.cpp, src/libnrtype/cp950.cpp:
7940           removed unused Win32 codepage crap
7942 2004-06-23  Carl Hetherington  <inkscape@carlh.net>
7944         * src/inkscape.cpp: Don't connect to SIGBUS on Win32, as
7945         it doesn't seem to exist.  Add Emacs mode line.
7946         Declaration-to-first-use and coding style cleanups.
7948         * src/desktop-snap.h: a few double -> NR::Coord fixes.
7950         * src/nodepath.cpp: turn off snapping when Shift is held down.
7951         Some minor cleanups.
7953         * src/dialogs/display-settings.cpp: remove my rather dubious
7954         move_with_grid option.
7956         * src/select-context.cpp: rationalise grid modifiers; now Shift
7957         disables snap and Alt snaps movement to the grid.
7959 2004-06-23  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
7961         * share/extensions/dia2svg.sh: Fix bashism and insecure tempfile usage.
7963 2004-06-23  Ted Gould  <ted@gould.cx>
7965         * share/extensions/dropshadow.inkmod, share/extensions/roundhole.inkmod,
7966         src/extension/system.cpp:
7968         Setting it up so that poorly formed inkmod files generate actual GTK
7969         warnings so that they can be easily hidden.  Also, fixing these two inkmod
7970         files so that they don't generate the above mentioned warnings.
7972 2004-06-22  Kees Cook  <kees@outflux.net>
7974         * src/inkscape.cpp: added SIGBUS and SIGABRT handling.
7976 2004-06-22  John Cliff <simarilius@yahoo.com>
7978         * src/object-edit.cpp:  Added knots for manipulation of pattern fills.
7979         * src/sp-shape.cpp, src/sp-shape.h:     Added sp_shape_set_pattern to
7980         explictly set the transform rather than multiplying like adjust.
7983 2004-06-22  Carl Hetherington  <inkscape@carlh.net>
7985         * src/sp-shape.cpp: add sp_shape_snappoints.
7987         * src/desktop-snap.cpp: minor cleanups.  Added a comment.
7989         * src/sp-text.cpp: removed an old comment.
7991         * src/sp-ellipse.cpp: fix snappoints method now that the parent
7992         class method has changed.
7994         * src/sp-rect.cpp: snappoints method is not required as it's now
7995         handled by SPShape.
7997         * src/sp-image.cpp: use SPItem's snappoints method.
7999         * src/file.cpp: fix another call to g_file_test with a
8000         possibly-NULL parameter.  Fixes #977413.
8002 2004-06-21  Carl Hetherington  <inkscape@carlh.net>
8004         * src/file.cpp: don't call g_file_test with a NULL path.  Fixes
8005         #976703.
8007         * src/desktop-snap.cpp: default to snapping to bounding boxes when
8008         snapping is first enabled.  Rework in terms of SPNamedView rather
8009         than SPDesktop.
8011         * src/desktop-snap.h: rework in terms of SPNamedView rather than
8012         SPDesktop.
8014         * src/arc-context.cpp, src/draw-context.cpp,
8015         src/dyna-draw-context.cpp, src/nodepath.cpp src/rect-context.cpp,
8016         src/select-context.cpp, src/selection-chemistry.cpp,
8017         src/seltrans.cpp, src/sp-namedview.cpp, src/spiral-context.cpp,
8018         src/star-context.cpp: Adapt for changes to snap code naming.
8020         * src/seltrans.cpp: cleanups to sp_sel_trans_skew_request and
8021         sp_sel_trans_scale_request.
8023 2004-06-20  Ted Gould  <ted@gould.cx>
8025         * share/extensions/ai_input.inkmod, share/extensions/ai_output.inkmod,
8026         share/extensions/dia.inkmod, share/extensions/dropshadow.inkmod,
8027         share/extensions/epsi_output.inkmod, share/extensions/roundhole.inkmod,
8028         share/extensions/svgz_input.inkmod, share/extensions/svgz_output.inkmod,
8029         share/extensions/txt2svg.inkmod, src/extension/extension.h,
8030         src/extension/system.cpp, src/extension/implementation/script.cpp,
8031         src/extension/internal/eps-out.cpp,
8032         src/extension/internal/gdkpixbuf-input.cpp,
8033         src/extension/internal/gnome.cpp, src/extension/internal/ps-out.cpp,
8034         src/extension/internal/ps.cpp, src/extension/internal/svg.cpp,
8035         src/extension/internal/win32.cpp:
8037         Changing the naming of the extensions to be more Java style naming to
8038         allow for more extension in the future.
8040 2004-06-21  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8042         * src/extension/internal/ps.cpp (PrintPS): Initialize _stream to
8043           NULL (fixes segfaults when exporting to an unopenable file), and
8044           initialize _bitmap to false instead of random.
8046 2004-06-20  MenTaLguY  <mental@rydia.net>
8048         * src/desktop.cpp, src/managed.h, src/message-context.h,
8049           src/message-stack.h, src/message.h, src/view.cpp:
8051           Document classes, and change Managed to have an initial refcount
8052           of one at creation.
8054 2004-06-20  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8056         * src/libnrtype/FontFactory.cpp, src/libnrtype/FontInstance.cpp,
8057           src/libnrtype/font-instance.h: If both WIN32 and WITH_XFT are
8058           defined, then use just the WITH_XFT code.  (I don't know if it's
8059           possible for both to be defined, but we might as well document
8060           that the existing code doesn't handle both being defined, AFAICT.)
8062         * src/libnrtype/FontFactory.cpp (ink_strstr): Document brokenness.
8063           (is_regular, is_nonbold, is_italic, etc.): Mark as static.
8065         * src/Makefile.am (EXTRA_DIST): Remove reference to deleted files
8066           libnrtype/nr-type-w32.cpp, libnrtype/nr-type-w32.h,
8067           libnrtype/nr-type-xft.cpp, libnrtype/nr-type-xft.h.
8069         * src/config.h.win32: Define PACKAGE_TARNAME, for require-config.h.
8070           More accurate mathematical constants (20 decimal places instead of 3).
8072 2004-06-19  MenTaLguY  <mental@rydia.net>
8074         * src/desktop.cpp, src/managed.h, src/rect-context.cpp,
8075           src/rect-context.h, src/selection.h, src/view.cpp:
8077           SPSelection now derives from Inkscape::Managed
8079         * src/Makefile_insert, src/select-context.cpp, src/select-context.h,
8080           src/selection-describer.h, src/selection-describer.cpp:
8082           Introduced Inkscape::SelectionDescriber to which SPSelectContext
8083           delegates the task of displaying descriptions of the current
8084           selection.  This fixes bug #945735.
8086 2004-06-19  Carl Hetherington  <inkscape@carlh.net>
8088         * src/desktop-snap.{cpp,h}: sp_desktop_dim_snap_list returns
8089         whether or not it snapped anything.
8091         * src/select-context.cpp: fix snap on move behaviour (again)
8093         * src/widgets/dash-selector.cpp: fix off-by-one spotted by
8094         valgrind.
8096 2004-06-19  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8098         * src/extension/internal/ps.cpp (begin): Add some basic error handling.
8100         * src/extension/internal/ps.cpp (setup): Simplify an expression now that
8101           _bitmap is a bool.
8103         * src/extension/internal/ps.h: Twiddle the order of the fields.
8104           Replace bitfields with bool/short.
8106         * src/libnrtype/Makefile_insert, src/libnrtype/FontInstance.h,
8107           src/make.files, src/make.ofiles, src/make.dep:
8108           Remove src/libnrtype/FontInstance.h (see change below).
8110         * src/libnrtype/RasterFont.h, src/libnrtype/raster-glyph.h,
8111           src/libnrtype/raster-position.h:
8112           Move raster_glyph, raster_position from RasterFont.h to new files
8113           raster-glyph.h, raster-position.h.
8114         * src/libnrtype/Makefile_insert: Add the new files to SOURCES.
8116         * src/libnrtype/FontInstance.h, src/libnrtype/font-glyph.h,
8117           src/libnrtype/font-instance.h, src/libnrtype/font-style.h:
8118           Move font_glyph, font_instance, and font_style definitions from
8119           FontInstance.h into new files font-glyph.h, font-instance.h,
8120           font-style.h.
8121         * src/libnrtype/Makefile_insert: Add the new files to SOURCES.
8123         * src/libnrtype/nrtype-forward.h: New file.
8124         * src/libnrtype/Makefile_insert: Add it to SOURCES.
8125         * src/libnrtype/FontFactory.h, src/libnrtype/TextWrapper.h:
8126           #include it (replacing local declarations in some cases).
8128         * src/livarot/livarot-forward.h: New file.
8129         * src/livarot/Ligne.h, src/livarot/Path.h, src/livarot/Shape.h:
8130           #include it (replacing local declarations in some cases).
8131         * src/livarot/Makefile_insert: Add it to SOURCES.
8133 2004-08-18  Ted Gould  <ted@gould.cx>
8135         * src/file.cpp, src/preferences-skeleton.h:
8137         Adding the feature that the save and open directories are saved in the
8138         preferences.  The last one will be used.
8140 2004-08-18  Carl Hetherington  <inkscape@carlh.net>
8142         * src/widgets/font-selector.cpp: uint -> guint to fix
8143         compile errors.
8145         * src/desktop-snap.{cpp,h}: make snap functions aware of the
8146         type of point they are snapping, so they can decide whether
8147         to ignore it.
8149         * src/arc-context.cpp, src/rect-context.cpp,
8150         src/spiral-context.cpp, src/star-context.cpp,
8151         src/draw-context.cpp, src/dyna-draw-context.cpp, src/nodepath.cpp,
8152         src/selection-chemistry.cpp, src/seltrans.cpp:
8153         temporarily update for changes to snapping API.
8155         * src/sp-namedview.cpp, src/dialogs/desktop-properties.cpp:
8156         adapt for small changes to Snapper API.
8158         * src/select-context.cpp: use new snapping API.
8160 2004-08-17  Bryce Harrington  <bryce@bryceharrington.org>
8162         *  nodepath.cpp path-chemistry.cpp selection-chemistry.cpp,
8163            seltrans.cpp sp-typeset.cpp splivarot.cpp text-context.cpp,
8164            tools-switch.cpp dialogs/find.cpp:  Converting statusbar
8165            messages from old style to new, as per
8166            http://inkscape.org/cgi-bin/wiki.pl?StatusbarAPI
8168 2004-06-18  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8170         * src/mkdep.pl: Add `by mkdep.pl' to `automatically generated' line.
8172         * src/dialogs/desktop-properties.cpp:
8173           Greater conformance to CodingStyle.  Add FIXME comment.
8175         * src/sp-namedview.cpp: Tighter scoping for iteration var.
8176           Simplify some code by greater use of cheap sp_unit_get_by_id.
8178 2004-06-17  MenTaLguY  <mental@rydia.net>
8180         * src/Makefile_insert, src/arc-context.cpp, src/arc-context.h,
8181           src/desktop-events.cpp, src/desktop.cpp, src/desktop.h,
8182           src/draw-context.cpp, src/dropper-context.cpp, src/event-context.cpp,
8183           src/event-context.h, src/file.cpp, src/interface.cpp, src/knot.cpp,
8184           src/managed.h, src/message-context.cpp, src/message-context.h,
8185           src/message-stack.cpp, src/message-stack.h, src/message.h,
8186           src/select-context.cpp, src/view.cpp, src/view.h,
8187           src/libnrtype/FontFactory.cpp, src/libnrtype/nr-type-primitives.h,
8188           src/widgets/font-selector.cpp:
8190           New status messages primitives (statusbar bug not fixed yet though).
8192 2004-06-17  Carl Hetherington  <inkscape@carlh.net>
8194         * src/helper/stock-items.cpp: fix a compiler warning.  Minor
8195         coding style cleanups.
8197         * src/arc-context.cpp, src/desktop-snap.cpp, src-desktop-snap.h,
8198         src/rect-context.cpp, src/spiral-context.cpp,
8199         src/star-context.cpp: Replace desktop.h include with forward
8200         references in desktop-snap.h, and add desktop.h includes in
8201         files which require them.
8203         * src/widgets/spw-utilities.cpp, src/widgets/spw-utilities.h:
8204         add spw_vbox_checkbutton.
8206         * src/attributes.cpp, src/attributes.h, src/sp-namedview.cpp,
8207         src/sp-namedview.h, src/desktop-snap.cpp, src/desktop-snap.h,
8208         src/desktop.cpp, src/desktop.h,
8209         src/dialogs/desktop-properties.cpp, src/seltrans.cpp,
8210         src/seltrans.h, src/selection.cpp, src/selection.h,
8211         src/select-context.cpp, src/selection-chemistry.cpp:
8213         Start of new and hopefully improved snapping code.
8215 2004-06-17  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8217         * src/helper/units.h, src/helper/units.cpp:
8218           (sp_unit_get_by_id): new function.
8219           (sp_convert_distance_full): Change arguments & return value.
8220           Call g_log if no conversion possible.
8221           Callers updated.
8222           (sp_unit_get_default, sp_unit_get_by_name): Remove unused functions.
8223           sp_units: Less rounding error in unittobase.
8225 2004-06-16  Carl Hetherington  <inkscape@carlh.net>
8227         * src/sp-item.h: added a comment.
8229 2004-06-15  Ted Gould  <ted@gould.cx>
8231         * share/extensions/ai_input.inkmod:
8232         Removing the command-line argument to specify line endings.
8234         * src/print.cpp, src/print.h, src/sp-text.cpp,
8235         src/extension/extension.cpp, src/extension/extension.h,
8236         src/extension/implementation/implementation.cpp,
8237         src/extension/implementation/implementation.h,
8238         src/extension/internal/ps.cpp, src/extension/internal/ps.h:
8240         Changing it so that the text to vector is its own function.  This way it
8241         can be used as a parameter in Postscript, but then can be easily used for
8242         drivers which only support vector drawing.
8244 2004-06-16  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8246         * src/select-toolbar.cpp: Cleanups and preparation for px units.
8248         * src/helper/units.h, src/helper/units.cpp:
8249           Add reference version of sp_points_get_units, sp_units_get_points.
8250           Implement as simple multiplication instead of sp_convert_distance.
8251           (sp_units_table_sane): New function.
8252         * src/helper/units-test.cpp: Test sp_units_table_sane.
8254         * src/sp-object-repr.cpp: Move some declarations to first use.
8255         * src/sp-object-repr.h, src/sp-object-repr.cpp (sp_object_type_register):
8256           Change return type to void.
8258         * src/sp-item.cpp (sp_item_repr_compare_position):
8259           Reimplement as shallow wrapper around sp_repr_compare_position.
8261         * src/helper/units.h, src/helper/units.cpp:
8262           SPUnitId: new enum, to allow replacing string lookups.
8263           Get rid of handling for unused SP_UNIT_USERSPACE.
8264           Remove unused SPUnit.version field.
8266         * src/helper/units-test.cpp (test_bases): Test sp_unit_get_identity.
8268         * src/helper/Makefile_insert (helper_units_test_LDADD): Fix the previous
8269           commit: -lglib-2.0 instead of -lglib.
8271 2004-06-15  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8273         * src/Makefile.am, src/helper/Makefile_insert,
8274           src/helper/units-test.cpp:
8275           New unit test file units-test.cpp.
8277         * src/select-toolbar.cpp: Greater conformance to CodingStyle.
8279 2004-06-14  Carl Hetherington  <inkscape@carlh.net>
8281         * src/libnrtype/TextWrapper.cpp: Fix what looks like an off-by-one.
8283         * ChangeLog, src/prefs-utils.cpp:
8284         Fix bracketing typo that causes an array to be overrun.
8286 2004-06-14  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8288         * src/sp-path.cpp: Move some declarations to first use.
8290 2004-06-13  Kees Cook  <kees@outflux.net>
8292         * src/xml/repr.h, src/xml/repr-utils.cpp: adding additional RDF URIs
8293         to the default namespace prefix list.
8295 2004-06-13  MenTaLguY  <mental@rydia.net>
8297         * src/arc-context.cpp, src/desktop.cpp, src/desktop.h, src/document.cpp,
8298           src/document.h, src/draw-context.cpp, src/dyna-draw-context.cpp,
8299           src/file.cpp, src/gradient-chemistry.cpp, src/interface.cpp,
8300           src/rect-context.cpp, src/selection-chemistry.cpp, src/sp-object.cpp,
8301           src/sp-object.h, src/spiral-context.cpp, src/splivarot.cpp,
8302           src/star-context.cpp, src/svg-view.h, src/text-context.cpp,
8303           src/extension/internal/gdkpixbuf-input.cpp:
8305           added SPDesktop::currentRoot() and SPDesktop::currentLayer(), which
8306           report the current "view" root and current "editing" layer,
8307           respectively; I've also added SPObject::appendReprChild().
8309           Between the two of them, they replace sp_document_add_repr, which
8310           has been removed.  Generally to add a repr to a document, you would
8311           now use either:
8313            SP_DOCUMENT_DEFS(document)->appendReprChild(repr);
8315           or:
8317            desktop->currentLayer()->appendReprChild(repr);
8319 2004-06-13  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8321         * src/sp-clippath.h, src/sp-gradient.h, src/sp-marker.h, src/sp-mask.h,
8322 src/sp-pattern.h:
8323           Explicitly mark _acceptObject as virtual.
8324           (Already declared as virtual in base class.)
8326         * src/file.cpp, src/main.cpp: Greater conformance to CodingStyle.
8328         * src/node-context.h, src/selcue.h, src/sp-pattern.h,
8329           src/widgets/sp-color-wheel-selector.h:
8330           Add missing includes as found by src/check-header-compile.
8332         * src/Makefile_insert:
8333         * src/sp-use-reference.cpp:
8334         * src/sp-use-reference.h:
8335         * src/sp-use.cpp:
8336         * src/sp-use.h:
8337           Move SPUseReference from sp-use.h to new files sp-use-reference.h,
8338           sp-use-reference.cpp.
8340         * src/sp-use.h (_acceptObject): Fix can't-use-ancestor check.
8342         * src/uri-references.h (getOwner): Fix copy&paste bug.
8344 2004-06-11  MenTaLguY  <mental@rydia.net>
8346         * src/sp-object.h, src/sp-object.cpp:
8348           migrated several SPObject methods to C++ methods:
8350           sp_object_invoke_write -> SPObject::updateRepr
8351           sp_object_request_update -> SPObject::requestDisplayUpdate
8352           sp_object_invoke_update -> SPObject::updateDisplay
8353           sp_object_request_modified -> SPObject::requestModified
8354           sp_object_invoke_modified -> SPObject::emitModified
8356           (leaving deprecated wrappers in place for now)
8358         * src/document.cpp, src/object-edit.cpp, src/sp-clippath.cpp,
8359           src/sp-defs.cpp, src/sp-ellipse.cpp, src/sp-image.cpp,
8360           src/sp-item-group.cpp, src/sp-item.cpp, src/sp-line.cpp,
8361           src/sp-marker.cpp, src/sp-mask.cpp, src/sp-offset.cpp,
8362           src/sp-pattern.cpp, src/sp-rect.cpp, src/sp-root.cpp,
8363           src/sp-shape.cpp, src/sp-spiral.cpp, src/sp-star.cpp,
8364           src/sp-symbol.cpp, src/sp-text.cpp, src/sp-typeset.cpp,
8365           src/sp-use.cpp, src/dialogs/stroke-style.cpp, src/sp-path.cpp:
8367           transitioned to SPObject::requestDisplayUpdate and
8368           SPObject::updateDisplay
8370         * src/arc-context.cpp, src/document.cpp, src/gradient-chemistry.cpp,
8371           src/knotholder.cpp, src/main.cpp, src/rect-context.cpp,
8372           src/sp-anchor.cpp, src/sp-clippath.cpp, src/sp-defs.cpp,
8373           src/sp-gradient.cpp, src/sp-item-group.cpp, src/sp-item.cpp,
8374           src/sp-mask.cpp, src/sp-namedview.cpp, src/sp-object-group.cpp,
8375           src/sp-object.cpp, src/sp-object.h, src/sp-offset.cpp,
8376           src/sp-pattern.cpp, src/sp-rect.cpp, src/sp-shape.cpp,
8377           src/sp-spiral.cpp, src/sp-text.cpp, src/sp-use.cpp,
8378           src/spiral-context.cpp, src/splivarot.cpp, src/star-context.cpp,
8379           src/style.cpp, src/toolbox.cpp, src/dialogs/fill-style.cpp,
8380           src/dialogs/stroke-style.cpp, src/extension/internal/svg.cpp:
8382           transitioned to SPObject::requestModified, SPObject::emitModified,
8383           and SPObject::updateRepr; also reworked "minimal" version of
8384           updateRepr.
8386         * src/sp-object.h: added a little documentation
8388         * src/document.cpp, src/document.h, src/file.cpp,
8389           src/gradient-chemistry.cpp, src/help.cpp, src/object-ui.cpp,
8390           src/selection-chemistry.cpp, src/selection.cpp, src/seltrans.cpp,
8391           src/sp-clippath.cpp, src/sp-item-group.cpp, src/sp-mask.cpp,
8392           src/sp-namedview.cpp, src/sp-object.cpp, src/sp-offset.cpp,
8393           src/sp-pattern.cpp, src/sp-root.cpp, src/sp-text.cpp,
8394           src/sp-typeset.cpp, src/sp-use.cpp, src/splivarot.cpp,
8395           src/uri-references.cpp, src/dialogs/fill-style.cpp,
8396           src/dialogs/item-properties.cpp, src/dialogs/stroke-style.cpp,
8397           src/helper/stock-items.cpp, src/widgets/gradient-selector.cpp,
8398           src/widgets/gradient-vector.cpp, src/widgets/icon.cpp:
8400           replaced sp_document_lookup_id with SPDocument::getObjectById,
8401           and SPDocument::getObjectByRepr
8403           (left deprecated stub in place, but it should be unused at this point)
8405 2004-06-11  Ted Gould  <ted@gould.cx>
8407         * src/file.cpp, src/inkscape.cpp, src/interface.cpp, src/prefs-utils.cpp,
8408         src/prefs-utils.h:
8410         Moving the recent document setting and getting code into the prefs-utils
8411         files so that they'll be with the preferences (which they really kinda
8412         are).  Then, moved the place where they are set from the removing of the
8413         document to where the files are opened and 'save as'd.  (yes, I made up a
8414         word/contraction).
8416 2004-06-10  Carl Hetherington  <inkscape@carlh.net>
8418         * src/desktop-snap.cpp, src/desktop-snap.h,
8419         src/satisfied-guide-cns.cpp, src/satisfied-guide-cns.h,
8420         select-context.cpp, selection.cpp, selection.h, seltrans.cpp,
8421         seltrans.h, sp-ellipse.cpp, sp-image.cpp,
8422         sp-item-notify-moveto.cpp, sp-item-rm-unsatisfied-cns.cpp,
8423         sp-item-update-cns.cpp, sp-item.cpp, sp-item.h, sp-offset.cpp,
8424         sp-rect.cpp, sp-spiral.cpp, sp-star.cpp, sp-text.cpp:
8426         Use a std::vector to store snap points, rather than a fixed-size
8427         array.
8429 2004-06-09  Carl Hetherington  <inkscape@carlh.net>
8431         * src/desktop-snap.cpp, src/desktop-snap.h: Coding style fixes.
8432         Use NR::Coord rather than double where appropriate.  Added some
8433         comments.  Use NR::Dim2 where appropriate.  Use NR_HUGE rather
8434         than hardcoded 1e18s.
8436         * src/rect-context.cpp, src/nodepath.cpp, src/arc-context.cpp:
8437         Adapt for changes to sp_desktop_dim_snap prototype.
8439         * src/select-context.cpp:
8440         Adapt for changes to sp_desktop_dim_snap_list prototype.
8442 2004-06-08  MenTaLguY  <mental@rydia.net>
8444         * src/display/sp-canvas.h, src/livarot/DblLinked.h,
8445           src/livarot/LivarotDefs.h, src/livarot/AVL.h, src/livarot/Shape.h,
8446           src/livarot/ShapeUtils.h, src/livarot/Ligne.h,
8447           src/object-edit.cpp, src/spiral-context.cpp, src/sp-shape.cpp:
8449           Portability fixes from Colin Marquardt <colin@marquardt-home.de>.
8451 2004-06-08  Carl Hetherington  <inkscape@carlh.net>
8453         * src/main.cpp: remove the call to
8454         Extension::Internal::PrintWin32::init() entirely after Ted pointed
8455         out that it would be called by code in src/extension/init.cpp
8456         anyway.
8458 2004-06-08  Ted Gould  <ted@gould.cx>
8460         * src/main.cpp:
8462         Added in a version command to our command line args.  This fixes
8463         enhancement request 968642.
8465 2004-06-07  MenTaLguY  <mental@rydia.net>
8467         * src/document.cpp, src/document.h, src/document-undo.cpp,
8468           src/sp-object.h, src/sp-object.cpp:
8469           renamed object garbage collection routines to fit the "orphan"
8470           terminology
8472 2004-06-07  Carl Hetherington <inkscape@carlh.net>
8474         * src/main.cpp: tentative fix for startup crash on Win32.  Ensure
8475         that Extension::Internal::PrintWin32::init() is not called until
8476         after inkscape_application_init().
8478 2004-06-07  Ted Gould  <ted@gould.cx>
8480         * src/inkscape.cpp, src/main.cpp:
8482         Moving the initialization of the extensions into the Inkscape application
8483         init.  I have mixed feelings on this.  On one hand, basically extension
8484         init gets called directly after applicaiton init and extensions init has
8485         nothing to do with anything else in main.  On the other hand I'm not sure
8486         that it is directly related to the structure of the application itself.
8487         Comments are welcome.
8489 2004-06-06  MenTaLguY  <mental@rydia.net>
8491         * src/attributes.cpp, src/attributes.h: added inkscape:collect attribute
8492           to specify orphan collection policy (collect with parent, or always
8493           collect)
8495         * src/document-undo.cpp, src/document.cpp, src/document.h: added an orphan
8496           collection pass as part of comitting an undo step
8498         * src/sp-object.cpp, src/sp-object.h:
8499           add total hrefcount for all descendants, and basic orphan collection
8500           facilities
8502         * src/gradient-chemistry.cpp, src/dialogs/stroke-style.cpp,
8503           src/extension/internal/gdkpixbuf-input.cpp:
8504           mark automatically added gradients, patterns, and markers for orphan
8505           collection
8507 2004-06-06  Bryce Harrington <bryce@bryceharrington.org>
8509         * libnrtype/nr-type-xft.cpp, libnrtype/nr-font.cpp,
8510           libnrtype/nr-rasterfont.cpp, libnrtype/nr-type-directory.cpp,
8511           libnrtype/nr-typeface.cpp, libnrtype/nr-type-w32.cpp,
8512           libnrtype/nr-type-ft2.cpp, libnrtype/nr-type-pos-def.cpp,
8513           libnrtype/nr-type-primitives.cpp:
8515         Documenting the routines.  This adds basic code docs for
8516         everything in libnrtype.
8518 2004-06-06  Ted Gould  <ted@gould.cx>
8520         * src/main.cpp, src/preferences-skeleton.h, src/extension/extension.cpp:
8522         Making it so that the extension parameters get saved in the Inkscape
8523         preferences.  Most people will notice that their printer gets saved now.
8524         But this does alot more than that.  Added an "extensions" group to the
8525         preferences skeleton for all these settings.  All settings get saved as
8526         "module ID"."param name".  Also had to change where the extensions get
8527         init'd in the startup to put it behind the Inkscape application so that
8528         prerefences could be used.
8530 2004-06-03  Ted Gould  <ted@gould.cx>
8532         * src/file.cpp, src/dialog/filedialog.cpp:
8534         Making the whole file dialog alot more fun.  Basically, now the
8535         first filename will always be unique on files that don't have a
8536         filename already.  And, if you've selected a different default
8537         extension, that extension's filename extension will be placed
8538         on the file.  Also, when you change the extension to save with
8539         in the dialog, the filename extension will change with you (assuming
8540         that you were using filename extensions previously ofcourse).
8541         Finally, the checkbox to autoappend extensions is no insensitive
8542         when "Autodetect" is selected.
8544 2004-06-03  MenTaLguY  <mental@rydia.net>
8546         * src/file.cpp, src/extension/internal/ps.cpp,
8547           src/extension/internal/win32.cpp, src/sp-pattern.cpp,
8548           src/dialogs/stroke-style.cpp, src/display/nr-arena-glyphs.cpp,
8549           src/display/nr-arena-group.cpp, src/display/nr-arena-image.cpp,
8550           src/display/nr-arena-item.cpp, src/display/nr-arena-shape.cpp,
8551           src/widgets/icon.cpp, src/dialogs/nr-arena-item.h:
8553           Introduced the notion of "parent" NRGCs
8555 2004-06-02  bulia byak <bulia@users.sourceforge.net>
8557         * src/selection.h, src/selection.cpp:
8559         * preferences-skeleton.h dialogs/display-settings.cpp sp-item.cpp: New
8560 settings
8561         for various compensations
8563         * sp-shape.cpp sp-shape.h sp-rect.cpp sp-path.cpp: Factored out adjustments
8564         (stroke and pattern so far) from optimizing items into sp-shape.
8566         * libnr: Added distance function for a couple of points. Added expansions
8567 for X and Y.
8569         * object-edit.cpp sp-rect.cpp sp-item.cpp toolbox.cpp: Made rect use
8570 absolute
8571         radii, added recursive compensation on item_transform. Added new knot for
8572         rect, moved corner knots to the top right corner. Rect toolbar shows visible
8573         rx/ry.
8575         * toolbox.cpp: Finally got the freeze semaphores right (prevent loops for
8576         changes both from the repr and from toolbar UI).
8578         * sp-namedview.cpp: Guarding against nan in zoom, cx, cy
8580         * select-toolbar.cpp helper/unit-menu.cpp helper/unit-menu.h: Fix units menu
8581 size
8583         * node-context.cpp: Second Esc or empty-click deselects object
8585         * desktop.cpp desktop.h: Restored sticky zoom
8587         * preferences-skeleton.h extension/internal/gdkpixbuf-input.cpp file.cpp: Do
8588 not
8589         group import if only one item; move its defs to our defs; select and move
8590         under cursor the imported item/group. Optionally import bitmaps as filled
8591         rects.
8593         * many -context files: Decoupled seltrans and selcue so that the latter can
8594 be
8595         used outside of selector; enabled optional selcue in all tools
8597         * many files: New set_color signals on desktop, switching the dropper to
8598 them;
8599         needs to be redone for style. Excise the old inkscape::color_set signal.
8601         * dialogs/stroke-style.cpp: Fix the "all clubs" marker preview bug. In
8602 markers
8603         menu, skip document markers with stockid only if the same stockid is in
8604         markers.svg; add separator.
8606         * many fill and stroke files: Remove old mode selector, remove dropper
8607 checkbox
8608         (now always on). Remember active colorselector page. Remove redundant checks
8609         in setting color (fixes at least one bug). Cosmetics, cleanup, b/w icons,
8610         shortened labels, added mnemonics and tooltips, removed the drop-down modes
8611         list. Switched color spinbuttons to 0..255 enabling 0..1 floats to be typed
8612 as
8613         well.
8615         * dialogs/find.* et al: Find dialog, command
8617         * selection-chemistry.cpp: Fix copying objects from different parents; fix
8618 and
8619         reorganize copying gradients, recurse into groups
8621         * dialogs/xml-tree.cpp: Removed unused desktop shutdown signal, fixes
8622 problem
8623         with saving window settings on exit
8625         * select-toolbar.cpp: Percentage unit, lock toggle, NR::Rectification
8627         * sp-object.cpp path-chemistry.cpp splivarot.cpp et al: Sending
8628 _delete_signal
8629         recursively for descendants; switched to deleteObject where appropriate to
8630         notify clones
8632         * preferences-skeleton.h desktop.cpp desktop.h interface.cpp: Window layout
8633         fully configurable, commands in the View menu
8635         * path-chemistry.cpp: Fixed transform when combining inside group
8637         * preferences-skeleton.h sp-item.cpp dialogs/display-settings.cpp: Fixes in
8638         scalestroke (coded by Carl): arbitrary depth recusion, setting stroke-width
8639         via repr, pref in the transforms tab
8641         * widgets/sp-xmlview-attr-list.cpp: More robust listener
8643 2004-06-01  Ted Gould  <ted@gould.cx>
8645         * src/extension/internal/gdkpixbuf-input.cpp:
8646         Making it so that the lists of extensions and mimetypes are
8647         used in the creation of the plugins.  Also, free'ing everything
8648         properly so that we don't have a memory leak.
8650 2004-05-30  MenTaLguY  <mental@rydia.net>
8652         * src/selection.h, src/selection.cpp:
8653           rework SPSelection to be SPObject- rather than SPItem- oriented;
8654           this will be needed later for the layers/document tree dialog
8655           (and could prove useful for the XML editor later too)
8657         * src/sp-item.h: make SPItem a proper C++ subclass of SPObject
8659         * src/dialogs/item-properties.cpp:
8660           correct overly intimate knowledge of SPObject (use SP_OBJECT_ID rather
8661           than directly accessing the SPObject::id member)
8663 2004-05-27  Kees Cook  <kees@outflux.net>
8665         * src/extension/internal/ps.h, src/extension/internal/ps.cpp:
8666           Hopefully fixed the locale problems in the PS output generator.
8667         * src/sp-offset.cpp, src/display/bezier-utils-test.cpp,
8668           src/display/nr-arena-item.cpp, src/libnr/nr-svp-render.cpp,
8669           src/libnr/testnr.cpp, src/livarot/AlphaLigne.cpp,
8670           src/livarot/Ligne.cpp, src/livarot/Path.cpp,
8671           src/livarot/PathCutting.cpp, src/livarot/Shape.cpp,
8672           src/livarot/ShapeDraw.cpp, src/livarot/ShapeSweep.cpp,
8673           src/svg/svg-affine.cpp: added comments and notes to all remaining
8674           "printf"ish calls that have %g or %f in them.  Most are just debug
8675           output, etc.  Hopefully we are actually free of locale bugs!  :)
8676         * src/desktop.h, src/desktop.cpp: desktop's knowledge of
8677           fullscreen-ness doesn't depend on having the ability to DO it.  Other
8678           functions already test "is_fullscreen" to alter their behavior.
8680 2004-05-23  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8682         * src/extension/system.h, src/extension/system.cpp (build_from_file):
8683           Remove unused second argument.  Callers updated.
8684         * src/extension/system.cpp (build_from_reprdoc):
8685           Just one call to sp_repr_name per child.
8686         * src/extension/system.h, src/extension/system.cpp:
8687           Cleanup: greater conformance to CodingStyle.
8689 2004-05-23  MenTaLguY  <mental@rydia.net>
8691         * src/libnrtype/Makefile_insert, src/libnrtype/nr-type-gnome.cpp,
8692           src/libnrtype/nr-type-gnome.h, src/libnrtype/nr-type-dictionary:
8694           removed gnome-print libnrtype backend
8696 2004-05-20  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8698         * src/xml/repr.h, src/xml/repr-util.cpp:
8699           Remove unused function sp_repr_set_position_relative.
8701         * src/xml/repr-util.cpp (sp_repr_compare_position, sp_repr_position):
8702           Minor cleanups.
8704 2004-05-19  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8706         * src/sp-use.cpp: Cleanup: greater conformance to CodingStyle.
8708         * src/sp-item-group.cpp (sp_item_group_ungroup): Fix bug #956334:
8709           ungrouping was reversing the order of the group members.
8711         * src/xml/repr-get-children.h, src/xml/repr-get-children.cpp: New files.
8712         * src/xml/Makefile_insert (xml_libspxml_a_SOURCES): Add the new files.
8714         * src/xml/repr-private.h, src/xml/repr.cpp (sp_repr_nth_child):
8715           Remove this unused function.
8717         * src/xml/repr.h, src/xml/repr.cpp (sp_repr_parent):
8718           Mark pointer as not written through (const).
8720 2004-05-18  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8722         * src/xml/repr.cpp: Cleanup: greater conformance to CodingStyle.
8724         * src/Makefile_insert: Add missing dependencies on inkscape_version.h.
8725         * src/display/Makefile_insert: Adapt dependency object names for
8726           `subdir-objects' automake option.
8727         * src/helper/Makefile_insert: Adapt dependency object names for
8728           lack of libspchelp-specific CPPFLAGS.
8730 2004-05-17  Carl Hetherington <inkscape@carlh.net>
8732         * src/libnrtype/nr-type-w32.cpp: Tentative fix for
8733         build problems on Win32.
8735         * src/extension/internal/svg.cpp: Coding style cleanups.
8737 2004-05-17  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8739         * src/sp-item.h, src/sp-item.cpp: Remove unused
8740           distance-conversion functions sp_item_distance_to_svg_bbox,
8741           sp_item_distance_to_svg_viewport.
8743         * src/sp-item.cpp: Cleanup: greater conformance to CodingStyle.
8745         * acinclude.m4: Remove.
8747 2004-05-16  Carl Hetherington  <inkscape@carlh.net>
8749         * src/extension/internal/svg.cpp:
8750         Throw an exception if sp_repr_save_file fails.  This should close
8751         bug 948921.
8753 2004-05-16  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8755         * src/check-header-compile.in: New script.
8756         * configure.in: Add it to list of files for substitution.
8758         * src/star-context.cpp: Minor cleanups, and use g_strdup_printf instead
8759           of fixed-size buffer for translated string.
8761         * src/selection-chemistry.cpp: Use NR::Rect bounds() method instead of
8762           old bounds(NRRect*).
8764         * src/document.cpp (sp_document_create):
8765         * src/preferences-skeleton.h:
8766           Use INKSCAPE_VERSION from inkscape_version.h instead of VERSION.
8768         * src/libnr/nr-rotate-test.cpp: Use new rotate_equalp function.
8770         * src/libnr/nr-translate-ops.h (operator-): New function.
8772         * src/select-context.cpp:
8773         * src/selection-chemistry.cpp:
8774         * src/xml/repr.h:
8775         * src/sp-defs.h:
8776           Cleanup: greater conformance to CodingStyle.
8778         * src/libnr/nr-macros.h: Don't #include nr-matrix.h, nr-rect.h.
8780         * src/arc-context.h, src/desktop-affine.h, src/dir-util.h,
8781           src/draw-context.h, src/dyna-draw-context.h, src/help.h,
8782           src/knotholder.h, src/prefs-utils.h, src/select-toolbar.h,
8783           src/sp-clippath.h, src/sp-mask.h, src/sp-pattern.h, src/sp-use.h,
8784           src/text-context.h, src/toolbox.h, src/tools-switch.h,
8785           src/dialogs/dialog-events.h, src/dialogs/sp-attribute-widget.h,
8786           src/display/sp-canvas.h, src/helper/gnome-utils.h,
8787           src/helper/png-write.h, src/helper/stock-items.h, src/inkjar/jar.h,
8788           src/libnr/nr-matrix.cpp, src/libnr/nr-point-l.h,
8789           src/svg/stringstream.h, src/svg/svg-affine.cpp,
8790           src/widgets/gradient-selector.h, src/widgets/paint-selector.h,
8791           src/widgets/spinbutton-events.h, src/widgets/spw-utilities.h,
8792           src/xml/repr-action.h:
8793           Add missing header files as detected by check-header-compile script.
8795         * src/libnr/nr-rotate-fns.h, src/libnr/nr-rotate-fns.cpp: New files.
8796         * src/libnr/nr-rotate-fns-test.cpp: New unit test.
8797         * src/libnr/Makefile_insert, src/Makefile.am: Reference new files,
8798           add to unit tests.
8800         * src/libnr/nr-rotate.h: Add Coord,Coord constructor.
8802         * src/libnr/nr-rotate.h, src/libnr/nr-rotate-ops.h (operator*=):
8803         New method.
8805         * src/libnr/nr-point-fns.h (point_equalp): New function.
8807         * src/radial.h: Remove this unused header.
8809         * src/xml/xml-forward.h: New file.
8810         * src/xml/Makefile_insert: Add it to xml_libspxml_a_SOURCES.
8811         * src/xml/repr-private.h: Include it.
8813 2004-05-16  MenTaLguY  <mental@rydia.net>
8815         * src/libnrtype/nr-type-directory.cpp, src/libnrtype/nr-type-ft2.cpp,
8816           src/libnrtype/nr-type-ft2.h, src/libnrtype/nr-type-gnome.h,
8817           src/libnrtype/nr-type-w32.h, src/libnrtype/nr-type-xft.cpp,
8818           src/libnrtype/nr-typeface.h:
8820           transition to C++ inheritance
8822         * src/verbs.cpp, src/helper/action.h, src/helper/action.cpp,
8823           src/widgets/button.cpp, src/libnr/nr-object.cpp, src/libnr/nr-object.h:
8825           removed barely-used "in-place construction" facility for NRObject
8827         * src/helper/action.h, src/helper/action.cpp,
8828           src/display/nr-arena-glyphs.cpp, src/display/nr-arena-glyphs.h,
8829           src/display/nr-arena-image.cpp, src/display/nr-arena-image.h,
8830           src/display/nr-arena-item.cpp, src/display/nr-arena-shape.cpp,
8831           src/helper/action.cpp, src/helper/action.h, src/libnr/nr-object.cpp,
8832           src/libnr/nr-object.h, src/libnrtype/nr-type-ft2.cpp,
8833           src/libnrtype/nr-type-gnome.cpp, src/libnrtype/nr-type-w32.cpp,
8834           src/libnrtype/nr-typeface.cpp:
8836           Made NRObject "C++-compatible".  All C++ features including virtual
8837           methods and RTTI should now be available to NRObject subclasses
8838           _provided_:
8840            a) there is an unbroken chain of _C++_ inheritance from the subclass
8841               back to NRObject
8843            b) the NRObject-derived inheritance chain is always first in cases
8844               of multiple inheritance (the NRObject must be first in the memory
8845               layout)
8847            c) The subclass in question overrides NRObjectClass::cpp_ctor in its
8848               own class_init function, with a pointer to a function that calls
8849               the specific subclass' constructor (via placement new -- you will
8850               need to #include <new> for this to work)
8852               n.b. Objects of classes which do not override cpp_ctor will appear
8853               to the C++ runtime system (RTTI and virtual dispatch, at least) as
8854               objects of the closest ancestor class which does override it
8855               (NRObject or NRActiveObject if nothing else).
8857 2004-05-15  MenTaLguY  <mental@rydia.net>
8859         * src/display/nr-arena-shape.h, src/display/nr-arena-shape.cpp:
8860           further reduced dependency on SPStyle
8862 2004-05-14  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8864         * src/libnr/nr-path.cpp, src/libnr/nr-path.h (nr_path_matrix_bbox_union):
8865           Get rid of no-longer-needed tolerance arg.  Update callers.
8867         * src/selection.cpp, src/sp-chars.cpp, src/sp-image.cpp,
8868           src/sp-item-group.cpp, src/sp-item.cpp, src/sp-item.h,
8869           src/sp-marker.cpp, src/sp-root.cpp, src/sp-shape.cpp,
8870           src/sp-symbol.cpp, src/sp-text.cpp, src/sp-typeset.cpp,
8871           src/sp-use.cpp, src/dialogs/fill-style.cpp,
8872           src/dialogs/stroke-style.cpp, src/display/nr-arena-shape.cpp,
8873           src/libnr/nr-path.cpp, src/libnr/nr-path.h,
8874           src/libnrtype/nr-font.cpp, src/libnrtype/nr-rasterfont.cpp,
8875           src/libnrtype/nr-type-gnome.cpp, src/widgets/icon.cpp,
8876           src/widgets/paint-selector.cpp:
8877           Change argument from NRMatrix to NR::Matrix in SPItemClass->bbox,
8878           sp_item_invoke_bbox, sp_item_invoke_bbox_full,
8879           nr_path_matrix_bbox_union.  Users updated.
8881         * src/libnr/nr-rect.h, src/libnr/nr-rect.cpp (nr_rect_union_pt):
8882           new function.
8884         * src/libnr/nr-matrix-fns.h, src/libnr/nr-matrix-fns.cpp
8885           (NR::transform): new function.
8887         * src/Makefile_insert: Move fixes.cpp from libinkpre.a to libinkpost.a.
8888         * src/xml/Makefile_insert (xml_repr_action_test_LDADD):
8889           Add libinkpost.a, for fixes.o.  `make check' now works again.
8891         * src/sp-text.cpp (sp_text_set_transform):
8892           Don't include SP_OBJECT_CHILD_MODIFIED_FLAG in flags for
8893           sp_object_request_update.  Addresses `critical' warning.
8895 2004-05-13  John Cliff <simarilius@yahoo.com>
8897         * src/dialogs/stroke-style.cpp: Switched to using get_stock to retrieve
8898 markers.
8899         * src/helpers/stock-items.h, src/helpers/stock-items.cpp: created to handle
8900 stock items.
8901         * src/prefix.h: Added marker and gradient directorys.
8903 2004-05-13  Kees Cook <kees@outflux.net>
8905         * configure.in, src/main.cpp, config.h.mingw, debian/rules:
8906           made popt a requirement instead of an option.
8908 2004-05-13  Carl Hetherington  <cth103@houllier.home>
8910         * sp-color-notebook.cpp: Fix uninitialised value spotted by valgrind.
8912         * stroke-style.cpp:
8913         Fix ink_extract_marker_name returning a pointer into a free()d buffer.
8915 2004-05-13  Ted Gould <ted@gould.cx>
8917         * src/file.cpp:
8918         Making the default filename _("untitled.svg")
8920 2004-05-12  Kees Cook <kees@outflux.net>
8922         * config.h.mingw: added g_ascii_strtod macro.
8924 2004-05-12  Carl Hetherington <inkscape@carlh.net>
8926         * src/dialogs/export.cpp: fix faulty logic with exporting of
8927         selections, as reported by Artemio on the ML.
8929         * src/dialogs/desktop-properties.cpp: Fix a gtk_table size.
8930         Make use of spw_dropdown in one place.
8932         * src/select-context.cpp: Remove alt-drag "slow move" mode.
8933         Make alt-drag move without any grid snap, even if the grid
8934         is enabled.  Add a new mode, shift-drag, which preserves
8935         objects' grid offsets rather than snapping their snappoints.
8937         * src/selection-chemistry.cpp: Pasted objects have the same
8938         offset from the grid as the original, if the grid is enabled.
8939         Also a NRRect -> NR::Rect fix thrown in for no extra charge.
8941         * src/dialogs/display-settings.cpp: Added option to reverse
8942         the actions of drag and shift-drag when moving objects.
8944 2004-05-12  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
8946         * src/main.cpp (main): Test ENABLE_NLS instead of HAVE_NLS (which
8947         wasn't getting defined).  Restores translations on *nix systems
8948         when inkscape translations aren't in system-wide /usr/share/locale.
8950 2004-05-10  Carl Hetherington <inkscape@carlh.net>
8952         * src/sp-item.cpp, src/dialogs/display-settings.cpp: primitive
8953         support for preserving line widths when scaling.  Thanks to Bulia
8954         for telling me what to do :)
8955         * src/dialogs/align.cpp: refactor some cut-and-paste code into
8956         a separate function.  Remove NRRect.  Declaration-to-first-use
8957         cleanups.
8958         * src/dialogs/transformation.cpp, src/dialogs/fill-stype.cpp:
8959         NRRect removal.  Declaration-to-first-use cleanups.
8961 2004-05-09  MenTaLguY <mental@rydia.net>
8963         * src/sp-paint-server.h: SPPaintServer now uses C++ inheritance
8965           (bigger question -- should SPPaintServer derive from SPObject?  I think
8966            not, actually ... it's more something that should be aggregated into
8967            the various paint-server-capable types)
8969         * src/display/nr-arena-shape.h, src/display/nr-arena-shape.cpp:
8970           first steps in removing SPStyle dependency from NRArenaShape --
8971           add fill and stroke paint server members, and use those instead
8972           of reading directly from an SPStyle.
8974 2004-05-09  Kees Cook <kees@outflux.net>
8976         * src/libnrtype/nr-type-xft.cpp: added patch 898200, hopefully this
8977           won't break anyone.
8978         * src/dialogs/desktop-properties.cpp: added patch 947127, along with
8979           some orientation bugfixes, list cleanup, and logic to select the
8980           correct menu items based on document settings.
8981         * configure.in: default to always replace g_ascii_strtod.
8983 2004-05-08  Kees Cook <kees@outflux.net>
8985         * src/extension/internal/gdkpixbuf-input.cpp: skip SVG files. (open bug)
8986         * configure.in, src/Makefile_insert, src/fixes.cpp: added replacement
8987           for g_ascii_strtod, since it has locale-related bugs in gnome 2.0.
8988           The upstream version is fixed, so some day, we won't need this any
8989           more.  (fixes "ugly icons" bug, and possibly the spinbutton locale bug)
8990         * src/dyna-draw-context.cpp, src/rect-context.cpp, src/sp-namedview.cpp,
8991           src/sp-object.cpp, src/sp-object.h, src/sp-pattern.cpp,
8992           src/sp-polygon.cpp, src/sp-polyline.cpp, src/sp-root.cpp,
8993           src/sp-spiral.cpp, src/sp-star.cpp, src/sp-symbol.cpp,
8994           src/sp-text.cpp, src/spiral-context.cpp, src/star-context.cpp,
8995           src/svg/ftos.cpp, src/svg/svg-affine.cpp, src/svg/svg-color.cpp,
8996           src/svg/svg-length.cpp: adding "config.h", making a few extra
8997           locale-sensitive functions use g_ascii versions.
8999 2004-05-08  MenTaLguY <mental@rydia.net>
9001         * src/sp-item.cpp: move "transformed" signal emission after actual
9002           application of transform
9004         * src/xml/repr-action.cpp, src/xml/repr-action.h, src/xml/repr.cpp:
9005           fix lifecycle issues with content and attribute strings
9007         * src/sp-object.h, src/sp-object.cpp: added SPObject::setId()
9009 2004-05-08  Kees Cook <kees@outflux.net>
9011         * src/verbs.cpp, src/help.cpp: localizing "about" and "keys" stuff.
9012         * po/*.po: rebuilt for new strings.
9014 2004-05-08  Carl Hetherington <inkscape@carlh.net>
9016         * src/dialogs/desktop-properties.cpp: the usual cleanups.  Also
9017         add some sp_document_done()s in various places.
9019 2004-05-08  bulia byak <bulia@users.sourceforge.net>
9021         * widgets/paint-selector.cpp: Tooltips, slight cosmetics
9023         * main.cpp: --help edit
9025         *  sp-use.h sp-use.cpp: Redid move compensation using _transformed_signal
9027         * sp-item.h sp-item.cpp: Added _transformed_signal, emitted by
9028 write_transform,
9029         passes the difference transform relative to the old one (not the new
9030 transform
9031         set)
9033         * nodepath.cpp: Fix lagging update of the other handle for smooth nodes
9035         * widgets/dash-selector.cpp: (Almost) fixed display of shorter-than-0.5
9036 dashes
9037         in selector; proper fixing will require manual drawing the dashes instead of
9038         using gdk dashes
9040         * preferences-skeleton.h: lots of new  dasharrays
9042         * dialogs/stroke-style.cpp: Remove repetitive code; relocation patch from
9043         mhearn; fixed, reenabled, and automated marker previews (no need for
9044 previews
9045         in markers.svg)
9047         * share/markers/markers.svg: Cleanup, sizes, remove manual previews
9049         * style.cpp: Disabled warning for overflow property (we need it for markers)
9051         * splivarot.cpp: Fixed transform when doing boolop inside group
9053         * libnr/nr-path.cpp: Ported fix from sodi, fixes two bugs with endnodes of a
9054         curve on the same hor/vert line
9056         * sp-namedview.cpp: Use set_default_size instead of _resize for setting
9057 window
9058         from namedview
9060         * preferences-skeleton.h dialogs/item-properties.cpp: Objects props
9061         transientized (better late than never)
9063         * dialogs/display-settings.cpp: Added simplify threshold
9065         * sp-use.cpp: Mega-kill use on unlink
9067         * preferences-skeleton.h dialogs/display-settings.cpp: Orphaned clones
9068 options
9070         * sp-item-group.cpp: Prevent jumps when ungrouping clone with its original
9072         * sp-object.cpp: Fix crash when deleting clone and its original
9074         * toolbox.cpp, tool contexts: Alt-x and top panel keyboard shortcuts now
9075 work
9076         for all tools
9078         * sp-use.cpp enums.h: Unlink option on self-delete
9080         * sp-use.cpp: Fix: disappeating clone on undoing ungrouping (_show finally
9081 works properly)
9083         * splivarot.cpp: Boolops: cleanup, preserve id, parent, position, fix to
9084 take
9085         style from the bottom object
9087         * interface.cpp verbs.cpp shortcuts.cpp: Mnemonics, tooltips, shortcuts,
9088         cleanup, autoraise removed from menu
9090 2004-05-07  Kees Cook <kees@outflux.net>
9092         * src/verbs.cpp: re-localizing tutorials.  My goof!
9093         * po/POTFILES.in: removed arikkei references
9095 2004-05-07  Carl Hetherington <inkscape@carlh.net>
9097         * src/desktop.cpp: make sure that a SPNamedView's modified signal
9098         is connected to the SPDesktop even when a file is loaded into an
9099         existing SPDesktop.  Fixes problems whereby grid snap does not
9100         work for the first file loaded in a session.  Fix a && -> & typo.
9102         * src/sp-object.cpp: declaration-to-first-use and coding style
9103         cleanups.
9105 2004-05-05 Spundun Bhatt <spundun@isi.edu>
9107         * configure.in: Stole Nathan's configure hack and used it to
9108         support gtkmm-2.4
9110 2004-05-06  Ted Gould  <ted@gould.cx>
9112         * src/file.cpp, src/extension/extension.cpp, src/extension/init.cpp,
9113         src/extension/internal/Makefile_insert,
9114         src/extension/internal/gdkpixbuf-input.cpp,
9115         src/extension/internal/gdkpixbuf-input.h:
9116           Changing the import functionality so that it works much more like open.
9117           You can use any format, and it will place that file directly in the
9118           document that you are working on.  Added input extensions that cover all
9119           of the bitmap formats that are covered with gdkpixbuf.  Also, more
9120           formats can be used using the scripting system.
9122 2004-05-06  Carl Hetherington <inkscape@carlh.net>
9124         * src/sp-line.cpp, src/sp-mask.cpp, src/sp-metrics.cpp:
9125         declaration-to-first-use and coding style cleanups
9127 2004-05-05  MenTaLguY  <mental@rydia.net>
9129         * src/libnrtype/nr-type-dictionary.cpp: removed 'private-fonts'
9130           feature (we should rely on fontconfig for "custom" font stuff)
9132         * configure.in, src/Makefile_include, src/Makefile.am,
9133           src/libarikkei/*: removed the now unused libarikkei
9135 2004-05-05 Nathan Hurst <njh@mail.csse.monash.edu.au>
9137         * src/dialogs/text-edit.cpp, configure.in: Added support for spell
9138         checking in text dialog.
9140 2004-05-04  MenTaLguY <mental@rydia.net>
9142         * src/display/nr-arena-glyphs.h: fixed cut-and-paste error in
9143           NRArenaGlyphsGroup::create()
9145         * src/selection.cpp, src/selection.h: fixed global "changed" propagation
9147 2004-05-02  MenTaLguY <mental@rydia.net>
9149         * src/file.cpp, src/print.cpp, src/sp-chars.cpp, src/sp-clippath.cpp,
9150           src/sp-image.cpp, src/sp-item-group.cpp, src/sp-mask.cpp,
9151           src/sp-pattern.cpp, src/sp-shape.cpp, src/sp-text.cpp,
9152           src/sp-use.cpp, src/dialogs/stroke-style.cpp,
9153           src/display/canvas-arena.cpp, src/display/nr-arena-glyphs.cpp,
9154           src/display/nr-arena-glyphs.h, src/display/nr-arena-group.h,
9155           src/display/nr-arena-image.h, src/display/nr-arena-item.cpp,
9156           src/display/nr-arena-item.h, src/display/nr-arena-shape.h,
9157           src/display/nr-arena.h, src/libnr/nr-object.h, src/widgets/icon.cpp:
9159           removed nr_arena_item_new in favor of static ::create() functions
9160           which call NRArenaItem::init() to perform setup (i.e. setting
9161           NRArenaItem::arena).  Eventually NRArenaItem::init() and
9162           nr_arena_item_init will merge and become NRArenaItem's constructor.
9164 2004-04-30  MenTaLguY <mental@rydia.net>
9166         * src/sp-use.cpp: call parent class' write methods rather than
9167           attempting to do everything (wrongly) ourselves; among other
9168           things, <use> transform attributes weren't getting written
9170         * src/sp-object.h, src/sp-object.cpp:
9172           designate a "successor" object so we still perform as
9173           expected if objects are replaced in the middle of e.g. a
9174           bulk delete operation
9176         * src/sp-use.cpp: cleanups and succession logic for <use>
9177           deletion
9179         * src/widgets/sp-hwrap-box.cpp, src/widgets/sp-hwrap-box.h,
9180           src/widgets/sp-vwrap-box.cpp, src/widgets/sp-vwrap-box.h,
9181           src/widgets/sp-wrap-box.cpp, src/widgets/sp-wrap-box.h,
9182           src/widgets/test-wrapbox.cpp, src/widgets/Makefile_insert:
9184           Removed unused (and imperfect) "wrapbox" widgets.
9186         * src/sp-object.h, src/sp-object.cpp, src/sp-item-group.cpp:
9188           Removed unused sp_object_invoke_forall and sp_object_sequence
9189           methods.  (forall might be nice to have, but we can do better
9190           implementation-wise now that we're in C++-land)
9192 2004-04-30 njh <njh@mail.csse.monash.edu.au>
9194         * main.cpp: replaced gtk_init with g_type_init for console mode.
9195         Closes 944969.
9197 2004-04-29  MenTaLguY <mental@rydia.net>
9199         * src/sp-image.cpp, src/sp-item.cpp, src/sp-item.h, src/sp-line.cpp,
9200           src/sp-path.cpp, src/sp-rect.cpp, src/sp-text.cpp:
9202           write_transform becomes set_transform, which applies the given
9203           transform to the object without (!) invoking a repr write
9205         * src/sp-star.cpp, src/svg/svg-length.h, src/svg/svg-length.cpp,
9206           src/svg-types.h, src/svg/svg.h:
9208           replaced raw integers with real units enum
9210         * src/libnr/nr-matrix.h:
9212           removed dead assertion (it's always valid to retrieve the
9213           translation component of a matrix)
9215         * src/selection-chemistry.cpp:
9217           delete items via SPItem (SPObject), not repr
9219         * src/sp-object.h, src/sp-object.cpp:
9221           added SPObject::deleteObject() and a delete notification signal;
9222           SPObject now inherits from GObject in the C++ sense
9224         * src/sp-use.h:
9226           don't accept references to the use or its ancestors (preventing
9227           infinite loops)
9229         * src/sp-use.cpp, src/sp-use.h:
9231           added automatic deletion when referrent is deleted
9233         * src/uri-reference.h:
9235           added URIReference::getOwner()
9237 2004-04-29  Carl Hetherington <inkscape@carlh.net>
9239         * src/extension/internal/win32.cpp: add textToPath parameter to
9240         description in order to fix #944131.
9242 2004-04-28  Carl Hetherington <inkscape@carlh.net>
9244         * src/desktop.cpp, src/inkscape.cpp, src/sp-namedview.cpp
9245         Part of the fix for #942149.  Also fixed some compiler warnings.
9247         * src/display/nr-arena.cpp: Fixed an unused variable warning.
9249         * src/main.cpp: Fix a warning that is raised on Windows.
9251 2004-04-28  bulia byak <bulia@users.sourceforge.net>
9253         * inkscape.cpp: Fixed prev/next desktop; numbered from 0
9255         * Lots of files: Replaced all strtod() and atof() by g_ascii_strtod()
9257         * interface.cpp verbs.cpp: Tooltip edits
9259         * view.cpp view.h desktop.cpp: Signal and function to pop statusbar message
9261         * dialogs/dialog-events.cpp: Only set the UTILITY hint for non-modal
9262 windows,
9263         fixes "disappearing save as"
9265         * toolbox.cpp widgets/widget-sizes.h widgets/button.cpp: Got rid of button
9266         relief, top panel made less tall
9268         * desktop.cpp preferences-skeleton.h dialogs/display-settings.cpp: Done away
9269         with the sticky zoom button, now in prefs
9271         * path-chemistry.cpp: Preserve id= in combine/break, convert to paths;
9272 preserve
9273         z-order in combine/break; cleanups
9275         * splivarot.cpp: New selection API, Simplify preserves id=
9277         * select-context.cpp preferences-skeleton.h sp-item.cpp display-settings.cpp
9278         splivarot.cpp sp-item-group.cpp sp-item-transform.cpp
9279         sp-item-notify-moveto.cpp nodepath.cpp node-context.cpp seltrans.cpp
9280         seltrans.h: Switched to global preservetransform, transform writing
9281         unification (no more manual transform= setting all over the place), stamp
9282         preserves parent, mental's new SPSelection API, pruning dead code
9284         * verbs.cpp interface.cpp: Eliminated Dialogs menu, added ... to dialog
9285         commands, rearrangements, menu items display tooltips in statusbar when
9286         selected
9288         * sp-item-group.cpp sp-item-group.h: Made document_done optional in ungroup
9289 (not
9290         done when the function is called from another function)
9292         * dialogs/display-settings.cpp enums.h preferences-skeleton.h sp-use.cpp
9293         sp-use.h: Clone move compensation (3 modes), settable in prefs
9295         * seltrans.cpp selection-chemistry.cpp: Do not translate a clone if its
9296 original
9297         is in the selection
9299         * verbs.cpp verbs.h interface.cpp shortcuts.cpp sp-use.cpp sp-use.h
9300         selection-chemistry.cpp selection-chemistry.h: Unlink Clone verb and menu
9301         command (preserves id=)
9303         * selection-chemistry.cpp selection-chemistry.h verbs.h verbs.cpp
9304 shortcuts.cpp
9305         interface.cpp: Select Original verb and command, scrolls to the original
9307         * selection-chemistry.cpp selection-chemistry.h verbs.cpp verbs.h
9308 interface.cpp:
9309         Clone command
9311         * sp-use.h sp-use.cpp: Use URIReference; Propagate update to parent class
9312         (SPItem) (fixes redraw on dragging a clone)
9314         * dropper-context.cpp dropper-context.h dialogs/display-settings.cpp:
9315         Implemented pick modes (pick either actual color with transparency or
9316 visible
9317         color without transparency); added statusbar indication; color is only set
9318 on
9319         mouse release
9321         * seltrans.cpp display/sodipodi-ctrlrect.cpp: Finally the correct selection
9322 cue
9323         rect (fixed displacement)
9325 2004-04-27  Carl Hetherington <inkscape@carlh.net>
9327         * src/desktop.cpp: Check for there being no items when zooming to
9328         the drawing.  This fixes bug #942137.
9330 2004-04-26  Carl Hetherington <inkscape@carlh.net>
9332         * config.h.mingw, prefix.h:
9333         INKSCAPE_VERSION moved to inkscape_version.h.
9334         INKSCAPE_{PIXMAP,SCREENS,TUTORIALS,MARKERS}DIR moved to prefix.h
9336         * src/Makefile.mingw, src/inkscape_version.h.mingw
9337         Use CVS inkscape_version.h.mingw for inkscape_version.h on Win32.
9339         * src/sp-use.cpp: fix a warning.
9341 2004-04-26  Ted Gould  <ted@gould.cx>
9343         * share/extensions/ai_input.inkmod, share/extensions/dia.inkmod,
9344         share/extensions/txt2svg.inkmod, src/extension/extension.cpp,
9345         src/extension/internal/svg.cpp:
9347         Making the names of the input extensions look like the output ones.
9348         Also, threw in a slight memory savings in removing the implementation on
9349         deactivated extensions.
9351 2004-04-26  MenTaLguY  <mental@rydia.net>
9353         * src/selection.cpp: migrate to new glib idle API
9355         * src/extension/db.cpp: can't call ->deactivated() on a NULL pointer..
9357 2004-04-26  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
9359         * configure.in: Replace use of old AM_PROG_LIBTOOL macro with
9360           AC_PROG_LIBTOOL.
9362 2004-04-26  Ted Gould  <ted@gould.cx>
9364         * share/extensions/epsi_output.inkmod:
9366         Added in a check for ps2epsi
9368         * src/dialogs/filedialog.cpp, src/extension/db.cpp, src/extension/db.h,
9369         src/extension/extension.cpp, src/extension/extension.h,
9370         src/extension/init.cpp, src/extension/system.cpp:
9372         Implementing a 'deactivated' extension.  This means that it should
9373         still exist, but show up as insensitive in any GUI element that could use
9374         it.  The idea here is that users should know what they don't have, but
9375         Inkscape supports.
9377 2004-04-26 Nathan Hurst <njh@mail.csse.monash.edu.au>
9379         * src/{libnr,libnrtype,widgets,display,helper,.}*.{h,cpp}: moved
9380         from typedef _name name; to C++ style struct name; forward
9381         references.
9383 2004-04-25  Ted Gould  <ted@gould.cx>
9385         * share/extensions/ai_output.inkmod, share/extensions/dia.inkmod,
9386         share/extensions/dropshadow.inkmod, share/extensions/epsi_output.inkmod,
9387         share/extensions/roundhole.inkmod, share/extensions/svgz_input.inkmod,
9388         share/extensions/svgz_output.inkmod, share/extensions/txt2svg.inkmod,
9389         src/extension/implementation/script.cpp,
9390         src/extension/implementation/script.h:
9392         Adding in support for superior checking of dependencies.  Now scripts
9393         can include a line, which will look for a binary in the path.  So
9394         something like dia input will no be loaded if there isn't dia available in
9395         the path.
9397 2004-04-25  Carl Hetherington <inkscape@carlh.net>
9399         * src/verbs.cpp, src/rect-context.cpp, src/spiral-context.cpp,
9400         src/event-context.cpp, src/text-context.cpp,
9401         src/dialogs/stroke-style.cpp, src/xml-tree.cpp, src/widgets/sp-widget.cpp:
9402         SPSelection OO-ification.
9404         * src/display/curve.cpp: Don't raise a critical error if a new
9405         curve cannot be created in sp_curve_new_from_bpath().  This can
9406         happen if a file contains a strange path, like one with only a
9407         move in it and nothing else.  This is part of the fix for bug
9408         934882.
9410         * src/sp-path.cpp: cope with sp_curve_new_from_bpath() returning
9411         NULL in sp_path_set().  This is the other part of the fix for 934882.
9413         * src/path-chemistry.cpp, src/sp-offset.cpp, src/sp-ellipse.cpp,
9414         src/display/nr-arena-glyhs.cpp:
9415         added asserts for calls to sp_curve_new_from_bpath() which look
9416         like they might not expect it to return NULL.
9418         * src/desktop.h: add a comment about how SPDesktop::selection
9419         should never generally be NULL.
9421         * src/desktop-handles.cpp: ensure that sp_desktop_selection never
9422         returns NULL, so that we don't have to check for this eventuality
9423         elsewhere.
9425         * src/arc-context.cpp, src/seltrans.cpp, src/desktop.cpp: be less defensive
9426 about
9427         SPDesktop::selection being NULL.
9429         * src/path-chemistry.cpp, src/select-context.cpp,
9430         src/selection-chemistry.cpp, src/star-context.cpp,
9431         src/dialogs/align.cpp, src/dialogs/item-properties.cpp,
9432 src/dialogs/text-edit.cpp:
9433         SPSelection OO-ification.  Also some coding style and
9434         declaration-to-first-use cleanups.
9436         * src/toolbox.cpp: SPSelection OO-ification.  Various cleanups.
9438         * src/selection.h: remove deprecated access functions.
9440         * src/dialogs/fill-style.cpp: declaration-to-first-use cleanups.
9442         * src/selection.cpp: add vim and Emacs mode blocks.
9444         * src/object-ui.cpp: very minor coding style fix.
9446 2004-04-24  MenTaLguY <mental@rydia.net>
9448         * src/arc-context.cpp, src/dyna-draw-context.cpp, src/object-ui.cpp,
9449           src/path-chemistry.cpp, src/rect-context.cpp, src/select-context.cpp,
9450           src/select-toolbar.cpp, src/selection-chemistry.cpp, src/selection.h,
9451           src/spiral-context.cpp, src/star-context.cpp, src/text-context.cpp,
9452           src/verbs.cpp, src/dialogs/export.cpp, src/dialogs/fill-style.cpp,
9453           src/dialogs/in-dt-coordsys.cpp, src/dialogs/stroke-style.cpp,
9454           src/dialogs/transformation.cpp, src/dialogs/xml-tree.cpp:
9456           removed sp_selection_set_item(), sp_selection_set_repr(),
9457           sp_selection_is_empty(), sp_selection_item_selected(),
9458           and sp_selection_repr_selected()
9460 2004-04-24  Ted Gould  <ted@gould.cx>
9462         * share/extensions/ill2svg.pl:
9464         Applying a patch made to the Sodipodi list by Tuukka Pasanen which adds in
9465         support for text in Illustrator files.  Also, I backed out the changes
9466         which removed being able to specify the line endings.  This will, by
9467         default, force them back to mac compatible.  Mac files didn't work with
9468         those changes.
9470 2004-04-24  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
9472         * configure.in: Tentatively remove config.h definitions of
9473           INKSCAPE_MARKERSDIR, INKSCAPE_PIXMAPDIR, INKSCAPE_SCREENSDIR,
9474           INKSCAPE_TUTORIALSDIR, with the understanding that these are to be
9475           provided by prefix.h.
9476         * src/prefix.h: Define INKSCAPE_MARKERSDIR.
9478         * src/extension/extension.cpp (Extension):
9479         * src/extension/init.cpp (check_extensions):
9480           Address warning.
9482         * src/dialogs/stroke-style.cpp: #include prefix.h.
9484         * src/Makefile.am (EXTRA_DIST): Add */makefile.in.
9486         * src/libnr/Makefile_insert (libnr_libnr_a_SOURCES):
9487           Add libnr/nr-convex-hull.h, needed by sp-canvas.cpp.
9489 2004-04-24  Ted Gould  <ted@gould.cx>
9491         * src/Makefile_include, src/prefix.cpp:
9493         Removing the redefition of NULL and adding to the make system.
9495 2004-04-24  Ted Gould  <ted@gould.cx>
9497         * src/extension/db.cpp, src/extension/db.h, src/extension/extension.cpp,
9498         src/extension/extension.h, src/extension/init.cpp,
9499         src/extension/internal/eps-out.cpp, src/extension/internal/eps-out.h,
9500         src/extension/internal/ps-out.cpp, src/extension/internal/ps-out.h:
9502         Adding in more checks for individual extensions.  All of them
9503         should still pass though.  Also, moved the extension database from
9504         glib to STL.  This allows extensions to be deleted while using the
9505         foreach functions (which causes instability with the glib hash
9506         table).
9508 2004-04-24  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
9510         * src/dialogs/Makefile_insert:
9511         * src/display/Makefile_insert:
9512         * src/xml/Makefile_insert:
9513           Get rid of unneeded CPPFLAGS specification.
9515         * src/Makefile.am:
9516         * src/Makefile_insert:
9517           New generated file inkscape_version.h, to replace
9518           -DINKSCAPE_VERSION=\"$(VERSION)\".
9519         * src/help.cpp: #include it.
9521 2004-04-23  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
9523         * src/sp-polygon.cpp:
9524         * src/splivarot.cpp:
9525         * src/style.cpp:
9526         Change include stringstream.h to include svg/stringstream.h.
9528         * src/Makefile.am, src/Makefile_insert: Change libinkscape.a use
9529           to eliminate triple compilation of these object files.
9531         * src/Makefile.am: Use `subdir-objects' option.
9533         * src/Makefile.am: Add global INCLUDES setting.
9534         * src/*/Makefile_insert: Get rid of now-redundant $(INKSCAPE_CFLAGS)
9535           from *_CPPFLAGS.
9537         * src/*/makefile.in: `%' as a target doesn't behave as intended,
9538         so replace with less general `clean %.a %.o' and add .SUFFIXES.
9540 2004-04-22  Ted Gould  <ted@gould.cx>
9542         * src/draw-context.cpp, src/dropper-context.cpp,
9543         src/dyna-draw-context.cpp, src/node-context.cpp, src/nodepath.cpp,
9544         src/sp-ellipse.cpp, src/sp-offset.cpp, src/sp-path.cpp,
9545         src/sp-polygon.cpp, src/sp-shape.cpp, src/splivarot.cpp, src/toolbox.cpp,
9546         src/display/curve.cpp, src/display/nr-arena-shape.cpp,
9547         src/extension/internal/gnome.cpp, src/extension/internal/ps.cpp,
9548         src/libnr/nr-path.cpp, src/libnr/nr-path.h,
9549         src/libnrtype/nr-rasterfont.cpp, src/libnrtype/nr-type-ft2.cpp,
9550         src/libnrtype/nr-type-gnome.cpp, src/libnrtype/nr-type-w32.cpp,
9551         src/libnrtype/nr-typeface.cpp, src/livarot/PathCutting.cpp,
9552         src/svg/gnome-canvas-bpath-util.cpp, src/svg/svg-path.cpp:
9554         Changing the ART_ enums to NR_ so that if libart is include (like if
9555         you are building gnome-print) it doesn't conflict with the internal
9556         definitions.
9558         * share/extensions/svgz_output.inkmod, src/extension/extension.cpp,
9559         src/extension/init.cpp, src/extension/implementation/script.cpp:
9561         Adding in a little more checking code.  Now extensions can start
9562         deleting themseleves if they fail certain tests.  More tests are
9563         needed, along with more testing of this feature.  Consider this
9564         an 'early release' of the feature. ;)
9566 2004-04-22  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
9568         * src/Makefile.am: Make non-recursive.  Now sources */Makefile_insert.
9569           See HACKING or discussion on mailing list.
9570         * autogen.sh: Bump requirement from automake-1.6 to automake-1.7.
9571         * configure.in: Don't generate src/blah/Makefile, but do generate
9572           src/blah/makefile.
9573         * src/*/Makefile.am: Remove.
9574         * src/*/makefile.in: New wrapper makefiles to allow typing `make' from
9575           subdirectories of src.  (Not used by compiles started from top-level
9576           or from src/.)
9578 2004-04-21  MenTaLguY <mental@rydia.net>
9580         * src/libnrtype/nr-type-w32.h: fixed unremoved underscores
9582         * src/select-context.cpp, src/selection.cpp, src/selection.h,
9583           src/seltrans.cpp, src/tools-switch.cpp, src/dialogs/align.cpp:
9584           remove improper twiddling of desktop message line from SPSelection;
9585           some additional work is now required in SPSelectContext to update
9586           the message properly in all cases.
9588         * src/selection.h, src/selection.cpp: touched up and documented
9589           SPSelection
9591         * src/uri-references.h: documentation touch-ups
9593 2004-04-20  Kees Cook <kees@outflux.net>
9595         * src/file.cpp, src/desktop.cpp: moved sp_file_open unselection code into
9596           sp_desktop_change_document.  Generalized Carl's fix for unref counting
9597           since it applies in both cases.  (My bad!)
9599 2004-04-20  MenTaLguY <mental@rydia.net>
9601         * src/text-context.cpp: merged Carl's fix for signal cleanup
9603         * src/selection.h: marked wrappers for old API as deprecated
9605 2004-04-20  Carl Hetherington <inkscape@carlh.net>
9607         * src/extension/internal/ps.cpp, src/extension/internal/ps.h:
9608         Fixed some bugs in exporting images that seem to have been
9609         introduced when the code was copied from the gimp.  They caused
9610         problems when exporting bitmap images to PS.
9612         * src/file.cpp: fix bug whereby the first file loaded in a session
9613         would not have its modified status checked when closed.  Hence if
9614         you modified the first file you loaded and then closed it, you
9615         would not be asked to confirm the close.
9617         * src/preferences-skeleton.h: add \n to the end of each line to
9618         fix bug 938368.
9620 2004-04-19  MenTaLguY <mental@rydia.net>
9622         * src/arc-context.cpp, src/desktop-handles.h, src/desktop.h,
9623           src/draw-context.cpp, src/draw-context.h, src/forward.h,
9624           src/inkscape-private.h, src/inkscape.cpp, src/node-context.cpp,
9625           src/node-context.h, src/rect-context.cpp, src/selection-chemistry.cpp,
9626           src/selection-chemistry.h, src/selection.cpp, src/selection.h,
9627           src/seltrans.h, src/spiral-context.cpp, src/star-context.cpp,
9628           src/star-context.h, src/text-context.cpp, src/dialogs/xml-tree.cpp,
9629           src/widgets/sp-widget.h:
9631           finished GObject removal from SPSelection
9633         * src/arc-context.h, src/arc-context.cpp, src/desktop.cpp, src/desktop.h,
9634           src/draw-context.cpp, src/draw-context.h, src/node-context.cpp,
9635           src/node-context.h, src/rect-context.cpp, src/rect-context.h,
9636           src/selection.cpp, src/selection.h, src/seltrans.cpp, src/seltrans.h,
9637           src/spiral-context.cpp, src/spiral-context.h, src/text-context.cpp,
9638           src/text-context.h, src/toolbox.cpp:
9640           migrated SPSelection to SigC++ signals (though it's a bit messy
9641           right now)
9643 2004-04-19  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
9645         * src/dialogs/stroke-style.cpp: Cleanups: greater conformance to
9646         CodingStyle.  Moved some declarations to their first use.
9648 2004-04-19  Carl Hetherington <inkscape@carlh.net>
9650         * src/dialogs/stroke-style.cpp, libnr/nr-rect-l.cpp:
9651         Fix a couple of compiler warnings.
9653         * src/dialogs/filedialog-win32.cpp: add OFN_NOCHANGEDIR to Win32
9654         flags in OPENFILENAME structs.  This prevents the open / save
9655         boxes from changing the current directory.  Any change to the
9656         current directory causes problems for subsequent attempts to
9657         load icons from pixmaps.  Also, fix a bug whereby the save
9658         dialogue would sometimes not open due to being passed a filename
9659         it didn't like.
9661 2004-04-19  bulia byak <bulia@users.sourceforge.net>
9663         * shortcuts.cpp selection-chemistry.cpp selection-chemistry.h verbs.cpp
9664 verbs.h
9665         interface.cpp: Clone command (Edit menu, Shift+Ctrl+N)
9667         * sp-use.cpp: Update propagated to parent class (SPItem), misc fixes
9669         * sp-polygon.cpp: Fix for points= updating by adding set_shape call into
9670 _write
9671         (bug 910142)
9673         * text-context.cpp: Do not create text object unless a printable key was
9674         pressed; fixes 934280
9676         * widgets/dash-selector.cpp dialogs/stroke-style.cpp: Removed marker
9677 buttons,
9678         fixed g_free crash in marker menus, added tooltips, added stroke-miterlimit
9679         spinbutton
9681         * splivarot.cpp: Outline handles multiple objects; All commands use correct
9682         stroke_miterlimit
9684         * splivarot.cpp sp-offset.cpp: Fix for 932642
9686         * helper/sodipodi-ctrlrect.cpp: Simplify and fix dashes and offsets
9688         * widgets/gradient-selector.cpp: Tooltip edits
9690         * verbs.cpp verbs.h interface.cpp...: Remove tool options
9692         * seltrans.cpp: Pivot marker made inverse
9694         * toolbox.cpp: More defocusing
9696         * *-context.cpp: Eliminated config widgets from all tools
9698         * toolbox.cpp sp-ellipse.cpp: Ellipse fixes, tooltips
9700         * verbs.cpp: Options -> Preferences
9702         * dialogs/display-settings.cpp: An options dialog, completely new; selector
9703         widget grafted here
9705         * preferences-skeleton.h node-context.cpp select-context.cpp: scaling uses
9706         defaultscale
9708         * dialogs/display-settings.cpp display/nr-arena-image.cpp: Make oversample
9709         saveable
9711         * toolbox.cpp: Aux toolbar for calligraphic
9713         * preferences-skeleton.h: fill-opacity:1 for calligraphic
9715         * select-context.cpp seltrans.cpp seltrans.cpp: Patch to enable box and none
9716         options for per-object selection cue
9718         * main.cpp: Removed C-locale setting, not needed anymore; temporary switch
9719 of
9720         gettext encoding for console output
9722         * inkscape.cpp: Memory fix from sodi
9724         * right-click finishes pen (patch by Carl)  draw-context.cpp
9726 2004-04-19  Carl Hetherington <inkscape@carlh.net>
9728         * src/livarot/ShapeRaster.cpp
9729         Fix an unitialised value error that was spotted by valgrind.
9731 2004-04-18  MenTaLguY <mental@rydia.net>
9733         * src/selection.cpp, src/selection.h, src/selection-chemistry.cpp,
9734           src/seltrans.cpp, src/nodepath.cpp:
9735           made all SPSelection members private, and changed all methods into
9736           real C++ methods (with temporary inline wrappers for the old C
9737           pseudo-methods)
9739 2004-04-18  Carl Hetherington <inkscape@carlh.net>
9741         * src/print.cpp, src/print.h, src/sp-text.cpp
9742         src/extension/extension.cpp src/extension/extension.h,
9743         src/extension/implementation/implementation.cpp,
9744         src/extension/implementation/implementation.h,
9745         src/extension/internal/eps-out.cpp, src/extension/internal/eps-out.h,
9746         src/extension/internal/ps.cpp, src/extension/internal/ps.h,
9747         Add very basic feature to allow PS text to be exported as real
9748         text, rather than being converted to paths first.  Needs some
9749         work, mostly on font handling.
9751         * src/seltrans.cpp: Slightly improve placement of the bounding
9752         box selection cue.
9754         * src/sp-shape.cpp: various marker-related cleanups, mostly factoring out
9755         common code into functions.
9757 2004-04-17  MenTaLguY <mental@rydia.net>
9758         * src/inkscape.cpp, src/node-context.cpp, src/selection-chemistry.cpp,
9759           src/selection.cpp, src/selection.h, src/seltrans.cpp, src/sp-gradient.cpp,
9760           src/sp-item.cpp, src/sp-offset.cpp, src/dialogs/transformation.cpp,
9761           src/libnr/nr-rect.cpp, src/libnr/nr-rect.h:
9762           Cleaned up NR::Rect API and made SPSelection's desktop pointer private.
9764         * src/display/sp-canvas.cpp, src/libnr/nr-convex-hull.h,
9765           src/libnr/nr-rect.h:
9767           First use of NR::ConvexHull (for propagating canvas bounding boxes)
9769 2004-04-17  Kees Cook <kees@outflux.net>
9771         * share/icons/icons.svg, src/verbs.cpp: made last three ugly menu icons.
9773 2004-04-17  Nathan Hurst <njh@mail.csse.monash.edu.au>
9775         * configure.in src/draw-context.cpp src/dropper-context.cpp
9776         src/dyna-draw-context.cpp src/nodepath.cpp src/nodepath.h
9777         src/path-chemistry.cpp src/sp-chars.cpp src/sp-ellipse.cpp
9778         src/sp-offset.cpp src/sp-path.cpp src/sp-polygon.cpp
9779         src/sp-shape.cpp src/sp-text.cpp src/splivarot.cpp src/style.cpp
9780         src/style.h src/dialogs/fill-style.cpp
9781         src/dialogs/object-properties.cpp src/dialogs/stroke-style.cpp
9782         src/display/canvas-bpath.cpp src/display/canvas-bpath.h
9783         src/display/canvas-grid.h src/display/curve.cpp
9784         src/display/curve.h src/display/nr-arena-glyphs.cpp
9785         src/display/nr-arena-glyphs.h src/display/nr-arena-shape.cpp
9786         src/display/sodipodi-ctrl.cpp src/display/sodipodi-ctrl.h
9787         src/display/sodipodi-ctrlrect.h src/display/sp-canvas-util.cpp
9788         src/display/sp-canvas-util.h src/display/sp-canvas.cpp
9789         src/display/sp-canvas.h src/display/sp-ctrlline.cpp
9790         src/extension/internal/ps.cpp src/extension/internal/ps.h
9791         src/libnr/Makefile.am src/libnr/libnr.def src/libnr/nr-path.cpp
9792         src/libnr/nr-path.h src/libnr/nr-svp-private.h
9793         src/libnr/nr-svp-render.cpp src/libnr/nr-svp-render.h
9794         src/libnr/nr-svp.cpp src/libnr/nr-svp.h
9795         src/libnrtype/nr-rasterfont.cpp src/libnrtype/nr-type-ft2.cpp
9796         src/libnrtype/nr-type-gnome.cpp src/libnrtype/nr-type-w32.cpp
9797         src/libnrtype/nr-typeface.cpp src/livarot/PathCutting.cpp
9798         src/svg/gnome-canvas-bpath-util.cpp
9799         src/svg/gnome-canvas-bpath-util.h src/svg/svg-path.cpp
9800         src/svg/svg.h: removed libart.
9802         * src/libnr/nr-svp-uncross.cpp src/libnr/nr-svp-uncross.h: deleted
9803         uncross and SVL routines.
9806 2004-04-15  Carl Hetherington <inkscape@carlh.net>
9808         * src/make.exclude, src/make.dep, src/make.files, src/make.ofiles:
9809         Various fixes to the Win32 build following rearrangement of some
9810         source files and cleanups to libnr.
9812         * src/sp-text.cpp: remove an unused variable.
9814         * src/display/sodipodi-ctrlrect.cpp: removed two unused variables.
9816 2004-04-16  MenTaLguY <mental@rydia.net>
9818         * src/selection.cpp, src/selection.h, src/forward.h: initial
9819           C++ification of SPSelection class
9821 2004-04-15  Kees Cook <kees@outflux.net>
9823         * debian/control, debian/changes: dropping (currently) unused
9824           dependancies.  Added "0.39cvs" tag.
9826 2004-04-15  Carl Hetherington <inkscape@carlh.net>
9828         * src/seltrans.cpp, src/helper/sodipodi-ctrlrect.cpp,
9829         src/helper/sodipodi-ctrlrect.h:
9830           Use black, dashed bounding boxes for indicating itemselection,
9831           rather than red, solid boxes (as suggested by Bulia).
9833         * src/desktop.cpp:
9834         Small fix for the problem whereby the first file loaded in an
9835         Inkscape session will not have its grid set up properly.  This was
9836         my patch #935013.
9838         * src/dialogs/filedialog-win32.cpp:
9839         Use the extension system to build the list of allowable file types
9840         for save.  This means that save as PS and EPS work properly.
9842         * src/streams-zlib.cpp, src/livarot/PathConversion.cpp,
9843         src/livarot/PathCutting.cpp, src/livarot/PathSimplify.cpp,
9844         src/livarot/PathStroke.cpp, src/livarot/Shape.cpp,
9845         src/livarot/ShapeMisc.cpp, src/display/nr-arena-glyphs.cpp,
9846         src/helper/sodipodi-ctrlrect.cpp, src/helper/sp-canvas.cpp,
9847         src/extension/internal/win32.cpp:
9848         Fix compiler warnings, mostly about unused variables.
9850         * src/helper/sp-canvas-util.cpp:
9851         Fix what I and someone else considered to be an obvious typo.  The
9852         function in question isn't used, however, so it's a bit difficult
9853         to test.
9855         * src/libnrtype/nr-rasterfont.cpp:
9856         Fix a warning wrt a cast from NR::Matrix to NRMatrix.
9858         * src/sp-shape.cpp:
9859         Fix bug #935758.
9862 2004-04-14  Ted Gould <ted@gould.cx>
9864         * src/file.cpp, dialogs/filedialog.cpp:
9865         Making it so that the filename will get placed in the save as dialog
9866         if there is a name for the file.  Otherwise the last save directory
9867         is used (properly now)
9869 2004-04-15  MenTaLguY <mental@rydia.net>
9871         * most files in src/: removed many old "compatable" struct typedefs
9873         * src/libarikkei/arikkei-dict.cpp, src/libarikkei/arikkei-dict.h:
9874           removed unused arikkei files
9876         * configure.in: added gtkmm dependency
9878 2004-04-14  Kees Cook <kees@outflux.net>
9880         * src/helper/unit-menu.cpp: Turns out I found a 2nd bug while
9881           investigating patch 934358.  I've applied this patch again, which gives
9882           us the entire fix.
9883         * src/draw-context.cpp: Investigated patch 934351 from cth103.  Applied a
9884           slight variation to conform to the function calling styles of that code.
9885         * configure.in: Implemented gcc version test for >= 3.0.0
9886         * src/file.cpp, src/interface.cpp, share/icons/icons.svg, src/verbs.cbb:
9887           finished "File / Revert" implementation.  Found a memory leak in
9888           "file_save".  Added more sanity checking to "sp_file_revert" and more
9889           status messages.
9890         * src/main.cpp, src/file.h, src/file.cpp: removed redundant code,
9891 implemented
9892           in "sp_file_open".
9894 2004-04-13  Kees Cook <kees@outflux.net>
9896         * tools-version.sh: added a possible fix for BSDish tools.
9897         * configure.in, share/patterns/Makefile.am: inkscape janitor strikes
9898           again!  This is a quick cleanup to Ted's new directories.  Looks
9899           like "patterns" got left out.
9900         * share/clipart/.cvsignore, share/templates/.cvsignore,
9901           share/examples/.cvsignore, share/fonts/.cvsignore,
9902           share/gradients/.cvsignore, share/keyboards/.cvsignore,
9903           share/palettes/.cvsignore, share/patterns/.cvsignore:
9904           Added Makefile build-cruft to .cvsignores.
9905         * src/helper/unit-menu.cpp: applied a variation to patch 934358 from cth103
9906           to fix grid unit changing bug.
9907         * configure.in: fixed capitalization of "libpng" to avoid confusion.
9908         * src/sp-namedview.cpp, src/document.cpp, src/document.h, src/file.cpp,
9909           src/file.h, src/document-undo.cpp, src/interface.cpp, src/verbs.cpp,
9910           src/verbs.h:
9911           Newly opened files will only create new windows if the current document
9912           is untouched.  (RFE#928517)
9913           Added support for future "File/Revert" handling.  Needs
9914           a little more support in the SPDocument structure.  See notes in
9915           "src/file.cpp", function "sp_file_revert_dialog".
9917 2004-04-13  Ted Gould <ted@gould.cx>
9919         * configure.in, share/Makefile.am, share/clipart/Makefile.am,
9920           share/examples/Makefile.am, share/fonts/Makefile.am
9921           share/gradients/Makefile.am, share/keyboards/Makefile.am
9922           share/markers/Makefile.am, share/palettes/Makefile.am
9923           share/screens/Makefile.am, share/templates/Makefile.am:
9924         Making it so that the clipart and everything else gets put in
9925         the tarball, and also get installed in the share directory.  Many
9926         of these have just 'README' files, but they now have good place-
9927         holders for further development.
9929 2004-04-12  Kees Cook <kees@outflux.net>
9931         * src/dialogs/stroke-style.cpp, src/Makefile.am, src/dialogs/Makefile.am,
9932           src/widgets/Makefile.am, configure.in: fixed up INKSCAPE_*DIR paths so CVS
9933           will compile happily for me.  This way if paths change, files will be
9934           recompiled.  The old way would let configure run again (changing the
9935           datadir path) without forcing a recompile, which could break the
9936           compiled paths.
9938 2004-04-13  John Cliff <simarilius@yahoo.com>
9939         * src/sp-shape.cpp, src/dialogs/stroke-style.cpp:
9940         Couple of changes to marker related code, mid and end markers now point in
9941 correct
9942         direction, turning off start markers behaves correctly.
9943         This follows on from changes made by me and Carl Hetherington that were
9944 commited
9945         yesterday to
9946         src/inkscape-stock.cpp, src/sp-item.cpp, src/sp-marker.cpp,
9947 src/sp-shape.cpp,
9948         src/style.cpp, src/style.h, src/dialogs/stroke-style.cpp
9949         to implement marker UI and fixes to the marker rendering code.
9951 2004-04-11  Ted Gould <ted@gould.cx>
9953         * src/extension/system.cpp, src/extension/internal/eps-out.cpp
9954           src/extension/internal/eps-out.h:
9955         First pass at a file save dialog with EPS output.  The dialog
9956         sets the bounding box in the file.  Comments encouraged.
9958 2004-04-11  Ted Gould <ted@gould.cx>
9960         * src/file.cpp, src/main.cpp, src/print.cpp, src/extension/init.cpp,
9961           src/extension/init.h, src/extension/system.cpp, src/extension/system.h,
9962           src/extension/implementation/script.cpp,
9963 src/extension/internal/eps-out.cpp,
9964           src/extension/internal/gnome.cpp, src/extension/internal/ps-out.cpp,
9965           src/extension/internal/ps.cpp, src/extension/internal/svg.cpp,
9966           src/extension/internal/win32.cpp:
9967         Change alot of files, but small changes.  Basically just took
9968         system.cpp and init.cpp and finally ported them to the Inkscape::
9969         Extension namespace.  Cleaned up the code in them a bunch, it is
9970         much easier to read now!  All the other files are just referencing
9971         these changes.
9973 2004-04-11  Kees Cook <kees@outflux.net>
9975         * src/verbs.h, src/verbs.cpp, src/interface.cpp, src/interface.h: replaced
9976           the rest of the missing menu verbs: "View New", "Cleanup".  Created
9977           generic function to add icons to a given menu item (for submenu icons
9978           mostly).
9979         * share/icons/icons.svg: added "selection_cleanup", "selection_deselect",
9980           "selection_select_all".  Corrected "view_new" and "selection_smooth",
9981           "dialog_toggle", "dialog_tool_options", "file_open_recent".
9982         * src/selection-chemistry.cpp, src/selection-chemistry.h: renamed
9983           "selection_cleanup" function.
9985 2004-04-11  Jon Phillip <jon@rejon.org>
9987         * Makefile.mingw share/Makefile.am src/Makefile.am
9988           share/markers/Makefile.am share/markers/.cvsignore config.h.mingw
9989           configure.in:
9990           Added the proper infrastructure to get files to the right location for
9991           markers.
9993         * share/tutorials/tipsandtricks.svg: Deleted the URL trick because it no
9994           longer works or something.
9996 2004-04-11  Kees Cook <kees@outflux.net>
9998         * src/verbs.h, src/verbs.cpp: added verbs for the Help and Tutorials menus.
9999         * src/interface.cpp: replaced contents of sp_ui_menu_help to use new verbs.
10000         * src/help.h, src/help.cpp: replaced sp_help_keys with more generic
10001           sp_help_open_screen, similar to sp_help_open_tutorial.
10002         * share/icons/icons.svg: created really ugly "help_tutorials" and
10003           "help_keys" icons.  The "help_keys" one needs the most help.  :)
10005 2004-04-09  Ted Gould <ted@gould.cx>
10007         * share/extensions/Makefile.am, share/extensions/epsi_output.inkmod,
10008           share/extensions/ps2epsi.sh, src/extension/extension.cpp,
10009           src/extension/extension.h, src/extension/init.cpp,
10010           src/extension/implementation/implementation.cpp,
10011           src/extension/implementation/implementation.h,
10012           src/extension/implementation/script.cpp,
10013           src/extension/implementation/script.h,
10014           src/extension/internal/Makefile.am, src/extension/internal/eps-out.cpp,
10015           src/extension/internal/eps-out.h, src/extension/internal/ps.cpp:
10017           Okay, these are some changes that I've had in my directory for
10018           a little while.
10020           1) adding the basics of checking extensions.  This will allow
10021              them to remove themselves based on their dependencies failing.
10023           2) Adding the concepts of a 'helper extension' to scripts.  This
10024              allows them to use other extensions for handling the data, so
10025              they don't have to deal with SVG directly - Inkscape will
10026              build the pipeline.  An example of this is the epsi output.
10028           3) Adding the bounding box change provided by Carl Hetherington
10029              to the Postscript output.  The EPS output plugin sets this, so
10030              now EPSes have smaller bounding boxes.  A GUI needs to be
10031              written for this setting.
10033 2004-04-08  MenTaLguY <mental@rydia.net>
10035         * configure.in, src/svg/ftos.cpp: fix for OS X build
10037         * src/extensions/internal.ps.cpp: crash fix
10039 2004-04-07  MenTaLguY <mental@rydia.net>
10041         * src/xml/repr.cpp: adjusted the advertising comment in the default
10042           document template (we need a real default document template, btw)
10044         * src/svg/ftos.cpp, src/svg/itos.cpp, src/svg/round.cpp,
10045           src/svg/ftos.h, src/svg/stringstream.h: incorporated Bryce's number
10046           serializing code (disabled for now, due to the impending release)
10048         * src/dialogs/stroke-style.cpp, src/dialogs/sp-shape.cpp:
10049           nuked unused variables
10051 2004-04-07  bulia byak <bulia@users.sourceforge.net>
10053         * icons.svg: Alignment fix
10055         * src/select-toolbar.cpp: Swapped rotate buttons
10057         * share/tutorials/: Cleanup, added Russian translation of basic
10059         * extension/extension.cpp extension/system.cpp extension/internal/ps.cpp
10060         extension/implementation/script/cpp: Fixes to make non-ascii filenames work
10061 again
10063         * src/verbs.cpp: Remove xpm icon that causes trouble on win32
10065         * share/examples/: new gradient.svg, tiger.svgz, cleanup
10067         * src/widgets/gradient-vector.cpp: Crash fix: loading new gradient into the
10068         editor does not completely reset it
10070         * share/icons/icons.svg: New dialog icons, draw tool icons, changed colors
10072         * src/dialogs/align.cpp src/helper/bezier-utils.cpp: remove pjrm's debug
10073 output
10075         * share/tutorials/: SVG cleanup: remove unused font properties, wrong radius
10076         paths in ellipses (leftovers from old versions). Expanded & updated tips &
10077 tricks.
10079         * file.cpp: Set uri on save in one place; save 'offcially' from here only
10081         * system.cpp system.h: Remove redundant uri-setting on open and save, add
10082         official arg to sp_module_system_save to prevent docname/docbase changing on
10083         temporary saves
10085         * many files: _() fixes, edits in labels, messages, tooltips, mnemonics
10087         * src/inkscape.cpp: remove redundancy in error messages for failing to load
10088 prefs
10090         * share/extensions src/extension/internal: Renaming file formats to include
10091 (*.ext)
10093         * src/interface.cpp src/dialogs/filedialog.cpp: Transientize, make modal
10094         open/save dialogs, ditto for warning overwrite and make it unresizeable
10096         * src/dialogs/xml-tree.cpp: Do not deselect item on canvas when a
10097 non-selectable
10098         thing is highlighted in xml editor
10100         * src/sp-guide.cpp: Guide position updated after undo
10102         * src/widgets/sp-xmlview-attr-list.cpp: Max length of viewable attributes
10103         increased
10105         * many files: Adib's svgostringstream patches to remove printfs
10107         * src/selection-chemistry.cpp: Crash fix when pasting style to an object
10108 that
10109         has none (e.g. group)
10111         * src/knot.cpp: Knot dragging autoscrolls
10113         * src/sp-text.cpp src/text-context.cpp: Cursor movements autoscroll
10115         * src/desktop.h src/desktop.cpp: autoscrollspeed can be overridden in call
10117         sp_desktop_scroll_to_point
10119         * src/text-context.cpp src/sp-text.cpp: Text cursor made inverse. Initial
10120 cursor
10121         after click is no longer horizontal.
10123         * src/helper/sp-ctrlline.cpp: Always-visible inversion for ctrlline
10125         * src/libnrtype/nr-type-w32.cpp: Fix stretch and variant on win32
10127         * src/widgets/gradient-vector.cpp: Undo fix; new stop takes average of its
10128         neighbors' colors; is between stops even when the last stop is selected
10130 2004-04-06  Ted Gould <ted@gould.cx>
10132         * src/file.cpp, src/dialogs/filedialog.cpp, src/extension/extension.cpp,
10133         src/extension/system.cpp:
10134         Moving code around so that the filename extension gets put on by
10135         the extension that is saving the file.  This adds a couple complications
10136         in that the extension now needs to check for overwriting the file
10137         and also set the document URI.  Better overall, but a PITA.
10139 2004-04-05  njh <njh@mail.csse.monash.edu.au>
10141         * debian/rules,debian/control: applied patch from Kees Cook to remove
10142         obsolete libraries, and to tidy things up a tad.
10144 2004-04-04  Ted Gould <ted@gould.cx>
10146         * src/main.cpp, src/extension/extension.cpp, src/extension/system.cpp:
10147         Now the input autodetect will try the SVG filter if the autodetect
10148         fails.  This was done by the command line, but now it is done
10149         everywhere.
10151 2004-04-04  MenTaLguY <mental@rydia.net>
10153         * src/xml/repr-io.cpp, src/xml/repr.cpp, src/xml/repr.h:
10154         Take the full list of document node children from libxml, and
10155         append them in the correct order.  This fixes bug #929348.
10157         * src/xml/repr-io.cpp, src/xml/repr.cpp, src/xml/repr-private.h:
10158         Added API for coping with comments at the root level (i.e. siblings
10159         of the root XML node), and made corresponding changes to the repr-io
10160         code.  In theory this should be enough to preserve them upon loading,
10161         though in practice it still doesn't appear to be working (bug #929348).
10162         Is there some libxml thing we need to do?
10164 2004-04-04  Ted Gould <ted@gould.cx>
10166         * a bunch of files
10167         Sorry, I seem to be in some delay getting e-mail.  Anyway, a few
10168         files were changed to add in a new parameter 'dataloss'  Basically
10169         this signifies that a format was used to save that may not save
10170         the whole document and thus, a pop-up is elevated on close to signal
10171         that you might want to 'really save' this document.
10173 2004-04-03  Ted Gould <ted@gould.cx>
10175         * share/extensions/svgz_input.inkmod, src/file.cpp,
10176           src/extension/extension.cpp, src/extension/internal/svg.cpp:
10177         Making it so that input extensions can specify the output extension
10178         that gets used to save them.  If this field isn't filled in, the value
10179         gets set to NULL, and then the Save As dialog is used instead of
10180         just trying to save.
10182 2004-04-03  Ted Gould <ted@gould.cx>
10184         * src/file.cpp, src/main.cpp, src/extension/extension.cpp,
10185           src/extension/extension.h, src/extension/system.cpp,
10186           src/extension/internal/svg.cpp:
10187         Fixing the output_extension flag to not be saved in a file, but also
10188         to be able to be specified by the input module.  Also, this fixes
10189         the commandline processing of files to make them use the extension
10190         system.
10192 2004-04-02  Ted Gould <ted@gould.cx>
10194         * src/file.cpp, src/extension/db.cpp, src/extension/internal/svg.cpp:
10195         Changing it so that SVG documents open and default to with
10196         extension namespace.  Also, autodetect is reenabled.
10198 2004-04-03  Peter Moulder <pmoulder@mail.csse.monash.edu.au>
10200         * src/helper/bezier-utils.cpp (NewtonRaphsonRootFind): Fix my
10201         previous commit.
10203 2004-04-02  Ted Gould <ted@gould.cx>
10205         * share/extensions/svgz_output.inkmod, src/main.cpp, src/print.cpp,
10206           src/extension/init.cpp, src/extension/implementation/script.cpp,
10207           src/extension/implementation/script.h,
10208           src/extension/internal/Makefile.am, src/extension/internal/ps-out.cpp,
10209           src/extension/internal/ps-out.h, src/extension/internal/ps.cpp:
10210         Fixing the commandline printing.  This required fixing both the
10211         print driver to handle the newer extensions stuff.  It seems
10212         happy now.  I went ahead and implemented save as postscript
10213         while I was at it.
10215 2004-04-02  Peter Moulder  <pmoulder@mail.csse.monash.edu.au>
10217         * src/helper/bezier-utils.cpp (NewtonRaphsonRootFind): Ensure that the
10218         "improved" value is never worse than the previous guess.
10220         * src/helper/bezier-utils.cpp:
10221         Greater CodingStyle conformance, mainly whitespace changes.
10223         * src/helper/bezier-utils.cpp (sp_bezier_fit_cubic_full):
10224         Always reparameterize between generate_bezier and calc_max_error.
10225         Switch from discouraged alloca (see man page) to g_new, at cost of
10226         some extra g_free calls in the code.
10227         (reparameterize): Do in-place modification.
10229         * src/helper/bezier-utils-test.cpp:
10230         Add tests for generate_bezier, sp_bezier_fit_cubic_full.
10231         Change to a simpler test bezier.
10233         * src/helper/bezier-utils.cpp (sp_darray_left_tangent,
10234         sp_darray_right_tangent):
10235         Switch to using just the two end points for calculating the gradient.
10236         (The old code could sometimes cause g_warning's.)
10237         Correct the documentation of requirements.
10238         (sp_darray_center_tangent): Similarly remove the #if'ed out code for
10239         looking at more than two points.
10241 See doc/Changelog_archive.txt for older entries
10243 # Local Variables:
10244 # tab-width:8
10245 # indent-tabs-mode:t
10246 # End:
10247 # vim: tabstop=4:noexpandtab:shiftwidth=4