| 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, 2010 Apple Inc. All rights reserv
ed. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserv
ed. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 return 0; | 220 return 0; |
| 221 return slowColElement(col, startEdge, endEdge); | 221 return slowColElement(col, startEdge, endEdge); |
| 222 } | 222 } |
| 223 | 223 |
| 224 bool needsSectionRecalc() const { return m_needsSectionRecalc; } | 224 bool needsSectionRecalc() const { return m_needsSectionRecalc; } |
| 225 void setNeedsSectionRecalc() | 225 void setNeedsSectionRecalc() |
| 226 { | 226 { |
| 227 if (documentBeingDestroyed()) | 227 if (documentBeingDestroyed()) |
| 228 return; | 228 return; |
| 229 m_needsSectionRecalc = true; | 229 m_needsSectionRecalc = true; |
| 230 setNeedsLayout(); | 230 setNeedsLayoutAndFullRepaint(); |
| 231 } | 231 } |
| 232 | 232 |
| 233 RenderTableSection* sectionAbove(const RenderTableSection*, SkipEmptySection
sValue = DoNotSkipEmptySections) const; | 233 RenderTableSection* sectionAbove(const RenderTableSection*, SkipEmptySection
sValue = DoNotSkipEmptySections) const; |
| 234 RenderTableSection* sectionBelow(const RenderTableSection*, SkipEmptySection
sValue = DoNotSkipEmptySections) const; | 234 RenderTableSection* sectionBelow(const RenderTableSection*, SkipEmptySection
sValue = DoNotSkipEmptySections) const; |
| 235 | 235 |
| 236 RenderTableCell* cellAbove(const RenderTableCell*) const; | 236 RenderTableCell* cellAbove(const RenderTableCell*) const; |
| 237 RenderTableCell* cellBelow(const RenderTableCell*) const; | 237 RenderTableCell* cellBelow(const RenderTableCell*) const; |
| 238 RenderTableCell* cellBefore(const RenderTableCell*) const; | 238 RenderTableCell* cellBefore(const RenderTableCell*) const; |
| 239 RenderTableCell* cellAfter(const RenderTableCell*) const; | 239 RenderTableCell* cellAfter(const RenderTableCell*) const; |
| 240 | 240 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 if (m_firstBody) | 359 if (m_firstBody) |
| 360 return m_firstBody; | 360 return m_firstBody; |
| 361 return m_foot; | 361 return m_foot; |
| 362 } | 362 } |
| 363 | 363 |
| 364 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTable, isTable()); | 364 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTable, isTable()); |
| 365 | 365 |
| 366 } // namespace WebCore | 366 } // namespace WebCore |
| 367 | 367 |
| 368 #endif // RenderTable_h | 368 #endif // RenderTable_h |
| OLD | NEW |