blob: 23720c74aba47773fa05d200ac18694c7d7c9e94 (
plain)
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
|
#ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINAL_ITEM_H
#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINAL_ITEM_H
/*
* Inkscape::LiveItemEffectParameters
*
* Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/parameter/item.h"
namespace Inkscape {
namespace LivePathEffect {
class OriginalItemParam: public ItemParam {
public:
OriginalItemParam ( const Glib::ustring& label,
const Glib::ustring& tip,
const Glib::ustring& key,
Inkscape::UI::Widget::Registry* wr,
Effect* effect);
virtual ~OriginalItemParam();
bool linksToItem() const { return (href != NULL); }
SPItem * getObject() const { return ref.getObject(); }
virtual Gtk::Widget * param_newWidget();
protected:
virtual void linked_modified_callback(SPObject *linked_obj, guint flags);
virtual void linked_transformed_callback(Geom::Affine const *rel_transf, SPItem *moved_item);
void on_select_original_button_click();
private:
OriginalItemParam(const OriginalItemParam&) = delete;
OriginalItemParam& operator=(const OriginalItemParam&) = delete;
};
} //namespace LivePathEffect
} //namespace Inkscape
#endif
|