| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 SVGLengthAdjustSpacing, | 38 SVGLengthAdjustSpacing, |
| 39 SVGLengthAdjustSpacingAndGlyphs | 39 SVGLengthAdjustSpacingAndGlyphs |
| 40 }; | 40 }; |
| 41 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGLengthAd
justType>(); | 41 template<> const SVGEnumerationStringEntries& getStaticStringEntries<SVGLengthAd
justType>(); |
| 42 | 42 |
| 43 class SVGTextContentElement : public SVGGraphicsElement { | 43 class SVGTextContentElement : public SVGGraphicsElement { |
| 44 DEFINE_WRAPPERTYPEINFO(); | 44 DEFINE_WRAPPERTYPEINFO(); |
| 45 public: | 45 public: |
| 46 // Forward declare enumerations in the W3C naming scheme, for IDL generation
. | 46 // Forward declare enumerations in the W3C naming scheme, for IDL generation
. |
| 47 enum { | 47 enum { |
| 48 LENGTHADJUST_UNKNOWN = SVGLengthAdjustUnknown, | 48 kLengthadjustUnknown = SVGLengthAdjustUnknown, |
| 49 LENGTHADJUST_SPACING = SVGLengthAdjustSpacing, | 49 kLengthadjustSpacing = SVGLengthAdjustSpacing, |
| 50 LENGTHADJUST_SPACINGANDGLYPHS = SVGLengthAdjustSpacingAndGlyphs | 50 kLengthadjustSpacingandglyphs = SVGLengthAdjustSpacingAndGlyphs |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 unsigned getNumberOfChars(); | 53 unsigned getNumberOfChars(); |
| 54 float getComputedTextLength(); | 54 float getComputedTextLength(); |
| 55 float getSubStringLength(unsigned charnum, unsigned nchars, ExceptionState&)
; | 55 float getSubStringLength(unsigned charnum, unsigned nchars, ExceptionState&)
; |
| 56 SVGPointTearOff* getStartPositionOfChar(unsigned charnum, ExceptionState&); | 56 SVGPointTearOff* getStartPositionOfChar(unsigned charnum, ExceptionState&); |
| 57 SVGPointTearOff* getEndPositionOfChar(unsigned charnum, ExceptionState&); | 57 SVGPointTearOff* getEndPositionOfChar(unsigned charnum, ExceptionState&); |
| 58 SVGRectTearOff* getExtentOfChar(unsigned charnum, ExceptionState&); | 58 SVGRectTearOff* getExtentOfChar(unsigned charnum, ExceptionState&); |
| 59 float getRotationOfChar(unsigned charnum, ExceptionState&); | 59 float getRotationOfChar(unsigned charnum, ExceptionState&); |
| 60 int getCharNumAtPosition(SVGPointTearOff*, ExceptionState&); | 60 int getCharNumAtPosition(SVGPointTearOff*, ExceptionState&); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 88 inline bool isSVGTextContentElement(const SVGElement& element) | 88 inline bool isSVGTextContentElement(const SVGElement& element) |
| 89 { | 89 { |
| 90 return element.isTextContent(); | 90 return element.isTextContent(); |
| 91 } | 91 } |
| 92 | 92 |
| 93 DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGTextContentElement); | 93 DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGTextContentElement); |
| 94 | 94 |
| 95 } // namespace blink | 95 } // namespace blink |
| 96 | 96 |
| 97 #endif // SVGTextContentElement_h | 97 #endif // SVGTextContentElement_h |
| OLD | NEW |