From cca66b9ec4e494c1d919bff0f71a820d8afab1fa Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:24:48 +0200 Subject: Adding upstream version 1.2.2. Signed-off-by: Daniel Baumann --- src/document-subset.h | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 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 0000000..bbdf32e --- /dev/null +++ b/src/document-subset.h @@ -0,0 +1,72 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * Inkscape::DocumentSubset - view of a document including only a subset + * of nodes + * + * Copyright 2006 MenTaLguY + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + +#ifndef SEEN_INKSCAPE_DOCUMENT_SUBSET_H +#define SEEN_INKSCAPE_DOCUMENT_SUBSET_H + +#include +#include +#include + +#include "inkgc/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: + DocumentSubset(); + + void _addOne(SPObject *obj); + void _removeOne(SPObject *obj) { _remove(obj, false); } + void _removeSubtree(SPObject *obj) { _remove(obj, true); } + void _clear(); + +private: + DocumentSubset(DocumentSubset const &) = delete; // no copy + void operator=(DocumentSubset const &) = delete; // no assign + + void _remove(SPObject *obj, bool subtree); + + struct Relations; + + 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:fileencoding=utf-8:textwidth=99 : -- cgit v1.2.3