| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 | 271 |
| 272 virtual bool isTable() const { return true; } | 272 virtual bool isTable() const { return true; } |
| 273 | 273 |
| 274 virtual bool avoidsFloats() const { return true; } | 274 virtual bool avoidsFloats() const { return true; } |
| 275 | 275 |
| 276 virtual void paint(PaintInfo&, const LayoutPoint&); | 276 virtual void paint(PaintInfo&, const LayoutPoint&); |
| 277 virtual void paintObject(PaintInfo&, const LayoutPoint&); | 277 virtual void paintObject(PaintInfo&, const LayoutPoint&); |
| 278 virtual void paintBoxDecorations(PaintInfo&, const LayoutPoint&); | 278 virtual void paintBoxDecorations(PaintInfo&, const LayoutPoint&); |
| 279 virtual void paintMask(PaintInfo&, const LayoutPoint&); | 279 virtual void paintMask(PaintInfo&, const LayoutPoint&); |
| 280 virtual void layout(); | 280 virtual void layout(); |
| 281 virtual bool supportsPartialLayout() const OVERRIDE { return false; } |
| 281 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minWidth, LayoutUnit&
maxWidth) const OVERRIDE; | 282 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minWidth, LayoutUnit&
maxWidth) const OVERRIDE; |
| 282 virtual void computePreferredLogicalWidths() OVERRIDE; | 283 virtual void computePreferredLogicalWidths() OVERRIDE; |
| 283 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct
ion) OVERRIDE; | 284 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTes
tLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAct
ion) OVERRIDE; |
| 284 | 285 |
| 285 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode
, LinePositionMode = PositionOnContainingLine) const OVERRIDE; | 286 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode
, LinePositionMode = PositionOnContainingLine) const OVERRIDE; |
| 286 virtual int firstLineBoxBaseline() const OVERRIDE; | 287 virtual int firstLineBoxBaseline() const OVERRIDE; |
| 287 virtual int inlineBlockBaseline(LineDirectionMode) const OVERRIDE; | 288 virtual int inlineBlockBaseline(LineDirectionMode) const OVERRIDE; |
| 288 | 289 |
| 289 RenderTableCol* slowColElement(unsigned col, bool* startEdge, bool* endEdge)
const; | 290 RenderTableCol* slowColElement(unsigned col, bool* startEdge, bool* endEdge)
const; |
| 290 | 291 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTable()); | 360 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isTable()); |
| 360 return static_cast<const RenderTable*>(object); | 361 return static_cast<const RenderTable*>(object); |
| 361 } | 362 } |
| 362 | 363 |
| 363 // This will catch anyone doing an unnecessary cast. | 364 // This will catch anyone doing an unnecessary cast. |
| 364 void toRenderTable(const RenderTable*); | 365 void toRenderTable(const RenderTable*); |
| 365 | 366 |
| 366 } // namespace WebCore | 367 } // namespace WebCore |
| 367 | 368 |
| 368 #endif // RenderTable_h | 369 #endif // RenderTable_h |
| OLD | NEW |