From d22aade908b64e5419afb2ca3d42057553d6e5d3 Mon Sep 17 00:00:00 2001 From: MenTaLguY Date: Sun, 5 Mar 2006 21:28:27 +0000 Subject: Add DocumentSubset as groundwork for layers (bzr r205) --- src/document-subset.h | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/document-subset.h (limited to 'src/document-subset.h') diff --git a/src/document-subset.h b/src/document-subset.h new file mode 100644 index 000000000..0e40bab8d --- /dev/null +++ b/src/document-subset.h @@ -0,0 +1,70 @@ +/* + * Inkscape::DocumentSubset - view of a document including only a subset + * of nodes + * + * Copyright 2006 MenTaLguY + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#ifndef SEEN_INKSCAPE_DOCUMENT_SUBSET_H +#define SEEN_INKSCAPE_DOCUMENT_SUBSET_H + +#include +#include + +#include "gc-managed.h" +#include "gc-anchored.h" + +class SPObject; +class SPDocument; + +namespace Inkscape { + +class DocumentSubset : public GC::Managed<>, + public GC::Anchored +{ +public: + bool includes(SPObject *obj) const; + + SPObject *parentOf(SPObject *obj) const; + unsigned childCount(SPObject *obj) const; + unsigned indexOf(SPObject *obj) const; + SPObject *nthChildOf(SPObject *obj, unsigned n) const; + + sigc::connection connectChanged(sigc::slot slot) const; + sigc::connection connectAdded(sigc::slot slot) const; + sigc::connection connectRemoved(sigc::slot slot) const; + +protected: + explicit DocumentSubset(SPDocument *document); + + void _addOne(SPObject *obj); + void _removeOne(SPObject *obj) { _remove(obj, false); } + void _removeSubtree(SPObject *obj) { _remove(obj, true); } + +private: + DocumentSubset(DocumentSubset const &); // no copy + void operator=(DocumentSubset const &); // no assign + + void _remove(SPObject *obj, bool subtree); + + class Relations; + + SPDocument *_document; + Relations *_relations; +}; + +} + +#endif +/* + 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:encoding=utf-8:textwidth=99 : -- cgit v1.2.3