summaryrefslogtreecommitdiffstats
path: root/karbon/core/vgroup.h
blob: 29eb384204fb2bfe9605b643403105a8fafea2ab (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
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
/* This file is part of the KDE project
   Copyright (C) 2002, 2003 The Karbon Developers

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef __VGROUP_H__
#define __VGROUP_H__

#include <tqptrlist.h>

#include "vobject.h"
#include <koffice_export.h>
typedef TQPtrList<VObject> VObjectList;
typedef TQPtrListIterator<VObject> VObjectListIterator;

/**
 * Base class for all sort of VObject conglomerats.
 */

class KARBONBASE_EXPORT VGroup : public VObject
{
public:
	/**
	 * Constructs a new group object that is child of tqparent and has the given state.
	 *
	 * The object's fill and stroke are created here.
	 *
	 * @param tqparent the new object's tqparent
	 * @param state the new object's state
	 */
	VGroup( VObject* tqparent, VState state = normal );

	/**
	 * Copy constructor.
	 *
	 * @param group the group to copy properties from
	 */
	VGroup( const VGroup& group );

	/** 
	 * Destroys the group and all of the child objects.
	 */
	virtual ~VGroup();

	virtual void draw( VPainter* painter, const KoRect* rect = 0L ) const;

	virtual const KoRect& boundingBox() const;

	virtual void setStroke( const VStroke& stroke );
	virtual void setFill( const VFill& fill );

	virtual void setState( const VState state );

	virtual void save( TQDomElement& element ) const;
	virtual void saveOasis( KoStore *store, KoXmlWriter *docWriter, KoGenStyles &mainStyles, int &index ) const;
	virtual void load( const TQDomElement& element );
	virtual bool loadOasis( const TQDomElement &element, KoOasisLoadingContext &context );

	virtual VGroup* clone() const;

	virtual void accept( VVisitor& visitor );

	/**
	 * Removes the reference to child object, not the object itself.
	 *
	 * @param object the child object to remove
	 */
	void take( const VObject& object );

	/**
	 * Appends a new child object.
	 *
	 * @param object the object to append
	 */
	void append( VObject* object );

	/**
	 * This function is important for undo/redo. It inserts newObject in front
	 * of oldObject.
	 *
	 * @param newObject the new object to insert
	 * @param oldObject the old object the new object is inserted in front of
	 */
	virtual void insertInfrontOf( VObject* newObject, VObject* oldObject );

	/**
	 * Clears the group, without destroying the grouped objects.
	 */
	void clear();

	/**
	 * Read only access to the grouped objects.
	 *
	 * @return reference to the list of grouped objects
	 */
	const VObjectList& objects() const { return m_objects; }

protected:
	VObjectList m_objects; /**< the list of grouped objects */
};

#endif