summaryrefslogtreecommitdiffstats
path: root/src/sp-anchor.h
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2018-01-30 08:33:01 +0000
committerTavmjong Bah <tavmjong@free.fr>2018-01-30 08:33:01 +0000
commit267299811df952d08324a39008f52c19641de9e0 (patch)
tree28fef736a52cb7a72119d119be8eb663ad20a77f /src/sp-anchor.h
parentTranslations: update inkscape.pot (diff)
downloadinkscape-267299811df952d08324a39008f52c19641de9e0.tar.gz
inkscape-267299811df952d08324a39008f52c19641de9e0.zip
Move classes derived from SPObject to own directory.
A lot of header clean-up.
Diffstat (limited to 'src/sp-anchor.h')
-rw-r--r--src/sp-anchor.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/sp-anchor.h b/src/sp-anchor.h
deleted file mode 100644
index 2dd81f74c..000000000
--- a/src/sp-anchor.h
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef SEEN_SP_ANCHOR_H
-#define SEEN_SP_ANCHOR_H
-
-/*
- * SVG <a> element implementation
- *
- * Author:
- * Lauris Kaplinski <lauris@kaplinski.com>
- *
- * Copyright (C) 2001-2002 Lauris Kaplinski
- * Copyright (C) 2001 Ximian, Inc.
- *
- * Released under GNU GPL, read the file 'COPYING' for more information
- */
-
-#include "sp-item-group.h"
-
-#define SP_ANCHOR(obj) (dynamic_cast<SPAnchor*>((SPObject*)obj))
-#define SP_IS_ANCHOR(obj) (dynamic_cast<const SPAnchor*>((SPObject*)obj) != NULL)
-
-class SPAnchor : public SPGroup {
-public:
- SPAnchor();
- virtual ~SPAnchor();
-
- char *href;
- char *type;
- char *title;
- SPDocument *page;
-
- virtual void build(SPDocument *document, Inkscape::XML::Node *repr);
- virtual void release();
- virtual void set(unsigned int key, char const* value);
- virtual void updatePageAnchor();
- virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
-
- virtual const char* displayName() const;
- virtual char* description() const;
- virtual int event(SPEvent *event);
-};
-
-#endif