summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 42e04ed)
raw | patch | inline | side by side (parent: 42e04ed)
author | gouldtj <gouldtj@users.sourceforge.net> | |
Tue, 2 May 2006 05:21:51 +0000 (05:21 +0000) | ||
committer | gouldtj <gouldtj@users.sourceforge.net> | |
Tue, 2 May 2006 05:21:51 +0000 (05:21 +0000) |
Switching things to be more Node based. This makes more sense as the
parameters are really more node based.
parameters are really more node based.
diff --git a/src/extension/implementation/implementation.cpp b/src/extension/implementation/implementation.cpp
index c959d50b316124bafc7694fb3a9add2807f144e2..ee131dea7c4416cf8c5504c525e41245e8879e45 100644 (file)
return 0;
}
+void
+Implementation::processPath(Inkscape::XML::Node * node)
+{
+ return g_strdup(path);
+}
+
/**
\brief Tell the printing engine whether text should be text or path
\retval true Render the text as a path
diff --git a/src/extension/implementation/implementation.h b/src/extension/implementation/implementation.h
index 68c2eb04c4044fcce2b2c3656f1944d665751d69..ba25135fd4387f960c0b17d5a679f24fb5b21b4e 100644 (file)
char const *text,
NR::Point p,
SPStyle const *style);
+ virtual void processPath(Inkscape::XML::Node * node);
};
} /* namespace Implementation */
index 80815c5d08508700eeea21a650234affcf6b86a2..9e94a565459df186f8957d202fff0af097e25928 100644 (file)
}
-gchar *
-PathEffect::processPath (gchar * path_data, gchar * pressure, gchar * tilt)
+void
+PathEffect::processPath (Inkscape::XML::Node * node)
{
index f44df986e82dde0255865b4f23526fe0eb187c0d..f63cf3ea173b3a05f467bc8a9bf159231df0e430 100644 (file)
PathEffect (Inkscape::XML::Node * in_repr,
Implementation::Implementation * in_imp);
virtual ~PathEffect (void);
- gchar * processPath (gchar * path_data,
- gchar * pressure,
- gchar * tilt);
+ void processPath (Inkscape::XML::Node * node);
}; /* PathEffect */