KHTML
Go to the documentation of this file.
23 #ifndef SVGPathSegLinetoHorizontal_h
24 #define SVGPathSegLinetoHorizontal_h
32 class SVGPathSegLinetoHorizontalAbs :
public SVGPathSeg {
34 static PassRefPtr<SVGPathSegLinetoHorizontalAbs>
create(
float x) {
return adoptRef(
new SVGPathSegLinetoHorizontalAbs(x)); }
35 virtual ~SVGPathSegLinetoHorizontalAbs();
37 virtual unsigned short pathSegType()
const {
return PATHSEG_LINETO_HORIZONTAL_ABS; }
38 virtual String pathSegTypeAsLetter()
const {
return "H"; }
45 SVGPathSegLinetoHorizontalAbs(
float x);
49 class SVGPathSegLinetoHorizontalRel :
public SVGPathSeg {
51 static PassRefPtr<SVGPathSegLinetoHorizontalRel>
create(
float x) {
return adoptRef(
new SVGPathSegLinetoHorizontalRel(x)); }
52 virtual ~SVGPathSegLinetoHorizontalRel();
54 virtual unsigned short pathSegType()
const {
return PATHSEG_LINETO_HORIZONTAL_REL; }
55 virtual String pathSegTypeAsLetter()
const {
return "h"; }
62 SVGPathSegLinetoHorizontalRel(
float x);
This file is part of the KDE documentation.
Documentation copyright © 1996-2013 The KDE developers.
Generated on Wed Jun 5 2013 18:41:10 by
doxygen 1.8.3.1 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.