summaryrefslogtreecommitdiffstats
path: root/src/sp-tag.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.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.h')
-rw-r--r--src/sp-tag.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/sp-tag.h b/src/sp-tag.h
deleted file mode 100644
index c5eec785a..000000000
--- a/src/sp-tag.h
+++ /dev/null
@@ -1,55 +0,0 @@
-#ifndef SP_TAG_H_SEEN
-#define SP_TAG_H_SEEN
-
-/** \file
- * SVG <inkscape:tag> implementation
- *
- * Authors:
- * Theodore Janeczko
- *
- * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com>
- *
- * Released under GNU GPL, read the file 'COPYING' for more information
- */
-
-#include "sp-object.h"
-
-/* Skeleton base class */
-
-#define SP_TYPE_TAG (sp_tag_get_type())
-#define SP_TAG(o) (G_TYPE_CHECK_INSTANCE_CAST((o), SP_TYPE_TAG, SPTag))
-#define SP_IS_TAG(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), SP_TYPE_TAG))
-
-class SPTag;
-class SPTagClass;
-
-class SPTag : public SPObject {
-public:
- bool _expanded;
-
- bool expanded() const { return _expanded; }
- void setExpanded(bool isexpanded);
-
- void moveTo(SPObject *target, gboolean intoafter);
-
-};
-
-struct SPTagClass {
- SPObjectClass parent_class;
-};
-
-GType sp_tag_get_type();
-
-
-#endif /* !SP_SKELETON_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:fileencoding=utf-8:textwidth=99 :