summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/path-reference.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-03-27 23:02:23 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-03-27 23:02:23 +0000
commit1d5965fea00bedb49232c419c22382dbf6581309 (patch)
treeaff38e478e9a621178ab80bd87ba630e8e11dac1 /src/live_effects/parameter/path-reference.cpp
parentcomment #define BYPASS_GLIB_SPAWN 1 to fix build on windows (diff)
downloadinkscape-1d5965fea00bedb49232c419c22382dbf6581309.tar.gz
inkscape-1d5965fea00bedb49232c419c22382dbf6581309.zip
add linking to other paths to lpe-PathParam
(bzr r5209)
Diffstat (limited to 'src/live_effects/parameter/path-reference.cpp')
-rw-r--r--src/live_effects/parameter/path-reference.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/live_effects/parameter/path-reference.cpp b/src/live_effects/parameter/path-reference.cpp
new file mode 100644
index 000000000..6a48f446b
--- /dev/null
+++ b/src/live_effects/parameter/path-reference.cpp
@@ -0,0 +1,53 @@
+/*
+ * The reference corresponding to href of LPE Path parameter.
+ *
+ * Copyright (C) 2008 Johan Engelen
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information.
+ */
+
+#include "live_effects/parameter/path-reference.h"
+
+#include <cstring>
+#include <string>
+#include <string.h>
+
+#include "enums.h"
+
+#include "display/curve.h"
+#include "livarot/Path.h"
+#include "prefs-utils.h"
+#include "sp-shape.h"
+#include "sp-text.h"
+#include "uri.h"
+
+namespace Inkscape {
+namespace LivePathEffect {
+
+bool PathReference::_acceptObject(SPObject * const obj) const
+{
+ if (SP_IS_SHAPE(obj) || SP_IS_TEXT(obj)) {
+ /* Refuse references to lpeobject */
+ if (obj == getOwner()) {
+ return false;
+ }
+ // TODO: check whether the referred path has this LPE applied, if so: deny deny deny!
+ return true;
+ } else {
+ return false;
+ }
+}
+
+} // namespace LivePathEffect
+} // namespace Inkscape
+
+/*
+ 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 :