00001 /* This file is part of the KDE project 00002 * Copyright (C) 2006 Thomas Zander <zander@kde.org> 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Library General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Library General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Library General Public License 00015 * along with this library; see the file COPYING.LIB. If not, write to 00016 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00017 * Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef KOSHAPEGROUP_H 00021 #define KOSHAPEGROUP_H 00022 00023 #include "KoShapeContainer.h" 00024 00025 #include <QList> 00026 00027 #include <koffice_export.h> 00028 00040 class FLAKE_EXPORT KoShapeGroup : public KoShapeContainer { 00041 public: 00043 KoShapeGroup(); 00045 ~KoShapeGroup() {}; 00047 void paintComponent(QPainter &painter, const KoViewConverter &converter); 00049 bool hitTest( const QPointF &position ) const; 00050 00051 private: 00052 class GroupMembers: public KoShapeContainerModel { 00053 public: 00054 GroupMembers() {}; 00055 ~GroupMembers() {}; 00056 void add(KoShape *child); 00057 void setClipping(const KoShape *child, bool clipping); 00058 bool childClipped(const KoShape *child) const; 00059 void remove(KoShape *child); 00060 int count() const; 00061 QList<KoShape*> iterator() const; 00062 void containerChanged(KoShapeContainer *container); 00063 00064 private: // members 00065 QList <KoShape *> m_groupMembers; 00066 }; 00067 00068 void childCountChanged(); 00069 }; 00070 00071 #endif