From 14d0fbe96c6abdb9da80e99953aec672f999948c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 13 Dec 2020 19:22:19 +0900 Subject: Renaming of files in preparation for code style tools. Signed-off-by: Michele Calgaro --- ksvg/impl/SVGContainerImpl.cc | 133 ------------------------------------------ 1 file changed, 133 deletions(-) delete mode 100644 ksvg/impl/SVGContainerImpl.cc (limited to 'ksvg/impl/SVGContainerImpl.cc') diff --git a/ksvg/impl/SVGContainerImpl.cc b/ksvg/impl/SVGContainerImpl.cc deleted file mode 100644 index efaf62e8..00000000 --- a/ksvg/impl/SVGContainerImpl.cc +++ /dev/null @@ -1,133 +0,0 @@ -/* - Copyright (C) 2001-2003 KSVG Team - This file is part of the KDE project - - 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. -*/ - -#include "SVGRectImpl.h" -#include "SVGDocumentImpl.h" -#include "SVGContainerImpl.h" -#include "SVGSVGElementImpl.h" -#include "kdebug.h" - -using namespace KSVG; - -SVGContainerImpl::SVGContainerImpl(DOM::ElementImpl *impl) : SVGShapeImpl(impl) -{ -} - -SVGContainerImpl::~SVGContainerImpl() -{ -} - -SVGRectImpl *SVGContainerImpl::getBBox() -{ - // just get the union of the children bboxes - TQRect rect; - DOM::Node node = firstChild(); - for(; !node.isNull(); node = node.nextSibling()) - { - SVGElementImpl *elem = ownerDoc()->getElementFromHandle(node.handle()); - SVGShapeImpl *shape = dynamic_cast(elem); - SVGTestsImpl *tests = dynamic_cast(elem); - SVGStylableImpl *style = dynamic_cast(elem); - - bool ok = tests ? tests->ok() : true; - - if(shape && style && ok && style->getVisible() && style->getDisplay()) - { - SVGRectImpl *current = shape->getBBox(); - rect = rect.unite(current->qrect()); - current->deref(); - } - } - - SVGRectImpl *ret = SVGSVGElementImpl::createSVGRect(); - *ret = rect; - return ret; -} - -void SVGContainerImpl::createItem(KSVGCanvas *c) -{ - DOM::Node node = firstChild(); - for(; !node.isNull(); node = node.nextSibling()) - { - SVGElementImpl *elem = ownerDoc()->getElementFromHandle(node.handle()); - if(elem) - elem->createItem(c); - } -} - -void SVGContainerImpl::removeItem(KSVGCanvas *c) -{ - SVGShapeImpl::removeItem(c); - - for(DOM::Node node = firstChild(); !node.isNull(); node = node.nextSibling()) - { - SVGElementImpl *elem = ownerDoc()->getElementFromHandle(node.handle()); - if(elem) - elem->removeItem(c); - } -} - -void SVGContainerImpl::update(CanvasItemUpdate reason, int param1, int param2) -{ - SVGShapeImpl::update(reason, param1, param2); - - for(DOM::Node node = firstChild(); !node.isNull(); node = node.nextSibling()) - { - SVGShapeImpl *shape = dynamic_cast(ownerDoc()->getElementFromHandle(node.handle())); - if(shape) - shape->update(reason, param1, param2); - } -} - -void SVGContainerImpl::invalidate(KSVGCanvas *c, bool recalc) -{ - SVGShapeImpl::invalidate(c, recalc); - - for(DOM::Node node = firstChild(); !node.isNull(); node = node.nextSibling()) - { - SVGShapeImpl *shape = dynamic_cast(ownerDoc()->getElementFromHandle(node.handle())); - if(shape) - shape->invalidate(c, recalc); - } -} - -void SVGContainerImpl::setReferenced(bool referenced) -{ - SVGShapeImpl::setReferenced(referenced); - - for(DOM::Node node = firstChild(); !node.isNull(); node = node.nextSibling()) - { - SVGShapeImpl *shape = dynamic_cast(ownerDoc()->getElementFromHandle(node.handle())); - if(shape) - shape->setReferenced(referenced); - } -} - -void SVGContainerImpl::draw() -{ - SVGShapeImpl::draw(); - - for(DOM::Node node = firstChild(); !node.isNull(); node = node.nextSibling()) - { - SVGShapeImpl *shape = dynamic_cast(ownerDoc()->getElementFromHandle(node.handle())); - if(shape) - shape->draw(); - } -} -- cgit v1.2.1