1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
// 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 <iostream>
#include <giomm.h> // Not <gtkmm.h>! 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;
}
}
void
add_actions_selection(InkscapeApplication* app)
{
app->add_action( "select-clear", sigc::bind<InkscapeApplication*>(sigc::ptr_fun(&select_clear), app) );
app->add_action_radio_string( "select-via-id", sigc::bind<InkscapeApplication*>(sigc::ptr_fun(&select_via_id), app), "null");
app->add_action_radio_string( "select-via-class", sigc::bind<InkscapeApplication*>(sigc::ptr_fun(&select_via_id), app), "null");
app->add_action_radio_string( "select-via-element", sigc::bind<InkscapeApplication*>(sigc::ptr_fun(&select_via_element), app), "null");
app->add_action_radio_string( "select-via-selector",sigc::bind<InkscapeApplication*>(sigc::ptr_fun(&select_via_selector), app), "null");
}
/*
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 :
|