summaryrefslogtreecommitdiffstats
path: root/src/selection-chemistry.h
diff options
context:
space:
mode:
authorEric Greveson <eric@greveson.co.uk>2013-07-03 22:00:06 +0000
committerEric Greveson <eric@greveson.co.uk>2013-07-03 22:00:06 +0000
commit1c75594f5c37e86dec195ec1975254315ef180e9 (patch)
treea2ef00ceb7bd72b60c61c61ece4dcfe413fac9f5 /src/selection-chemistry.h
parentModified dbus interface so that it works in console mode (--dbus-listen) (diff)
downloadinkscape-1c75594f5c37e86dec195ec1975254315ef180e9.tar.gz
inkscape-1c75594f5c37e86dec195ec1975254315ef180e9.zip
Changed dbus interface to treat 'division' like other boolops, with a new
return type for selection_combine to support this (array of string). This also fixes a bug with not setting the error flag when returning NULL from this method. Refactored some more selection verbs to allow use in no-GUI mode. (bzr r12387.1.5)
Diffstat (limited to 'src/selection-chemistry.h')
-rw-r--r--src/selection-chemistry.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/selection-chemistry.h b/src/selection-chemistry.h
index f58ede21a..f7a4f928c 100644
--- a/src/selection-chemistry.h
+++ b/src/selection-chemistry.h
@@ -77,13 +77,13 @@ void sp_selection_tile(SPDesktop *desktop, bool apply = true);
void sp_selection_untile(SPDesktop *desktop);
//void sp_selection_group_impl(GSList const *reprs_to_group, Inkscape::XML::Node *group, Inkscape::XML::Document *xml_doc, SPDocument *doc);
-void sp_selection_group(SPDesktop *desktop);
-void sp_selection_ungroup(SPDesktop *desktop);
+void sp_selection_group(Inkscape::Selection *selection, SPDesktop *desktop);
+void sp_selection_ungroup(Inkscape::Selection *selection, SPDesktop *desktop);
-void sp_selection_raise(SPDesktop *desktop);
-void sp_selection_raise_to_top(SPDesktop *desktop);
-void sp_selection_lower(SPDesktop *desktop);
-void sp_selection_lower_to_bottom(SPDesktop *desktop);
+void sp_selection_raise(Inkscape::Selection *selection, SPDesktop *desktop);
+void sp_selection_raise_to_top(Inkscape::Selection *selection, SPDesktop *desktop);
+void sp_selection_lower(Inkscape::Selection *selection, SPDesktop *desktop);
+void sp_selection_lower_to_bottom(Inkscape::Selection *selection, SPDesktop *desktop);
SPCSSAttr *take_style_from_item (SPItem *item);