From d71d34161792bd83064081bda825ef9579825b78 Mon Sep 17 00:00:00 2001 From: John Smith Date: Wed, 25 Jul 2012 11:42:34 +0900 Subject: Fix for 722625 : Select Same by Object Type (bzr r11573) --- src/interface.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index 029bb4154..931a2c1b3 100644 --- a/src/interface.h +++ b/src/interface.h @@ -172,6 +172,10 @@ class ContextMenu : public Gtk::Menu void ItemProperties(void); void ItemSelectThis(void); void SelectSameFillStroke(void); + void SelectSameFillColor(void); + void SelectSameStrokeColor(void); + void SelectSameStrokeStyle(void); + void SelectSameObjectType(void); void ItemCreateLink(void); void SetMask(void); void ReleaseMask(void); -- cgit v1.2.3 From b3f55760cbb99bd4cc96d86eae8068e724d0abe9 Mon Sep 17 00:00:00 2001 From: John Smith Date: Sun, 2 Sep 2012 13:24:45 +0900 Subject: Fix for 273539 : Add Group action to the context menu (bzr r11640) --- src/interface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index 931a2c1b3..aa0281db3 100644 --- a/src/interface.h +++ b/src/interface.h @@ -185,10 +185,10 @@ class ContextMenu : public Gtk::Menu /** - * callback, is executed on clicking the anchor "Ungroup" menu entry + * callback, is executed on clicking the anchor "Group" and "Ungroup" menu entry */ void ActivateUngroup(void); - + void ActivateGroup(void); void AnchorLinkProperties(void); /** -- cgit v1.2.3 From 3f61bc675d5f2f0c92d7906b8552b09df3cd411f Mon Sep 17 00:00:00 2001 From: John Smith Date: Sat, 22 Sep 2012 21:14:14 +0900 Subject: Fix for 172222 : Move direct to specified layer (bzr r11695) --- src/interface.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index aa0281db3..ef520be28 100644 --- a/src/interface.h +++ b/src/interface.h @@ -171,6 +171,7 @@ class ContextMenu : public Gtk::Menu //callbacks for the context menu entries of an SP_TYPE_ITEM object void ItemProperties(void); void ItemSelectThis(void); + void ItemMoveTo(void); void SelectSameFillStroke(void); void SelectSameFillColor(void); void SelectSameStrokeColor(void); -- cgit v1.2.3 From a17956f9fa43854a9b0f3b0a72542cdadfad916a Mon Sep 17 00:00:00 2001 From: John Smith Date: Sun, 23 Sep 2012 11:44:45 +0900 Subject: Fix for 170395 : Add Trace Bitmap to context menu of images (bzr r11697) --- src/interface.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index ef520be28..891e39957 100644 --- a/src/interface.h +++ b/src/interface.h @@ -224,6 +224,11 @@ class ContextMenu : public Gtk::Menu */ void ImageEmbed(void); + /** + * callback, is executed on clicking the "Trace Bitmap" menu entry + */ + void ImageTraceBitmap(void); + /** * callback, is executed on clicking the "Extract Image" menu entry */ -- cgit v1.2.3 From 3ca2c298a152f092b99d0c9978a47deec787ed8c Mon Sep 17 00:00:00 2001 From: John Smith Date: Thu, 11 Oct 2012 17:03:21 +0900 Subject: Fix for 171904 : toggleToolbox verb (bzr r11778) --- src/interface.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index 891e39957..2e9e7fc2e 100644 --- a/src/interface.h +++ b/src/interface.h @@ -81,6 +81,7 @@ GtkWidget *sp_ui_main_menubar (Inkscape::UI::View::View *view); void sp_menu_append_recent_documents (GtkWidget *menu); void sp_ui_dialog_title_string (Inkscape::Verb * verb, gchar* c); +Glib::ustring getLayoutPrefPath( Inkscape::UI::View::View *view ); /** * -- cgit v1.2.3 From 3c82e8251460b21c8046a418a9fefb700db0a164 Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Tue, 4 Jun 2013 01:52:40 -0700 Subject: Correct to compile against recent gtkmm, including updated macports versions. Fixes bug #1179338. Fixed bugs: - https://launchpad.net/bugs/1179338 (bzr r12346.1.1) --- src/interface.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index 2e9e7fc2e..ae3ced8ea 100644 --- a/src/interface.h +++ b/src/interface.h @@ -17,6 +17,8 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ +#include + #include class SPItem; -- cgit v1.2.3 From 72d8e897c6b67e46b2a613c4743ef9c13de25059 Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Thu, 6 Jun 2013 06:44:11 -0700 Subject: Added configure/ifdef guards to only bring in the needed #include if glibmm has it. (bzr r12353) --- src/interface.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index ae3ced8ea..98d041edc 100644 --- a/src/interface.h +++ b/src/interface.h @@ -17,7 +17,9 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ +#if GLIBMM_DISABLE_DEPRECATED && HAVE_GLIBMM_THREADS_H #include +#endif #include -- cgit v1.2.3 From 07dcea8f0ee2631331ed3475c9fc38db3e6df16f Mon Sep 17 00:00:00 2001 From: "Jon A. Cruz" Date: Thu, 6 Jun 2013 20:18:19 -0700 Subject: Adding inclusion of config.h where needed for threads.h check. (bzr r12355) --- src/interface.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index 98d041edc..13fbaf9ac 100644 --- a/src/interface.h +++ b/src/interface.h @@ -17,6 +17,10 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ +#ifdef HAVE_CONFIG_H +# include +#endif + #if GLIBMM_DISABLE_DEPRECATED && HAVE_GLIBMM_THREADS_H #include #endif -- cgit v1.2.3 From dd18c27c36c9138bc68161ad365bfc61b8d135f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20dos=20Santos=20Oliveira?= Date: Thu, 12 Sep 2013 07:23:11 -0300 Subject: Integrating with libdepixelize (bzr r12506.1.1) --- src/interface.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index 13fbaf9ac..215a3bfc9 100644 --- a/src/interface.h +++ b/src/interface.h @@ -238,6 +238,11 @@ class ContextMenu : public Gtk::Menu */ void ImageTraceBitmap(void); + /** + * callback, is executed on clicking the "Trace Pixel Art" menu entry + */ + void ImageTracePixelArt(void); + /** * callback, is executed on clicking the "Extract Image" menu entry */ -- cgit v1.2.3