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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** \file
*
* Actions for Editing an object which require desktop
*
* 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-edit-window.h"
#include "inkscape-application.h"
#include "inkscape-window.h"
#include "desktop.h"
#include "selection-chemistry.h"
void
paste(InkscapeWindow* win)
{
SPDesktop* dt = win->get_desktop();
// Paste
sp_selection_paste(dt, false);
}
void
paste_in_place(InkscapeWindow* win)
{
SPDesktop* dt = win->get_desktop();
// Paste In Place
sp_selection_paste(dt, true);
}
void
path_effect_parameter_next(InkscapeWindow* win)
{
SPDesktop* dt = win->get_desktop();
// Next path effect parameter
sp_selection_next_patheffect_param(dt);
}
std::vector<std::vector<Glib::ustring>> raw_data_edit_window =
{
// clang-format off
{"win.paste", N_("Paste"), "Edit", N_("Paste objects from clipboard to mouse point, or paste text")},
{"win.paste-in-place", N_("Paste In Place"), "Edit", N_("Paste objects from clipboard to the original position of the copied objects")},
{"win.path-effect-parameter-next", N_("Next path effect parameter"), "Edit", N_("Show next editable path effect parameter")}
// clang-format on
};
void
add_actions_edit_window(InkscapeWindow* win)
{
// clang-format off
win->add_action( "paste", sigc::bind<InkscapeWindow*>(sigc::ptr_fun(&paste), win));
win->add_action( "paste-in-place", sigc::bind<InkscapeWindow*>(sigc::ptr_fun(&paste_in_place), win));
win->add_action( "path-effect-parameter-next", sigc::bind<InkscapeWindow*>(sigc::ptr_fun(&path_effect_parameter_next), win));
// clang-format on
auto app = InkscapeApplication::instance();
if (!app) {
std::cerr << "add_actions_edit_window: no app!" << std::endl;
return;
}
app->get_action_extra_data().add_data(raw_data_edit_window);
}
|