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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** \file
*
* Actions Related to Text
*
* Authors:
* Sushant A A <sushant.co19@gmail.com>
*
* Copyright (C) 2021 Authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <giomm.h>
#include <glibmm/i18n.h>
#include "actions-text.h"
#include "actions/actions-extra-data.h"
#include "inkscape-application.h"
#include "text-chemistry.h"
void
selection_text_put_on_path()
{
text_put_on_path();
}
void
selection_text_remove_from_path()
{
text_remove_from_path();
}
void
text_flow_into_frame()
{
text_flow_into_shape();
}
void
text_flow_subtract_frame()
{
text_flow_shape_subtract();
}
void
select_text_unflow()
{
text_unflow();
}
void
text_convert_to_regular()
{
flowtext_to_text();
}
void
text_unkern()
{
text_remove_all_kerns();
}
std::vector<std::vector<Glib::ustring>> raw_data_text =
{
// clang-format off
{"app.text-put-on-path", N_("Put on Path"), "Text", N_("Put text on path")},
{"app.text-remove-from-path", N_("Remove from Path"), "Text", N_("Remove text from path")},
{"app.text-flow-into-frame", N_("Flow into Frame"), "Text", N_("Put text into a frame (path or shape), creating a flowed text linked to the frame object")},
{"app.text-flow-subtract-frame", N_("Set Subtraction Frames"), "Text", N_("Flow text around a frame (path or shape), only available for SVG 2.0 Flow text.")},
{"app.text-unflow", N_("Unflow"), "Text", N_("Remove text from frame (creates a single-line text object)")},
{"app.text-convert-to-regular", N_("Convert to Text"), "Text", N_("Convert flowed text to regular text object (preserves appearance)")},
{"app.text-unkern", N_("Remove Manual Kerns"), "Text", N_("Remove all manual kerns and glyph rotations from a text object")}
// clang-format on
};
void
add_actions_text(InkscapeApplication* app)
{
auto gapp = app->gio_app();
// clang-format off
gapp->add_action( "text-put-on-path", sigc::ptr_fun(selection_text_put_on_path));
gapp->add_action( "text-remove-from-path", sigc::ptr_fun(selection_text_remove_from_path));
gapp->add_action( "text-flow-into-frame", sigc::ptr_fun(text_flow_into_frame));
gapp->add_action( "text-flow-subtract-frame", sigc::ptr_fun(text_flow_subtract_frame));
gapp->add_action( "text-unflow", sigc::ptr_fun(select_text_unflow));
gapp->add_action( "text-convert-to-regular", sigc::ptr_fun(text_convert_to_regular));
gapp->add_action( "text-unkern", sigc::ptr_fun(text_unkern));
// clang-format on
app->get_action_extra_data().add_data(raw_data_text);
}
/*
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 :
|