summaryrefslogtreecommitdiffstats
path: root/src/sp-feoffset.h
diff options
context:
space:
mode:
authorHugo Rodrigues <me@hugorodrigues.com>2006-08-02 21:31:59 +0000
committerhaa_rodrigues <haa_rodrigues@users.sourceforge.net>2006-08-02 21:31:59 +0000
commit8b5a13ebdf2b288d3f888a70e18d143039cb9b3f (patch)
treef3cbff6eadac212f95620dfdcdf445e2f91ee106 /src/sp-feoffset.h
parentrefactored session establishment (diff)
downloadinkscape-8b5a13ebdf2b288d3f888a70e18d143039cb9b3f.tar.gz
inkscape-8b5a13ebdf2b288d3f888a70e18d143039cb9b3f.zip
Added skeleton files for other filter primitives' SP-objects. Added blur slider on fill/stroke dialog (uncomment on object-properties.cpp).
(bzr r1542)
Diffstat (limited to 'src/sp-feoffset.h')
-rw-r--r--src/sp-feoffset.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/sp-feoffset.h b/src/sp-feoffset.h
new file mode 100644
index 000000000..7a5c2b783
--- /dev/null
+++ b/src/sp-feoffset.h
@@ -0,0 +1,45 @@
+#ifndef SP_FEOFFSET_H_SEEN
+#define SP_FEOFFSET_H_SEEN
+
+/** \file
+ * SVG <feOffset> implementation, see sp-feOffset.cpp.
+ */
+/*
+ * Authors:
+ * Hugo Rodrigues <haa.rodrigues@gmail.com>
+ *
+ * Copyright (C) 2006 Hugo Rodrigues
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include "sp-filter.h"
+#include "sp-feoffset-fns.h"
+
+/* FeOffset base class */
+class SPFeOffsetClass;
+
+struct SPFeOffset : public SPFilter {
+ /** OFFSET ATTRIBUTES HERE */
+
+};
+
+struct SPFeOffsetClass {
+ SPFilterClass parent_class;
+};
+
+GType sp_feOffset_get_type();
+
+
+#endif /* !SP_FEOFFSET_H_SEEN */
+
+/*
+ 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:encoding=utf-8:textwidth=99 :