OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef LineLayoutSVGTextPath_h |
| 6 #define LineLayoutSVGTextPath_h |
| 7 |
| 8 #include "core/layout/api/LineLayoutSVGInline.h" |
| 9 #include "core/layout/svg/LayoutSVGTextPath.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 class LineLayoutSVGTextPath : public LineLayoutSVGInline { |
| 14 public: |
| 15 explicit LineLayoutSVGTextPath(LayoutSVGTextPath* layoutSVGTextPath) |
| 16 : LineLayoutSVGInline(layoutSVGTextPath) |
| 17 { |
| 18 } |
| 19 |
| 20 explicit LineLayoutSVGTextPath(const LineLayoutItem& item) |
| 21 : LineLayoutSVGInline(item) |
| 22 { |
| 23 ASSERT(!item || item.isSVGTextPath()); |
| 24 } |
| 25 |
| 26 explicit LineLayoutSVGTextPath(std::nullptr_t) : LineLayoutSVGInline(nullptr
) { } |
| 27 |
| 28 LineLayoutSVGTextPath() { } |
| 29 |
| 30 Path layoutPath() const |
| 31 { |
| 32 return toSVGTextPath()->layoutPath(); |
| 33 } |
| 34 |
| 35 float calculateStartOffset(float pathLength) const |
| 36 { |
| 37 return toSVGTextPath()->calculateStartOffset(pathLength); |
| 38 } |
| 39 |
| 40 private: |
| 41 LayoutSVGTextPath* toSVGTextPath() |
| 42 { |
| 43 return toLayoutSVGTextPath(layoutObject()); |
| 44 } |
| 45 |
| 46 const LayoutSVGTextPath* toSVGTextPath() const |
| 47 { |
| 48 return toLayoutSVGTextPath(layoutObject()); |
| 49 } |
| 50 }; |
| 51 |
| 52 } // namespace blink |
| 53 |
| 54 #endif // LineLayoutSVGTextPath_h |
OLD | NEW |