diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2018-01-30 08:33:01 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2018-01-30 08:33:01 +0000 |
| commit | 267299811df952d08324a39008f52c19641de9e0 (patch) | |
| tree | 28fef736a52cb7a72119d119be8eb663ad20a77f /src/sp-anchor.h | |
| parent | Translations: update inkscape.pot (diff) | |
| download | inkscape-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.h | 42 |
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 |
