summaryrefslogtreecommitdiffstats
path: root/src/object/sp-item-group.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/object/sp-item-group.h')
-rw-r--r--src/object/sp-item-group.h126
1 files changed, 126 insertions, 0 deletions
diff --git a/src/object/sp-item-group.h b/src/object/sp-item-group.h
new file mode 100644
index 0000000..5f9b187
--- /dev/null
+++ b/src/object/sp-item-group.h
@@ -0,0 +1,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 :