OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) |
3 * (C) 1997 Torben Weis (weis@kde.org) | 3 * (C) 1997 Torben Weis (weis@kde.org) |
4 * (C) 1998 Waldo Bastian (bastian@kde.org) | 4 * (C) 1998 Waldo Bastian (bastian@kde.org) |
5 * (C) 1999 Lars Knoll (knoll@kde.org) | 5 * (C) 1999 Lars Knoll (knoll@kde.org) |
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2013 Apple Inc. All rights | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2013 Apple Inc. All rights |
8 * reserved. | 8 * reserved. |
9 * | 9 * |
10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect&, | 315 bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect&, |
316 unsigned) const override { | 316 unsigned) const override { |
317 return false; | 317 return false; |
318 } | 318 } |
319 bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const override { | 319 bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const override { |
320 return false; | 320 return false; |
321 } | 321 } |
322 | 322 |
323 int paginationStrutForRow(LayoutTableRow*, LayoutUnit logicalOffset) const; | 323 int paginationStrutForRow(LayoutTableRow*, LayoutUnit logicalOffset) const; |
324 | 324 |
325 bool mapToVisualRectInAncestorSpace( | 325 bool mapToVisualRectInAncestorSpaceInternal( |
326 const LayoutBoxModelObject* ancestor, | 326 const LayoutBoxModelObject* ancestor, |
327 LayoutRect&, | 327 TransformState&, |
328 VisualRectFlags = DefaultVisualRectFlags) const override; | 328 VisualRectFlags = DefaultVisualRectFlags) const override; |
329 | 329 |
330 bool isRepeatingHeaderGroup() const; | 330 bool isRepeatingHeaderGroup() const; |
331 | 331 |
332 void layout() override; | 332 void layout() override; |
333 | 333 |
334 protected: | 334 protected: |
335 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override; | 335 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override; |
336 bool nodeAtPoint(HitTestResult&, | 336 bool nodeAtPoint(HitTestResult&, |
337 const HitTestLocation& locationInContainer, | 337 const HitTestLocation& locationInContainer, |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 // The use is to disable a painting optimization where we just paint the | 475 // The use is to disable a painting optimization where we just paint the |
476 // invalidated cells. | 476 // invalidated cells. |
477 bool m_hasMultipleCellLevels; | 477 bool m_hasMultipleCellLevels; |
478 }; | 478 }; |
479 | 479 |
480 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTableSection, isTableSection()); | 480 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTableSection, isTableSection()); |
481 | 481 |
482 } // namespace blink | 482 } // namespace blink |
483 | 483 |
484 #endif // LayoutTableSection_h | 484 #endif // LayoutTableSection_h |
OLD | NEW |