/* Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2007 Rob Buis 2007 Eric Seidel 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 aint 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 "config.h" #if ENABLE(SVG) #include "RenderSVGViewportContainer.h" #include "GraphicsContext.h" #include "RenderView.h" #include "SVGMarkerElement.h" #include "SVGSVGElement.h" namespace WebCore { RenderSVGViewportContainer::RenderSVGViewportContainer(SVGStyledElement* node) : RenderSVGContainer(node) { } RenderSVGViewportContainer::~RenderSVGViewportContainer() { } void RenderSVGViewportContainer::layout() { ASSERT(needsLayout()); calcViewport(); // Arbitrary affine transforms are incompatible with LayoutState. view()->disableLayoutState(); // FIXME: using m_absoluteBounds breaks if containerForRepaint() is not the root LayoutRepainter repainter(*this, checkForRepaintDuringLayout() && selfNeedsLayout(), &m_absoluteBounds); calcBounds(); for (RenderObject* child = firstChild(); child; child = child->nextSibling()) { if (selfNeedsLayout()) child->setNeedsLayout(true); child->layoutIfNeeded(); ASSERT(!child->needsLayout()); } repainter.repaintAfterLayout(); view()->enableLayoutState(); setNeedsLayout(false); } void RenderSVGViewportContainer::paint(PaintInfo& paintInfo, int parentX, int parentY) { // A value of zero disables rendering of the element. if (!viewport().isEmpty() && (viewport().width() <= 0. || viewport().height() <= 0.)) return; RenderSVGContainer::paint(paintInfo, parentX, parentY); } void RenderSVGViewportContainer::applyContentTransforms(PaintInfo& paintInfo) { if (!viewport().isEmpty()) { if (style()->overflowX() != OVISIBLE) paintInfo.context->clip(enclosingIntRect(viewport())); // FIXME: Eventually we'll want float-precision clipping paintInfo.context->concatCTM(TransformationMatrix().translate(viewport().x(), viewport().y())); } RenderSVGContainer::applyContentTransforms(paintInfo); } void RenderSVGViewportContainer::applyAdditionalTransforms(PaintInfo& paintInfo) { paintInfo.context->concatCTM(viewportTransform()); RenderSVGContainer::applyAdditionalTransforms(paintInfo); } FloatRect RenderSVGViewportContainer::viewport() const { return m_viewport; } void RenderSVGViewportContainer::calcViewport() { SVGElement* svgelem = static_cast(node()); if (svgelem->hasTagName(SVGNames::svgTag)) { SVGSVGElement* svg = static_cast(node()); if (!selfNeedsLayout() && !svg->hasRelativeValues()) return; float x = svg->x().value(svg); float y = svg->y().value(svg); float w = svg->width().value(svg); float h = svg->height().value(svg); m_viewport = FloatRect(x, y, w, h); } else if (svgelem->hasTagName(SVGNames::markerTag)) { if (!selfNeedsLayout()) return; SVGMarkerElement* svg = static_cast(node()); float w = svg->markerWidth().value(svg); float h = svg->markerHeight().value(svg); m_viewport = FloatRect(0, 0, w, h); } } TransformationMatrix RenderSVGViewportContainer::viewportTransform() const { if (node()->hasTagName(SVGNames::svgTag)) { SVGSVGElement* svg = static_cast(node()); return svg->viewBoxToViewTransform(viewport().width(), viewport().height()); } else if (node()->hasTagName(SVGNames::markerTag)) { SVGMarkerElement* marker = static_cast(node()); return marker->viewBoxToViewTransform(viewport().width(), viewport().height()); } return TransformationMatrix(); } TransformationMatrix RenderSVGViewportContainer::absoluteTransform() const { TransformationMatrix ctm = RenderObject::absoluteTransform(); ctm.translate(viewport().x(), viewport().y()); return viewportTransform() * ctm; } bool RenderSVGViewportContainer::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int _x, int _y, int _tx, int _ty, HitTestAction hitTestAction) { if (!viewport().isEmpty() && style()->overflowX() == OHIDDEN && style()->overflowY() == OHIDDEN) { // Check if we need to do anything at all. IntRect overflowBox = IntRect(0, 0, width(), height()); overflowBox.move(_tx, _ty); TransformationMatrix ctm = RenderObject::absoluteTransform(); ctm.translate(viewport().x(), viewport().y()); double localX, localY; ctm.inverse().map(_x - _tx, _y - _ty, localX, localY); if (!overflowBox.contains((int)localX, (int)localY)) return false; } int sx = 0; int sy = 0; // Respect parent translation offset for non-outermost elements. // Outermost element is handled by RenderSVGRoot. if (node()->hasTagName(SVGNames::svgTag)) { sx = _tx; sy = _ty; } for (RenderObject* child = lastChild(); child; child = child->previousSibling()) { if (child->nodeAtPoint(request, result, _x - sx, _y - sy, _tx, _ty, hitTestAction)) { updateHitTestResult(result, IntPoint(_x - _tx, _y - _ty)); return true; } } // Spec: Only graphical elements can be targeted by the mouse, period. // 16.4: "If there are no graphics elements whose relevant graphics content is under the pointer (i.e., there is no target element), the event is not dispatched." return false; } } #endif // ENABLE(SVG) // vim:ts=4:noet