summaryrefslogtreecommitdiffstats
path: root/src/sp-tag-use-reference.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-reference.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-reference.h')
-rw-r--r--src/sp-tag-use-reference.h77
1 files changed, 0 insertions, 77 deletions
diff --git a/src/sp-tag-use-reference.h b/src/sp-tag-use-reference.h
deleted file mode 100644
index 039d2fd7d..000000000
--- a/src/sp-tag-use-reference.h
+++ /dev/null
@@ -1,77 +0,0 @@
-#ifndef SEEN_SP_TAG_USE_REFERENCE_H
-#define SEEN_SP_TAG_USE_REFERENCE_H
-
-/*
- * The reference corresponding to href of <inkscape:tagref> element.
- *
- * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com>
- *
- * Released under GNU GPL, read the file 'COPYING' for more information.
- */
-
-#include "sp-object.h"
-#include "sp-item.h"
-#include <uri-references.h>
-#include <stddef.h>
-#include <sigc++/sigc++.h>
-
-class Path;
-
-namespace Inkscape {
-namespace XML {
- struct Node;
-}
-}
-
-
-class SPTagUseReference : public Inkscape::URIReference {
-public:
- SPTagUseReference(SPObject *owner) : URIReference(owner) {}
-
- SPItem *getObject() const {
- return static_cast<SPItem *>(URIReference::getObject());
- }
-
-protected:
- virtual bool _acceptObject(SPObject * const obj) const;
-
-};
-
-
-class SPTagUsePath : public SPTagUseReference {
-public:
- Path *originalPath;
- bool sourceDirty;
-
- SPObject *owner;
- gchar *sourceHref;
- Inkscape::XML::Node *sourceRepr;
- SPObject *sourceObject;
-
- sigc::connection _delete_connection;
- sigc::connection _changed_connection;
-
- SPTagUsePath(SPObject* i_owner);
- ~SPTagUsePath(void);
-
- void link(char* to);
- void unlink(void);
- void start_listening(SPObject* to);
- void quit_listening(void);
- void refresh_source(void);
-
- void (*user_unlink) (SPObject *user);
-};
-
-#endif /* !SEEN_SP_USE_REFERENCE_H */
-
-/*
- 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 :