kdelibs/khtml/svg/SVGSVGElement.cpp
Ivailo Monev 39f1e04295 generic: add back khtml and kjs with some changes
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2015-11-09 23:23:53 +02:00

585 lines
17 KiB
C++

/*
Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
2004, 2005, 2006, 2007 Rob Buis <buis@kde.org>
2007 Apple Inc. All rights reserved.
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 "config.h"
#include <wtf/Platform.h>
#if ENABLE(SVG)
#include "SVGSVGElement.h"
#include "AffineTransform.h"
/*#include "CSSHelper.h"*/
#include "css/csshelper.h"
/*#include "CSSPropertyNames.h"*/
#include "Document.h"
//#include "EventListener.h"
#include "dom/dom2_events.h"
/*#include "EventNames.h"*/
#include "FloatConversion.h"
#include "FloatRect.h"
/*#include "Frame.h"
#include "HTMLNames.h"
#include "RenderSVGViewportContainer.h"*/
#include "RenderSVGRoot.h"
#include "SVGAngle.h"
#include "SVGLength.h"
#include "SVGNames.h"
#include "SVGPreserveAspectRatio.h"
#include "SVGTransform.h"
#include "SVGTransformList.h"
/*#include "SVGViewElement.h"*/
#include "SVGViewSpec.h"
/*#include "SVGZoomEvent.h"
#include "SelectionController.h"
#include "SMILTimeContainer.h"*/
#include "khtml_part.h"
namespace WebCore {
/*using namespace HTMLNames;
using namespace EventNames;*/
using namespace SVGNames;
SVGSVGElement::SVGSVGElement(const QualifiedName& tagName, Document* doc)
: SVGStyledLocatableElement(tagName, doc)
, SVGTests()
, SVGLangSpace()
, SVGExternalResourcesRequired()
, SVGFitToViewBox()
, SVGZoomAndPan()
, m_x(this, LengthModeWidth)
, m_y(this, LengthModeHeight)
, m_width(this, LengthModeWidth)
, m_height(this, LengthModeHeight)
, m_useCurrentView(false)
/*, m_timeContainer(SMILTimeContainer::create(this))
, m_viewSpec(0)*/
{
setWidthBaseValue(SVGLength(this, LengthModeWidth, "100%"));
setHeightBaseValue(SVGLength(this, LengthModeHeight, "100%"));
//doc->registerForCacheCallbacks(this);
}
SVGSVGElement::~SVGSVGElement()
{
/*document()->unregisterForCacheCallbacks(this);
// There are cases where removedFromDocument() is not called.
// see ContainerNode::removeAllChildren, called by it's destructor.
document()->accessSVGExtensions()->removeTimeContainer(this);*/
}
ANIMATED_PROPERTY_DEFINITIONS(SVGSVGElement, SVGLength, Length, length, X, x, SVGNames::xAttr, m_x)
ANIMATED_PROPERTY_DEFINITIONS(SVGSVGElement, SVGLength, Length, length, Y, y, SVGNames::yAttr, m_y)
ANIMATED_PROPERTY_DEFINITIONS(SVGSVGElement, SVGLength, Length, length, Width, width, SVGNames::widthAttr, m_width)
ANIMATED_PROPERTY_DEFINITIONS(SVGSVGElement, SVGLength, Length, length, Height, height, SVGNames::heightAttr, m_height)
DOMString SVGSVGElement::contentScriptType() const
{
static const DOMString defaultValue("text/ecmascript");
DOMString n = getAttribute(contentScriptTypeAttr);
return n.isNull() ? defaultValue : n;
}
void SVGSVGElement::setContentScriptType(const DOMString& type)
{
setAttribute(SVGNames::contentScriptTypeAttr, type);
}
DOMString SVGSVGElement::contentStyleType() const
{
static const DOMString defaultValue("text/css");
const DOMString n = getAttribute(contentStyleTypeAttr);
return n.isNull() ? defaultValue : n;
}
void SVGSVGElement::setContentStyleType(const DOMString& type)
{
setAttribute(SVGNames::contentStyleTypeAttr, type);
}
bool SVGSVGElement::hasSetContainerSize() const
{
// For now, we interpret % dimensions only if we're a top-level SVG element nested inside
// an another part. ### might even want to check if we're the documentElement; this
// will also need changes with <img> handling
return isOutermostSVG() && document()->part()->parentPart();
}
IntSize SVGSVGElement::containerSize() const
{
if (KHTMLView* v = document()->view())
return IntSize(v->visibleWidth(), v->visibleHeight());
else
return IntSize(300, 150);
}
FloatRect SVGSVGElement::viewport() const
{
double _x = 0.0;
double _y = 0.0;
if (!isOutermostSVG()) {
_x = x().value();
_y = y().value();
}
float w = width().value();
float h = height().value();
AffineTransform viewBox = viewBoxToViewTransform(w, h);
double wDouble = w;
double hDouble = h;
viewBox.map(_x, _y, &_x, &_y);
viewBox.map(w, h, &wDouble, &hDouble);
return FloatRect::narrowPrecision(_x, _y, wDouble, hDouble);
}
int SVGSVGElement::relativeWidthValue() const
{
SVGLength w = width();
if (w.unitType() != LengthTypePercentage)
return 0;
return static_cast<int>(w.valueAsPercentage() * containerSize().width());
}
int SVGSVGElement::relativeHeightValue() const
{
SVGLength h = height();
if (h.unitType() != LengthTypePercentage)
return 0;
return static_cast<int>(h.valueAsPercentage() * containerSize().height());
}
float SVGSVGElement::pixelUnitToMillimeterX() const
{
// 2.54 / cssPixelsPerInch gives CM.
return (2.54f / cssPixelsPerInch) * 10.0f;
}
float SVGSVGElement::pixelUnitToMillimeterY() const
{
// 2.54 / cssPixelsPerInch gives CM.
return (2.54f / cssPixelsPerInch) * 10.0f;
}
float SVGSVGElement::screenPixelToMillimeterX() const
{
return pixelUnitToMillimeterX();
}
float SVGSVGElement::screenPixelToMillimeterY() const
{
return pixelUnitToMillimeterY();
}
bool SVGSVGElement::useCurrentView() const
{
return m_useCurrentView;
}
void SVGSVGElement::setUseCurrentView(bool currentView)
{
m_useCurrentView = currentView;
}
SVGViewSpec* SVGSVGElement::currentView() const
{
if (!m_viewSpec)
m_viewSpec.set(new SVGViewSpec(this));
return m_viewSpec.get();
}
float SVGSVGElement::currentScale() const
{
/*if (document() && document()->frame())
return document()->frame()->zoomFactor();*/
return 1.0f;
}
void SVGSVGElement::setCurrentScale(float scale)
{
Q_UNUSED(scale);
/*if (document() && document()->frame())
document()->frame()->setZoomFactor(scale, true);*/
}
FloatPoint SVGSVGElement::currentTranslate() const
{
return m_translation;
}
void SVGSVGElement::setCurrentTranslate(const FloatPoint &translation)
{
m_translation = translation;
if (parentNode() == document() && document()->renderer())
document()->renderer()->repaint();
}
void SVGSVGElement::addSVGWindowEventListener(const AtomicString& eventType, const Attribute* attr)
{
Q_UNUSED(eventType);
// FIXME: None of these should be window events long term.
// Once we propertly support SVGLoad, etc.
RefPtr<EventListener> listener = document()->accessSVGExtensions()->
createSVGEventListener(attr->localName().string(), attr->value(), this);
//document()->setHTMLWindowEventListener(eventType, listener.release());
}
void SVGSVGElement::parseMappedAttribute(MappedAttribute* attr)
{
kDebug() << "parse attribute: " << attr->localName() << attr->value() << endl;
if (!nearestViewportElement()) {
// Only handle events if we're the outermost <svg> element
/*if (attr->name() == onunloadAttr)
addSVGWindowEventListener(unloadEvent, attr);
else if (attr->name() == onabortAttr)
addSVGWindowEventListener(abortEvent, attr);
else if (attr->name() == onerrorAttr)
addSVGWindowEventListener(errorEvent, attr);
else if (attr->name() == onresizeAttr)
addSVGWindowEventListener(resizeEvent, attr);
else if (attr->name() == onscrollAttr)
addSVGWindowEventListener(scrollEvent, attr);
else if (attr->name() == SVGNames::onzoomAttr)
addSVGWindowEventListener(zoomEvent, attr);*/
}
if (attr->name() == SVGNames::xAttr)
setXBaseValue(SVGLength(this, LengthModeWidth, attr->value()));
else if (attr->name() == SVGNames::yAttr)
setYBaseValue(SVGLength(this, LengthModeHeight, attr->value()));
else if (attr->name() == SVGNames::widthAttr) {
kDebug() << "set width" << attr->value() << endl;
setWidthBaseValue(SVGLength(this, LengthModeWidth, attr->value()));
addCSSProperty(attr, CSSPropertyWidth, attr->value());
/*if (width().value() < 0.0)
document()->accessSVGExtensions()->reportError("A negative value for svg attribute <width> is not allowed");*/
} else if (attr->name() == SVGNames::heightAttr) {
kDebug() << "set height" << attr->value() << endl;
setHeightBaseValue(SVGLength(this, LengthModeHeight, attr->value()));
addCSSProperty(attr, CSSPropertyHeight, attr->value());
/*if (height().value() < 0.0)
document()->accessSVGExtensions()->reportError("A negative value for svg attribute <height> is not allowed");*/
} else {
/*if (SVGTests::parseMappedAttribute(attr))
return;
if (SVGLangSpace::parseMappedAttribute(attr))
return;
if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
return;
if (SVGFitToViewBox::parseMappedAttribute(attr))
return;
if (SVGZoomAndPan::parseMappedAttribute(attr))
return;*/
SVGStyledLocatableElement::parseMappedAttribute(attr);
}
}
void SVGSVGElement::svgAttributeChanged(const QualifiedName& attrName)
{
SVGStyledElement::svgAttributeChanged(attrName);
if (!renderer())
return;
/*if (attrName == SVGNames::xAttr || attrName == SVGNames::yAttr ||
attrName == SVGNames::widthAttr || attrName == SVGNames::heightAttr ||
SVGTests::isKnownAttribute(attrName) ||
SVGLangSpace::isKnownAttribute(attrName) ||
SVGExternalResourcesRequired::isKnownAttribute(attrName) ||
SVGFitToViewBox::isKnownAttribute(attrName) ||
SVGZoomAndPan::isKnownAttribute(attrName) ||
SVGStyledLocatableElement::isKnownAttribute(attrName))
renderer()->setNeedsLayout(true);*/
}
unsigned long SVGSVGElement::suspendRedraw(unsigned long /* max_wait_milliseconds */)
{
// FIXME: Implement me (see bug 11275)
return 0;
}
void SVGSVGElement::unsuspendRedraw(unsigned long /* suspend_handle_id */, ExceptionCode& /*ec*/)
{
// if suspend_handle_id is not found, throw exception
// FIXME: Implement me (see bug 11275)
}
void SVGSVGElement::unsuspendRedrawAll()
{
// FIXME: Implement me (see bug 11275)
}
void SVGSVGElement::forceRedraw()
{
// FIXME: Implement me (see bug 11275)
}
DOM::NodeListImpl* SVGSVGElement::getIntersectionList(const FloatRect& rect, SVGElement*)
{
Q_UNUSED(rect);
// FIXME: Implement me (see bug 11274)
return 0;
}
DOM::NodeListImpl* SVGSVGElement::getEnclosureList(const FloatRect& rect, SVGElement*)
{
Q_UNUSED(rect);
// FIXME: Implement me (see bug 11274)
return 0;
}
bool SVGSVGElement::checkIntersection(SVGElement* element, const FloatRect& rect)
{
Q_UNUSED(element);
// TODO : take into account pointer-events?
// FIXME: Why is element ignored??
// FIXME: Implement me (see bug 11274)
return rect.intersects(getBBox());
}
bool SVGSVGElement::checkEnclosure(SVGElement* element, const FloatRect& rect)
{
Q_UNUSED(element);
// TODO : take into account pointer-events?
// FIXME: Why is element ignored??
// FIXME: Implement me (see bug 11274)
return rect.contains(getBBox());
}
void SVGSVGElement::deselectAll()
{
//document()->frame()->selectionController()->clear();
}
float SVGSVGElement::createSVGNumber()
{
return 0.0f;
}
SVGLength SVGSVGElement::createSVGLength()
{
return SVGLength();
}
SVGAngle* SVGSVGElement::createSVGAngle()
{
return new SVGAngle();
}
FloatPoint SVGSVGElement::createSVGPoint()
{
return FloatPoint();
}
AffineTransform SVGSVGElement::createSVGMatrix()
{
return AffineTransform();
}
FloatRect SVGSVGElement::createSVGRect()
{
return FloatRect();
}
SVGTransform SVGSVGElement::createSVGTransform()
{
return SVGTransform();
}
SVGTransform SVGSVGElement::createSVGTransformFromMatrix(const AffineTransform& matrix)
{
return SVGTransform(matrix);
}
AffineTransform SVGSVGElement::getCTM() const
{
AffineTransform mat;
if (!isOutermostSVG())
mat.translate(x().value(), y().value());
if (attributes()->getNamedItem(SVGNames::viewBoxAttr)) {
AffineTransform viewBox = viewBoxToViewTransform(width().value(), height().value());
mat = viewBox * mat;
}
return mat;
}
AffineTransform SVGSVGElement::getScreenCTM() const
{
/*document()->updateLayoutIgnorePendingStylesheets();
float rootX = 0.0f;
float rootY = 0.0f;
if (RenderObject* renderer = this->renderer()) {
renderer = renderer->parent();
if (isOutermostSVG()) {
int tx = 0;
int ty = 0;
if (renderer)
renderer->absolutePosition(tx, ty, true);
rootX += tx;
rootY += ty;
} else {
rootX += x().value();
rootY += y().value();
}
}
AffineTransform mat = SVGStyledLocatableElement::getScreenCTM();
mat.translate(rootX, rootY);
if (attributes()->getNamedItem(SVGNames::viewBoxAttr)) {
AffineTransform viewBox = viewBoxToViewTransform(width().value(), height().value());
mat = viewBox * mat;
}
return mat;*/
ASSERT(false);
return AffineTransform();
}
RenderObject* SVGSVGElement::createRenderer(RenderArena* arena, RenderStyle*)
{
kDebug() << "create RenderSVGRoot from <svg> element" << endl;
return new (arena) RenderSVGRoot(this);
/*if (isOutermostSVG())
return new (arena) RenderSVGRoot(this);
else
return new (arena) RenderSVGViewportContainer(this);*/
}
void SVGSVGElement::insertedIntoDocument()
{
document()->accessSVGExtensions()->addTimeContainer(this);
SVGStyledLocatableElement::insertedIntoDocument();
}
void SVGSVGElement::removedFromDocument()
{
document()->accessSVGExtensions()->removeTimeContainer(this);
SVGStyledLocatableElement::removedFromDocument();
}
void SVGSVGElement::pauseAnimations()
{
/*if (!m_timeContainer->isPaused())
m_timeContainer->pause();*/
}
void SVGSVGElement::unpauseAnimations()
{
/*if (m_timeContainer->isPaused())
m_timeContainer->resume();*/
}
bool SVGSVGElement::animationsPaused() const
{
//return m_timeContainer->isPaused();
ASSERT(false);
return false;
}
float SVGSVGElement::getCurrentTime() const
{
//return narrowPrecisionToFloat(m_timeContainer->elapsed().value());
ASSERT(false);
return 0.0;
}
void SVGSVGElement::setCurrentTime(float /* seconds */)
{
// FIXME: Implement me, bug 12073
}
bool SVGSVGElement::hasRelativeValues() const
{
return (x().isRelative() || width().isRelative() ||
y().isRelative() || height().isRelative());
}
bool SVGSVGElement::isOutermostSVG() const
{
// This is true whenever this is the outermost SVG, even if there are HTML elements outside it
return !parentNode()->isSVGElement();
}
AffineTransform SVGSVGElement::viewBoxToViewTransform(float viewWidth, float viewHeight) const
{
FloatRect viewBoxRect;
if (useCurrentView()) {
if (currentView()) // what if we should use it but it is not set?
viewBoxRect = currentView()->viewBox();
} else
viewBoxRect = viewBox();
if (!viewBoxRect.width() || !viewBoxRect.height())
return AffineTransform();
AffineTransform ctm = preserveAspectRatio()->getCTM(viewBoxRect.x(),
viewBoxRect.y(), viewBoxRect.width(), viewBoxRect.height(),
0, 0, viewWidth, viewHeight);
if (useCurrentView() && currentView())
return currentView()->transform()->concatenate().matrix() * ctm;
return ctm;
}
/*void SVGSVGElement::inheritViewAttributes(SVGViewElement* viewElement)
{
setUseCurrentView(true);
if (viewElement->hasAttribute(SVGNames::viewBoxAttr))
currentView()->setViewBox(viewElement->viewBox());
else
currentView()->setViewBox(viewBox());
if (viewElement->hasAttribute(SVGNames::preserveAspectRatioAttr)) {
currentView()->preserveAspectRatio()->setAlign(viewElement->preserveAspectRatio()->align());
currentView()->preserveAspectRatio()->setMeetOrSlice(viewElement->preserveAspectRatio()->meetOrSlice());
} else {
currentView()->preserveAspectRatio()->setAlign(preserveAspectRatio()->align());
currentView()->preserveAspectRatio()->setMeetOrSlice(preserveAspectRatio()->meetOrSlice());
}
if (viewElement->hasAttribute(SVGNames::zoomAndPanAttr))
currentView()->setZoomAndPan(viewElement->zoomAndPan());
renderer()->setNeedsLayout(true);
}*/
void SVGSVGElement::willSaveToCache()
{
//pauseAnimations();
}
void SVGSVGElement::willRestoreFromCache()
{
//unpauseAnimations();
}
// KHTML stuff
quint32 SVGSVGElement::id() const { return SVGNames::svgTag.id(); }
}
#endif // ENABLE(SVG)
// vim:ts=4:noet