// SPDX-License-Identifier: GPL-2.0-or-later /* * Gio::Actions for selection tied to the application and without GUI. * * Copyright (C) 2018 Tavmjong Bah * * The contents of this file may be used under the GNU General Public License Version 2 or later. * */ #include #include // Not ! To eventually allow a headless version! #include "actions-selection.h" #include "actions-helper.h" #include "inkscape-application.h" #include "inkscape.h" // Inkscape::Application #include "selection.h" // Selection void select_clear(InkscapeApplication* app) { SPDocument* document = nullptr; Inkscape::Selection* selection = nullptr; if (!get_document_and_selection(app, &document, &selection)) { return; } selection->clear(); } void select_via_id(Glib::ustring ids, InkscapeApplication* app) { SPDocument* document = nullptr; Inkscape::Selection* selection = nullptr; if (!get_document_and_selection(app, &document, &selection)) { return; } auto tokens = Glib::Regex::split_simple("\\s*,\\s*", ids); for (auto id : tokens) { SPObject* object = document->getObjectById(id); if (object) { selection->add(object); } else { std::cerr << "select_via_id: Did not find object with id: " << id << std::endl; } } } void select_via_class(Glib::ustring klass, InkscapeApplication* app) { SPDocument* document = nullptr; Inkscape::Selection* selection = nullptr; if (!get_document_and_selection(app, &document, &selection)) { return; } auto objects = document->getObjectsByClass(klass); selection->add(objects.begin(), objects.end()); } void select_via_element(Glib::ustring element, InkscapeApplication* app) { SPDocument* document = nullptr; Inkscape::Selection* selection = nullptr; if (!get_document_and_selection(app, &document, &selection)) { return; } auto objects = document->getObjectsByElement(element); selection->add(objects.begin(), objects.end()); } void select_via_selector(Glib::ustring selector, InkscapeApplication* app) { SPDocument* document = nullptr; Inkscape::Selection* selection = nullptr; if (!get_document_and_selection(app, &document, &selection)) { return; } auto objects = document->getObjectsBySelector(selector); selection->add(objects.begin(), objects.end()); } void select_all(InkscapeApplication* app) { SPDocument* document = nullptr; Inkscape::Selection* selection = nullptr; if (!get_document_and_selection(app, &document, &selection)) { return; } std::cerr << "select_all: Not implemented!" << std::endl; } template void add_actions_selection(ConcreteInkscapeApplication* app) { app->add_action( "select-clear", sigc::bind(sigc::ptr_fun(&select_clear), app) ); app->add_action_radio_string( "select", sigc::bind(sigc::ptr_fun(&select_via_id), app), "null"); // Backwards compatible. app->add_action_radio_string( "select-via-id", sigc::bind(sigc::ptr_fun(&select_via_id), app), "null"); app->add_action_radio_string( "select-via-class", sigc::bind(sigc::ptr_fun(&select_via_class), app), "null"); app->add_action_radio_string( "select-via-element", sigc::bind(sigc::ptr_fun(&select_via_element), app), "null"); app->add_action_radio_string( "select-via-selector",sigc::bind(sigc::ptr_fun(&select_via_selector), app), "null"); } template void add_actions_selection(ConcreteInkscapeApplication* app); template void add_actions_selection(ConcreteInkscapeApplication* app); /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :