Code

new command: relink clone to copied object
[inkscape.git] / src / sp-item-group.h
index 578454c9237e6591ad55fa7389c8168ab6cc8d47..5af7a7b946f248570c80e20752e94389783a8274 100644 (file)
@@ -14,7 +14,7 @@
  */
 
 #include <map>
-#include "sp-item.h"
+#include "sp-lpe-item.h"
 
 #define SP_TYPE_GROUP            (sp_group_get_type ())
 #define SP_GROUP(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), SP_TYPE_GROUP, SPGroup))
 #define SP_IS_GROUP(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_GROUP))
 #define SP_IS_GROUP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SP_TYPE_GROUP))
 
-struct SPGroup : public SPItem {
+class CGroup;
+
+namespace NR{ struct translate; }
+
+struct SPGroup : public SPLPEItem {
        enum LayerMode { GROUP, LAYER };
 
        LayerMode _layer_mode;
@@ -41,13 +45,43 @@ struct SPGroup : public SPItem {
 
        LayerMode layerDisplayMode(unsigned int display_key) const;
        void setLayerDisplayMode(unsigned int display_key, LayerMode mode);
+       void translateChildItems(NR::translate const &tr);
 
+    CGroup *group;
+    
 private:
        void _updateLayerMode(unsigned int display_key=0);
 };
 
 struct SPGroupClass {
-       SPItemClass parent_class;
+       SPLPEItemClass parent_class;
+};
+
+/*
+ * Virtual methods of SPGroup
+ */
+class CGroup {
+public:
+    CGroup(SPGroup *group);
+    virtual ~CGroup();
+    
+    virtual void onChildAdded(Inkscape::XML::Node *child);
+    virtual void onChildRemoved(Inkscape::XML::Node *child);
+    virtual void onUpdate(SPCtx *ctx, unsigned int flags);
+    virtual void onModified(guint flags);
+    virtual void calculateBBox(NRRect *bbox, NR::Matrix const &transform, unsigned const flags);
+    virtual void onPrint(SPPrintContext *ctx);
+    virtual void onOrderChanged(Inkscape::XML::Node *child, Inkscape::XML::Node *old_ref, Inkscape::XML::Node *new_ref);
+    virtual gchar *getDescription();
+    virtual NRArenaItem *show (NRArena *arena, unsigned int key, unsigned int flags);
+    virtual void hide (unsigned int key);
+
+    gint getItemCount();
+
+protected:
+    virtual void _showChildren (NRArena *arena, NRArenaItem *ai, unsigned int key, unsigned int flags);
+
+    SPGroup *_group;
 };
 
 GType sp_group_get_type (void);