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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Authors:
* Ted Gould <ted@gould.cx>
*
* Copyright (C) 2002-2004 Authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef INKSCAPE_EXTENSION_EFFECT_H__
#define INKSCAPE_EXTENSION_EFFECT_H__
#include <list>
#include <glibmm/i18n.h>
#include "extension.h"
#include "inkscape-application.h"
namespace Gtk {
class Box;
}
class SPDocument;
namespace Inkscape {
namespace Extension {
class PrefDialog;
/** \brief Effects are extensions that take a document and do something
to it in place. This class adds the extra functions required
to make extensions effects.
*/
class Effect : public Extension {
/** \brief This is the last effect that was used. This is used in
a menu item to rapidly recall the same effect. */
static Effect * _last_effect;
Inkscape::XML::Node *find_menu (Inkscape::XML::Node * menustruct, const gchar *name);
void get_menu (Inkscape::XML::Node * pattern, std::list<Glib::ustring>& sub_menu_list);
/** \brief Menu node created for this effect */
Inkscape::XML::Node * _menu_node;
/** \brief The preference dialog if it is shown */
PrefDialog * _prefDialog;
public:
Effect(Inkscape::XML::Node *in_repr, Implementation::Implementation *in_imp, std::string *base_directory);
~Effect () override;
bool prefs (Inkscape::UI::View::View * doc);
void effect (Inkscape::UI::View::View * doc);
/** \brief Whether a working dialog should be shown */
bool _workingDialog = true;
/** \brief If stderr log should be shown, when process return code is 0 */
bool ignore_stderr = false;
/** \brief Static function to get the last effect used */
static Effect * get_last_effect () { return _last_effect; };
static void set_last_effect (Effect * in_effect);
static void place_menus ();
void place_menu (Inkscape::XML::Node * menus);
Gtk::Box * get_info_widget();
bool no_doc; // if true, the effect does not process SVG document at all, so no need to save, read, and watch for errors
bool no_live_preview; // if true, the effect does not need "live preview" checkbox in its dialog
PrefDialog *get_pref_dialog ();
void set_pref_dialog (PrefDialog * prefdialog);
void deactivate() override;
private:
static gchar * remove_ (gchar * instr);
static void _sanitizeId(std::string &id);
Glib::RefPtr<Gio::SimpleAction> action;
Glib::RefPtr<Gio::SimpleAction> action_noprefs;
};
} } /* namespace Inkscape, Extension */
#endif /* INKSCAPE_EXTENSION_EFFECT_H__ */
/*
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 :
|