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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_SP_ITEM_GROUP_H
#define SEEN_SP_ITEM_GROUP_H
/*
* SVG <g> implementation
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 1999-2002 authors
* Copyright (C) 2000-2001 Ximian, Inc.
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <map>
#include "sp-lpe-item.h"
#define SP_GROUP(obj) (dynamic_cast<SPGroup*>((SPObject*)obj))
#define SP_IS_GROUP(obj) (dynamic_cast<const SPGroup*>((SPObject*)obj) != NULL)
#define SP_IS_LAYER(obj) (SP_IS_GROUP(obj) && SP_GROUP(obj)->layerMode() == SPGroup::LAYER)
namespace Inkscape {
class Drawing;
class DrawingItem;
} // namespace Inkscape
class SPGroup : public SPLPEItem {
public:
SPGroup();
~SPGroup() override;
enum LayerMode { GROUP, LAYER, MASK_HELPER };
bool _expanded;
bool _insert_bottom;
LayerMode _layer_mode;
std::map<unsigned int, LayerMode> _display_modes;
LayerMode layerMode() const { return _layer_mode; }
void setLayerMode(LayerMode mode);
bool expanded() const { return _expanded; }
void setExpanded(bool isexpanded);
bool insertBottom() const { return _insert_bottom; }
void setInsertBottom(bool insertbottom);
LayerMode effectiveLayerMode(unsigned int display_key) const {
if ( _layer_mode == LAYER ) {
return LAYER;
} else {
return layerDisplayMode(display_key);
}
}
LayerMode layerDisplayMode(unsigned int display_key) const;
void setLayerDisplayMode(unsigned int display_key, LayerMode mode);
void translateChildItems(Geom::Translate const &tr);
void scaleChildItemsRec(Geom::Scale const &sc, Geom::Point const &p, bool noRecurse);
int getItemCount() const;
virtual void _showChildren (Inkscape::Drawing &drawing, Inkscape::DrawingItem *ai, unsigned int key, unsigned int flags);
private:
void _updateLayerMode(unsigned int display_key=0);
public:
void build(SPDocument *document, Inkscape::XML::Node *repr) override;
void release() override;
void child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref) override;
void remove_child(Inkscape::XML::Node *child) override;
void order_changed(Inkscape::XML::Node *child, Inkscape::XML::Node *old_ref, Inkscape::XML::Node *new_ref) override;
void update(SPCtx *ctx, unsigned int flags) override;
void modified(unsigned int flags) override;
void set(SPAttributeEnum key, char const* value) override;
Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags) override;
Geom::OptRect bbox(Geom::Affine const &transform, SPItem::BBoxType bboxtype) const override;
void print(SPPrintContext *ctx) override;
const char* displayName() const override;
char *description() const override;
Inkscape::DrawingItem *show (Inkscape::Drawing &drawing, unsigned int key, unsigned int flags) override;
void hide (unsigned int key) override;
void snappoints(std::vector<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs) const override;
void update_patheffect(bool write) override;
};
/**
* finds clones of a child of the group going out of the group; and inverse the group transform on its clones
* Also called when moving objects between different layers
* @param group current group
* @param parent original parent
* @param g transform
*/
void sp_item_group_ungroup_handle_clones(SPItem *parent, Geom::Affine const g);
void sp_item_group_ungroup (SPGroup *group, std::vector<SPItem*> &children, bool do_done = true);
std::vector<SPItem*> sp_item_group_item_list (SPGroup *group);
SPObject *sp_item_group_get_child_by_name (SPGroup *group, SPObject *ref, const char *name);
#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 :
|