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
|
/*
* Authors:
* Ted Gould <ted@gould.cx>
*
* Copyright (C) 2002-2004 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef INKSCAPE_EXTENSION_EFFECT_H__
#define INKSCAPE_EXTENSION_EFFECT_H__
#include <config.h>
#include <glibmm/i18n.h>
#include <gtk/gtkdialog.h>
#include "verbs.h"
#include "extension.h"
struct SPDocument;
namespace Inkscape {
namespace UI {
namespace View {
typedef View View;
};
};
namespace Extension {
class Effect : public Extension {
static Effect * _last_effect;
static Inkscape::XML::Node * _effects_list;
bool find_effects_list (Inkscape::XML::Node * menustruct);
void merge_menu (Inkscape::XML::Node * base, Inkscape::XML::Node * start, Inkscape::XML::Node * patern, Inkscape::XML::Node * mergee);
class EffectVerb : public Inkscape::Verb {
private:
static void perform (SPAction * action, void * mydata, void * otherdata);
static SPActionEventVector vector;
Effect * _effect;
protected:
virtual SPAction * make_action (Inkscape::UI::View::View * view);
public:
/** \brief Use the Verb initializer with the same parameters. */
EffectVerb(gchar const * id,
gchar const * name,
gchar const * tip,
gchar const * image,
Effect * effect) :
Verb(id, _(name), _(tip), image), _effect(effect) {
/* No clue why, but this is required */
this->set_default_sensitive(true);
}
};
EffectVerb _verb;
Inkscape::XML::Node * _menu_node;
public:
Effect (Inkscape::XML::Node * in_repr,
Implementation::Implementation * in_imp);
virtual ~Effect (void);
virtual bool check (void);
bool prefs (Inkscape::UI::View::View * doc);
void effect (Inkscape::UI::View::View * doc);
Inkscape::Verb * get_verb (void) { return &_verb; };
static Effect * get_last_effect (void) { return _last_effect; };
static void set_last_effect (Effect * in_effect);
static void place_menus (void);
void place_menu (Inkscape::XML::Node * menus);
private:
static gchar * remove_ (gchar * instr);
};
} } /* 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 :
|