summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4f818ba)
raw | patch | inline | side by side (parent: 4f818ba)
author | tgdwyer <tgdwyer@users.sourceforge.net> | |
Fri, 14 Jul 2006 04:33:53 +0000 (04:33 +0000) | ||
committer | tgdwyer <tgdwyer@users.sourceforge.net> | |
Fri, 14 Jul 2006 04:33:53 +0000 (04:33 +0000) |
ChangeLog | patch | blob | history | |
src/widgets/toolbox.cpp | patch | blob | history |
diff --git a/ChangeLog b/ChangeLog
index 24defdebe8360e630af3c5838e391d0f8a1d1b1d..3e7651fa13cd88fd656a121c74deef56835591f8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
+2006-07-13 Tim Dwyer <Tim.Dwyer@infotech.monash.edu.au>
+
+ * src/libvpsc/*,
+ src/graphlayout/graphlayout.cpp:
+ Toggle on connector toolbar can force connectors with
+ end-markers (arrows) to point downwards
+
2006-07-13 Michael Wybrow <mjwybrow@users.sourceforge.net>
* src/libavoid/router.cpp: Fixed a bug in the libavoid function
* src/inkview: Added commandline option capability to inkview and
got code ready to add a timer for an automatic slideshow capability.
+2006-07-12 Tim Dwyer <Tim.Dwyer@infotech.monash.edu.au>
+
+ * src/libvpsc/*,
+ src/libcola/*,
+ src/graphlayout/graphlayout.cpp,
+ src/removeoverlaps/removeoverlaps.cpp:
+ Boost graph layout algorithms replaced by custom constraint layout
+ algorithm (implemented in libcola). New layout supports constraints
+ such as downward pointing connectors (directed graph layout) or
+ non-overlapping shapes.
+ libvpsc contains updated code for quadratic program solver used by
+ libcola and removeoverlaps. Fixes bug #1441411.
2006-07-02 Colin Marquardt <colin@marquardt-home.de>
index b0ab387f097ab9b4afdf74b05fb43db12b4cfe22..0849bda64937982dd3c006965b600fdc79f7421b 100644 (file)
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
gtk_button_set_relief (GTK_BUTTON (tbutton), GTK_RELIEF_NONE);
gtk_container_add (GTK_CONTAINER (tbutton), sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, "directed_graph"));
gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (tbutton), FALSE);
- gtk_tooltips_set_tip(tt, tbutton, _("Make connectors point downwards"), NULL);
+ gtk_tooltips_set_tip(tt, tbutton, _("Make connectors with end-markers (arrows) point downwards"), NULL);
gtk_box_pack_start (GTK_BOX (tbl), tbutton, FALSE, FALSE, 0);
g_signal_connect(G_OBJECT(tbutton), "toggled", GTK_SIGNAL_FUNC(sp_directed_graph_layout_toggled), tbl);