/src/3rdparty/webkit/Source/WebCore/svg/SVGViewElement.h

https://bitbucket.org/ultra_iter/qt-vtl · C Header · 70 lines · 34 code · 14 blank · 22 comment · 0 complexity · ec35440e078dd001c8b85f369047a854 MD5 · raw file

  1. /*
  2. * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
  3. * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org>
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Library General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Library General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Library General Public License
  16. * along with this library; see the file COPYING.LIB. If not, write to
  17. * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  18. * Boston, MA 02110-1301, USA.
  19. */
  20. #ifndef SVGViewElement_h
  21. #define SVGViewElement_h
  22. #if ENABLE(SVG)
  23. #include "SVGAnimatedBoolean.h"
  24. #include "SVGAnimatedPreserveAspectRatio.h"
  25. #include "SVGAnimatedRect.h"
  26. #include "SVGExternalResourcesRequired.h"
  27. #include "SVGFitToViewBox.h"
  28. #include "SVGStringList.h"
  29. #include "SVGStyledElement.h"
  30. #include "SVGZoomAndPan.h"
  31. namespace WebCore {
  32. class SVGViewElement : public SVGStyledElement,
  33. public SVGExternalResourcesRequired,
  34. public SVGFitToViewBox,
  35. public SVGZoomAndPan {
  36. public:
  37. static PassRefPtr<SVGViewElement> create(const QualifiedName&, Document*);
  38. SVGStringList& viewTarget() { return m_viewTarget; }
  39. private:
  40. SVGViewElement(const QualifiedName&, Document*);
  41. virtual void parseMappedAttribute(Attribute*);
  42. virtual void synchronizeProperty(const QualifiedName&);
  43. virtual void fillAttributeToPropertyTypeMap();
  44. virtual AttributeToPropertyTypeMap& attributeToPropertyTypeMap();
  45. virtual bool rendererIsNeeded(RenderStyle*) { return false; }
  46. // Animated property declarations
  47. // SVGExternalResourcesRequired
  48. DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesRequired)
  49. // SVGFitToViewBox
  50. DECLARE_ANIMATED_RECT(ViewBox, viewBox)
  51. DECLARE_ANIMATED_PRESERVEASPECTRATIO(PreserveAspectRatio, preserveAspectRatio)
  52. SVGStringList m_viewTarget;
  53. };
  54. } // namespace WebCore
  55. #endif // ENABLE(SVG)
  56. #endif