/src/3rdparty/webkit/Source/WebCore/rendering/svg/RenderSVGShadowTreeRootContainer.cpp

https://bitbucket.org/ultra_iter/qt-vtl · C++ · 106 lines · 61 code · 22 blank · 23 comment · 12 complexity · cdb31a14fe4d940b7d9c601c0143318f MD5 · raw file

  1. /*
  2. * Copyright (C) Research In Motion Limited 2010. All rights reserved.
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public License
  15. * along with this library; see the file COPYING.LIB. If not, write to
  16. * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  17. * Boston, MA 02110-1301, USA.
  18. */
  19. #include "config.h"
  20. #if ENABLE(SVG)
  21. #include "RenderSVGShadowTreeRootContainer.h"
  22. #include "MouseEvent.h"
  23. #include "SVGShadowTreeElements.h"
  24. #include "SVGUseElement.h"
  25. namespace WebCore {
  26. RenderSVGShadowTreeRootContainer::RenderSVGShadowTreeRootContainer(SVGUseElement* node)
  27. : RenderSVGTransformableContainer(node)
  28. , m_recreateTree(false)
  29. {
  30. }
  31. RenderSVGShadowTreeRootContainer::~RenderSVGShadowTreeRootContainer()
  32. {
  33. if (m_shadowRoot)
  34. m_shadowRoot->clearSVGShadowHost();
  35. }
  36. void RenderSVGShadowTreeRootContainer::updateStyle(Node::StyleChange change)
  37. {
  38. if (m_shadowRoot && m_shadowRoot->attached())
  39. m_shadowRoot->recalcStyle(change);
  40. }
  41. void RenderSVGShadowTreeRootContainer::updateFromElement()
  42. {
  43. bool hadExistingTree = m_shadowRoot;
  44. SVGUseElement* useElement = static_cast<SVGUseElement*>(node());
  45. if (!m_shadowRoot) {
  46. ASSERT(!m_recreateTree);
  47. m_shadowRoot = SVGShadowTreeRootElement::create(document(), useElement);
  48. useElement->buildPendingResource();
  49. }
  50. ASSERT(m_shadowRoot->svgShadowHost() == useElement);
  51. bool shouldRecreateTree = m_recreateTree;
  52. if (m_recreateTree) {
  53. ASSERT(hadExistingTree);
  54. if (m_shadowRoot->attached())
  55. m_shadowRoot->detach();
  56. m_shadowRoot->removeAllChildren();
  57. m_recreateTree = false;
  58. }
  59. // Only rebuild the shadow tree, if we a) never had a tree or b) we were specifically asked to do so
  60. // If the use element is a pending resource, and a) or b) is true, do nothing, and wait for the use
  61. // element to be asked to buildPendingResource(), this will call us again, with m_recreateTrue=true.
  62. if ((shouldRecreateTree || !hadExistingTree) && !useElement->hasPendingResources()) {
  63. useElement->buildShadowAndInstanceTree(m_shadowRoot.get());
  64. // Attach shadow root element
  65. m_shadowRoot->attachElement(style(), renderArena());
  66. // Attach subtree, as if it was a regular non-shadow tree
  67. for (Node* child = m_shadowRoot->firstChild(); child; child = child->nextSibling())
  68. child->attach();
  69. }
  70. ASSERT(!m_recreateTree);
  71. RenderSVGTransformableContainer::updateFromElement();
  72. }
  73. void RenderSVGShadowTreeRootContainer::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
  74. {
  75. RenderSVGTransformableContainer::styleDidChange(diff, oldStyle);
  76. if (RenderObject* shadowRootRenderer = m_shadowRoot ? m_shadowRoot->renderer() : 0)
  77. shadowRootRenderer->setStyle(style());
  78. }
  79. Node* RenderSVGShadowTreeRootContainer::rootElement() const
  80. {
  81. return m_shadowRoot.get();
  82. }
  83. }
  84. #endif