File indexing completed on 2024-04-28 15:24:39

0001 /*
0002     Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
0003                   2004, 2005, 2006 Rob Buis <buis@kde.org>
0004 
0005     This file is part of the KDE project
0006 
0007     This library is free software; you can redistribute it and/or
0008     modify it under the terms of the GNU Library General Public
0009     License as published by the Free Software Foundation; either
0010     version 2 of the License, or (at your option) any later version.
0011 
0012     This library is distributed in the hope that it will be useful,
0013     but WITHOUT ANY WARRANTY; without even the implied warranty of
0014     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0015     Library General Public License for more details.
0016 
0017     You should have received a copy of the GNU Library General Public License
0018     along with this library; see the file COPYING.LIB.  If not, write to
0019     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0020     Boston, MA 02110-1301, USA.
0021 */
0022 
0023 #ifndef SVGPathSegLinetoVertical_h
0024 #define SVGPathSegLinetoVertical_h
0025 
0026 #if ENABLE(SVG)
0027 
0028 #include "SVGPathSeg.h"
0029 
0030 namespace WebCore
0031 {
0032 
0033 class SVGPathSegLinetoVerticalAbs : public SVGPathSeg
0034 {
0035 public:
0036     static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(float y)
0037     {
0038         return adoptRef(new SVGPathSegLinetoVerticalAbs(y));
0039     }
0040     virtual~SVGPathSegLinetoVerticalAbs();
0041 
0042     unsigned short pathSegType() const override
0043     {
0044         return PATHSEG_LINETO_VERTICAL_ABS;
0045     }
0046     String pathSegTypeAsLetter() const override
0047     {
0048         return "V";
0049     }
0050     String toString() const override
0051     {
0052         return String::format("V %.6lg", m_y);
0053     }
0054 
0055     void setY(float);
0056     float y() const;
0057 
0058 private:
0059     SVGPathSegLinetoVerticalAbs(float y);
0060 
0061     float m_y;
0062 };
0063 
0064 class SVGPathSegLinetoVerticalRel : public SVGPathSeg
0065 {
0066 public:
0067     static PassRefPtr<SVGPathSegLinetoVerticalRel> create(float y)
0068     {
0069         return adoptRef(new SVGPathSegLinetoVerticalRel(y));
0070     }
0071     virtual ~SVGPathSegLinetoVerticalRel();
0072 
0073     unsigned short pathSegType() const override
0074     {
0075         return PATHSEG_LINETO_VERTICAL_REL;
0076     }
0077     String pathSegTypeAsLetter() const override
0078     {
0079         return "v";
0080     }
0081     String toString() const override
0082     {
0083         return String::format("v %.6lg", m_y);
0084     }
0085 
0086     void setY(float);
0087     float y() const;
0088 
0089 private:
0090     SVGPathSegLinetoVerticalRel(float y);
0091 
0092     float m_y;
0093 };
0094 
0095 } // namespace WebCore
0096 
0097 #endif // ENABLE(SVG)
0098 #endif
0099