summaryrefslogtreecommitdiffstats
path: root/src/sp-tag-use.h
diff options
context:
space:
mode:
authorLiam P. White <inkscapebronyat-signgmaildotcom>2014-03-07 02:05:19 +0000
committerLiam P. White <inkscapebronyat-signgmaildotcom>2014-03-07 02:05:19 +0000
commitc3edf2beebfdf0cbb505d2accbddc4fec17dff7d (patch)
tree2460d35a42dcf459353842f1f54782126524d1a1 /src/sp-tag-use.h
parentFixed size of swatches widget (diff)
downloadinkscape-c3edf2beebfdf0cbb505d2accbddc4fec17dff7d.tar.gz
inkscape-c3edf2beebfdf0cbb505d2accbddc4fec17dff7d.zip
Start cleanup for merge into trunk
(bzr r13090.1.20)
Diffstat (limited to 'src/sp-tag-use.h')
-rw-r--r--src/sp-tag-use.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/sp-tag-use.h b/src/sp-tag-use.h
deleted file mode 100644
index 6e068fc21..000000000
--- a/src/sp-tag-use.h
+++ /dev/null
@@ -1,53 +0,0 @@
-#ifndef __SP_TAG_USE_H__
-#define __SP_TAG_USE_H__
-
-/*
- * SVG <inkscape:tagref> implementation
- *
- * Authors:
- * Theodore Janeczko
- *
- * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com>
- *
- * Released under GNU GPL, read the file 'COPYING' for more information
- */
-
-#include <stddef.h>
-#include <sigc++/sigc++.h>
-#include "svg/svg-length.h"
-#include "sp-object.h"
-
-
-#define SP_TYPE_TAG_USE (sp_tag_use_get_type ())
-#define SP_TAG_USE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SP_TYPE_TAG_USE, SPTagUse))
-#define SP_TAG_USE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SP_TYPE_TAG_USE, SPTagUseClass))
-#define SP_IS_TAG_USE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_TAG_USE))
-#define SP_IS_TAG_USE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SP_TYPE_TAG_USE))
-
-class SPTagUse;
-class SPTagUseClass;
-class SPTagUseReference;
-
-struct SPTagUse : public SPObject {
- // item built from the original's repr (the visible clone)
- // relative to the SPUse itself, it is treated as a child, similar to a grouped item relative to its group
- SPObject *child;
-
- gchar *href;
-
- // the reference to the original object
- SPTagUseReference *ref;
- sigc::connection _changed_connection;
-};
-
-struct SPTagUseClass {
- SPObjectClass parent_class;
-};
-
-GType sp_tag_use_get_type (void);
-
-SPItem *sp_tag_use_unlink (SPTagUse *use);
-SPItem *sp_tag_use_get_original (SPTagUse *use);
-
-SPItem *sp_tag_use_root(SPTagUse *use);
-#endif