blob: bbdf32e7688f0ef7071ca417804023677e70283a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Inkscape::DocumentSubset - view of a document including only a subset
* of nodes
*
* Copyright 2006 MenTaLguY <mental@rydia.net>
*
* 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 <cstddef>
#include <sigc++/connection.h>
#include <sigc++/functors/slot.h>
#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<void> slot) const;
sigc::connection connectAdded(sigc::slot<void, SPObject *> slot) const;
sigc::connection connectRemoved(sigc::slot<void, SPObject *> 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 :
|