OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1360 | 1360 |
1361 const SVGPaintType& fillPaintType() const { return svgStyle().fillPaintType(
); } | 1361 const SVGPaintType& fillPaintType() const { return svgStyle().fillPaintType(
); } |
1362 Color fillPaintColor() const { return svgStyle().fillPaintColor(); } | 1362 Color fillPaintColor() const { return svgStyle().fillPaintColor(); } |
1363 float fillOpacity() const { return svgStyle().fillOpacity(); } | 1363 float fillOpacity() const { return svgStyle().fillOpacity(); } |
1364 void setFillOpacity(float f) { accessSVGStyle().setFillOpacity(f); } | 1364 void setFillOpacity(float f) { accessSVGStyle().setFillOpacity(f); } |
1365 | 1365 |
1366 const SVGPaintType& strokePaintType() const { return svgStyle().strokePaintT
ype(); } | 1366 const SVGPaintType& strokePaintType() const { return svgStyle().strokePaintT
ype(); } |
1367 Color strokePaintColor() const { return svgStyle().strokePaintColor(); } | 1367 Color strokePaintColor() const { return svgStyle().strokePaintColor(); } |
1368 float strokeOpacity() const { return svgStyle().strokeOpacity(); } | 1368 float strokeOpacity() const { return svgStyle().strokeOpacity(); } |
1369 void setStrokeOpacity(float f) { accessSVGStyle().setStrokeOpacity(f); } | 1369 void setStrokeOpacity(float f) { accessSVGStyle().setStrokeOpacity(f); } |
1370 SVGLength* strokeWidth() const { return svgStyle().strokeWidth(); } | 1370 const UnzoomedLength& strokeWidth() const { return svgStyle().strokeWidth();
} |
1371 void setStrokeWidth(PassRefPtrWillBeRawPtr<SVGLength> w) { accessSVGStyle().
setStrokeWidth(w); } | 1371 void setStrokeWidth(const UnzoomedLength& w) { accessSVGStyle().setStrokeWid
th(w); } |
1372 SVGDashArray* strokeDashArray() const { return svgStyle().strokeDashArray();
} | 1372 SVGDashArray* strokeDashArray() const { return svgStyle().strokeDashArray();
} |
1373 void setStrokeDashArray(PassRefPtr<SVGDashArray> array) { accessSVGStyle().s
etStrokeDashArray(array); } | 1373 void setStrokeDashArray(PassRefPtr<SVGDashArray> array) { accessSVGStyle().s
etStrokeDashArray(array); } |
1374 const Length& strokeDashOffset() const { return svgStyle().strokeDashOffset(
); } | 1374 const Length& strokeDashOffset() const { return svgStyle().strokeDashOffset(
); } |
1375 void setStrokeDashOffset(const Length& d) { accessSVGStyle().setStrokeDashOf
fset(d); } | 1375 void setStrokeDashOffset(const Length& d) { accessSVGStyle().setStrokeDashOf
fset(d); } |
1376 float strokeMiterLimit() const { return svgStyle().strokeMiterLimit(); } | 1376 float strokeMiterLimit() const { return svgStyle().strokeMiterLimit(); } |
1377 void setStrokeMiterLimit(float f) { accessSVGStyle().setStrokeMiterLimit(f);
} | 1377 void setStrokeMiterLimit(float f) { accessSVGStyle().setStrokeMiterLimit(f);
} |
1378 | 1378 |
1379 void setX(Length x) { accessSVGStyle().setX(x); } | 1379 void setX(Length x) { accessSVGStyle().setX(x); } |
1380 void setY(Length y) { accessSVGStyle().setY(y); } | 1380 void setY(Length y) { accessSVGStyle().setY(y); } |
1381 void setRx(Length rx) { accessSVGStyle().setRx(rx); } | 1381 void setRx(Length rx) { accessSVGStyle().setRx(rx); } |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1860 } | 1860 } |
1861 | 1861 |
1862 inline bool LayoutStyle::hasPseudoElementStyle() const | 1862 inline bool LayoutStyle::hasPseudoElementStyle() const |
1863 { | 1863 { |
1864 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; | 1864 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; |
1865 } | 1865 } |
1866 | 1866 |
1867 } // namespace blink | 1867 } // namespace blink |
1868 | 1868 |
1869 #endif // LayoutStyle_h | 1869 #endif // LayoutStyle_h |
OLD | NEW |